/* SGH catalogue photo containment. Load after the other public stylesheets. */
.sgh-site .sgh-card .sgh-card-image {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 7 / 5;
  padding: 0;
  overflow: hidden;
  background: #fff;
}
/* Removing the image from grid sizing prevents portrait intrinsic height
   from exceeding the frame. Prepared photos already include their margins. */
.sgh-site .sgh-card .sgh-card-image > img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  max-width: 100%;
  max-height: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  object-fit: contain;
  object-position: center;
  background: #fff;
  mix-blend-mode: normal;
}
.sgh-site .sgh-card:hover .sgh-card-image > img,
.sgh-site .sgh-card .sgh-card-image > img {
  transform: none !important;
}
