.text-with-image {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    flex-direction: column;
}




.text-with-image__text {
    max-width: 660px;
}
.text-with-image__image {
    margin: 0;
    min-width: 280px;
    max-width: 540px;
}
.text-with-image__image img {
    max-width: 100%;
    display: block;
    border-radius: 15px;
}

@media(min-width: 991px) {
    .text-with-image {
        flex-direction: row-reverse;
    }
    .text-with-image--right {
        flex-direction: row;
    }
}
