.subpage-live {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.live-hero-band {
  padding: 56px 40px;
  margin-bottom: 48px;
  background: var(--nav-dark);
  border-radius: 16px;
  color: #fff;
  text-align: center;
  background-image: url("/images/decorative/decor_7.webp");
  background-size: cover;
  background-position: center;
  position: relative;
}

.live-hero-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(31, 41, 55, 0.82);
  border-radius: 16px;
}

.live-hero-band > * {
  position: relative;
  z-index: 1;
}

.live-hero-band h1 {
  color: #fff;
  font-size: clamp(26px, 4vw, 36px);
  margin-bottom: 12px;
}

.live-hero-band p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

.live-stat-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.live-stat {
  padding: 24px;
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--border);
  text-align: center;
}

.live-stat strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 6px;
}

.live-stat span {
  font-size: 13px;
  color: var(--muted);
}

.live-content {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
}

.live-content h2 {
  font-size: 22px;
  margin: 32px 0 14px;
}

.live-content p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 16px;
  line-height: 1.7;
}

.live-side-img {
  border-radius: 14px;
  overflow: hidden;
  max-width: 500px;
  max-height: 320px;
}

.live-side-img img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
}

@media (max-width: 900px) {
  .live-stat-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .live-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 375px) {
  .subpage-live {
    padding: 0 16px 64px;
    overflow-x: hidden;
  }

  .live-hero-band {
    padding: 40px 20px;
    border-radius: 12px;
  }

  .live-side-img {
    max-width: 100%;
    overflow: hidden;
  }

  .live-side-img img {
    max-width: 100%;
    max-height: 220px;
    width: 100%;
  }
}
