/* Site FAQ accordion — brand-aligned */
.site-faq-wrap .site-faq {
    margin-top: 8px;
    margin-bottom: 8px;
}

.site-faq {
    --faq-heading: #0A3D62;
    --faq-accent: #1a7bb8;
    --faq-muted: #5a738a;
    --faq-border: rgba(10, 61, 98, 0.12);
    --faq-surface: #ffffff;
    --faq-surface-open: #f5f9fc;
    --faq-icon-bg: rgba(26, 123, 184, 0.1);
    margin: 36px 0 8px;
}

.site-faq__header {
    margin-bottom: 18px;
}

.site-faq__kicker {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--faq-accent);
    margin: 0 0 8px;
}

.site-faq__heading {
    font-size: clamp(1.45rem, 2.6vw, 1.85rem);
    font-weight: 700;
    color: var(--faq-heading);
    margin: 0;
    line-height: 1.25;
}

.site-faq__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-faq__item {
    border: 1px solid var(--faq-border);
    border-radius: 10px;
    background: var(--faq-surface);
    box-shadow: 0 6px 18px rgba(10, 61, 98, 0.04);
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.site-faq__item[open] {
    background: var(--faq-surface-open);
    border-color: rgba(26, 123, 184, 0.28);
    box-shadow: 0 10px 24px rgba(10, 61, 98, 0.08);
}

.site-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    cursor: pointer;
    list-style: none;
    padding: 16px 18px;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--faq-heading);
    user-select: none;
}

.site-faq__question::-webkit-details-marker,
.site-faq__question::marker {
    display: none;
    content: '';
}

.site-faq__question-text {
    flex: 1;
    min-width: 0;
}

.site-faq__icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--faq-icon-bg);
    position: relative;
}

.site-faq__icon::before,
.site-faq__icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--faq-accent);
    border-radius: 1px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-faq__icon::before {
    width: 12px;
    height: 2px;
    transform: translate(-50%, -50%);
}

.site-faq__icon::after {
    width: 2px;
    height: 12px;
    transform: translate(-50%, -50%);
}

.site-faq__item[open] .site-faq__icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) scaleY(0);
}

.site-faq__item[open] .site-faq__question {
    color: var(--faq-accent);
}

.site-faq__answer {
    padding: 0 18px 16px;
}

.site-faq__answer p {
    margin: 0;
    color: var(--faq-muted);
    font-size: 0.98rem;
    line-height: 1.7;
}

.site-faq__answer p + p {
    margin-top: 10px;
}

/* Only one open panel at a time via lightweight JS (optional enhancement in layout) */
.site-faq__item + .site-faq__item {
    margin-top: 0;
}

@media (max-width: 575.98px) {
    .site-faq {
        margin: 28px 0 4px;
    }

    .site-faq__question {
        padding: 14px 14px;
        font-size: 0.95rem;
    }

    .site-faq__answer {
        padding: 0 14px 14px;
    }
}
