.faqs-content {
    display: flex;
    align-items: flex-start;
    margin: 0 auto;
    width: var(--container-width-md);
    max-width: calc(100% - 30px);
}

.block-faq-left-column {
    flex: 1 1 auto;
    min-width: 0;
}

.block-faq-right-column {
    flex: 0 0 34%;
    padding-left: 30px;
}

/* SECTION TITLES */
.faq-topic-section,
.faq-block {
    margin-bottom: 42px;
}

.faq-topic-title,
.faq-block-title,
.faq-help-title {
    line-height: 1.2;
    color: #1f1f1f;
    position: relative;
    margin: 0 0 35px;
    font-size: 32px;
    font-weight: 500;
}

.faq-topic-title::after,
.faq-block-title::after,
.faq-help-title::after {
    content: "";
    display: block;
    height: 3px;
    margin-top: 14px;
    width: 80px;
    background: #bd0a1f;
}

.faq-topic-title a {
    color: inherit;
    text-decoration: none;
}

/* FAQ ITEMS */
.faq-topic-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.faq-topic-item {
    background: #f6f6f6;
    margin-bottom: 3px;
}

.faq-topic-item:first-child {
    border-left-color: #d71920;
}

.faq-question {
    margin: 0;
    padding: 14px 30px 14px 20px;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.35;
    position: relative;
    cursor: pointer;
    user-select: none;
    border-left: 3px solid #f0f0f0;
}

.faq-question.active {
    border-color: #bd0a1f;
}

.faq-answer {
    font-size: 16px;
    padding: 24px;
    background: #ffffff;
    border-left: 3px solid #f0f0f0;
    font-weight: 500;
    line-height: 1.7;
    color: #2b2b2b;
    transition: all .3s;
}

.faq-answer:not(.active) {
    display: none;
}

@starting-style {
    .faq-answer.active {
        opacity: 0;
        margin-top: -15px;
    }
}

/* simple arrow style */
.faq-question::after {
    content: "";
    position: absolute;
    transition: transform .5s;
    top: 50%;
    right: 18px;
    width: 8px;
    height: 8px;
    border-right: 2px solid #c5c5c5;
    border-bottom: 2px solid #c5c5c5;
    transform: translateY(-60%) rotate(45deg);
}

.faq-question.active::after {
    transform: translateY(-35%) rotate(-135deg);
    border-color: #bd0a1f;
}

/* SIDEBAR LISTS */
.block-faq-right-column .categories {
    list-style: none;
    margin: 0;
    padding: 0;
}

.block-faq-right-column .categories li {
    margin: 0;
    padding: 0;
    border-top: 1px solid #cfcfcf;
}

.block-faq-right-column .categories li:last-child {
    border-bottom: 1px solid #cfcfcf;
}

.faqs-category-name {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 16px;
    line-height: 1.4;
    padding: 12px 10px;
    font-weight: 500;
    color: #bd0a1f !important;
    transition: opacity 0.2s ease;
}

.faqs-category-name:hover {
    opacity: 0.8;
}

.faqs-category-name .badge {
    min-width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #f0f0f0;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 1px;
}

/* FEATURED FAQ LINKS */
.faq-block.featured li {
    border: 0 !important;
}

.faq-block.featured .faqs-category-name {
    font-weight: 600;
    background: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='7' height='11' fill='none' viewBox='0 0 7 11'%3e%3cpath fill='%23bd0a1f' d='m6.873 5.807-5.016 5.065a.425.425 0 0 1-.608 0L.127 9.739a.436.436 0 0 1 0-.614L3.717 5.5.126 1.875a.436.436 0 0 1 0-.614L1.249.128c.169-.17.44-.17.608 0l5.016 5.065a.436.436 0 0 1 0 .614Z'/%3e%3c/svg%3e ") no-repeat left top 18px;
    padding-left: 17px;
}

/* HELP BLOCK */
.faq-help-block {
    padding: 24px 30px;
    max-width: 418px;
    margin: 18px auto 0;
    color: #fff;
    background-color: #bd0a1f;
    background-image: url('/themes/extrasynthese/assets/img/faq-help-bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

.faq-help-title {
    color: #fff;
    font-size: 28px;
    margin-bottom: 18px;
}

.faq-help-title::after {
    display: none;
}

.faq-help-text {
    margin: 0 0 18px;
    max-width: 215px;
    font-size: 16px;
    line-height: 1.55;
    font-weight: 400;
    color: #fff;
}

.faq-help-btn {
    width: 100%;
    border: 2px solid #fff !important;
}

.topic-title {
    font-weight: 700;
    font-size: 35px;
    margin-bottom: 42px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .faqs-content {
        flex-direction: column;
    }

    .block-faq-right-column {
        width: 100%;
        flex: 1 1 auto;
        padding-left: 0;
    }

    .faq-topic-title,
    .faq-block-title,
    .faq-help-title {
        margin-bottom: 18px;
        font-size: 28px;
        font-weight: 600;
    }

    .faq-answer {
        padding: 15px;
    }

    .topic-title {
        margin-bottom: 18px;
        font-size: 30px;
    }
}