.seo-text-block {
    padding-top: 120px;
}

.seo-text-block__title {
    margin-bottom: 60px;
    color: var(--se-heading-color);
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    line-height: 42px;
    letter-spacing: -0.32px;
}

.seo-text-block__group-wrapper {
    background: linear-gradient(to right, var(--se-main-color-grey) 50%, #fff 50%);
    border-top: 1px solid var(--se-stroke-color);
}

.seo-text-block__group-wrapper:last-child {
    border-bottom: 1px solid var(--se-stroke-color);
}

.seo-text-block__group {
    position: relative;
    display: flex;
    max-width: 1140px;
    margin: 0 auto;
}

.seo-text-block__group-title-wrapper {
    padding: 48px 48px 48px 0;
    border-right: 1px solid var(--se-stroke-color);
}

.seo-text-block__group-title {
    width: 339px;
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    color: var(--se-heading-color);
    text-align: start;
    padding: 0;
}

.seo-text-block__group-content {
    padding: 48px 0 48px 72px;
    background-color: #fff;
}

.seo-text-block__group-content-title {
    margin-bottom: 32px;
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
    color: var(--se-heading-color);
}

.seo-text-block__group-content-button-block {
    display: none;
}

.editor p:not(:last-child), .editor ul:not(:last-child) {
    margin-bottom: 32px;
}

.editor p {
    color: var(--se-text-color);
}

.editor strong {
    font-weight: 600;
}

.editor strong {
    font-size: 18px;
}

.editor * {
    font-size: 16px;
}

.editor li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 16px;
}

.editor ul li:before {
    position: absolute;
    top: 7px;
    left: 0;
    width: 5px;
    height: 5px;
    content: '';
    background-color: var(--se-accent-blue);
    border-radius: 50%;
}

.editor ol {
    padding-left: 21px;
    margin: 0;
}

.editor ol > li {
    padding-left: 3px;
}

@media screen and (max-width: 1170px) {
    .seo-text-block {
        padding: 80px 20px;
    }

    .seo-text-block__title {
        margin-bottom: 80px;
    }

    .seo-text-block__group-wrapper {
        padding: 32px;
        margin-bottom: 12px;
        background: var(--se-main-color-grey);
        border: 1px solid var(--se-stroke-color);
        border-radius: 10px;
    }

    .seo-text-block__group-title-wrapper {
        padding: 0;
        margin-bottom: 24px;
        border: none;
    }

    .seo-text-block__group-title {
        width: auto;
        font-size: 22px;
        line-height: 28px;
    }

    .seo-text-block__group {
        flex-direction: column;
    }

    .seo-text-block__group-content {
        padding: 0;
        background-color: var(--se-main-color-grey);
    }

    .seo-text-block__group-content-title {
        font-size: 18px;
        line-height: 24px;
    }

    .seo-text-block__group-content-text p,
    .seo-text-block__group-content-text li {
        font-size: 16px;
        line-height: 24px;
    }
}

@media screen and (max-width: 991px) {
    .seo-text-block__group-wrapper:last-child {
        margin-bottom: 0;
    }

    .seo-text-block__title {
        font-size: 28px;
        line-height: 36px;
    }
}

@media screen and (max-width: 767px) {
    .seo-text-block {
        padding: 28px 0 0;
        background: var(--se-main-color-grey);
    }

    .seo-text-block__title {
        margin-bottom: 28px;
        padding: 0 20px;
        text-align: start;
    }

    .seo-text-block__group-wrapper {
        position: relative;
        padding: 20px;
        margin-bottom: 0;
        border-bottom: 1px solid var(--se-stroke-color);
        border-radius: 0;
        scroll-margin-top: 20px;
    }

    .seo-text-block__group-wrapper.limit-height {
        height: 320px;
        overflow: hidden;
    }

    .seo-text-block__group {
        transition: 1s;
    }

    .seo-text-block__group-wrapper.active .seo-text-block__group {
        height: auto;
    }

    .seo-text-block__group-title {
        font-size: 20px;
    }

    .seo-text-block__group-content-title {
        margin-bottom: 24px;
    }

    .seo-text-block__group-content-button-block {
        display: block;
        background: linear-gradient(180deg, rgba(243, 244, 248, 0) 0%, #f3f4f8 33.32%);
    }

    .seo-text-block__group-content-button-block.hidden {
        display: none;
    }

    .seo-text-block__group-content-button-block {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 112px;
        padding: 54px 20px 20px;
    }

    .seo-text-block__group-wrapper.active .seo-text-block__group-content-button-block {
        position: static;
        width: auto;
        height: 60px;
        padding: 20px 0 0;
        background-image: none;
    }

    .seo-text-block__group-content-button-block .button__show-more,
    .seo-text-block__group-content-button-block .button__show-less {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        height: 40px;
        padding: 8px 20px;
        margin: 0 auto;
        font-size: 16px;
        line-height: 22px;
        color: var(--se-accent-blue);
        text-align: start;
        background: #fff;
        border: 1px solid var(--se-stroke-color);
        border-radius: 5px;
    }

    .seo-text-block__group-content-button-block.active .button__show-less {
        display: flex;
    }

    .seo-text-block__group-content-button-block.active .button__show-more,
    .seo-text-block__group-content-button-block .button__show-less {
        display: none;
    }

    .seo-text-block__group-content-button-block img {
        margin-left: 6px;
    }

    .seo-text-block__group-content-text p,
    .seo-text-block__group-content-text li {
        font-size: 16px;
    }
}