/* FAQ section */

.faq-section {
    padding: clamp(52px, 7vh, 96px) 32px;
    background: var(--surface);
}

.faq-content {
    max-width: 760px;
    margin: 0 auto;
}

.faq-content .section-intro {
    text-align: center;
    margin-bottom: clamp(32px, 4vh, 48px);
}

.faq-content .section-eyebrow {
    margin-bottom: 20px;
}

.faq-content .section-title {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.faq-list {
    border-top: 1px solid var(--charcoal-10);
}

.faq-item {
    border-bottom: 1px solid var(--charcoal-10);
}

.faq-item summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 24px 0;
    font-family: var(--font-ui);
    font-size: var(--fs-body-md);
    font-weight: 600;
    color: var(--on-surface);
    cursor: pointer;
    user-select: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-chevron {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--primary);
    transition: transform var(--duration-base) var(--ease-smooth);
}

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

.faq-answer {
    padding: 0 0 24px;
}

.faq-answer p {
    font-family: var(--font-ui);
    font-size: var(--fs-body-md);
    line-height: 1.7;
    color: var(--charcoal-80);
    margin: 0;
}

@media (max-width: 960px) {
    .faq-section {
        padding: 56px 24px;
    }
}
