/* Give the product gallery more room on desktop while preserving the mobile layout. */
@media (min-width: 992px) {
  .page-product .product__container {
    grid-template-columns: minmax(0, 54fr) minmax(0, 46fr);
  }
}

@media (min-width: 1200px) {
  .page-product .product__container {
    grid-template-columns: minmax(0, 60fr) minmax(0, 40fr);
  }
}
