.breadcrumb {
  padding-top: 18px;
  color: var(--muted);
  font-size: 0.88rem;
}

.breadcrumb a {
  color: var(--forest);
  font-weight: 700;
  text-decoration: none;
}

.game-hub-hero {
  max-width: 760px;
  padding: 50px 0 58px;
}

.game-hub-hero h1 {
  max-width: 13ch;
  margin-bottom: 18px;
  font-size: clamp(2.65rem, 5vw, 4.4rem);
}

.overview-featured {
  padding: 0 0 74px;
}

.overview-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.overview-featured-game {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.overview-featured-media {
  display: block;
  overflow: hidden;
  aspect-ratio: 8 / 5;
  background: var(--forest);
}

.overview-featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.overview-featured-media:hover img {
  transform: scale(1.018);
}

.overview-featured-copy {
  padding: 20px 20px 18px;
}

.overview-featured-copy h3 {
  margin-bottom: 8px;
  font-size: 1.5rem;
}

.overview-featured-copy h3 a {
  text-decoration: none;
}

.overview-featured-copy p {
  min-height: 3.2em;
  margin-bottom: 13px;
  color: var(--muted);
  font-size: 0.95rem;
}

.hub-section {
  padding: 68px 0 0;
  border-top: 1px solid var(--line);
}

.hub-section + .hub-section {
  margin-top: 74px;
}

.hub-section-heading {
  margin-bottom: 22px;
}

.hub-section-heading h2,
.related-entry h2 {
  margin-bottom: 0;
  font-size: clamp(1.85rem, 3vw, 2.55rem);
}

.game-card-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.game-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.68);
}

.game-card > a {
  display: block;
  height: 100%;
  padding: 19px 20px 20px;
  text-decoration: none;
}

.game-card h3 {
  margin-bottom: 7px;
  font-size: 1.24rem;
}

.game-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.55;
}

.game-card:hover,
.game-card:focus-within {
  border-color: var(--gold);
  background: var(--paper);
  box-shadow: 0 7px 20px rgba(31, 42, 35, 0.07);
}

.status-pill {
  display: inline-block;
  margin-bottom: 9px;
  padding: 2px 7px;
  border-radius: 4px;
  color: var(--forest);
  background: var(--soft-green);
  font-size: 0.69rem;
  font-weight: 800;
  text-transform: uppercase;
}

.related-entry {
  display: grid;
  grid-template-columns: minmax(210px, 0.75fr) minmax(0, 1.25fr);
  gap: 22px 54px;
  align-items: start;
  padding-bottom: 76px;
}

.related-entry > p {
  margin-bottom: 0;
  color: var(--muted);
}

.related-entry > p a {
  color: var(--forest);
  font-weight: 800;
}

.related-links {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-nav a[aria-current="page"] {
  color: #fff;
  background: var(--forest);
}

@media (max-width: 900px) {
  .overview-featured-grid,
  .game-card-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .overview-featured-game:first-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  }

  .overview-featured-game:first-child .overview-featured-media {
    height: 100%;
    aspect-ratio: auto;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    padding: 15px 0 10px;
  }

  .site-nav {
    width: 100%;
    overflow-x: auto;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
  }

  .site-nav a {
    flex: 0 0 auto;
  }

  .site-nav a:nth-child(2),
  .site-nav a:nth-child(4) {
    display: inline-flex;
  }

  .game-hub-hero {
    padding: 40px 0 48px;
  }

  .overview-featured-game:first-child {
    display: block;
  }

  .overview-featured-game:first-child .overview-featured-media {
    height: auto;
    aspect-ratio: 8 / 5;
  }

  .related-entry {
    grid-template-columns: 1fr;
  }

  .related-links {
    grid-column: auto;
  }
}

@media (max-width: 580px) {
  .page-shell,
  .footer-inner {
    width: min(100% - 30px, 1200px);
  }

  .brand-lockup img {
    width: min(245px, 72vw);
  }

  .game-hub-hero h1 {
    font-size: 2.5rem;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .overview-featured-grid,
  .game-card-list {
    grid-template-columns: 1fr;
  }

  .overview-featured-copy p {
    min-height: 0;
  }

  .hub-section,
  .hub-section + .hub-section {
    margin-top: 0;
    padding-top: 52px;
  }

  .hub-section + .hub-section {
    margin-top: 56px;
  }

  .related-entry {
    padding-bottom: 58px;
  }
}
