
.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: 13px;
    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: 34px;
    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;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.45;
    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;
    font-size: 20px;
    line-height: 1.7;
}

.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 {
    padding: 12px 26px;
    background: var(--color-nav);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: 0.25s;
}

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



