/* Local game artwork placeholders. Replace image paths in games.html. */
#product-1197 .game-cover {
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: #e7f5fd;
}
#product-1197 .game-cover img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: contain;
}
#product-1197 .game-screenshots {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}
#product-1197 .game-screenshots img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 20px;
  background: #e7f5fd;
}
@media (max-width: 767px) {
  #product-1197 .game-screenshots {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 420px;
    margin-inline: auto;
  }
}
