/* Shared by customer product details and the admin customer preview.
   Let each photo define its frame; long descriptions must not stretch it. */
.detail-layout {
  min-height: 0;
  align-items: start;
}
.detail-gallery {
  min-width: 0;
  align-self: start;
  grid-template-rows: auto auto;
}
.preview-gallery {
  align-self: start;
}
.detail-main-image,
.preview-image-wrap {
  min-height: 0;
  max-height: none;
  aspect-ratio: auto;
}
.detail-main-image > img,
.preview-image-wrap > img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
}
