.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.game-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
  width: 300px;
  height: 200px;
  display: flex;
  flex-direction: column;
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.game-card img {
  width: 100%;
  height: 120px; /* верхняя часть — картинка */
  object-fit: cover;
  display: block;
}

.game-card h3 {
  font-size: 16px;
  margin: 5px 0 3px;
  color: #111;
  text-align: center;
}

.game-card p {
  font-size: 12px;
  color: #333;
  line-height: 1.3;
  text-align: center;
  padding: 0 8px 8px;
}