:root {
    --health-ink: #152238;
    --health-muted: #596575;
    --health-paper: #f4f1ea;
    --health-orange: #b63806;
    --health-line: #d9d6ce;
}

body {
    background: var(--health-paper);
    color: var(--health-ink);
}

.health-hero {
    min-height: 72vh;
}

.health-hero .feature-hero-content {
    max-width: 790px;
}

.health-hero .feature-hero-content h1 {
    max-width: 720px;
}

.health-main {
    max-width: 1180px;
    margin: 0 auto;
    padding: 88px 30px 100px;
}

.health-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, .8fr);
    gap: 72px;
    align-items: start;
    margin-bottom: 96px;
}

.health-kicker,
.health-section-kicker {
    color: var(--health-orange);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.health-intro h2 {
    max-width: 720px;
    margin: 14px 0 24px;
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.12;
}

.health-intro p,
.health-commitment p {
    color: var(--health-muted);
    font-size: 1.04rem;
    line-height: 1.8;
}

.health-profile {
    border-top: 4px solid var(--health-orange);
    padding-top: 22px;
}

.health-profile h3 {
    margin-bottom: 14px;
    font-size: 1.35rem;
}

.health-profile p {
    font-size: .96rem;
    line-height: 1.7;
}

.health-section-heading {
    border-top: 1px solid var(--health-line);
    padding-top: 24px;
    margin-bottom: 32px;
}

.health-section-heading h2 {
    margin-top: 10px;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.engagement-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 22px;
}

.engagement-card {
    grid-column: span 4;
    background: #fff;
    border: 1px solid var(--health-line);
}

.engagement-card:nth-child(-n + 2) {
    grid-column: span 6;
}

.engagement-card img {
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center top;
}

.engagement-card-body {
    padding: 24px 24px 28px;
    overflow: visible;
}

.engagement-card h3 {
    margin-bottom: 8px;
    font-size: 1.22rem;
    line-height: 1.25;
}

.engagement-card time {
    display: block;
    margin-bottom: 16px;
    color: var(--health-orange);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .7px;
    text-transform: uppercase;
}

.engagement-card p {
    color: var(--health-muted);
    font-size: .94rem;
    line-height: 1.65;
    display: block;
    max-height: none;
    overflow: visible;
}

.health-commitment {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 60px;
    margin-top: 100px;
    padding: 44px 0 0;
    border-top: 4px solid var(--health-ink);
}

.health-commitment h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}

@media (max-width: 760px) {
    .health-main {
        padding: 62px 20px 72px;
    }

    .health-intro,
    .health-commitment {
        grid-template-columns: 1fr;
        gap: 34px;
        margin-bottom: 70px;
    }

    .engagement-grid {
        grid-template-columns: 1fr;
    }

    .engagement-card,
    .engagement-card:nth-child(-n + 2) {
        grid-column: auto;
    }

}

@media (max-width: 480px) {
    .health-hero {
        min-height: 78vh;
    }

    .health-hero .feature-hero-content {
        padding: 0 20px 38px;
    }

    .health-hero .feature-hero-content h1 {
        font-size: 1.85rem;
    }

    .health-hero .feature-hero-content p {
        font-size: .94rem;
    }
}