.card-standard {
    transition: transform 0.2s ease;
    cursor: pointer;
}

.card-standard:hover {
    transform: scale(1.05);
    z-index: 10; /* Pour passer par-dessus les voisines au survol */
}

.card-standard:hover img {
    opacity: 1 !important;
    filter: brightness(1.2);
}

.card-standard:hover .text-white {
    color: #00e5ff !important; /* Le titre devient cyan au survol */
}
