.page-shell {
    padding-bottom: 8px;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    color: var(--scout-blue);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

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

.section-header-left {
    text-align: left;
    margin-left: 0;
}

.section-header h1,
.section-header h2 {
    margin: 14px 0 16px;
    color: var(--scout-green-deep);
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.08;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.04rem;
    line-height: 1.75;
}

.page-section {
    margin-bottom: 76px;
}

.page-shell > .page-section:first-child {
    margin-top: 42px;
}

.page-hero {
    margin-top: 42px;
    margin-bottom: 56px;
}

.page-hero-grid,
.content-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 24px;
    align-items: stretch;
}

.content-split-aside {
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
}

.page-hero-copy,
.page-card,
.page-hero-media {
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
}

.page-hero-copy,
.page-card {
    background: rgba(255, 255, 255, 0.9);
}

.page-hero-copy {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: clamp(28px, 3vw, 40px);
    background:
        radial-gradient(circle at top right, rgba(237, 234, 25, 0.16), transparent 28%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(244, 247, 241, 0.98) 100%);
}

.page-hero-copy h1 {
    color: var(--scout-green-deep);
    font-size: clamp(2.4rem, 4vw, 4.5rem);
    line-height: 1.02;
    max-width: 12ch;
}

.page-hero-lead {
    color: var(--text-muted);
    font-size: 1.08rem;
    line-height: 1.8;
    max-width: 62ch;
}

.page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--scout-green) 0%, #46764d 100%);
    color: white;
    box-shadow: 0 18px 36px rgba(53, 94, 59, 0.18);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 42px rgba(53, 94, 59, 0.24);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(10, 49, 140, 0.12);
    color: var(--scout-blue);
    box-shadow: 0 14px 28px rgba(8, 31, 86, 0.08);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    background: var(--scout-blue);
    color: white;
}

.hero-feature-list,
.detail-list {
    display: grid;
    gap: 12px;
}

.hero-feature-list li,
.detail-list li {
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(10, 49, 140, 0.08);
    box-shadow: 0 12px 26px rgba(17, 39, 24, 0.05);
}

.hero-feature-list strong,
.detail-list strong {
    display: block;
    margin-bottom: 6px;
    color: var(--scout-green-deep);
    font-size: 1rem;
}

.hero-feature-list span,
.detail-list span,
.detail-list li {
    color: var(--text-muted);
    line-height: 1.65;
}

.page-card {
    padding: clamp(24px, 3vw, 34px);
}

.page-card h2,
.page-card h3 {
    color: var(--scout-green-deep);
    line-height: 1.15;
}

.page-card p {
    color: var(--text-muted);
    line-height: 1.75;
}

.prose-card p + p {
    margin-top: 16px;
}

.stacked-cards {
    display: grid;
    gap: 24px;
}

.story-tag {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(10, 49, 140, 0.09);
    color: var(--scout-blue);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.page-hero-media {
    position: relative;
    min-height: 100%;
    background: #0d2440;
}

.page-hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(9, 21, 49, 0.16) 0%, rgba(9, 21, 49, 0.72) 100%);
}

.page-hero-media img {
    width: 100%;
    height: 100%;
    min-height: 540px;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    z-index: 1;
    max-width: 36rem;
    color: white;
}

.page-hero-overlay h2 {
    margin: 16px 0 12px;
    color: white;
    font-size: clamp(1.8rem, 2.8vw, 2.8rem);
    line-height: 1.08;
}

.page-hero-overlay p {
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.7;
}

@media (max-width: 1160px) {
    .page-hero-grid,
    .content-split,
    .content-split-aside {
        grid-template-columns: 1fr;
    }

    .page-hero-copy h1 {
        max-width: none;
    }

    .page-hero-media img {
        min-height: 460px;
    }
}

@media (max-width: 760px) {
    .page-shell > .page-section:first-child {
        margin-top: 28px;
    }

    .page-hero {
        margin-top: 28px;
    }

    .section-header,
    .section-header-left {
        text-align: left;
    }

    .page-hero-copy,
    .page-card {
        padding: 24px;
        border-radius: 26px;
    }

    .page-hero-media {
        border-radius: 26px;
    }

    .page-hero-overlay {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .page-hero-media img {
        min-height: 400px;
    }
}

@media (max-width: 560px) {
    .page-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .page-hero-copy h1 {
        font-size: 2.2rem;
    }

    .page-hero-overlay h2 {
        font-size: 1.6rem;
    }

    .page-hero-overlay p {
        font-size: 0.94rem;
        line-height: 1.6;
    }

    .page-hero-media img {
        min-height: 320px;
    }
}
