/* ==============================================
   COMPONENT: Section Header
   Description: Eyebrow label + section title + optional subtitle — used at the top of content sections
   ============================================== */

/* --- Block --- */

.section-header {
  margin-bottom: var(--space-10);
  max-width: 72ch;
}

.section-header--centered {
  text-align: center;
  margin-inline: auto;
}

/* --- Elements --- */

.section-header__eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-vitality-orange);
  margin-bottom: var(--space-3);
}

.section-header__title {
  color: var(--color-text-primary);
  margin-bottom: var(--space-4);
}

.section-header__subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 64ch;
}

/* --- Modifier: White — for dark backgrounds (fusion, ip-banner) --- */

.section-header--white .section-header__eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.section-header--white .section-header__title {
  color: var(--color-clinical-white);
}

.section-header--white .section-header__subtitle {
  color: rgba(255, 255, 255, 0.8);
}

/* --- Responsive --- */

@media (min-width: 768px) {
  .section-header {
    margin-bottom: var(--space-12);
  }
}
