/* Sections — .section and variants */

@layer components {
  .section {
    padding: var(--space-3xl) 0;
  }
  .section--alt {
    background: var(--color-bg-alt);
  }
  .section--dark {
    background: var(--color-dark);
    color: var(--color-bg);
  }
  .section__eyebrow {
    display: block;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: var(--space-xs);
  }
  .section--dark .section__eyebrow {
    color: rgba(255, 255, 255, 0.65);
  }
  .section__title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: var(--space-sm);
    color: var(--color-text);
  }
  .section--dark .section__title {
    color: var(--color-bg);
  }
  .section__subtitle {
    text-align: center;
    color: var(--color-text-light);
    max-width: 32rem;
    margin: 0 auto var(--space-xl);
    font-size: 1rem;
    line-height: 1.7;
  }
  .section--dark .section__subtitle {
    color: rgba(255, 255, 255, 0.6);
  }
}
