.t1-faq {
    margin: 2em 0
}

.t1-faq__title {
    margin-bottom: 1em
}

.t1-faq__list {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.t1-faq__item {
    border-radius: 8px;
    overflow: hidden;
    background: #1e293b
}

.t1-faq__question {
    padding: 12px 40px 12px 16px;
    margin: 0;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    list-style: none;
    position: relative;
    color: #f8fafc;
    line-height: 24px;
    font-size: 16px;
    font-weight: 400
}

.t1-faq__question:focus {
    outline: none
}

.t1-faq__question:after {
    content: "+";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    color: #e5e7eb;
    transition: transform .2s
}

.t1-faq__item.is-open .t1-faq__question:after {
    content: "−"
}

.t1-faq__answer {
    margin: 0;
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease,padding .25s ease;
    font-size: 16px;
    line-height: 1.4
}

.t1-faq__item.is-open .t1-faq__answer {
    padding: 15px;
    max-height: 600px
}