/* ============================================================
   FAQ PAGE
   faq.css
   ============================================================ */

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

/* ── FAQ ITEM ───────────────────────────────────────────────── */
.faq-item { overflow: visible !important; }
.faq-item::before { display: none; }

.faq-item--open {
    border-color: rgba(0, 180, 160, 0.5);
    box-shadow: 0 0 16px rgba(0, 180, 160, 0.1);
}

/* ── QUESTION BUTTON ────────────────────────────────────────── */
.faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: none;
    border: none;
    color: var(--text);
    font-family: 'Roboto', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-align: left;
    cursor: pointer;
    transition: color 0.2s;
}

.faq-item__question:hover         { color: var(--teal); }
.faq-item--open .faq-item__question { color: var(--teal); }

/* ── CATEGORY BADGE ─────────────────────────────────────────── */
.faq-item__cat-badge {
    font-size: 0.62rem;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #000;
    background: var(--teal);
    padding: 2px 7px;
    border-radius: 2px;
    flex-shrink: 0;
}

/* ── ARROW ──────────────────────────────────────────────────── */
.faq-item__arrow {
    margin-left: auto;
    color: var(--teal-dim);
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* ── ANSWER ─────────────────────────────────────────────────── */
.faq-item__answer {
    padding: 12px 16px 16px;
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.7;
    border-top: 1px solid rgba(0, 180, 160, 0.1);
}

/* ── EMPTY STATE ────────────────────────────────────────────── */
.faq-empty {
    padding: 24px;
    text-align: center;
    color: var(--text-dim);
}

.faq-empty strong { color: var(--teal); }

/* ── SEARCH ─────────────────────────────────────────────────── */
.faq-search {
    max-width: 480px;
    margin-bottom: 24px;
}
