.game-grid {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.game-card {
  width: 100%;
  min-width: 0;
}

.game-img {
  width: 100%;
  height: 290px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hidden-games {
  display: none;
}

.game-grid.show {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 900px) {
  .game-grid,
  .game-grid.show {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .game-grid,
  .game-grid.show {
    grid-template-columns: 1fr;
  }
}
