/* GRID: 4 cards per row */
.maneige-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 25px;
}

/* CARD */
.maneige-card {
    background: #c2edf8;
    border-radius: 10px;
    padding: 18px;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* HEADER */
.maneige-card-header {
    font-weight: 600;
    color: #00b4e5;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* BODY */
.maneige-card-body {
    color: #24337a;
    font-size: 20px;
    font-weight: 600;
    margin-top: 5px;
}

/* ICONS */
.maneige-card-header i {
    color: #00b4e5;
    font-size: 18px;
    opacity: 0.8;
}
