.faq-section {
    padding: 120px 24px;
    background: #fff;
    color: #1d1111;
}

.faq-section__inner {
    max-width: 1480px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.2fr;
    gap: 120px;
}

.faq-section__title {
    margin: 0 0 42px;
    font-family: "refrigerator-deluxe", sans-serif;
    font-size: clamp(52px, 5vw, 82px);
    line-height: 0.95;
    text-transform: uppercase;
    font-weight: 900;
}

.faq-section__text {
    max-width: 640px;
    color: #3d3838;
}

.faq-section__text p {
    margin: 0;
}

.faq-section__items {
    display: grid;
    gap: 26px;
}

.faq-section__question {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 0;
    display: flex;
    justify-content: space-between;
    gap: 32px;
    align-items: center;
    cursor: pointer;
    color: #1d1111;

    font-family: "refrigerator-deluxe", sans-serif;
    font-size: 28px;
    line-height: 1;
    text-align: left;
    text-transform: uppercase;
    font-weight: 900;
}

.faq-section__icon {
    font-size: 28px;
    line-height: 1;
    font-weight: 900;
}

.faq-section__question.is-open .faq-section__icon {
    transform: rotate(45deg);
}

.faq-section__answer {
    padding: 18px 48px 8px 0;
    color: #3d3838;
}

.faq-section__answer p {
    margin: 0 0 12px;
}

@media (max-width: 900px) {
    .faq-section__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .faq-section__question {
        font-size: 16px;
    }

}