/* === SECTION STATISTIQUES REVUE === */
.stats-section {
    max-width: 1140px;
    margin: 50px auto;
    background: #fff;
    padding: 25px;
    text-align: center;
    border-radius: 6px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

.stats-section h2 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    border-bottom: 2px solid #f39c12;
    display: inline-block;
    padding-bottom: 5px;
    letter-spacing: 0.01em;
}

.stats-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.stats-box {
    flex: 1;
    background: #f9f9f9;
    padding: 30px 0 20px 0;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    transition: 
        box-shadow 0.22s cubic-bezier(.4,0,.2,1),
        transform 0.16s cubic-bezier(.4,0,.2,1),
        border-top 0.18s;
    border-top: 4px solid transparent;
}

.stats-box:hover {
    box-shadow: 0 6px 24px rgba(33,104,166,0.11), 0 2px 8px rgba(0,0,0,0.13);
    transform: translateY(-4px) scale(1.03);
    border-top: 4px solid #f39c12;
    background: #fff;
    cursor: pointer;
}

.stats-value {
    font-size: 2.3em;
    font-weight: 700;
    color: #2168a6;
    margin-bottom: 8px;
}

.stats-label {
    font-size: 1.07em;
    color: #445d77;
    margin-bottom: 2px;
    font-weight: 500;
    text-align: center;
    line-height: 1.4;
}

/* Responsive adaptations */
@media (max-width: 900px) {
    .stats-grid {
        gap: 10px;
    }
    .stats-box {
        padding: 22px 0 14px 0;
    }
}
@media (max-width: 650px) {
    .stats-grid {
        flex-direction: column;
        gap: 12px;
    }
}
