.faq__items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq__item {
    display: flex;
    flex-direction: column;
    padding: 24px;
    background: #000;
    color: white;
    transition: grid-template-rows 0.5s cubic-bezier(0.18, 0.89, 0.32, 1.28), gap 0.4s ease;
    cursor: pointer;
    gap: 0;
}

.faq__item.is-active {
    gap: 30px;
}


.faq__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'DIN 2014', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 115%;
    letter-spacing: -0.04em;
    gap: 20px;
    cursor: pointer;
}


.faq__bottom {
    display: flex;
    height: 0;
    overflow: hidden;
    gap: 32px;
    width: 100%;
    opacity: 0;
    transition: opacity 0.2s ease;
    font-family: 'DIN 2014', sans-serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: -0.019em;
}

.is-active .faq__bottom {
    opacity: 1;
    display: block;
    height: 100%;
    transition: opacity 0.9s ease 0.2s;
}

.faq__top svg {
    transition: transform 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    transform-origin: center;
}

.faq__item.is-active .faq__top svg {
    transform: rotate(180deg);
}

@media (max-width: 700px) {

    .faq__items {
        gap: 16px;
    }

    .faq__item {
        padding: 16px;
    }

    .faq__item.is-active {
        gap: 16px;
    }
    .faq__top {
        align-items: flex-start;
        font-size: 18px;
        line-height: 114%;
        letter-spacing: 0;
    }

    .faq__bottom {
        font-size: 16px;
        letter-spacing: 0;

    }

    .faq__item svg{
        width: 20px;
    }

}
