
.section--text-image {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.section--text-image:not(:first-child) {
    margin-top: 96px;
}

.section--text-image:last-child {
    margin-bottom: 100px;
}

.section--text-image[data-position="left"] {
    flex-direction: row-reverse;
}

.section--text-image .section__column {
    width: calc(50% - 25px);
}

.section--text-image .section__title {
    color: var(--color-secondary);
    text-align: left;
    font-size: clamp(20px, 2.7vw, 28px);
    line-height: 1.5;

    margin: 0 0 24px 0;
}

.section--text-image p {
    font-size: 18px;
    line-height: 1.5;
}

.section--text-image p:not(:last-child) {
    margin: 0 0 8px 0;
}
.section--text-image p strong:first-child{
    font-style: italic;
}
.section--text-image  .block__image {
    width: 100%;
    height: 100%;
    border-radius: 0 40px 0 0;
    overflow: hidden;
}

.section--text-image  .block__image img{
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


@media all and (max-width: 1080px){
    .section--text-image,
    .section--text-image[data-position="left"] {
        flex-direction: column;
    }
    .section--text-image .section__column {
        width: 100%;
    }
    .section--text-image  .block__image {
        height: 450px;
        margin: 32px 0 0 0;
    }
}
