.ts-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ts-faq-item {
    background: rgba(255,255,255,.78);
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 14px;
    overflow: hidden;
}

.ts-faq-item.is-highlight {
    border-color: #f0c54a;
}

.ts-faq-question {
    width: 100%;
    border: 0;
    background: transparent;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 18px 22px;

    font-size: 1.05rem;
    font-weight: 600;
}

.ts-faq-answer {
    display: none;

    padding: 0 22px 20px;
    line-height: 1.7;
    color: #555;
}

.ts-faq-item.open .ts-faq-answer {
    display: block;
}

.ts-faq-item.open .fa-chevron-down {
    transform: rotate(180deg);
}

.ts-faq-item .fa-chevron-down {
    transition: .2s;
}

.ts-faq-search-wrap {
    position: relative;
    margin-bottom: 20px;
}

.ts-faq-search-wrap i {
    position: absolute;

    left: 16px;
    top: 50%;

    transform: translateY(-50%);

    color: #888;
}

.ts-faq-search {
    width: 88%;

    padding: 16px 18px 16px 52px;

    border: 1px solid rgba(0,0,0,.06);
    border-radius: 16px;

    background: rgba(255,255,255,.75);

    font-size: 1.15rem;

    box-shadow:
        0 2px 8px rgba(0,0,0,.04);

    transition: all .2s ease;
}