.td-faq {
    margin: 48px 0 56px;
    padding-top: 24px;
    border-top: .0325rem solid var(--bg-border);
}

.td-faq__title {
    margin: 0 0 22px;
    padding: 0;
    font-size: clamp(28px, 3.2vw, 40px);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -.02em;
    color: var(--text-primary);
}

.td-faq__item {
   /* border-bottom: .0325rem solid var(--bg-border);*/
}

.td-faq__question {
    position: relative;
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 20px 42px 20px 0;
    cursor: pointer;
    list-style: none;
    line-height: 1.28;
    letter-spacing: -.015em;
    color: var(--text-primary);
    transition: opacity .18s ease;
}

.td-faq__question:hover {
    opacity: .72;
}

.td-faq__question::-webkit-details-marker {
    display: none;
}

.td-faq__question::before,
.td-faq__question::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 15px;
    height: 1.5px;
    background: currentColor;
    opacity: .55;
    transform: translateY(-50%);
    transition: opacity .18s ease, transform .18s ease;
}

.td-faq__question::after {
    transform: translateY(-50%) rotate(90deg);
}

.td-faq__item[open] .td-faq__question::after {
    transform: translateY(-50%) rotate(0deg);
}

.td-faq__item[open] .td-faq__question::before,
.td-faq__item[open] .td-faq__question::after,
.td-faq__question:hover::before,
.td-faq__question:hover::after {
    opacity: .9;
}

.td-faq__answer {
    max-width: 860px;
    padding: 0 42px 22px 0;
    font-size: clamp(18px, 1.55vw, 22px);
    font-weight: 400;
    line-height: 1.65;
    color: var(--text-secondary);
}

.td-faq__answer p {
    margin: 0 0 1em;
}

.td-faq__answer p:last-child {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .td-faq {
        margin: 36px 0 44px;
        padding-top: 20px;
    }

    .td-faq__title {
        margin-bottom: 14px;
        font-size: 28px;
    }

    .td-faq__question {
        padding: 17px 34px 17px 0;
        line-height: 1.3;
    }

    .td-faq__answer {
        padding: 0 34px 18px 0;
        font-size: 18px;
        line-height: 1.6;
    }

    .td-faq__question::before,
    .td-faq__question::after {
        width: 13px;
    }
}