/* Article FAQ -- accordeon depliable (cycle 142, D8).
 * Calque sur details.wp-block-details du child theme BHK, tokens --alfred-*.
 * Contenu reste dans le DOM (indexable). Zero JS (<details> natif).
 */

.bhk-faq__wrap {
    max-width: var(--reading-width, 800px);
    margin: 0 auto;
}

details.bhk-faq {
    background: var(--alfred-surface, #ffffff);
    border: 1px solid var(--alfred-border, rgba(84, 14, 10, 0.12));
    border-radius: 8px;
    margin-bottom: 8px;
    overflow: hidden;
    transition: box-shadow 0.25s;
}

details.bhk-faq:hover {
    box-shadow: 0 2px 12px rgba(84, 14, 10, 0.08);
}

details.bhk-faq summary {
    padding: 16px 24px;
    font-weight: 600;
    font-size: 17px;
    cursor: pointer;
    color: var(--alfred-primary, #540E0A);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

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

details.bhk-faq summary::after {
    content: "\25BE"; /* chevron bas */
    font-size: 14px;
    color: var(--alfred-primary, #540E0A);
    transition: transform 0.25s;
    flex-shrink: 0;
}

details.bhk-faq[open] summary::after {
    transform: rotate(180deg);
}

details.bhk-faq[open] {
    border-color: var(--alfred-primary, #540E0A);
}

details.bhk-faq[open] summary {
    border-bottom: 1px solid var(--alfred-border, rgba(84, 14, 10, 0.12));
}

.bhk-faq__a {
    padding: 16px 24px;
    line-height: 1.7;
    color: var(--alfred-text, #444444);
}

.bhk-faq__a > :first-child { margin-top: 0; }
.bhk-faq__a > :last-child { margin-bottom: 0; }
