/* ─── SectionTitle Component ─────────────────────────────────────────────── */
.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--spacing-xl);
}

.section-title__bar {
  width: 4px;
  height: 18px;
  background-color: var(--color-primary);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.section-title__text {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-main);
}
