/* ==========================================================================
   FAQ Accordion.
   ========================================================================== */

.bb26-faq {
    margin: 40px 0;
    background: var(--bb-panel);
    border-radius: var(--bb-radius);
    box-shadow: var(--bb-shadow-sm);
    padding: 28px 32px;
}

.bb26-faq__title {
    margin: 0 0 20px;
    font-size: clamp(20px, 2.5vw, 26px);
}

.bb26-faq__list {
    display: grid;
    gap: 4px;
}

.bb26-faq__item {
    border-bottom: 1px solid var(--bb-border);
}

.bb26-faq__item:last-child {
    border-bottom: 0;
}

.bb26-faq__question {
    width: 100%;
    text-align: left;
    background: transparent;
    border: 0;
    padding: 18px 0;
    font: inherit;
    font-size: 17px;
    font-weight: 600;
    color: var(--bb-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: color 0.15s var(--bb-ease);
}

.bb26-faq__question:hover {
    color: var(--bb-accent-dark);
}

.bb26-faq__chev {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bb-accent-soft);
    color: var(--bb-text);
    border-radius: 50%;
    font-size: 18px;
    font-weight: 700;
    transition: transform 0.2s var(--bb-ease), background 0.15s var(--bb-ease);
}

.bb26-faq__item.is-open .bb26-faq__chev {
    transform: rotate(45deg);
    background: var(--bb-accent);
}

.bb26-faq__answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.25s var(--bb-ease);
}

.bb26-faq__item.is-open .bb26-faq__answer {
    max-height: 4000px;
}

.bb26-faq__answer > div {
    padding: 0 0 18px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--bb-text-secondary);
}

@media (max-width: 600px) {
    .bb26-faq {
        padding: 20px 18px;
    }
    .bb26-faq__question {
        font-size: 16px;
    }
}
