This is not a Site Reviews issue, it has to do with your theme’s HTML layout. You could replace the Site Reviews shortcodes on your page with any other page content and you would have the same problem.
You’ll probably want to add a CSS media query to change the flex direction on mobile widths, something like this:
@media (max-width: 544px) {
#learn-press-course {
flex-direction: column-reverse;
}
}