.game-template-hero {
  position: relative;
  display: grid;
  color: #fff;
  background: var(--default-hero-bg, #050505);
  overflow: hidden;
}

.banner-hero-media {
  display: grid;
  place-items: center;
}

.banner-hero-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.banner-hero-copy {
  position: absolute;
  inset: 0 auto 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(46vw, 720px);
  padding: clamp(40px, 8vw, 88px) clamp(18px, 4vw, 56px);
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--default-hero-bg, #050505) 88%, transparent),
    color-mix(in srgb, var(--default-hero-bg, #050505) 56%, transparent),
    transparent
  );
}

.game-template-hero h1 {
  margin-bottom: 14px;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  color: var(--default-hero-title, #ffffff);
}

.game-template-hero .eyebrow {
  color: var(--default-hero-eyebrow, #ffffff);
}

.game-template-hero .lede {
  color: var(--default-hero-text, #e0e5ec);
}

.game-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px) clamp(18px, 4vw, 56px);
}

.game-page-main,
.game-page-side {
  display: grid;
  align-content: start;
  gap: 18px;
  min-width: 0;
}

.game-page-card {
  min-width: 0;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.local-heading {
  margin: 0 0 14px;
}

.local-heading h2 {
  margin: 0;
  font-size: 1.35rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.tag-list span {
  padding: 6px 10px;
  color: var(--accent-strong);
  background: rgb(39 107 93 / 10%);
  border-radius: 8px;
  font-size: 0.9rem;
}

.status-reason {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.player-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.player-stat-grid div {
  padding: 12px;
  background: rgb(39 107 93 / 8%);
  border: 1px solid rgb(39 107 93 / 12%);
  border-radius: 8px;
}

.player-stat-grid span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.player-stat-grid strong {
  font-size: 1.15rem;
}

@media (max-width: 900px) {
  .game-page-layout {
    grid-template-columns: 1fr;
  }

  .banner-hero-copy {
    position: relative;
    width: 100%;
    background: var(--default-hero-bg, #050505);
  }
}
