.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 32px;
}

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

.faq-item {
    padding: 22px 0;
    border-top: 1px solid var(--line);
    cursor: pointer;
}

.faq-item h4 {
    margin: 0 0 0;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.faq-item h4 .faq-icon {
    flex-shrink: 0;
    color: var(--ink-mute);
    transition: transform .2s ease;
}

.faq-item.open h4 .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.faq-item.open .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    margin: 8px 0 0;
    color: var(--ink-mute);
    font-size: 14.5px;
}
