.live-hero {
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  padding: 48px 24px;
  background-image: linear-gradient(rgba(9, 1, 2, 0.75), rgba(9, 1, 2, 0.9)), url("/images/decorative/decor_6.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.live-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.live-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400;
}

.live-hero p {
  color: var(--muted);
  margin-top: 10px;
  max-width: 600px;
}

.live-body {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px 24px 64px;
}

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

.live-panel {
  padding: 28px;
  background: rgba(22, 3, 5, 0.7);
  border: 1px solid var(--border);
  border-radius: 12px;
  backdrop-filter: blur(12px);
}

.live-panel h2 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--accent);
}

.live-panel p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.live-full {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
}

.live-full h2 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 14px;
}

.live-full p {
  color: var(--muted);
  margin-bottom: 12px;
}

.live-refraction-band {
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary), var(--primary));
  margin: 32px 0;
  opacity: 0.6;
}

.spiritual-breathe {
  transition: opacity 6s ease;
}

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