/* Product photography and image-specific presentation */
.product-art {
  padding: 0;
  background: #ebe7dc;
}

.product-art::before {
  display: none;
}

.product-art img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform .45s ease;
}

.card:hover .product-art img {
  transform: scale(1.035);
}

@media (max-width: 850px) {
  .product-art img {
    min-height: 230px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-art img {
    transition: none;
  }
}
