/* ============================================================
   FAQ Section  –  [ghost_faq_section]
   ============================================================ */

.ga-faq {
    background: #f5f5f5;
    padding: 2rem 8rem 2rem 8rem;
}

/* Two-column layout: accordion left, image right */
.ga-faq__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--ga-12);
    align-items: start;
}

/* ── Heading ── */
.ga-faq__heading {
    font-family: var(--ga-font-sans);
    font-size: var(--ga-text-2xl);
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 var(--ga-10);
    line-height: 1.2;
}

/* ── List ── */
.ga-faq__list {
    margin: 0;
    padding: 0;
}

/* ── Item ── */
.ga-faq__item {
    border-top: 1px solid #d0d0d0;
}

.ga-faq__item:last-child {
    border-bottom: 1px solid #d0d0d0;
}

/* ── Toggle button ── */
.ga-faq__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--ga-4);
    width: 100%;
    padding: var(--ga-6) 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    box-shadow: none;
}

.ga-faq__toggle:hover,
.ga-faq__toggle:focus {
    background: none;
    box-shadow: none;
}

.ga-faq__question-text {
    font-family: var(--ga-font-sans);
    font-size: var(--ga-text-md);
    font-weight: 700;
    color: #1a1a1a;
    line-height: var(--ga-line);
}

/* ── Plus / Minus icon ── */
.ga-faq__icon {
    flex-shrink: 0;
    position: relative;
    width: 18px;
    height: 18px;
}

/* Horizontal bar (always visible) */
.ga-faq__icon::before,
.ga-faq__icon::after {
    content: "";
    position: absolute;
    background: #1a1a1a;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Horizontal bar */
.ga-faq__icon::before {
    top: 50%;
    left: 0;
    width: 18px;
    height: 2px;
    transform: translateY(-50%);
}

/* Vertical bar – hidden when open (–) */
.ga-faq__icon::after {
    top: 0;
    left: 50%;
    width: 2px;
    height: 18px;
    transform: translateX(-50%);
}

.ga-faq__item--open .ga-faq__icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

/* ── Answer ── */
.ga-faq__answer {
    margin: 0;
    overflow: hidden;
}

.ga-faq__answer[hidden] {
    display: none;
}

.ga-faq__answer-text {
    font-family: var(--ga-font-sans);
    font-size: var(--ga-text-md);
    color: #444444;
    line-height: 1.6;
    padding-bottom: var(--ga-6);
    margin: 0;
}

/* ── Answer list (for items with bullet content) ── */
.ga-faq__answer-list {
    margin: 0;
    padding: 0 var(--ga-6) var(--ga-6) 0;
    list-style: disc;
    font-family: var(--ga-font-sans);
    font-size: var(--ga-text-md);
    color: #444444;
    line-height: 1.6;
}

.ga-faq__answer-list li {
    margin-bottom: var(--ga-2);
    list-style: none;
}

.ga-faq__answer-list li:last-child {
    margin-bottom: 0;
}

/* ── Image panel ── */
.ga-faq__media {
    border-radius: var(--ga-radius-md);
    overflow: hidden;
    line-height: 0; /* remove inline gap */
}

.ga-faq__image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: var(--ga-radius-md);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .ga-faq__inner {
        grid-template-columns: 1fr;
    }

    .ga-faq__media {
        order: -1;
        max-width: 560px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .ga-faq {
        padding: var(--ga-10) 0;
    }

    .ga-faq__heading {
        font-size: var(--ga-text-xl);
    }
}
