.games-stat-band {
  background: var(--secondary);
  padding: 32px 24px;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.games-stat-band .stat {
  text-align: center;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.games-stat-band .stat strong {
  display: block;
  font-size: 2rem;
  color: var(--brass-light);
  font-family: Georgia, serif;
}

.games-stat-band .stat span {
  font-size: 13px;
  opacity: 0.85;
}

.games-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}

.games-content h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--secondary);
  margin-bottom: 32px;
  text-align: center;
}

.games-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
  max-width: 100%;
  overflow: hidden;
}

.games-mosaic img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border: 2px solid var(--brass);
}

.games-mosaic img:first-child {
  grid-row: span 2;
  max-height: 416px;
}

.games-prose h2 {
  font-size: 1.25rem;
  color: var(--copper);
  margin: 28px 0 12px;
}

.games-prose p {
  color: var(--muted);
  margin-bottom: 14px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 15px;
  line-height: 1.7;
}

.games-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
}

.games-table th,
.games-table td {
  border: 1px solid var(--border);
  padding: 12px 16px;
  text-align: left;
}

.games-table th {
  background: var(--paper);
  color: var(--secondary);
}

.games-table td {
  color: var(--muted);
}

@media (max-width: 768px) {
  .games-content {
    overflow-x: hidden;
  }

  .games-mosaic {
    grid-template-columns: 1fr 1fr;
  }

  .games-mosaic img {
    max-width: 100%;
    width: 100%;
  }

  .games-mosaic img:first-child {
    grid-row: auto;
    max-height: 200px;
  }
}

@media (max-width: 375px) {
  .games-mosaic {
    grid-template-columns: 1fr;
  }
}
