/* Home: Stats Block */

.home-stats {
    background-color: #0D4D55;
    padding: 3.5rem 1.5rem;
    text-align: center;
}

.home-stats__container {
    max-width: 1140px;
    margin: 0 auto;
}

.home-stats__header {
    max-width: 640px;
    margin: 0 auto 2.5rem;
}

.home-stats__label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #A8D6DA;
    margin-bottom: 0.75rem;
}

.home-stats__heading {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: #fff;
    margin: 0 0 1rem;
}

.home-stats__subtext {
    font-size: 16px;
    line-height: 1.6;
    color: #A8D6DA;
}

.home-stats__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.home-stats__item {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.home-stats__number {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    letter-spacing: -1.5px;
    margin-bottom: 0.5rem;
}

.home-stats__symbol {
    color: #E84E0F;
}

.home-stats__description {
    font-size: 13px;
    color: #A8D6DA;
    line-height: 1.4;
    margin: 0;
}

.home-stats__cta {
    display: flex;
    justify-content: center;
}

/* sm: 640px — 2 columns */
@media (min-width: 640px) {
    .home-stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* md: 768px — full row, dividers, tighter vertical rhythm */
@media (min-width: 768px) {
    .home-stats {
        padding-top: 4.5rem;
        padding-bottom: 4.5rem;
    }

    .home-stats__heading {
        font-size: 36px;
    }

    .home-stats__grid {
        grid-template-columns: repeat(var(--home-stats-cols, 3), 1fr);
        gap: 0;
    }

    .home-stats__item--divided {
        border-right: 1px solid rgba(212, 238, 241, 0.15);
    }
}
