
.section--faq {
    padding: 60px 0;
}

/* HEADER CENTRÉ */
.section--faq .section__header--center {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.section--faq .section__subtitle {
    margin: 0 0 12px;
    color: var(--color-nav);
    font-size: var(--fs-eyebrow);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: left;
}

.section--faq .section__title {
    margin-bottom: 32px;
    text-align: left;

    font-size: var(--fs-xl);
    font-weight: 600;
    color:var(--color-text);
    line-height: 1.2;
}

.section--faq .section__introduction {
    margin-bottom: 40px;
    line-height: 1.6;
    text-align: left;
}

/* FAQ LIST */
.section--faq .section__faq {
    max-width: 900px;
    margin: 0 auto;
}

/* ITEM */
.section--faq .section__item {
    border-bottom: 1px solid #e2e2e2;
    padding: 14px 0 14px 0;
}
.section--faq .section__item:hover .section__question{
    color:var(--color-bold);
}
.section--faq .section__item.is-open .section__question{
    color:var(--color-bold);
}
/* QUESTION BUTTON */
.section--faq .section__question {
    width: 100%;
    padding: 0;
    background: none;
    border: none;
    text-align: left;
    /* Intitule de question : fluide 17 -> 20px. A 20px fixes, une question un
       peu longue occupait trois lignes sur un telephone. */
    font-size: var(--fs-text-lg);
    font-weight: 600;
    line-height: 1.4;
    cursor: pointer;
    position: relative;
    padding-right: 40px;
    color: inherit;
}

/* Icon (+ when closed) */
.section--faq .section__question::after {
    content: "";
    position: absolute;
    right: 4px;
    top: 50%;
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
    background-color: currentColor;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M11 5h2v14h-2z M5 11h14v2H5z'/></svg>") no-repeat center / contain;
            mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M11 5h2v14h-2z M5 11h14v2H5z'/></svg>") no-repeat center / contain;
    transition: -webkit-mask-image .25s, mask-image .25s;
}

/* Icon (- when open) */
.section--faq .section__item.is-open .section__question::after {
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M5 11h14v2H5z'/></svg>") no-repeat center / contain;
            mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M5 11h14v2H5z'/></svg>") no-repeat center / contain;
}

/* ANSWER (hidden by default) */
.section--faq .section__answer {
    display: none;
    margin-top: 14px;
    /* Reponse : meme echelle que la question, interligne un peu plus genereux
       puisqu'il s'agit d'un paragraphe et non d'un intitule. */
    font-size: var(--fs-text-lg);
    line-height: 1.65;
}

.section--faq .section__item.is-open .section__answer {
    display: block;
    padding-bottom: 32px;
}

/* CTA button */
.section--faq .section__controls {
    margin-top: 56px;
    text-align: center;
}

.section--faq .section__cta {
    display: inline-block;
    padding: 12px 26px;
    background: var(--color-nav);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    transition: 0.25s;
}

.section--faq .section__cta:hover {
    background:var(--color-bold);
}



