.faqs-items {
    margin-top: 34px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.objType-faq {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq-item {
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    border: 1px solid rgb(0 0 0 / 7%);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 14px 36px rgb(0 0 0 / 6%);
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease,
        background-color .25s ease;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item::before {
    content: "";
    position: absolute;
    inset-block: 0;
    inset-inline-start: 0;
    width: 4px;
    background: var(--uicolor);
    opacity: 0;
    transition: opacity .25s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    border-color: rgb(255 111 0 / 14%);
    box-shadow: 0 22px 48px rgb(0 0 0 / 10%);
}

.faq-item.active {
    border-color: rgb(255 111 0 / 18%);
    box-shadow: 0 24px 55px rgb(0 0 0 / 11%);
}

.faq-item.active::before {
    opacity: 1;
}

.objType-faq .faq-item {
    margin: 0;
}

.faq-head {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: start;
    padding: 22px 26px;
    color: var(--primary-text);
    gap: 16px;
    user-select: none;
}

.faq-head > .title_faq {
    display: block;
    color: var(--primary-text);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.55;
    transition: color .22s ease;
}

.faq-head > i {
    width: 42px;
    min-width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgb(255 111 0 / 8%);
    color: var(--uicolor);
    font-size: 17px;
    transition:
        transform .25s ease,
        color .25s ease,
        background-color .25s ease;
}

.faq-item:not(.active):hover .faq-head > .title_faq {
    color: var(--uicolor);
}

.faq-item:not(.active):hover .faq-head > i {
    background: var(--uicolor);
    color: #ffffff;
}

.faq-item.active .faq-head > .title_faq {
    color: var(--uicolor);
}

.faq-item.active .faq-head > i {
    background: var(--uicolor);
    color: #ffffff;
    transform: rotate(45deg);
}

.faq-body {
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
        max-height .32s ease,
        opacity .24s ease;
}

.faq-item.active .faq-body {
    max-height: 900px;
    opacity: 1;
}

.faq-val {
    position: relative;
    display: block;
    margin: 0 26px 26px;
    padding: 22px 22px;
    border: 1px solid rgb(0 0 0 / 7%);
    border-radius: 18px;
    background:
        radial-gradient(circle at 0 0, rgb(255 111 0 / 6%) 0, transparent 34%),
        linear-gradient(180deg, #fffaf2 0%, #ffffff 100%);
    color: var(--secondarytext);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.9;
    text-align: start;
}

.faq-val p:last-child {
    margin-bottom: 0;
}

.fq-sect .faqs-items {
    width: 100%;
}

@media (max-width: 992px) {
    .faqs-center {
        gap: 20px;
    }

    .-ycwt-ycwfaqs .p-content,
    .-ycwt-ycwfaqs .-dw-h1,
    .-ycwt-ycwfaqs .-dw-h4 {
        text-align: center;
    }

    .faqs-items {
        margin-top: 28px;
        gap: 14px;
    }

    .faq-head {
        padding: 20px 22px;
    }

    .faq-head > .title_faq {
        font-size: 18px;
    }

    .faq-val {
        font-size: 16px;
        margin: 0 22px 22px;
    }
}

@media (max-width: 850px) {
    .faqs-items {
        margin-top: 24px;
        gap: 12px;
    }

    .faq-item {
        border-radius: 17px;
    }

    .faq-head {
        padding: 15px 14px;
        gap: 12px;
    }

    .faq-head > .title_faq {
        font-size: 15px;
        line-height: 1.65;
    }

    .faq-head > i {
        width: 34px;
        min-width: 34px;
        height: 34px;
        border-radius: 12px;
        font-size: 14px;
    }

    .faq-val {
        margin: 0 14px 14px;
        padding: 15px 14px;
        border-radius: 14px;
        font-size: 14px;
        line-height: 1.8;
    }
}

@media (max-width: 560px) {
    .faq-item:hover {
        transform: none;
    }

    .faq-head {
        padding: 14px 12px;
    }

    .faq-head > .title_faq {
        font-size: 14px;
    }

    .faq-head > i {
        width: 32px;
        min-width: 32px;
        height: 32px;
    }

    .faq-val {
        margin: 0 12px 12px;
        font-size: 13px;
    }
}

@media (max-width: 420px) {
    .faq-head {
        align-items: flex-start;
    }

    .faq-head > i {
        margin-top: 2px;
    }

    .faq-val {
        padding: 14px 12px;
    }
}
