.container {
      width: min(1180px, calc(100% - 40px));
      margin-inline: auto;
    }

    .section {
      padding: 84px 0;
    }

    .section-head {
      max-width: 760px;
      margin: 0 auto 42px;
      text-align: center;
    }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 12px;
      color: var(--blue-dark);
      font-size: var(--fs-sm);
      font-weight: 700;
      letter-spacing: 0.02em;
    }

    .section-kicker::before {
      content: "";
      width: 26px;
      height: 3px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--blue), var(--green));
    }

    .section-head h2 {
      font-size: clamp(2rem, 4vw, 3.25rem);
      line-height: 1.2;
      letter-spacing: -0.035em;
      margin-bottom: 14px;
    }

    .section-head p,
    .section-head .section-lead {
      color: var(--muted);
      font-size: var(--fs-base);
    }

    /* Rich-text lead paragraphs (CMS editor output) */
    .section-lead > :first-child,
    .hero-copy > :first-child { margin-top: 0; }

    .section-lead > :last-child,
    .hero-copy > :last-child { margin-bottom: 0; }

    .section-lead p,
    .hero-copy p { margin-bottom: 12px; }

    .section-lead ul,
    .hero-copy ul { list-style: disc; }

    .section-lead ol,
    .hero-copy ol { list-style: decimal; }

    .section-lead ul,
    .section-lead ol,
    .hero-copy ul,
    .hero-copy ol {
      margin: 12px 0;
      padding-left: 1.4em;
      text-align: left;
    }

    .section-lead li,
    .hero-copy li { margin-bottom: 6px; }

    .section-lead a,
    .hero-copy a {
      color: var(--blue);
      text-decoration: underline;
      text-underline-offset: 2px;
    }
