.text-image {
    /* padding: 20px 0; */
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.text-image .content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 48px;
}

.text-image .image-wrapper,
.text-image .text-wrapper {
    width: calc(50% - 24px);
    flex: 1 auto;
}

.text-image .image-wrapper img {
    width: 100%;
    height: auto;
}

.text-image .block-title.title-inner {
    margin-left: 0;
}

.text-image .text-content,
.text-image .text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.text-image .text-wrapper h3 {
    font-size: 24px;
}

.text-image .text-wrapper ul {
    margin: 0;
    padding-left: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: var(--content);
}

@media (min-width:992px) {
    .text-image.block-reverse .content-wrapper {
        flex-direction: row-reverse;
    }
}

@media (max-width:991px) {

    .text-image .image-wrapper,
    .text-image .text-wrapper {
        width: 100%;
    }

    .text-image .text-content {
        gap: 16px;
    }


    .text-image .text-wrapper ul {
        gap: 12px;
    }
}