/* 
Theme Name: Hello Elementor Child
*/
/* ==========================================================================
   ARTICLE — titres H2
   ========================================================================== */
#contenue-article {
    & h2.wp-block-heading {
        position: relative;
        margin-bottom: 50px !important;
        padding-bottom: 15px;
        color: #37282A;
        font-family: "Euclid Circular B", sans-serif;
        font-size: 32px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
    
    
        /* barre d'accent sous le titre */
        &::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 82px;
            height: 6px;
            background-color: var(--color-primary);
            border-radius: 60px;
        }
    }

    & figure.wp-block-image {
        text-align: center!important;
    }
}



/* espace avant un H2 lorsqu'il suit directement un paragraphe */
#contenue-article p.wp-block-paragraph:has(+ h2.wp-block-heading) {
    margin-bottom: 50px !important;
}