/* Product photography must remain complete, centered and readable on every card. */
.productPic {
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fff;
  border: 1px solid #eceeeb;
}

.productPic img,
.tagPage .product img {
  display: block;
  width: 100%;
  height: 100%;
  padding: 18px;
  object-fit: contain;
  object-position: center;
  image-rendering: auto;
}

@media (max-width: 680px) {
  .productPic img,
  .tagPage .product img {
    padding: 12px;
  }
}
