/* FAQ accordion, shared by /entreprises and /particuliers.
   Native <details>/<summary>: no JS, keyboard-accessible by default.
   One narrow centered column, hairline dividers, generous row padding;
   the question is quiet display type, the answer visibly secondary. */

.faq-section {
    padding: 72px 20px 110px 20px;
}

.faq-container {
    max-width: 660px;
    margin: 0 auto;
}

.faq-title {
    font-family: var(--font-display);
    font-weight: normal;
    font-size: var(--fs-display-2);
    color: var(--color-ink);
    text-align: center;
    margin: 0 0 56px 0;
}

.faq-item {
    border-top: 1px solid var(--color-border);
}

.faq-item:last-of-type {
    border-bottom: 1px solid var(--color-border);
}

.faq-question {
    font-family: var(--font-display);
    font-weight: normal;
    font-size: var(--fs-lede);
    color: var(--color-ink);
    line-height: 1.45;
    padding: 30px 56px 30px 0;
    cursor: pointer;
    list-style: none;
    position: relative;
}

.faq-question::-webkit-details-marker {
    display: none;
}

/* A hairline plus whose vertical bar rotates flat when the item opens,
   leaving a minus. Stroke weight matches the row dividers. */
.faq-question::before,
.faq-question::after {
    content: "";
    position: absolute;
    right: 4px;
    top: 50%;
    background: var(--color-text-strong);
}

.faq-question::before {
    width: 15px;
    height: 1px;
    transform: translateY(-50%);
}

.faq-question::after {
    width: 1px;
    height: 15px;
    right: 11px;
    transform: translateY(-50%);
    transition: transform 0.25s ease;
}

.faq-item[open] > .faq-question::after {
    transform: translateY(-50%) rotate(90deg);
}

.faq-answer {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    color: var(--color-text-soft);
    line-height: 1.65;
    margin: 0;
    padding: 0 40px 32px 0;
}

.faq-answer a {
    color: inherit;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 48px 20px 72px 20px;
    }

    .faq-title {
        margin-bottom: 40px;
    }

    .faq-question {
        padding: 24px 44px 24px 0;
    }

    .faq-answer {
        padding: 0 24px 26px 0;
    }
}
