.xq-faq-card {
    
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 4px 14px rgba(28, 39, 60, .05);
    padding: 20px 22px;
}
.xq-faq-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}
.xq-faq-card__title {
    margin: 0;
    color: #17233d;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
}
.xq-faq-card__list {
    display: grid;
    gap: 10px;
}
.xq-faq-card__item {
    border: 1px solid #eef1f5;
    border-radius: 8px;
    background: #fbfcfe;
    overflow: hidden;
}
.xq-faq-card__question {
    cursor: pointer;
    list-style: none;
    padding: 13px 15px;
    color: #17233d;
    font-weight: 600;
    line-height: 1.5;
    position: relative;
}
.xq-faq-card__question::-webkit-details-marker {
    display: none;
}
.xq-faq-card__question::after {
    content: '+';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #8795a1;
    font-weight: 700;
}
.xq-faq-card__item[open] .xq-faq-card__question::after {
    content: '−';
}
.xq-faq-card__answer {
    padding: 0 15px 14px;
    color: #536171;
    line-height: 1.75;
    white-space: pre-line;
}
@media (max-width: 767.98px) {
    .xq-faq-card {
        padding: 16px 14px;
        border-radius: 8px;
    }
    .xq-faq-card__title {
        font-size: 16px;
    }
    .xq-faq-card__question {
        padding-right: 34px;
    }
}
