/* 
===========================
    Text Block Styles  
===========================
*/

/* Appliquer les styles des blocs Gutenberg aux éléments HTML sans classe et ajouter la police Manrope */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap');

body {
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}


/* Paragraphe */

p {
    font-family: Manrope;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    margin-top: 20px;
    text-align: justify;

}


/* titres */

.wp-block-heading {
    font-family: var(--wp--preset--font-family--lexend, Lexend);
    font-style: normal;
    font-weight: 600;
    padding-top: 24px;
    padding-bottom: 16px;
}

h1.wp-block-heading, .wp-block-group h1, .wp-editor h1 {
    font-size: 48px;
    line-height: 50px;
    font-weight: 800;
}

h2.wp-block-heading, .wp-block-group h2, .wp-editor h2 {
    font-size: 36px;
    line-height: 40px;
    font-weight: 700;

    padding: 8px 8px;
    background-color: var(--systemoun-secondary-color, #2DAA73);
    border-radius: 4px;
    color: white;
    display: inline-block;
    margin: 30px 0 20px 0;
    /* épaisseur du soulignement */
    text-decoration-thickness: 5px !important;
    /* décalage */
    text-underline-offset: 4px !important;

    * {
        text-decoration-thickness: 5px !important;
        text-underline-offset: 4px !important;
    }

}

h3.wp-block-heading, .wp-block-group h3, .wp-editor h3 {
    font-size: 32px;
    line-height: 1.3;
    font-weight: 600;
    padding: 0 20px;
    margin-top: 8px;
    margin-bottom: 24px;
    text-decoration: underline;
    text-decoration-color: var(--systemoun-secondary-color, #2DAA73);
    text-decoration-thickness: 8px;
        /* décalage */
    text-underline-offset: 4px !important;

}

h4.wp-block-heading, .wp-block-group h4, .wp-editor h4 {
    font-size: 26px;
    line-height: 30px;
    font-weight: 600;
}

h5.wp-block-heading, .wp-block-group h5, .wp-editor h5 {
    font-size: 22px;
    line-height: 30px;
    font-weight: 500;
}

h6.wp-block-heading, .wp-block-group h6, .wp-editor h6 {
    font-size: 18px;
    line-height: 30px;
    font-weight: 500;
}


/* lorsqu'un element de titre en mis en gras, on lui ajoute une barre de soulignage derrière lui */
.wp-block-heading strong {
    position: relative;
    /* font-weight: 900; */

    /* &::before {
        content: "";
        position: absolute;
        left: -2px;
        bottom: 5%;
        width: calc(100% + 4px);
        height: 50%;
        background-color: var(--systemoun-strong-color, rgba(157, 48, 48, 0.836));
        opacity: 0.3;
        transition: transform 0.3s ease-in-out;
        z-index: 0;

        border-radius: 2px;
    }
    */
}


/* liens */


/* liens dans du texte */
p a, li a {
    color: var(--systemoun-strong-color, #19744C);
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    font-weight: 800;

    transition: all 0.2s ease-in-out;

    &:hover {
        /* color: var(--healththeme-dark-color, #19744C); */
        text-decoration: underline;
        /* text-decoration-color: var(--healththeme-dark-color, #19744C); */
        text-decoration-thickness: 2px;
        
        filter: brightness(0.8);
    }
}


/* blocs spéciaux */
p, a, li, span, div, input, textarea {
    font-size: inherit;
    font-family: inherit;
}


/* sur mobile */
@media (max-width: 800px) {
    h1.wp-block-heading, .wp-block-group h1, .wp-editor h1 {
        font-size: 26px;
        line-height: 32px;
        font-weight: 900;
    }

    h2.wp-block-heading, .wp-block-group h2, .wp-editor h2 {
        font-size: 24px;
        line-height: 28px;
        font-weight: 700;
    }

    h3.wp-block-heading, .wp-block-group h3, .wp-editor h3 {
        font-size: 20px;
        line-height: 28px;
        font-weight: 600;
        text-underline-offset: 5px !important;

    }

    h4.wp-block-heading, .wp-block-group h4, .wp-editor h4 {
        font-size: 18px;
        line-height: 28px;
        font-weight: 600;
    }

    h5.wp-block-heading, .wp-block-group h5, .wp-editor h5 {
        font-size: 18px;
        line-height: 26px;
        font-weight: 600;
    }

    h6.wp-block-heading, .wp-block-group h6, .wp-editor h6 {
        font-size: 16px;
        line-height: 20px;
        font-weight: 600;
    }


    p {
    font-size: 18px;
    line-height: 130%;

}

}