/* =========================================
   Programs Page – Hero / Header
   ========================================= */

.programs-page {
    background: #ffffff;
}

/* ── Soft mint → white fade behind the hero ── */
.pp-hero {
    position: relative;
    background: linear-gradient(180deg, #e8f5ee 0%, #ffffff 70%);
    padding-top: clamp(6rem, 12vw, 9rem);
    padding-bottom: clamp(2rem, 5vw, 4rem);
    overflow: hidden;
}

.pp-hero__inner {
    position: relative;
    z-index: 1;
    text-align: left;
}

/* ── Eyebrow ───────────────────────────── */
.pp-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.pp-hero__eyebrow-icon {
    display: inline-flex;
    width: 22px;
    height: 22px;
    border: 2px dotted #2ecc71;
    border-radius: 50%;
    animation: spin-slow 8s linear infinite;
    flex-shrink: 0;
}

/* ── Headline ──────────────────────────── */
.pp-hero__headline {
    font-size: clamp(2.2rem, 5vw, 3.75rem);
    font-weight: 800;
    color: #111;
    line-height: 1.1;
    margin: 0 0 1.4rem;
    max-width: 720px;
    letter-spacing: -0.5px;
}

/* ── Intro paragraph ───────────────────── */
.pp-hero__intro {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.85;
    max-width: 540px;
    margin: 0;
}

/* =========================================
   Programs Page – List section overrides
   ========================================= */

/* Remove top spacing — sits right below hero. */
.pp-programs {
    padding-top: 1rem;
    padding-bottom: 5rem;
}

.pp-programs__rows {
    gap: 2rem;
}

/* Dot grid in the bottom-right corner (mirrors screenshot 2) */
.pp-programs .fp-programs__dots-deco--bottom-right {
    bottom: 6rem;
    right: 1.5rem;
    width: 180px;
    height: 180px;
    opacity: 0.55;
}

/* ─────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────── */
@media (max-width: 768px) {
    .pp-hero {
        padding-top: 5rem;
        text-align: center;
    }

    .pp-hero__inner {
        text-align: center;
    }

    .pp-hero__eyebrow {
        justify-content: center;
    }

    .pp-hero__headline,
    .pp-hero__intro {
        margin-left: auto;
        margin-right: auto;
    }

    .pp-programs .fp-programs__dots-deco--bottom-right {
        display: none;
    }
}
