.px-onlyimage {
  max-width: var(--maxWidth);
  width: var(--baseWidth);
  margin-right: auto;
  margin-left: auto;
}
.px-onlyimage .image {
  overflow: hidden;
  position: relative;
}
.px-onlyimage .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.px-onlyimage .image:has(.mini-image-overlay) {
  max-height: 500px;
}
.px-onlyimage .image:has(.mini-image-overlay) img {
  width: 100%;
  max-height: 500px;
  min-height: 100%;
  object-fit: contain;
  object-position: center;
}
.px-onlyimage .image .mini-image-overlay {
  position: absolute;
  bottom: 0;
  left: 50%;
  height: 30%;
  aspect-ratio: 1/1;
  rotate: -45deg;
  opacity: 0.5;
  overflow: hidden;
  z-index: 10;
}
.px-onlyimage .image .mini-image-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}