.e26-faq-wrapper {
    display: flex;
    gap: 137px;
    max-width: 1280px;
    margin: 140px auto 0;
    padding: 0 20px;
    box-sizing: content-box;
}

.e26-faq-categories {
    position: sticky;
    top: 140px;
    width: 300px;
    height: fit-content;
    flex-shrink: 0;
}

.e26-faq-title {
    font-size: 72px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--blue);
    margin-bottom: 24px;
}

.faqs.online .e26-faq-categories {
    display: none;
}

.faq-category-item {
    width: fit-content;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    cursor: pointer;
}

.faq-category-item + .faq-category-item {
    margin-top: 22px;
}

.faq-category-item:hover,
.faq-category-item.active {
    color: var(--blue);
}

.faq-category-title {
    font-size: 42px;
    font-weight: 400;
    line-height: 1.3;
    text-align: left;
    margin-top: 76px;
}

.faq-title-container:first-child .faq-category-title {
    margin-top: 25px;
}

.faq-item {
    background-color: #E7ECFF;
}

.faq-item-arrow {
    background: transparent;
}

@media (max-width: 1439px) {
    .e26-faq-wrapper {
        gap: 86px;
        padding: 0 85px;
    }

    .e26-faq-categories {
        width: 200px;
    }
}

@media (max-width: 1279px) {
    .e26-faq-wrapper {
        gap: 41px;
        margin: 123px auto 0;
        padding: 0 47px;
    }

    .e26-faq-categories {
        top: 123px;
    }
}

@media (max-width: 1023px) {
    .e26-faq-wrapper {
        flex-direction: column;
        gap: 0;
        padding: 0 42px;
    }

    .e26-faq-categories {
        position: static;
        width: 100%;
    }

    .faq-category-title {
        font-size: 32px;
        margin-top: 74px;
    }

    .faq-title-container:first-child .faq-category-title {
        margin-top: 56px;
    }
}

@media (max-width: 767px) {
    .e26-faq-wrapper {
        margin: 102px auto 0;
        padding: 0 24px;
    }

    .e26-faq-title {
        font-size: 52px;
    }
}