.article-faq {
    border-top: 1px solid #dce6f3;
    margin-top: 48px;
    padding-top: 30px;
}

.rich-text .article-faq > h2 {
    border: 0;
    color: #061f3f;
    font-size: 28px;
    margin: 0 0 18px;
    padding: 0;
}

.article-faq .faq-item {
    background: #fff;
    border: 1px solid #dce6f3;
    border-radius: 9px;
    box-shadow: 0 5px 18px rgba(7, 31, 65, .04);
    margin-bottom: 10px;
    overflow: hidden;
}

.article-faq .faq-item summary {
    align-items: center;
    color: #10294d;
    cursor: pointer;
    display: flex;
    font-size: 16px;
    font-weight: 780;
    gap: 16px;
    justify-content: space-between;
    list-style: none;
    padding: 17px 19px;
}

.article-faq .faq-item summary::-webkit-details-marker {
    display: none;
}

.article-faq .faq-item summary::after {
    align-items: center;
    background: #eaf3ff;
    border-radius: 50%;
    color: #0758d5;
    content: "+";
    display: inline-flex;
    flex: 0 0 30px;
    font-size: 22px;
    height: 30px;
    justify-content: center;
    line-height: 1;
    transition: transform .2s ease, background .2s ease;
    width: 30px;
}

.article-faq .faq-item[open] {
    border-color: #a9c9f4;
}

.article-faq .faq-item[open] summary::after {
    background: #0758d5;
    color: #fff;
    transform: rotate(45deg);
}

.article-faq .faq-answer {
    border-top: 1px solid #e6edf6;
    padding: 16px 19px 18px;
}

.rich-text .article-faq .faq-answer p {
    color: #425875;
    margin: 0;
    white-space: pre-line;
}

@media (max-width: 640px) {
    .article-faq {
        margin-top: 38px;
        padding-top: 24px;
    }

    .rich-text .article-faq > h2 {
        font-size: 24px;
    }

    .article-faq .faq-item summary {
        font-size: 14px;
        padding: 14px 15px;
    }

    .article-faq .faq-answer {
        padding: 14px 15px 16px;
    }
}
