.elementor-1780 .elementor-element.elementor-element-f354c85{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-feaa7f3 *//* ------------------------------
   🌐 PLAN DU SITE – Style minimaliste moderne
   ------------------------------ */

.sitemap-minimal {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 40px 0;
    font-family: "Inter", sans-serif;
}

/* Titres de sections */
.sitemap-minimal h3 {
    font-size: 18px;
    font-weight: 700;
    color: #C00000;
    margin-bottom: 12px;
    position: relative;
    padding-bottom: 6px;
}

/* Ligne animée sous les titres */
.sitemap-minimal h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 32px;
    height: 2px;
    background: #C00000;
    transition: width 0.3s ease;
}

.sitemap-col:hover h3::after {
    width: 50px;
}

/* Listes */
.sitemap-minimal ul {
    list-style: none;
    margin: 0 0 20px 0;
    padding: 0;
}

.sitemap-minimal ul li {
    margin: 6px 0;
}

/* Liens minimalistes + animation */
.sitemap-minimal ul li a {
    font-size: 15px;
    color: #333;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
    transition: color 0.25s ease;
}

/* Soulignement moderne en slide-in */
.sitemap-minimal ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 1.8px;
    background: #C00000;
    transition: width 0.25s ease;
}

.sitemap-minimal ul li a:hover {
    color: #C00000;
}

.sitemap-minimal ul li a:hover::after {
    width: 100%;
}

/* Hover de colonne discret */
.sitemap-col {
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.sitemap-col:hover {
    transform: translateY(-3px);
    opacity: 0.96;
}

/* Responsive */
@media (max-width: 1024px) {
    .sitemap-minimal {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .sitemap-minimal {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}/* End custom CSS */