.live-hero {
  background-image: url("/images/decorative/decor_6.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 80px 24px;
  text-align: center;
}

.live-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 8, 0.78);
}

.live-hero h1,
.live-hero .typewriter-caption {
  position: relative;
  z-index: 1;
}

.live-body {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}

.live-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin: 32px 0;
}

.live-stat-band {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  padding: 28px;
  background: var(--surface);
  box-shadow: 6px 6px 0 var(--paper-shadow);
  margin: 32px 0;
}

.live-stat {
  text-align: center;
}

.live-stat strong {
  display: block;
  font-size: 28px;
  color: var(--primary);
  font-family: "Courier New", Courier, monospace;
}

.live-stat span {
  font-size: 12px;
  color: var(--muted);
}

.live-inline-img {
  max-width: 480px;
  margin: 32px auto;
  display: block;
}

@media (max-width: 768px) {
  .live-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 375px) {
  .live-hero {
    padding-left: 16px;
    padding-right: 16px;
    overflow: hidden;
  }

  .live-body {
    padding-left: 16px;
    padding-right: 16px;
    overflow-x: hidden;
  }

  .live-inline-img {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 220px;
    object-fit: contain;
  }
}
