.txt-img-simple {
    display: flex;
    gap: 32px;
}

.txt-img-simple.invert {
    flex-direction: row-reverse;
}

.txt-img-simple__image {
    width: 30%;
    height: fit-content;
    font-size: 0;
    line-height: 0;
}

.txt-img-simple__image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    border-radius: 16px;
    object-fit: contain;
}

.txt-img-simple__texte {
    width: 70%;
    line-height: 160%;
}

@media (max-width: 639px) {
    .txt-img-simple,
    .txt-img-simple.invert {
        flex-direction: column;
    }

    .txt-img-simple__image {
        width: 100%;
    }

    .txt-img-simple__texte {
        width: 100%;
    }
}