/* Footer Mobile Layout - Sitemap and Contact Details side by side */
@media (max-width: 768px) {
    .flex-block-2 {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-column-2,
    .footer-column-4 {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .flex-block-2 {
        gap: 1.5rem;
    }
}

/* Désactiver les animations sur les liens du footer */
.footer .navigation-link.for-footer,
.footer .navigation-link.for-footer:hover,
.footer .navigation-link.for-footer * {
    animation: none !important;
    transition: none !important;
    transform: none !important;
}

.footer .nav-text.first,
.footer .nav-text.second {
    position: static !important;
    top: auto !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
}

.footer .nav-text.second {
    display: none !important;
}

.footer .navigation-link.for-footer {
    overflow: visible !important;
}

.footer .navigation-link.for-footer:hover {
    font-weight: 700 !important;
}



