.nos-activites-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    border: 4px solid var(--or);
    border-radius: 0px 50px;
}

.nos-activites-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.nos-activites-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem;
    background: white;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.nos-activites-item:hover .nos-activites-overlay {
    opacity: 1;
    transform: translateY(0);
}

.nos-activites-item:hover .nos-activites-img {
    transform: scale(1.05);
}

/* Mobile / tablette : pas de survol possible, on affiche le texte en permanence */
@media (max-width: 1024px) {
    .nos-activites-overlay {
        opacity: 1;
        transform: translateY(0);
    }

    .nos-activites-item:hover .nos-activites-img {
        transform: none;
    }
}


@media (max-width: 550px) {
   
.nos-activites-img {
    width: 276%;
}
}