/* FAQ Page – Accordion-Optik (statisch, professionell) */
/* VERBOTEN: Keine zentralen base- Klassen in dieser Datei überschreiben (Regel 011-ui-css-overrides.mdc). */
/* Base-Klassen → ausschließlich in theme1/base/ definiert. */

.screen-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 1.5rem;
}

.screen-faq-item {
    border: 1px solid var(--color-border-subtle, rgba(255, 255, 255, 0.12));
    border-bottom: none;
    padding: 1.25rem 1.5rem;
    background: var(--color-surface-elevated, rgba(255, 255, 255, 0.02));
}

.screen-faq-item:first-child {
    border-radius: 6px 6px 0 0;
}

.screen-faq-item:last-child {
    border-bottom: 1px solid var(--color-border-subtle, rgba(255, 255, 255, 0.12));
    border-radius: 0 0 6px 6px;
}

.screen-faq-item:only-child {
    border-radius: 6px;
    border-bottom: 1px solid var(--color-border-subtle, rgba(255, 255, 255, 0.12));
}

.screen-faq-answer {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--color-border-subtle, rgba(255, 255, 255, 0.08));
}

.screen-faq-answer .base-content-text {
    margin: 0;
}

@media (min-width: 768px) {
    .screen-faq-item {
        padding: 1.5rem 2rem;
    }
}
