.cr-faqs {
    display: grid;
    gap: 1rem;
}

.cr-faq-item {
    border: 1px solid #d7dce5;
    border-radius: 1rem;
    background: #fff;
    overflow: clip;
}

.cr-faq-question {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    padding: 1.125rem 1.25rem;
    cursor: pointer;
    font-weight: 600;
    color: #14213d;
}

.cr-faq-question::-webkit-details-marker {
    display: none;
}

.cr-faq-answer {
    padding: 0 1.25rem 1.25rem;
    color: #4c5870;
    overflow: hidden;
}

.cr-faq-answer > :first-child {
    margin-top: 0;
}

.cr-faq-answer > :last-child {
    margin-bottom: 0;
}

.cr-faq-icon {
    flex: 0 0 auto;
    font-size: 1.5rem;
    line-height: 1;
    transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.cr-faq-item[open] .cr-faq-icon {
    transform: rotate(45deg);
}

.cr-faq-empty {
    margin: 0;
    color: #697586;
}
