@media (max-width: 1000px) {
  .featured-game {
    grid-template-columns: 1fr;
  }

  .featured-visual {
    min-height: 20rem;
  }
}

@media (max-width: 760px) {
  html {
    --mq-pad-outer: 1.2rem;
    --mq-pad-inner: 1.15rem;
  }

  .page-shell {
    width: min(calc(100% - 1rem), var(--page-width));
    padding-top: 0.75rem;
  }

  .site-header {
    padding: 1rem;
    border-radius: var(--radius-lg);
  }

  .top-nav {
    width: 100%;
    justify-content: flex-start;
    margin-left: 0;
  }

  :is(.hero, .featured-game, .team-panel, .not-found) {
    padding: var(--mq-pad-outer);
  }

  :is(.featured-visual, .info-panel, .media-card, .faq-item, .team-block) {
    padding: var(--mq-pad-inner);
  }

  .hero-game-layout {
    grid-template-columns: 1fr;
  }

  .hero-game-logo {
    justify-self: start;
    padding-top: 0;
  }

  .game-logo-inline-frame {
    width: clamp(10.5rem, 36vw, 13rem);
    min-width: 0;
  }
}

@media (max-width: 420px) {
  html {
    --mq-pad-outer: 1rem;
    --mq-pad-inner: 1rem;
  }

  .page-shell {
    width: min(calc(100% - 0.75rem), var(--page-width));
  }

  .top-nav {
    gap: 0.6rem;
  }
}

@media (max-width: 560px) {
  .brand-logo {
    width: min(12rem, 100%);
  }

  .brand-lockup-compact .brand-logo {
    width: min(10.5rem, 100%);
  }

  .top-nav a {
    font-size: 0.88rem;
  }

  .hero-copy h1,
  .game-title {
    font-size: clamp(2.45rem, 14vw, 3.9rem);
  }

  .button {
    width: 100%;
    white-space: normal;
  }

  .hero-game-logo {
    justify-self: center;
  }

  .game-logo-feature-frame {
    width: min(16rem, 92%);
  }
}
