How do I show the images above text for rich text with image module on mobile?

https://maryandmason.co.nz/?_ab=0&_fd=0&_sc=1&key=bf7a1d0e12a40b594d57caf77237499fd91a7c0b10d1603a08cfc3b98e0e2e88

On the Our Community page I want the image to be above the text on mobile breakpoint. Currently the image for each module sits below the CTA.

You can add this to the bottom of your theme.css.liquid file in your Assets folder:

@media(max-width: 640px){
.FeatureText--withImage {
    display: flex;
    flex-direction: column;
}

.FeatureText__ContentWrapper {
    order: 1;
}
}

Hi there, that hasn’t worked sorry