/* CSS BLOG */
@media screen {
    #listeArticles .article {
        margin-bottom: 2rem;
        background-color: #fff;
        border: 1px solid transparent;
        border-color: #e0e0e0;
        border-radius: 12px;
        transition: box-shadow .3s ease-in-out;
        cursor: pointer;
    }

    #listeArticles .article:hover {
        box-shadow: 0 1px 2px 0 rgba(60,64,67,0.3),0 1px 3px 1px rgba(60,64,67,0.15);
    }


    #listeArticles .article .image {
        width: 100%;
        border-radius: 12px;
        height: 250px;
        overflow: hidden;
        border-radius: 12px 12px 0px 0px;
    }

    #listeArticles .article .image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px 12px 0px 0px;
        transition: transform .3s ease-in-out;
    }


    #listeArticles .article:hover .image img {
        transform: scale(1.1)
    }


    #listeArticles .article .info {
        padding: 12px 15px 25px 15px;
    }

    #listeArticles .article .info h6 {
        font-size: 1.10rem;
        font-weight: 500;
        margin-bottom: 0;
    }


    #listeArticles .article .info p {
        margin: .5rem 0 1rem 0;
        font-weight: 300;
    }


    #listeArticles .linkAndViews {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }


    #listeArticles .article .info a {
        display: flex;
        align-items: center;
        gap: .5rem;
        text-decoration: none;
        background: #3e7035d1;
        width: fit-content;
        padding: 6px 18px 7px 18px;
        border-radius: 4px;
        transition: all .3s ease-in-out;
    }

    #listeArticles .article .info a:hover {
        border-radius: 24px;
        transform: translateY(-2px);
        box-shadow: 0 1px 2px 0 rgba(60,64,67,0.3),0 1px 3px 1px rgba(60,64,67,0.15);
    }



    #listeArticles .article .info span {
        font-size: 1rem;
        color: #fff;
    }

    #listeArticles .article .info svg {
        width: 20px;
        color: #fff;
    }


    #listeArticles .article .views {
        display: flex;
        align-items: center;
        gap: .5rem;
        text-decoration: none;
        background: #adb5bd;
        width: fit-content;
        padding: 5px 12px 6px 12px;
        border-radius: 20px;
    }

    #listeArticles .article .views span {
        font-size: 1rem;
        color: #fff;
    }

    #listeArticles .article .views svg {
        width: 1.5rem;
        color: #fff;
    }
}






.date-article {
    display: block;
    font-size: 1rem;
    font-weight: 300;
    background: #8b8989;
    width: fit-content;
    margin: 0 auto;
    color: #fff;
    padding: 5px 20px;
    border-radius: 18px;
}

.titre-article {
    text-align: center;
    margin: 2rem auto 0;
    font-size: 2rem;
    font-weight: 800;
    text-wrap: balance;
    max-width: 800px;
}


.contenu-article {
    max-width: 800px;
    margin: auto;
    margin: 1.5rem auto 0;
}


.img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}


.paragraph h6 {
    font-weight: 600;
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: .5rem;
}

.description {
    text-align: justify;
}




#divConclusion {
    margin-top: 2rem;
    background: #7aaf22;
    max-width: 800px;
    border-radius: 12px;
}

#divConclusion .icone {
    width: 75px;
    height: 75px;
    background: #fff;   
    border-radius: 0px 0px 12px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#divConclusion .icone svg {
    width: 64px;
    color: #7aaf22;
}





#btnCtaConclusion {
    display: flex;
    align-items: center;
    gap: .5rem;
    text-decoration: none;
    background: #3e7035d1;
    width: fit-content;
    padding: 6px 25px 7px 25px;
    border-radius: 12px;
    transition: all .3s ease-in-out;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
}

#btnCtaConclusion:hover {
    border-radius: 24px;
    transform: translateY(-2px);
}


#btnCtaConclusion span {
    font-size: 1.10rem;
    color: #fff;
}

#btnCtaConclusion svg {
    width: 20px;
    color: #fff;
}


.other-articles-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.other-articles-title h6 {
    color: #3e7035d1;
    font-size: 2rem;
    font-weight: 700;
}

.other-articles-title span {
    border: 3px solid #3e7035d1;
    width: 100px;
    border-radius: 50px;
}

.other-articles-title span.bar2 {
    margin-top: .3rem;
    width: 75px;
}
