/* ftm/section-header — frontend + editor */
.ftm-section-header {
  margin: 0 auto 24px;
  max-width: 900px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
.ftm-section-header--center { text-align: center; }
.ftm-section-header--left   { text-align: left; }

.ftm-section-header__eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--ftm-muted);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.ftm-section-header__title {
  font-family: 'Prequel', 'Playfair Display', Georgia, serif;
  font-weight: 400;
  font-size: clamp(28px, 4.4vw, 48px);
  letter-spacing: 0.01em;
  line-height: 1.1;
  margin: 0;
  color: var(--ftm-navy);
}
.ftm-section-header--accent .ftm-section-header__title::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  border-radius: 3px;
  background: var(--ftm-rainbow);
  margin: 18px 0 0;
}
.ftm-section-header--center.ftm-section-header--accent .ftm-section-header__title::after {
  margin-left: auto;
  margin-right: auto;
}
