.live-hero-strip {
  padding: 64px 24px;
  background: var(--surface);
  border-bottom: 4px solid #000000;
  position: relative;
  overflow: hidden;
}

.live-hero-strip::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 200px;
  height: 200px;
  background: var(--primary);
  opacity: 0.15;
  border-radius: 50%;
  border: 4px solid #000000;
}

.live-hero-strip h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  max-width: 680px;
  position: relative;
  z-index: 1;
}

.live-hero-strip .live-tag {
  display: inline-block;
  background: var(--accent);
  color: #000000;
  font-size: 11px;
  font-weight: 900;
  padding: 4px 12px;
  border: 2px solid #000000;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.live-content {
  padding: 48px 0 64px;
}

.live-split {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.live-prose h2 {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--primary);
  margin: 28px 0 12px;
}

.live-prose h2:first-of-type {
  margin-top: 0;
}

.live-prose p {
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

.live-rail {
  background: var(--surface);
  border: 4px solid #000000;
  box-shadow: 8px 8px 0 #000000;
}

.live-rail-img {
  width: 100%;
  height: 200px;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-bottom: 4px solid #000000;
}

.live-rail-body {
  padding: 20px;
}

.live-rail-body h3 {
  font-size: 1rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 12px;
}

.live-rail-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.live-rail-body li {
  font-size: 13px;
  color: var(--muted);
  padding-left: 14px;
  position: relative;
}

.live-rail-body li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 8px;
  top: 5px;
}

.live-table-wrap {
  margin: 32px 0;
  border: 3px solid #000000;
  overflow: hidden;
  box-shadow: var(--raw-shadow);
}

.live-table-wrap table {
  width: 100%;
  border-collapse: collapse;
}

.live-table-wrap th,
.live-table-wrap td {
  padding: 14px 18px;
  text-align: left;
  font-size: 14px;
  border-bottom: 2px solid #000000;
}

.live-table-wrap th {
  background: var(--accent);
  color: #000000;
  font-weight: 900;
}

.live-table-wrap td {
  background: var(--bg);
  color: var(--muted);
}

@media (max-width: 768px) {
  .live-split {
    grid-template-columns: 1fr;
  }
}
