.section-heading {
  margin: 0 auto;
  width: min(100%, 52rem);
  text-align: center;
}

.section-heading__eyebrow {
  margin: 0 0 1rem;
  color: var(--color-tertiary);
  font-family: var(--hero-font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-heading__title {
  display: flex;
  justify-content: center;
  column-gap: 6px;
  color: var(--color-primary);
  font-family: var(--hero-font-serif);
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.96;
  margin: 0;
}

.section-heading__line {
  display: block;
}

.section-heading__title em {
  display: block;
  margin-left: 0;
  font-style: italic;
  font-weight: 400;
}

.section-heading__intro {
  width: min(100%, 40rem);
  margin: 1.25rem auto 0;
  color: var(--color-text);
  font-family: var(--hero-font-sans);
  font-size: 18px;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  .section-heading__eyebrow {
    letter-spacing: 0.24em;
  }

  .section-heading__title {
    flex-direction: column;
    font-size: clamp(2.3rem, 10vw, 3.4rem);
    line-height: 1;
  }

  .section-heading__intro {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}
