.live-hero {
  background: linear-gradient(160deg, var(--secondary) 0%, var(--primary) 60%, var(--accent) 100%);
  padding: 56px var(--page-padding);
  position: relative;
  overflow: hidden;
}

.live-hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: rgba(244, 235, 217, 0.98);
  max-width: 700px;
  margin-bottom: 12px;
}

.live-hero p {
  color: rgba(244, 235, 217, 0.85);
  max-width: 600px;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 15px;
}

.live-hero .pastel-clouds {
  width: 320px;
  height: 180px;
  top: 10px;
  right: 5%;
}

.layout-split-deep {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px var(--page-padding);
}

.split-col h2 {
  font-size: 1.35rem;
  margin: 28px 0 12px;
  color: var(--primary);
}

.split-col h2:first-child {
  margin-top: 0;
}

.split-col p {
  margin-bottom: 16px;
}

.split-col img {
  border-radius: var(--soft-radius);
  max-width: 500px;
  max-height: 320px;
  width: 100%;
  object-fit: cover;
  margin-bottom: 24px;
  box-shadow: 0 16px 48px rgba(44, 36, 29, 0.12);
}

.live-callout {
  padding: 24px 28px;
  background: rgba(239, 225, 197, 0.55);
  border-radius: var(--soft-radius);
  backdrop-filter: blur(14px);
  margin: 24px 0;
  border-left: 3px solid var(--accent);
}

.live-callout strong {
  display: block;
  margin-bottom: 8px;
  color: var(--secondary);
  font-family: Georgia, serif;
}

@media (max-width: 768px) {
  .layout-split-deep {
    grid-template-columns: 1fr;
    overflow-x: hidden;
    max-width: 100%;
  }

  .split-col img {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 240px;
  }
}
