/* Section: FAQ */

.faq {
    background: var(--surface);
    padding: 80px 0 100px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 56px;
    align-items: start;
}
@media (max-width: 767px) {.faq{padding: 50px 0 70px;} }
@media (max-width: 880px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* -------------------------------- */
/* Intro */
/* -------------------------------- */

.faq-intro .eyebrow {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--blue);
}

.faq-intro h2 {
    font-family: var(--display);
    color: var(--ink);
    margin-bottom: 14px;
}

.faq-intro .lede {
    color: var(--muted);
    margin-bottom: 32px;
}

/* -------------------------------- */
/* CTA */
/* -------------------------------- */

.faq-cta {
    background: var(--navy);
    color: #fff;
    padding: 24px 26px;
    border-radius: var(--r);
    margin-top: 8px;
    box-shadow: var(--sh-sm);
}

.faq-cta h3 {
    font-family: var(--display);
    color: #fff;
    margin-bottom: 8px;
    font-size: 18px;
}

.faq-cta p {
    color: var(--blue-l);
    font-size: 13.5px;
    margin-bottom: 16px;
}

/* -------------------------------- */
/* Accordion */
/* -------------------------------- */

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--r-sm);
    box-shadow: var(--sh-sm);
    transition:
        border-color .25s ease,
        box-shadow .25s ease;
    overflow: hidden;
}

.faq-item:hover,
.faq-item.active {
    border-color: var(--blue);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: 0;
    padding: 20px;
    cursor: pointer;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;

    font-family: var(--display);
    font-size: 15.5px;
    font-weight: 600;
    color: var(--ink);
    text-align: left;
}

.faq-question:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: -2px;
}

/* Plusje */

.faq-question::after {
    content: "+";
    color: var(--blue);
    font-size: 26px;
    font-weight: 600;
    transition: transform .3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

/* -------------------------------- */
/* Animated answer */
/* -------------------------------- */

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s ease;
}

.faq-answer-inner {
    padding: 0 20px 20px;
}

.faq-answer p {
    margin: 0 0 16px;
    color: var(--muted);
    line-height: 1.7;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul,
.faq-answer ol {
    margin: 0 0 16px 20px;
}

.faq-answer li {
    margin-bottom: 8px;
    color: var(--muted);
}

/* -------------------------------- */
/* Open state */
/* -------------------------------- */

.faq-item.active {
    box-shadow: 0 10px 24px rgba(0,0,0,.08);
}