.stats-section {
    padding: 36px 61px;
    background-color: #074158;
    margin: 0 auto;
}

.stats-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    gap: 0;
}

.stats-card {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 0 0 312px;
    width: 312px;
    max-width: none;
}

.stats-card__icon {
    flex: 0 0 75px;
    width: 75px;
    height: 75px;
}

.stats-card__icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.stats-card__content {
    flex: 0 0 217px;
    width: 217px;
}

.stats-card--water {
    flex-basis: 340px;
    width: 340px;
}

.stats-card--water .stats-card__content {
    flex-basis: 245px;
    width: 245px;
}

.stats-card__title {
    margin: 0;
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    color: #FFFFFF;
}

@media (max-width: 767px) {
    .stats-card__title {
        font-size: 20px;
    }

}

@media (max-width: 767px) {
    .stats-wrap {
        flex-wrap: wrap;
        row-gap: 22px;   /* cards stack with 0 gap on phone; separate the four stats clearly */
    }
}

/* ── Full-bleed past the 16" cap ──────────────────────────────────────────
   Break the teal stat band out to the full viewport; its inner .stats-wrap is
   already max-width:1440 + margin:auto, so the content stays in the centred column. */
@media (min-width: 1729px) {
    .stats-section {
        width: calc(100vw / var(--cap-zoom));
        margin-left: calc((1440px - 100vw / var(--cap-zoom)) / 2);
        margin-right: 0;
    }
}
