.card-img-custom {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2) !important;
}

.card:hover .card-img-custom {
    transform: scale(1.1);
}

.card-body {
    overflow: hidden;
}

.formation-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.formation-card-link:hover {
    color: inherit;
    text-decoration: none;
}