/* =============================================================
   Veelgestelde vragen – pagina layout
   ============================================================= */

/* ── Intro ───────────────────────────────────────────────────── */
.faq-page .faq-intro__lead {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #444;
    margin-top: 12px;
}

/* Remove inherited frontpage gradient from category sections */
.faq-page .faq-category.frontpage-intro {
    background: #ffffff;
}

/* ── Categorie koptekst ───────────────────────────────────────── */
.faq-page .faq-category__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-dark, #10424b);
    margin: 0 0 18px;
    padding-bottom: 0;
    border-bottom: 0;
}

/* ── FAQ Accordion (scope: faq-page) ─────────────────────────── */
.faq-page .thought-faq {
    margin-top: 0;
    display: grid;
    gap: 12px;
}

.faq-page .thought-faq__item {
    border: 1px solid rgba(16, 66, 75, 0.14);
    border-radius: 12px;
    background: #ffffff;
    overflow: hidden;
}

.faq-page .thought-faq__question {
    margin: 0;
}

.faq-page .thought-faq__toggle {
    width: 100%;
    border: 0;
    background: #ffffff;
    color: #111111;
    text-align: left;
    padding: 16px 18px;
    cursor: pointer;
    font: inherit;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: background 0.2s ease, color 0.2s ease;
}

.faq-page .thought-faq__toggle::after {
    content: '+';
    font-size: 1.25rem;
    line-height: 1;
    color: var(--color-primary);
    flex: 0 0 auto;
}

.faq-page .thought-faq__toggle[aria-expanded='true']::after {
    content: '-';
}

.faq-page .thought-faq__toggle[aria-expanded='true'] {
    color: var(--color-primary);
    font-weight: 700;
    background: rgba(16, 66, 75, 0.08);
}

.faq-page .thought-faq__toggle:hover,
.faq-page .thought-faq__toggle:focus-visible {
    background: rgba(16, 66, 75, 0.04);
    outline: none;
}

.faq-page .thought-faq__toggle[aria-expanded='true']:hover,
.faq-page .thought-faq__toggle[aria-expanded='true']:focus-visible {
    background: rgba(16, 66, 75, 0.10);
}

.faq-page .thought-faq__answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 10px 18px 0;
    transition: max-height 0.32s ease, opacity 0.22s ease, padding-bottom 0.22s ease;
}

.faq-page .thought-faq__answer p {
    margin: 0;
    white-space: pre-line;
}

.faq-page .thought-faq__item.is-open .thought-faq__answer {
    opacity: 1;
    padding-bottom: 16px;
}
