/* v2.1.5: keep each product photograph centered and fully inside its washi frame. */
.material-row__photo,
.material-row:nth-child(even) .material-row__photo {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  height: auto;
  max-height: 380px;
  overflow: hidden;
}

.material-row__photo::before {
  inset: 0;
  background-size: 132% auto;
}

.material-row:nth-child(even) .material-row__photo::before {
  transform: rotate(3deg) scale(1.04);
}

.material-row__photo img,
.material-row:nth-child(even) .material-row__photo img {
  width: calc(100% - 34px) !important;
  height: calc(100% - 34px) !important;
  max-width: calc(100% - 34px);
  max-height: calc(100% - 34px);
  margin: 0;
  object-fit: contain !important;
  object-position: center center !important;
}

@media (max-width: 767px) {
  .material-row__photo,
  .material-row:nth-child(even) .material-row__photo {
    width: min(100%, 312px);
    height: auto;
    max-height: none;
  }

  .material-row__photo img,
  .material-row:nth-child(even) .material-row__photo img {
    width: calc(100% - 26px) !important;
    height: calc(100% - 26px) !important;
    max-width: calc(100% - 26px);
    max-height: calc(100% - 26px);
  }
}
