.stat-cards-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.stat-cards-wrap {
    font-family: 'Plus Jakarta Sans', sans-serif;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    padding: 20px 0;
}

.stat-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 27px 45px;
    gap: 10px;
    flex: 1 1 0;
    min-width: 180px;
    max-width: 240px;
    min-height: var(--stat-card-height, 60px);
    box-sizing: border-box;
    background: #EDEDED;
    border-radius: 8px;
    flex: none;
}

.stat-card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    gap: 8px;
    flex: none;
    align-self: stretch;
}

.stat-card-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 30px;
    text-align: center;
    color: #141414;
    flex: none;
}

.stat-card-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #141414;
    flex: none;
    align-self: stretch;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .stat-cards-wrap {
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: stretch;
    }
    .stat-card {
        width: 100%;
        max-width: none;
        min-width: 0;
    }
}
