I Need To Move Product Title end reviews Above The Product Image On Mobile View ( Focal 8.10.4)

I am using theme ( Focal 8.10.4)

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > theme.css and paste this at the bottom of the file:
@media (max-width:575px) {
        .product--thumbnails-bottom .product__info product-meta.product-meta{
            position: absolute;
            top: 110px;
            left: 0;
            bottom: 0;
            right: 0;
            padding: 0 24px;
            border-bottom: none;
        }
        product-media.product__media.became-visible{
            padding-top: 150px;
        }
        .product-form__option-selector {
            padding-top: 30px;
        }
    }

thank you very much

it doesn’t help me