/* Simple template — admin FAQs (boxed accordion, multi-open). */

.fxt-page-faq {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

.fxt-page-faq__title {
    margin: 0 0 1.25rem;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
    color: #333333;
}

.fxt-page-faq__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.fxt-page-faq__list .is-open .fxt-page-faq__trigger {
    background: #e8f4fc;
}
.fxt-page-faq__item {
    border: 1px solid #e0e0e0;
    border-radius: 2px;
    background: #ffffff;
}

.fxt-page-faq__trigger {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.125rem;
    margin: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    text-align: left;
    font: inherit;
}

.fxt-page-faq__trigger:hover .fxt-page-faq__question {
    text-decoration: underline;
}

.fxt-page-faq__question {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #0056b3;
    line-height: 1.45;
}

.fxt-page-faq__chevron {
    flex-shrink: 0;
    display: block;
    width: 10px;
    height: 10px;
    margin-top: 2px;
    border-right: 2px solid #333333;
    border-bottom: 2px solid #333333;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
}

.fxt-page-faq__item.is-open .fxt-page-faq__chevron {
    margin-top: 6px;
    transform: rotate(-135deg);
}

.fxt-page-faq__panel {
    border-top: 1px solid #e0e0e0;
}

.fxt-page-faq__panel[hidden] {
    display: none !important;
}

.fxt-page-faq__answer {
    padding: 1rem 1.125rem 1.125rem;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.6;
    color: #333333;
}

.fxt-page-faq__answer p {
    margin: 0 0 0.75rem;
}

.fxt-page-faq__answer p:last-child {
    margin-bottom: 0;
}

.fxt-page-faq__answer a {
    color: #0056b3;
    text-decoration: underline;
}

.fxt-page-faq__answer a:hover {
    color: #004494;
}
