/*
  section-heading.css — en-tête de section réutilisable : kicker + titre + intro.
*/
.section-heading {
  max-width: 62ch;
  margin-bottom: var(--space-6);
}

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

.section-heading__kicker {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-brown-dark);
  margin-bottom: var(--space-2);
}

.section-heading__kicker::before {
  content: "";
  width: 18px;
  height: 3px;
  border-radius: var(--radius-pill);
  background: var(--color-yellow);
}

.section-heading--center .section-heading__kicker {
  justify-content: center;
}

.section-heading h2 {
  margin-bottom: var(--space-2);
}

.section-heading p {
  color: var(--color-ink-soft);
  font-size: var(--text-md);
}

.section-heading--center p {
  margin-inline: auto;
}
