/* STATS BAND */
.stats-band {
    background: #fff;
    border-bottom: 1px solid var(--grey-300);
    padding: 28px 0;
}

.stats-inner {
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    text-align: center;
}

@media screen and (min-width: 575.8px) {
    .stats-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 991.8px) {
    .stats-inner {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    padding: 8px 16px;

}

@media screen and (min-width: 767.8px) {
    .stat-item {
        border-right: none;
    }
}

@media screen and (min-width: 991.8px) {
    .stat-item {

        border-right: 1px solid var(--grey-300);
    }
}

.stat-item:last-child {
    border-right: none;
}

.stat-num {
    font-size: 36px;
    font-weight: 700;
    color: var(--orange-200);
}

.stat-label {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--grey-100);
    margin-top: 6px;
}