/* =========================================
   FAQ — clean accordion
   ========================================= */

.esli-faq__list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.esli-faq__item {
    border: 1px solid var(--esli-border);
    border-radius: var(--esli-radius-md);
    background: var(--esli-surface);
}

.esli-faq__question {
    position: relative;
    width: 100%;
    padding: 18px 48px 18px 18px;
    border: 0;
    background: transparent;
    color: var(--esli-text);
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
}

.esli-faq__question::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    color: var(--esli-muted);
    font-size: 22px;
    line-height: 1;
}

.esli-faq__question[aria-expanded="true"]::after {
    content: "-";
}

.esli-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.esli-faq__answer-inner {
    padding: 0 18px 20px;
    color: var(--esli-muted);
    font-size: 15px;
    line-height: 1.6;
}
