/* FAQ accordion styles for .sc_fs_faq blocks */
.cb-faq {
    border: 1px solid #e3e6ea;
    border-radius: 6px;
    margin: 0 0 12px;
    background: #fff;
    overflow: hidden;
    padding: 0;
}

.cb-faq__question {
    position: relative;
    margin: 0 !important;
    padding: 16px 48px 16px 18px;
    cursor: pointer;
    user-select: none;
    font-size: 1.05em;
    line-height: 1.35;
    transition: background-color 0.15s ease;
}

.cb-faq__question:hover,
.cb-faq__question:focus {
    background-color: #f6f8fa;
    outline: none;
}

.cb-faq__question::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-75%) rotate(45deg);
    transition: transform 0.2s ease;
    opacity: 0.6;
}

.cb-faq.is-open .cb-faq__question::after {
    transform: translateY(-25%) rotate(-135deg);
}

.cb-faq__answer {
    display: none;
    padding: 14px 18px;
}

.cb-faq.is-open .cb-faq__answer {
    display: block;
}

.cb-faq__answer p {
    margin: 0;
}