.games-grid {
  display: grid;
  gap: 12px;
}

.games-grid.full {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.game-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  min-height: 104px;
  border-radius: 24px;
  padding: 13px;
  color: var(--text);
  text-align: left;
  position: relative;
  overflow: hidden;
}

.game-card strong,
.game-card small,
.game-card em {
  display: block;
}

.game-card strong {
  margin-bottom: 5px;
  font-size: .95rem;
}

.game-card small {
  color: var(--muted);
  font-size: .7rem;
}

.game-card em,
.soon-badge {
  width: max-content;
  margin-top: 8px;
  border-radius: 999px;
  padding: 5px 8px;
  background: rgba(255,255,255,.08);
  color: var(--yellow);
  font-size: .65rem;
  font-style: normal;
  font-weight: 900;
}

.game-art-img {
  width: 68px;
  height: 68px;
  object-fit: cover;
  border-radius: 18px;
}
