.faq {
    padding: 60px 0 80px;
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.faq-item {
    background: #10171b;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    overflow: hidden;
}

.faq-item__head {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    text-align: left;
    background: transparent;
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.025em;
    cursor: pointer;
    text-transform: uppercase;
    line-height: 1.4;
}

.faq-item__icon {
    width: 28px;
    height: 28px;
    flex: none;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 50%;
}

.faq-item__icon::before,
.faq-item__icon::after {
    content: "";
    position: absolute;
    background: #fff;
    transition: transform .2s ease, opacity .2s ease;
}

.faq-item__icon::before {
    top: 50%;
    left: 7px;
    right: 7px;
    height: 2px;
    transform: translateY(-50%);
}

.faq-item__icon::after {
    left: 50%;
    top: 7px;
    bottom: 7px;
    width: 2px;
    transform: translateX(-50%);
}

.faq-item.is-open .faq-item__icon::after {
    opacity: 0;
}

.faq-item__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
}

.faq-item.is-open .faq-item__body {
    max-height: 800px;
}

.faq-item__answer {
    padding: 0 24px 22px;
    color: #ebebeb;
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 640px) {
    .faq-item__head {
        padding: 14px 16px;
        font-size: 12px;
    }
    .faq-item__answer {
        padding: 0 16px 16px;
        font-size: 13px;
    }
}
