﻿:root {
    --health-green: #2f7d57;
    --health-green-strong: #215b40;
    --health-green-soft: #eef8f2;
    --health-blue: #2b4f83;
    --health-blue-soft: #eef4ff;
    --health-border: #d9e7de;
    --health-surface: #ffffff;
    --health-soft: #f6faf7;
    --health-text: #24332c;
    --health-text-sub: #66756d;
    --health-shadow: 0 18px 40px rgba(26, 58, 43, 0.08);
    --health-shadow-sm: 0 10px 24px rgba(26, 58, 43, 0.06);
    --health-radius-lg: 28px;
    --health-radius-md: 20px;
    --health-radius-sm: 14px;
}

.health-header {
    padding: 34px 0 18px;
    background: linear-gradient(180deg, #f7fbf8 0%, #ffffff 100%);
}

.health-header__card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 240px;
    gap: 20px;
    align-items: center;
    overflow: hidden;
    border: 1px solid var(--health-border);
    border-radius: var(--health-radius-lg);
    background: linear-gradient(135deg, #ffffff 0%, #f5fbf7 100%);
    box-shadow: var(--health-shadow);
}

.health-header__body {
    padding: 34px 38px 32px;
}

.health-header__eyebrow {
    display: inline-flex;
    align-items: center;
    margin: 0 0 14px;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--health-green-soft);
    color: var(--health-green-strong);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.health-header__title {
    margin: 0 0 12px;
    color: var(--health-blue);
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.28;
}

.health-header__lead {
    max-width: 760px;
    margin: 0;
    color: var(--health-text-sub);
    font-size: 1rem;
    line-height: 1.85;
}

.health-header__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.health-chip {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #d9e7de;
    color: var(--health-green-strong);
    font-size: 0.82rem;
    font-weight: 700;
    white-space: nowrap;
}

.health-header__mark {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 24px 24px 24px 0;
}

    .health-header__mark img {
        display: block;
        max-height: 190px;
        width: auto;
        border: 1px solid #d9e1d9;
        box-shadow: var(--health-shadow-sm);
        background: #ffffff;
    }

.health-page {
    padding: 18px 0 72px;
    background: linear-gradient(180deg, #ffffff 0%, var(--health-soft) 100%);
}

.health-introCard,
.health-visualCard,
.health-sideCard,
.health-definitionCard {
    border: 1px solid var(--health-border);
    border-radius: var(--health-radius-lg);
    background: linear-gradient(180deg, #ffffff 0%, #fbfdfb 100%);
    box-shadow: var(--health-shadow-sm);
}

.health-introCard {
    padding: 28px 30px;
    margin-bottom: 20px;
}

.health-introCard__content p {
    margin: 0 0 1rem;
    color: var(--health-text);
    font-size: 1rem;
    line-height: 1.9;
}

.health-sectionTitle {
    margin: 0 0 14px;
    color: var(--health-blue);
    font-size: 1.26rem;
    font-weight: 700;
    line-height: 1.5;
}

.health-visualBlock {
    margin-bottom: 24px;
}

.health-visualCard {
    padding: 22px;
    text-align: center;
}

.health-sideCard {
    padding: 20px 18px;
    height: 100%;
}

.health-sideCard__title {
    margin: 0 0 14px;
    color: var(--health-blue);
    font-size: 1.04rem;
    font-weight: 700;
}

.health-sideCard__list {
    margin: 0;
}

    .health-sideCard__list div + div {
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid #e5eee8;
    }

    .health-sideCard__list dt {
        margin-bottom: 4px;
        color: var(--health-text-sub);
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.04em;
    }

    .health-sideCard__list dd {
        margin: 0;
        color: var(--health-text);
        font-size: 0.94rem;
        font-weight: 700;
        line-height: 1.6;
    }

.health-section + .health-section {
    margin-top: 26px;
}

.health-sectionHead {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px 24px;
    margin-bottom: 14px;
}

.health-sectionHead__title {
    margin: 0 0 4px;
    color: var(--health-blue);
    font-size: 1.2rem;
    font-weight: 700;
}

.health-sectionHead__text {
    margin: 0;
    color: var(--health-text-sub);
    font-size: 0.92rem;
}

.health-initiativeGrid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.health-initiativeCard {
    padding: 20px 20px 18px;
    border: 1px solid var(--health-border);
    border-radius: var(--health-radius-md);
    background: linear-gradient(180deg, #ffffff 0%, #fbfdfb 100%);
    box-shadow: var(--health-shadow-sm);
}

.health-initiativeCard__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 12px;
    border-radius: 14px;
    background: var(--health-green-soft);
    color: var(--health-green);
    font-size: 1.15rem;
}

.health-initiativeCard__title {
    margin: 0 0 8px;
    color: var(--health-blue);
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.5;
}

.health-initiativeCard__text {
    margin: 0;
    color: var(--health-text);
    font-size: 0.95rem;
    line-height: 1.85;
}

.health-definitionCard {
    padding: 26px 28px;
}

    .health-definitionCard p {
        margin: 0 0 1rem;
        color: var(--health-text);
        font-size: 1rem;
        line-height: 1.95;
    }

.health-definitionCard__actions {
    margin-top: 18px;
}

.health-actionBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--health-green-strong) 0%, var(--health-green) 100%);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(33, 91, 64, 0.16);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

    .health-actionBtn:hover {
        color: #ffffff;
        text-decoration: none;
        transform: translateY(-1px);
        box-shadow: 0 12px 24px rgba(33, 91, 64, 0.22);
    }

@media (max-width: 991.98px) {
    .health-header__card {
        grid-template-columns: 1fr;
    }

    .health-header__mark {
        justify-content: flex-start;
        padding: 0 30px 28px;
    }

    .health-initiativeGrid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .health-header {
        padding: 22px 0 12px;
    }

    .health-header__card,
    .health-introCard,
    .health-visualCard,
    .health-sideCard,
    .health-definitionCard {
        border-radius: 22px;
    }

    .health-header__body {
        padding: 24px 18px 18px;
    }

    .health-header__title {
        font-size: 1.82rem;
    }

    .health-header__lead {
        font-size: 0.94rem;
        line-height: 1.75;
    }

    .health-header__chips {
        margin-top: 14px;
        gap: 7px;
    }

    .health-chip {
        min-height: 32px;
        font-size: 0.76rem;
    }

    .health-header__mark {
        padding: 0 18px 22px;
        justify-content: center;
    }

    .health-page {
        padding: 12px 0 52px;
    }

    .health-introCard,
    .health-visualCard,
    .health-sideCard,
    .health-definitionCard {
        padding-left: 18px;
        padding-right: 18px;
    }

    .health-introCard {
        padding-top: 22px;
        padding-bottom: 22px;
    }

    .health-visualCard {
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .health-sideCard {
        padding-top: 18px;
        padding-bottom: 18px;
    }

    .health-definitionCard {
        padding-top: 22px;
        padding-bottom: 22px;
    }

        .health-introCard__content p,
        .health-definitionCard p,
        .health-initiativeCard__text {
            font-size: 0.95rem;
            line-height: 1.82;
        }

    .health-sectionHead {
        flex-direction: column;
        align-items: stretch;
    }

    .health-sectionHead__title {
        font-size: 1.1rem;
    }

    .health-sectionHead__text {
        font-size: 0.88rem;
    }

    .health-initiativeCard {
        padding: 18px 16px 16px;
        border-radius: 18px;
    }

    .health-initiativeCard__title {
        font-size: 0.98rem;
    }

    .health-actionBtn {
        width: 100%;
    }
}
