/* ==========================================================================
   FAQ — accordéon questions/réponses de la page FAQ.
   ========================================================================== */

.faqwrap {
    margin-top: 46px;
    max-width: 820px
}

.qa {
    border-bottom: 1px solid var(--ligne)
}

.q {
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 17px
}

.q .plus {
    color: var(--lime);
    font-size: 24px;
    transition: transform .3s
}

.qa.open .q .plus {
    transform: rotate(45deg)
}

.a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    color: var(--gris);
    font-size: 15px;
    line-height: 1.6
}

.a p {
    padding: 0 0 22px
}
