/* ================================================
   Station Stats — Grille de statistiques
   ================================================ */

.station-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    padding: 32px 0;
    border-top: 1px solid var(--light1);
    border-bottom: 1px solid var(--light1);
}

.station-stats__item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.station-stats__icon {
    width: 48px;
    height: 48px;
    background: rgba(252, 176, 90, 0.1);
    border: 1.5px solid var(--main-color);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.station-stats__icon i {
    font-size: 22px;
    color: var(--main-color);
    transition: font-weight 0.2s ease;
}

.station-stats__item:hover .station-stats__icon i {
    font-weight: 900;
    color: var(--main-color-orange);
}

.station-stats__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.station-stats__label {
    font-family: var(--font-rubik);
    font-size: 13px;
    font-weight: var(--font-weight-bold);
    color: var(--dark1);
}

.station-stats__value {
    font-family: var(--font-helvetica);
    font-size: 15px;
    font-weight: var(--font-weight-regular);
    color: var(--dark3);
}

/* Responsive */
@media (max-width: 560px) {
    .station-stats {
        gap: 20px;
    }

    .station-stats__icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .station-stats__icon i {
        font-size: 18px;
    }
}
