.live-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 280px;
  border-bottom: 1px solid var(--border);
}

.live-hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
  background: rgba(15, 23, 42, 0.95);
}

.live-hero-text h1 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--text);
  margin-bottom: 12px;
}

.live-hero-text p {
  color: var(--secondary);
  font-size: 0.95rem;
}

.live-hero-visual {
  overflow: hidden;
  min-height: 200px;
  max-width: 100%;
}

.live-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  object-position: center;
  display: block;
}

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

.live-content h2 {
  font-size: 1.3rem;
  color: var(--primary);
  margin: 28px 0 12px;
}

.live-content h2:first-of-type {
  margin-top: 0;
}

.live-content p {
  color: var(--secondary);
  margin-bottom: 14px;
  line-height: 1.7;
  font-size: 0.96rem;
}

.live-stat-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 28px 0;
}

.live-stat {
  text-align: center;
  padding: 20px 12px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.live-stat span {
  display: block;
  font-family: "Courier New", Courier, monospace;
  font-size: 1.5rem;
  color: var(--accent);
}

.live-stat p {
  font-size: 0.75rem;
  margin: 6px 0 0;
  color: var(--muted);
}

.live-inline-img {
  float: right;
  max-width: 400px;
  max-height: 280px;
  margin: 0 0 16px 24px;
  border-radius: 8px;
  border: 1px solid var(--border);
  object-fit: cover;
}

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

  .live-stat-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .live-inline-img {
    float: none;
    max-width: 100%;
    margin: 0 0 20px;
  }

  .live-hero-visual img {
    max-width: 100%;
  }
}
