/* Homepage preview cards end at the product code; catalogue/detail specs stay visible. */
.home-product-grid > .product > .copy > .product-code ~ p {
  display: none;
}

/* Keep narrow-screen homepage previews square and show the complete image. */
@media (max-width: 760px) {
  .home-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-product-grid > .product {
    min-width: 0;
  }

  .home-product-grid > .product > .image-swap {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    background: #fff;
  }

  .home-product-grid > .product > .image-swap > .photo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #fff;
  }

  .home-product-grid > .product > .photo,
  .home-product-grid > .product > .placeholder {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    object-position: center;
    background: #fff;
  }
}
