/* retire l'effet de zoom lors du hover sur les icônes RS */
.FooterRS a:hover {
  font-size: var(--icon-size);
}

/* tag des actus */
.tag-actu {
    background: var( --e-global-color-primary );
    border-radius: 99px;
    padding: 8px 16px;
}

/* tag des réas */
.tag-rea {
    background: var( --e-global-color-primary );
    border-radius: 99px;
    padding: 8px 16px;
}

/* bordure arrondi pour les petites card "Dernières réalisations" dans les pages activités */
.rea-more {
    border-radius: 8px;
    overflow: hidden;
}

/* Effets sur les cards réalisations */
.rea-img {
    transition: border-radius .3s;
}

.rea-card:hover .rea-img {
    border-radius: 16px 16px 0 0;
}

/* force les bords arrondi des images dans les articles */
.is-style-rounded {
    border-radius: 24px !important;
    overflow: hidden;
}


/* coupure si un titre est trop long */
h1, h2, h3, h4, h5, h6 {
overflow: hidden;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
}

@media (max-width: 767px) {
    h1, h2, h3, h4, h5, h6 {
        -webkit-line-clamp: 5;
    }
}

/* effet d'ombre sur les cards*/
.elementor-card-shadow-yes .elementor-post__card {
  box-shadow: 0 0 8px 0 rgba(0,0,0,.1) !important;
}

.elementor-card-shadow-yes .elementor-post__card:hover {
  box-shadow: 0 0 8px 0 rgba(0,0,0,.2) !important;
}

/* gras pour le dernier élément du fil d'ariane */
.breadcrumb_last {
    font-weight: 700;
}

/* centrage des icones */
.elementor-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}