/* -------------------------------------------------------------------------
   FAQ (template-faq.php) — simple accordion + theme filter, text only.
   ------------------------------------------------------------------------- */

.faq-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0 1.5rem;
}

.faq-filter__btn {
    border: 1px solid #e3097d;
    background: #fff;
    color: #e3097d;
    border-radius: 999px;
    padding: 0.4rem 1.1rem;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.faq-filter__btn:hover {
    background: #fde7f3;
}

.faq-filter__btn.is-active {
    background: #e3097d;
    color: #fff;
}

.faq-list {
    margin-top: 1rem;
}

.faq-item {
    border-bottom: 1px solid #e3e3e3;
}

.faq-item.hidden {
    display: none;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 0;
    background: none;
    border: 0;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
}

.faq-question:focus-visible {
    outline: 2px solid #e3097d;
    outline-offset: 2px;
}

.faq-question__icon {
    position: relative;
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
}

.faq-question__icon::before,
.faq-question__icon::after {
    content: "";
    position: absolute;
    background: #e3097d;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.faq-question__icon::before {
    top: 7px;
    left: 0;
    width: 16px;
    height: 2px;
}

.faq-question__icon::after {
    top: 0;
    left: 7px;
    width: 2px;
    height: 16px;
}

.faq-question[aria-expanded="true"] .faq-question__icon::after {
    transform: scaleY(0);
    opacity: 0;
}

.faq-answer__inner {
    padding: 0 0 1.25rem;
    color: #444;
    line-height: 1.6;
}

.faq-empty {
    margin-top: 1.5rem;
    color: #777;
}
