.home-blog .article-item__title,
.article-items .article-item__title{
    text-align: left;
}
.article-item_exc{
    color: #1B1D1F;
    margin-top: 8px;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: .05em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.article-item_link{
    position: absolute;
    right: 20px;
    bottom: 20px;
    color: #fff;
    display: flex;
    height: 52px;
    padding-left: 32px;
    padding-right: 32px;
    border-radius: 5px;
    background: #45C8DB;
    transition: .4s;
    opacity: 0;
    z-index: 2;
    transform: translate(10%, 10%);
    align-items: center;
}
.article-item__img{
    position: relative;
    overflow: hidden;
}
.article-item__img:before{
    position: absolute;
    content:'';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #1D304D85;
    backdrop-filter: blur(6px);
    transition: .4s;
    border-radius: 5px;
    opacity: 0;
}
.home-blog .article-item:hover .article-item__img,
.article-items .article-item:hover .article-item__img{
    box-shadow: none;
}
.home-blog .article-item:hover .article-item__title,
.article-items .article-item:hover .article-item__title{
    font-weight: 400;
}
.home-blog .article-item:hover .article-item__img:before,
.article-items .article-item:hover .article-item__img:before{
    opacity: 1;
}
.home-blog .article-item:hover .article-item_link,
.article-items .article-item:hover .article-item_link{
    opacity: 1;
    transform: translate(0, 0%);
}


.faq_categories{
    display: flex;
    width: 100%;
    border-radius: 5px;
    border: 1px solid #45C8DB;
}

.faq_category{
    height: 52px;
    display: flex;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
    width: 33.33%;
    box-sizing: border-box;
    color: #1B1D1F;
    transition: .2s;
    font-size: 18px;
    line-height: 20px;
    margin: 0;
    cursor: pointer;
    justify-content: center;
    text-align: center;
}

.faq_category.active,.faq_category:hover{
    background: #45C8DB;
    color: #fff;
    border-radius: 5px;
}
.faq_list{
    margin: 30px auto;
}
.faq_blocks{
    max-width: 816px;
    margin: 0 auto;
    font-family: 'Red Hat Display';
}
.faq_item_question{
    font-size: 24px;
    line-height: 32px;
    position: relative;
    padding-right: 56px;
    color: #38404F;
    cursor: pointer;
}
.faq_item_question:after{
    width: 32px;
    height: 32px;
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    background-position: center;
    background-size: 20px;
    background-repeat: no-repeat;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUgNy41TDEwIDEyLjVMMTUgNy41IiBzdHJva2U9IiMzODQwNEYiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K);
    transition: .2s;
}
.faq_item{
    transition: .2s;
    border-radius: 5px;
    padding: 12px;
}
.faq_item.active{
    background: #F4F6F7;
}
.faq_item.active .faq_item_question:after{
    transform: rotate3d(1, 0, 0, 180deg );
}

.faq_item_answer p{
    font-size: 16px;
    line-height: 26px;
    color: #38404F;
    margin-top: 8px;
}

.faq_item_answer{
    display: none;
}
@media screen and (max-width: 768px) {
    .faq_categories{
        flex-direction: column;
    }
    .faq_category{
        width: 100%;
    }
    .faq_item_question{
        font-size: 20px;
        line-height: 30px;
    }
    .faq_item_answer p{
        font-size: 14px;
        line-height: 24px;
    }
}

.title-block_info{
    display: flex;
    margin-top: 60px;
    align-items: center;
    justify-content: center;
    color: #F4F6F7;
    font-size: 18px;
    line-height: 20px;
    font-family: 'Red Hat Display';
}
.title-block_sep{
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #F4F6F7;
    margin-left: 30px;
    margin-right: 30px;
     
}
/* body/main ont overflow-x: hidden → cela crée un conteneur de défilement
   et casse position: sticky. overflow-x: clip coupe le dépassement horizontal
   sans créer de conteneur de défilement, donc le sticky fonctionne. */
body,
main.post-container.blog{
    overflow-x: clip;
}
.post-container__inner_blog{
    display: flex;
    align-items: flex-start;
}
.wrp_blog_content{
    min-width: 0;
    flex: 1 1 auto;
}
.post-container_sommaire{
    width: 286px;
    flex-shrink: 0;
    margin-left: 32px;
    position: sticky;
    top: 175px;
}

.sommaire__title{
    font-family: 'Red Hat Display';
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    margin: 0 0 16px;
}
.sommaire__list{
    list-style: none;
    margin: 0;
    padding: 0;
    border-left: 2px solid rgba(0, 0, 0, 0.1);
}
.sommaire__item{
    margin: 0;
}
.sommaire__link{
    display: block;
    padding: 8px 0 8px 16px;
    margin-left: -2px;
    
    font-family: 'Red Hat Display';
    font-size: 15px;
    line-height: 20px;
    color: #6b7280;
    text-decoration: none;
    transition: color .2s ease, border-color .2s ease;
}

.sommaire__link.is-active{
    color: #111827;
    font-weight: 600;
    border-left-color: currentColor;
}
@media (max-width: 1024px) {
    .post-container_sommaire{
        top: 100px;
    }
}

.sommaire__list li:before{
    display: none;
}
.sommaire__list{
    padding-left: 0;
    border: 0;
}
.sommaire__list li{
    margin-bottom: 20px;
    
}
.sommaire__list li a{
    display: block;
    text-align: center;
    padding: 12px 20px;
    border-radius: 5px;
    border: 1px solid #45C8DB;
    transition: .2s;
    color: #1B1D1F;
}
.sommaire__list li a:hover{
    text-decoration: none;
}
.sommaire__list li a.is-active{
    background: #45C8DB;
    color: #fff;

}

.single-blog html,.single-blog main{
    overflow-x: initial;
}


@media (max-width: 768px){
    .post-container__inner_blog{
        display: block;
    }
    .post-container_sommaire{
        width: auto;
        margin-left: 0;
        margin-bottom: 32px;
    }
    .sommaire__inner{
        position: static;
    }
    .post-container ul.sommaire__list{
        padding-left: 0;
        margin-top: 20px;
    }
    .sommaire__list li {
        margin-bottom: 10px;
    }
}
.faq_title{
    text-align: center;
}