/* FAQ visual block */
.faq-list { margin: 0; padding: 0; list-style: none; }
.faq-item { border-bottom: 1px solid var(--border, #e6ebf5); }
.faq-item:last-child { border-bottom: 0; }
.faq-item summary {
    cursor: pointer;
    padding: 12px 0;
    font-weight: 600;
    font-size: 15px;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text, #0f172a);
    user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 20px;
    font-weight: 400;
    color: var(--primary, #1e66ff);
    flex-shrink: 0;
    margin-left: 12px;
    transition: transform .2s;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
    margin: 0 0 12px;
    color: var(--muted, #64748b);
    font-size: 14px;
    line-height: 1.6;
    max-width: 860px;
}

.banners {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;

    & > * {
        width: 344px;
    }
}
