.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

.container--narrow {
  max-width: 800px;
}

section {
  padding-block: var(--section-padding-y);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-header__title {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  color: var(--color-text-heading);
  margin-bottom: var(--space-4);
}

.section-header--light .section-header__title,
.section-header--light .section-header__subtitle {
  color: var(--color-text-on-dark);
}

.section-header__subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  max-width: 640px;
  margin-inline: auto;
  line-height: var(--line-height-relaxed);
}

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