.new-blog__wysiwyg .faq {
    max-width: 100% !important;
}

.faq  {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.faq__contenu {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.faq__titre {
    padding-bottom: 16px;
    text-align: center;
}

.faq__accordeon {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 8px 0;
}

.faq__fermeture {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq__fermeture-title {
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

.faq__fermeture[aria-expanded="true"] > .faq__moins,
.faq__fermeture[aria-expanded="false"] > .faq__plus {
    opacity: 1;
}

.faq__fermeture[aria-expanded="false"] > .faq__moins,
.faq__fermeture[aria-expanded="true"] > .faq__plus {
    opacity: 0;
}

.faq__fermeture > img {
    width: 44px;
    height: 44px;
    padding: 13px;
    transition: opacity 0.3s ease-in-out;
}

.faq__section {
    padding: 0 64px 0 0;
    line-height: 1.4em;
}

.faq__plus {
    position: absolute;
    right: 0;
}

.faq__separation {
    height: 1px;
    margin: 12px 0;
}

@media (max-width: 840px) {
    .faq__section {
        padding: 0;
    }
}