/* FAQ accordion — uses InternPortal design tokens */
.faq-section { margin-top: 48px; padding: 0 40px 48px; max-width: 800px; margin-left: auto; margin-right: auto; width: 100%; box-sizing: border-box; }
.faq-section .page-title { margin-bottom: 8px; }
.faq-section .page-sub { color: var(--muted); margin-bottom: 24px; }
.faq-accordion { border: 1px solid var(--border); border-radius: 12px; background: var(--white); overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
    list-style: none;
    cursor: pointer;
    padding: 16px 18px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
    content: "+";
    float: right;
    color: var(--muted);
    font-weight: 500;
}
.faq-item[open] .faq-question::after { content: "–"; }
.faq-answer {
    padding: 0 18px 16px;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.65;
}
.faq-search-wrap { margin-bottom: 20px; }
.faq-category { margin: 28px 0 12px; }
.faq-category:first-child { margin-top: 0; }
.faq-landing-note { margin-top: 16px; font-size: 0.875rem; color: var(--muted); }
@media (max-width: 720px) {
    .faq-section { padding: 0 20px 40px; }
}
