.games {
  padding-top: 200px;
  padding-bottom: 24px;

  --image-width: 340px;
  --padding: 16px;
  --gap: 20px;
}
.games__header {
  margin-bottom: 30px;
  padding-left: calc(var(--padding) + var(--image-width) + var(--gap));
}
.games__title {
  margin-bottom: 10px;
  font-family: 'Dela Gothic One', sans-serif;
}
.games__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.game-card {
  padding: var(--padding);

  display: flex;
  align-items: center;
  gap: var(--gap);

  background-color: var(--dark-800);
  border-radius: 10px;
}
.game-card__image {
  flex: 0 0 var(--image-width);
  aspect-ratio: 34 / 21;

  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

  -webkit-mask: var(--mask) no-repeat center;
  -webkit-mask-size: 100%;
  mask: var(--mask) no-repeat center;
  mask-size: 100%;
}
.game-card__image img {
  display: block;
  width: 100%;
}
.game-card__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.game-card__title {
  font-family: 'Dela Gothic One', sans-serif;
}
@media (max-width: 992px) {
  .games {
    padding-top: 120px;

    --image-width: 200px;
  }
  .game-card__text {
    text-align: center;
  }
  .games__header {
    padding-left: 0;
  }
  .game-card {
    flex-direction: column;
    align-items: center;
  }
  .game-card__image {
    aspect-ratio: 20 / 13;
  }
  .game-card__content {
    align-items: center;
  }
}