/* ==================================================
   CIVIC HORIZON INDEX V2
   NATIONAL SNAPSHOT
================================================== */

.snapshot {
    padding: 72px 0;
    background: #ffffff;
}

.snapshot__container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}


/* ==================================================
   SECTION HEADING
================================================== */

.snapshot__heading {
    max-width: 720px;
    margin-bottom: 34px;
}

.snapshot__eyebrow {
    margin: 0 0 10px;
    color: #1f5f99;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.snapshot__heading h2 {
    margin: 0;
    color: #102a43;
    font-family: "Merriweather", Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.2;
}

.snapshot__heading > p:last-child {
    margin: 15px 0 0;
    color: #627d98;
    line-height: 1.75;
}


/* ==================================================
   STAT GRID
================================================== */

.snapshot__grid {
    display: grid;
    grid-template-columns:
        repeat(
            4,
            minmax(0, 1fr)
        );
    gap: 16px;
}


/* ==================================================
   STAT CARD
================================================== */

.stat-card {
    display: flex;
    min-width: 0;
    min-height: 165px;
    padding: 24px;
    flex-direction: column;
    justify-content: center;
    border: 1px solid #d9e2ec;
    border-radius: 14px;
    background: #f8fafc;
    color: inherit;
    text-decoration: none;
    box-shadow:
        0 10px 25px
        rgba(16, 42, 67, 0.05);
    transition:
        border-color 180ms ease,
        box-shadow 180ms ease,
        transform 180ms ease;
}

.stat-card:hover,
.stat-card:focus-visible {
    border-color: #9fbdd4;
    box-shadow:
        0 14px 30px
        rgba(16, 42, 67, 0.09);
    outline: none;
    transform: translateY(-2px);
}


/* ==================================================
   CARD LABEL
================================================== */

.stat-card__label {
    color: #627d98;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    line-height: 1.4;
    text-transform: uppercase;
}


/* ==================================================
   CARD VALUE
================================================== */

.stat-card__value {
    display: block;
    max-width: 100%;
    margin-top: 12px;
    overflow: hidden;
    color: #102a43;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.15;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.stat-card__value--text {
    font-family: "Merriweather", Georgia, serif;
    font-size: 1.15rem;
    line-height: 1.4;
    white-space: normal;
}


/* ==================================================
   CARD NOTE
================================================== */

.stat-card__note {
    margin-top: 9px;
    color: #7b8fa3;
    font-size: 0.74rem;
    line-height: 1.5;
}


/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 980px) {

    .snapshot__grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }

}


@media (max-width: 600px) {

    .snapshot {
        padding: 58px 0;
    }

    .snapshot__container {
        width:
            min(
                1180px,
                calc(100% - 32px)
            );
    }

    .snapshot__grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        min-height: auto;
    }

}