.design-format-card .product-stage.photo-backed .product-object {
  width: min(72px, calc(52px * var(--shape-ratio-value, 1.4))) !important;
  height: min(52px, calc(72px / var(--shape-ratio-value, 1.4))) !important;
  aspect-ratio: var(--shape-ratio-value, 1.4);
  transition: width .18s ease, height .18s ease;
}

@media (max-width: 760px) {
  .design-format-card .product-stage.photo-backed .product-object {
    width: min(64px, calc(46px * var(--shape-ratio-value, 1.4))) !important;
    height: min(46px, calc(64px / var(--shape-ratio-value, 1.4))) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .design-format-card .product-stage.photo-backed .product-object {
    transition: none;
  }
}
