.product-screenshot {
  display: block;
  margin: 26px 0 12px;
  overflow: hidden;
  background: #07121f;
  border: 1px solid #314a5e;
}

.product-screenshot img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top;
  transition: transform .35s ease, opacity .35s ease;
}

.product-screenshot:hover img {
  transform: scale(1.018);
  opacity: .9;
}
