.pol-games {
  background: var(--pol-bg);
  padding: 80px 0;
}

.pol-games__head {
  margin-bottom: 48px;
}

.pol-games__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.pol-game-card {
  background: transparent;
  border: 0;
  padding: 0;
  color: #fff;
  text-align: left;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}

.pol-game-card:hover {
  transform: translateY(-4px);
}

.pol-game-card__media {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  background: #1b2433;
  box-shadow: var(--pol-shadow);
}

.pol-game-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.pol-game-card:hover .pol-game-card__media img {
  transform: scale(1.04);
}

.pol-game-card__title {
  margin-top: 16px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.pol-games__cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

@media (max-width: 767px) {
  .pol-games {
    padding: 56px 0;
  }
  .pol-games__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .pol-game-card__title {
    font-size: 15px;
  }
}

@media (max-width: 420px) {
  .pol-games__grid {
    grid-template-columns: 1fr;
  }
}
