.article-screenshot {
  overflow: hidden;
  padding: 0;
  background: #151127;
}

.article-screenshot img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.article-screenshot figcaption {
  padding: 12px 18px 14px;
  color: #d8d2e8;
  font-size: 13px;
}

.related-game {
  margin-top: 55px;
  padding: 30px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
}

.related-game h2 {
  margin-top: 0;
}

.game-screenshot {
  background: #eeeaf7;
}

.game-screenshot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .25s ease;
}

.game-card:hover .game-screenshot img {
  transform: scale(1.025);
}

@media (prefers-reduced-motion: reduce) {
  .game-screenshot img {
    transition: none;
  }
}
