.faq__list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq__item {
    display: flex;
    flex-direction: column;
    background-color: var(--grey);
    border-radius: .8rem;
    padding: 2.4rem 2.4rem 2.4rem 3.2rem;
}
.faq__item-head {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2.4rem;
}
.faq__item-question {
    font-size: 2rem;
    font-weight: 500;
    line-height: 120%;
    user-select: none;
}

.faq__item-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    transition: max-height .3s ease, opacity .3s ease, margin-top .3s ease;
}
.faq__item.opened .faq__item-answer {
    max-height: 300px;
    opacity: 1;
    margin-top: 1.6rem;
}
.faq__item-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    border-radius: .5rem;
    width: 4rem;
    height: 4rem;
    flex: 0 0 auto;
    transition: opacity .3s ease;
}
.faq__item-toggle svg {
    width: 2rem;
    height: 2rem;
    flex: 0 0 auto;
    transform: rotate(180deg);
    transition: all .3s ease;
}
.faq__item-toggle:hover {
    opacity: .8;
}
.faq__item.opened svg {
    transform: unset;
}