How to get the image below the text in an "Image with Text" section?

Hi!

I’m writing an about page, and will be using a lot of images & text.

I need to have the images appear below the text sections on mobile. There doesn’t appear to be a built in option for this, and I can’t find the right code to edit, having tried a few different this.

The theme is “Studio”

Currently it looks like this:

I need it so that the image is below the text.

Any ideas? Thanks!

@lunawalter add this css to assets > base.css bottom of file

@media (max-width:749px) {

.image-with-text .grid {
flex-direction: column-reverse !important;
}

}

Amazing, thank you!