.product-grid {
  width: min(1320px, calc(100vw - 96px));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: none;
  gap: 16px;
  border: 0;
}

.product-grid > .product-card,
.product-card,
.product-card-tall,
.product-card-compact {
  grid-column: auto;
  grid-row: auto;
  width: 100%;
  height: 400px;
  min-height: 400px;
  padding: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: 184px auto 1fr;
  align-content: start;
  align-items: start;
  column-gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255, 255, 255, .5);
}

.product-card > span,
.product-card-compact > span {
  top: 16px;
  left: 16px;
  font-size: 20px;
}

.product-card img,
.product-card-tall img,
.product-card-compact img {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  height: 184px;
  max-height: 184px;
  margin: 0;
  padding: 10px;
  object-fit: contain;
  object-position: center;
  background: rgba(255, 255, 255, .66);
}

.product-card h3,
.product-card-compact h3 {
  grid-column: 1;
  grid-row: 2;
  min-height: 54px;
  margin: 16px 0 0;
  font-size: clamp(22px, 1.75vw, 27px);
  line-height: 1.02;
}

.product-card p,
.product-card-compact p {
  grid-column: 1;
  grid-row: 3;
  margin: 10px 0 0;
  font-size: 10px;
  line-height: 1.65;
}

.product-card:hover {
  transform: none;
}

.product-card:hover img {
  transform: none;
}

html.dg-motion-always .product-grid .product-card.dg-reveal-item,
html.dg-motion-always .product-grid .product-card.dg-reveal-item.dg-reveal-visible {
  opacity: 1 !important;
  transform: none !important;
  will-change: auto;
}

@media (max-width: 1080px) {
  .product-grid {
    width: min(900px, calc(100vw - 56px));
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .product-grid > .product-card,
  .product-card,
  .product-card-tall,
  .product-card-compact {
    height: 390px;
    min-height: 390px;
    grid-template-rows: 180px auto 1fr;
  }

  .product-card img,
  .product-card-tall img,
  .product-card-compact img {
    height: 180px;
    max-height: 180px;
  }
}

@media (max-width: 560px) {
  .product-grid {
    width: min(460px, calc(100vw - 28px));
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .product-grid > .product-card,
  .product-card,
  .product-card-tall,
  .product-card-compact {
    height: auto;
    min-height: 390px;
    padding: 18px;
    grid-template-rows: 200px auto 1fr;
  }

  .product-card img,
  .product-card-tall img,
  .product-card-compact img {
    height: 200px;
    max-height: 200px;
  }

  .product-card h3,
  .product-card-compact h3 {
    min-height: 0;
    margin-top: 17px;
    font-size: 27px;
  }

  .product-card p,
  .product-card-compact p {
    font-size: 11px;
  }
}
