Display text before image -> Multirows on phone

Hello, I want to display the text of a row inside a multi-row above the image on phone. Currently, it only displays under the images and there is no setting to change that. I want both the title and text above the image of the row.

Use css order property

@media(max-width:767px){

.image-with-text__text-item {
order: -1;
}
}