/* Final showroom model-card layer. Keep images and exact models visible in the hash subview. */
body.home-page.is-showroom-view .showroom-model-grid {
  position: relative;
  z-index: 1;
  align-items: start;
}

body.home-page.is-showroom-view .showroom-model-card {
  position: relative;
  z-index: 1;
  grid-template-rows: minmax(210px, auto) minmax(54px, auto);
  min-height: 0;
  background: #fff;
  isolation: isolate;
}

body.home-page.is-showroom-view .showroom-model-card img {
  position: relative;
  z-index: 2;
  display: block !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  opacity: 1 !important;
  visibility: visible !important;
  background: #f7f7f5;
}

body.home-page.is-showroom-view .showroom-model-card strong {
  position: relative;
  z-index: 2;
  display: flex !important;
  min-height: 54px;
  color: #171a18 !important;
  opacity: 1 !important;
  visibility: visible !important;
  background: #fff;
}

@media (max-width: 640px) {
  body.home-page.is-showroom-view .showroom-model-card {
    grid-template-rows: minmax(150px, auto) minmax(54px, auto);
  }
}
