.game-page {
  background: var(--white);
  padding: 60px 0;
}

.game-page .container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.game-hero {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  width: 100%;
}

.game-cover {
  flex: 0 0 200px;
  width: 200px;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
}

.game-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.game-intro {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: var(--black);
}

.game-title {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 50px;
  line-height: 1.2;
  text-transform: uppercase;
  font-variation-settings: "opsz" 14;
  width: 100%;
}

.game-desc {
  display: flex;
  flex-direction: column;
  gap: 1em;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  text-align: justify;
}

.game-desc p {
  margin: 0;
}

.game-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
}

.game-quote {
  flex: 0 1 800px;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 50px;
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--black);
  font-variation-settings: "opsz" 14;
}

.game-cta .btn {
  flex: 0 0 auto;
}

@media (max-width: 900px) {
  .game-page {
    padding: 40px 0;
  }

  .game-page .container {
    gap: 20px;
  }

  .game-hero {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .game-intro {
    width: 100%;
    gap: 20px;
  }

  .game-title {
    font-size: 32px;
  }

  .game-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .game-quote {
    font-size: 24px;
    flex: none;
    width: 100%;
  }
}
