(Squarespace) How to move product images under detail on mobile

To move product images under detail on mobile, we can use this code to Custom CSS.

@media screen and (max-width:767px) {
  .product-detail div.product-content-wrapper {
    flex-direction: column-reverse !important;
}}