/* ── FAQ Block ────────────────────────────────────────────────────── */

.faq-block {
    position: relative;
}

/* ── Grid ─────────────────────────────────────────────────────────── */

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    align-items: start;
}

/* ── Column ───────────────────────────────────────────────────────── */

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ── Item ─────────────────────────────────────────────────────────── */

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    overflow: hidden;
    transition: background 0.25s ease;
}

/* ── Button / Question Row ────────────────────────────────────────── */

.faq-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 18px 20px;
    text-align: left;
}

/* ── Question Text ────────────────────────────────────────────────── */

.faq-question {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
    flex: 1;
}

/* ── Toggle Icon ──────────────────────────────────────────────────── */

.faq-icon {
    font-size: 14px;
    color: #c41e2a;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item--open .faq-icon {
    transform: rotate(45deg);
}

/* ── Answer Content (accordion) ───────────────────────────────────── */

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 20px;
}

.faq-item--open .faq-content {
    max-height: 800px;
    padding-bottom: 18px;
}

/* ── Answer Text ──────────────────────────────────────────────────── */

.faq-answer {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.70);
    line-height: 1.65;
    margin: 0;
}

/* ── Mobile ───────────────────────────────────────────────────────── */

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}
