.tr-stats{
    background:#faf8f5;
}

.tr-stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
}

.tr-stat{
    text-align:center;
}

.tr-stat-number{
    font-size:42px;
    font-weight:600;
    color:var(--tr-accent);
}

.tr-stat-label{
    margin-top:10px;
    color:#666;
}

@media(max-width:991px){

    .tr-stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:767px){

    .tr-stats-grid{
        grid-template-columns:1fr;
        gap:30px;
    }

}

.tr-stat{

    display:flex;

    flex-direction:column;

    justify-content:center;

}