/* v185 — buyer-facing image governance and category density */

/* Sidebar images repeated the same products at thumbnail size. The centre
   workspace is now the single product-photo display area. */
.left-nav .side-sample-strip {
  display: none !important;
}

.industry-entry-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.industry-entry-grid article img,
.sample-mini-grid img,
.v160-product-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.v160-hero-image,
.v160-proof-card,
.v160-product-card {
  min-width: 0;
  overflow: hidden;
}

@media (max-width: 980px) {
  .industry-entry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .industry-entry-grid {
    grid-template-columns: 1fr;
  }
}
