.wrs-faq { padding-block: clamp(48px, 7vw, 88px); }

.wrs-faq-title { margin-bottom: 40px; }

.wrs-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.wrs-faq-col { display: flex; flex-direction: column; gap: 12px; }

.wrs-faq-item {
    background: var(--wrs-surface-2);
    border-radius: var(--wrs-radius-lg);
    overflow: hidden;
    transition: background .2s;
}

.wrs-faq-item[open] { background: var(--wrs-surface-3); }

.wrs-faq-q {
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: var(--wrs-surface-2);
    color: #fff;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.4;
}

.wrs-faq-q::-webkit-details-marker { display: none; }

.wrs-faq-icon {
    width: 16px; height: 16px; flex: none;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'><path d='M4 6l4 4 4-4' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center / contain;
            mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'><path d='M4 6l4 4 4-4' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center / contain;
    transition: transform .2s;
}

.wrs-faq-item[open] .wrs-faq-icon { transform: rotate(180deg); }

.wrs-faq-a {
    padding: 4px 20px 18px 20px;
    font-family: 'Syne', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.6;
    color: var(--wrs-text-muted);
}

@media (max-width: 800px) {
    .wrs-faq-grid { grid-template-columns: 1fr; }
}
