.faq-section {
    background: var(--surface-strong);
}

.faq-section__container {
    width: min(92%, 768px);
}

.faq-section__heading {
    margin: 0 auto 48px;
    text-align: center;
}

.faq-section__heading h2 {
    color: var(--secondary);
    font-size: clamp(2rem, 4vw, 2.5rem);
    line-height: 1.1;
}

.faq-section__list {
    display: grid;
    gap: 12px;
}

.faq-section__item {
    border-radius: 0.75rem;
    background: var(--bg);
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.faq-section__summary {
    width: 100%;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    color: var(--text);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    text-align: left;
    background: transparent;
    font-family: var(--typo-primary), sans-serif;
}

.faq-section__chevron {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--text);
    transition: transform 0.2s ease;
}

.faq-section__item.is-open .faq-section__chevron {
    transform: rotate(180deg);
}

.faq-section__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
}

.faq-section__content-inner {
    padding: 0 24px 20px;
}

.faq-section__content p {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.875rem;
    line-height: 1.7;
}

@media (max-width: 767px) {
    .faq-section__container {
        width: min(94%, 768px);
    }

    .faq-section__heading {
        margin-bottom: 40px;
    }

    .faq-section__summary {
        padding: 18px 20px;
        font-size: 0.9375rem;
    }

    .faq-section__content-inner {
        padding: 0 20px 18px;
    }
}
