.game-info-hero__spacer--top {
  height: 2.5rem;
}

.game-info-hero__spacer--bottom {
  height: 3.125rem;
}

.game-info-hero__intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.game-info-hero__copy {
  min-width: 0;
}

.game-info-hero__copy p {
  max-width: 36rem;
}

.game-info-hero__play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 12rem;
  min-height: 4rem;
  flex: 0 0 auto;
  gap: .7rem;
  font-weight: 800;
  box-shadow: 0 1rem 2.5rem rgba(255, 210, 36, .22);
}

.game-info-hero__play .bi-arrow-right {
  transition: transform .2s ease;
}

.game-info-hero__play:hover .bi-arrow-right {
  transform: translateX(3px);
}

.game-article-content {
  min-width: 0;
}

@media (min-width: 768px) {
  .game-info-hero__spacer--top {
    height: 5rem;
  }

  .game-info-hero__spacer--bottom {
    height: 6.25rem;
  }
}

@media (min-width: 992px) {
  .game-info-hero__spacer--top {
    height: 4rem;
  }

  .game-info-hero__spacer--bottom {
    height: 5rem;
  }
}

@media (min-width: 1400px) {
  .game-info-hero__spacer--top {
    height: 5rem;
  }

  .game-info-hero__spacer--bottom {
    height: 6.25rem;
  }
}

.game-info-sidebar {
  position: sticky;
  top: 6.5rem;
  display: grid;
  gap: 1rem;
}

.game-signup-card {
  position: relative;
  isolation: isolate;
  padding: 1rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0, rgba(99, 102, 241, .15), transparent 10rem),
    linear-gradient(145deg, #fff 0%, #f7f8ff 100%);
  border: 1px solid rgba(109, 93, 246, .15);
  border-radius: 1rem;
  box-shadow: 0 1rem 2.5rem rgba(20, 24, 31, .09);
}

.game-signup-card__preview {
  height: 8.5rem;
  margin-bottom: 1.1rem;
  background-color: #eef2ff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border-radius: .8rem;
  box-shadow: inset 0 0 0 1px rgba(20, 24, 31, .06);
}

.game-signup-card__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-bottom: .8rem;
  color: #4f46e5;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .045em;
  text-transform: uppercase;
}

.game-signup-card p {
  color: var(--bs-secondary-color);
  line-height: 1.55;
}

.game-signup-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 .6rem 1.5rem rgba(79, 70, 229, .2);
}

.game-science-note {
  background: #fff;
  border: 1px solid rgba(20, 24, 31, .07) !important;
  border-radius: 1rem;
  box-shadow: 0 .75rem 2rem rgba(20, 24, 31, .06);
}

.game-related-section {
  background: #f6f9fc;
}

.related-game-card {
  display: block;
  color: var(--bs-body-color);
  background: #fff;
  border: 1px solid rgba(20, 24, 31, .06);
  border-radius: 1rem;
  box-shadow: 0 .375rem .75rem -.125rem rgba(208, 208, 196, .24);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.related-game-card:hover {
  color: var(--bs-primary);
  border-color: rgba(109, 93, 246, .18);
  box-shadow: 0 1rem 2.5rem rgba(20, 24, 31, .08);
  transform: translateY(-3px);
}

.related-game-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 8.5rem;
  overflow: hidden;
  background: #eef2ff;
  border-radius: 1rem 1rem 0 0;
}

.related-game-card__media img {
  display: block;
  object-fit: contain !important;
  padding: .75rem;
  transition: transform .35s ease;
}

.related-game-card:hover .related-game-card__media img {
  transform: scale(1.035);
}

.related-game-card__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5rem;
  padding: 1rem 1.1rem;
}

.related-game-card__body h3 {
  min-width: 0;
  line-height: 1.3;
}

.related-game-card__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  flex: 0 0 2.25rem;
  color: var(--bs-primary);
  background: rgba(var(--bs-primary-rgb), .08);
  border-radius: 50%;
  transition: color .2s ease, background-color .2s ease;
}

.related-game-card:hover .related-game-card__arrow {
  color: #fff;
  background: var(--bs-primary);
}

@media (max-width: 991.98px) {
  .game-info-sidebar {
    position: static;
    max-width: 32rem;
    margin: 0 auto;
  }

  .game-signup-card {
    padding: 1.25rem;
  }

  .game-signup-card__preview {
    height: 12rem;
  }
}

@media (max-width: 575.98px) {
  .game-info-hero__intro {
    align-items: stretch;
    flex-direction: column;
    gap: 1.25rem;
  }

  .game-info-hero__play {
    width: 100%;
    min-height: 3.5rem;
  }

  .game-related-section .h1 {
    font-size: 1.75rem;
  }

  .game-signup-card__preview {
    height: 9.5rem;
  }

  .related-game-card__body {
    min-height: 4.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .game-info-hero__play .bi-arrow-right {
    transition: none;
  }
}
