.text-image-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.text-image-block.reverse {
    flex-direction: row-reverse;
}

.text-block {
    max-width: 35.5%;
}

.image-block {
    max-width: 57.4%;
}

.text-block__title {
    margin-bottom: 24px;
    margin-top: 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
    color: var(--se-heading-color);
}

.text-block__text {
    font-size: 16px;
    line-height: 24px;
    color: var(--se-text-color);
}

.check-top-pages, .in-depth-analysis {
    background-color: var(--se-main-color-grey);
}

.in-depth-analysis__title.h2 {
    margin-bottom: 86px;
}

@media screen and (max-width: 991px) {
    .in-depth-analysis__title.h2 {
        margin-bottom: 74px;
    }

    .text-image-block {
        flex-direction: column;
    }

    .text-block {
        max-width: none;
        margin-bottom: 32px;
    }

    .text-block__title {
        margin-bottom: 20px;
        font-size: 18px;
        line-height: 24px;
    }

    .image-block {
        max-width: none;
    }
}

@media screen and (max-width: 767px) {
    .in-depth-analysis__title.h2 {
        margin-bottom: 24px;
    }
}