.live-page-hero {
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  padding: 48px 24px;
  background:
    linear-gradient(to top, var(--bg) 0%, transparent 60%),
    url("/images/decorative/decor_10.jpg") center / cover no-repeat;
  position: relative;
}

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

.live-page-hero h1 {
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.8);
}

.live-columns {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px 24px 72px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.live-main h2 {
  font-size: 1.4rem;
  font-weight: 900;
  margin: 28px 0 14px;
  color: var(--text);
}

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

.live-main p {
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

.live-aside {
  padding: 28px;
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid var(--border);
  align-self: start;
  position: sticky;
  top: 80px;
}

.live-aside h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.live-aside ul {
  list-style: none;
  padding: 0;
}

.live-aside li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
}

.live-quote {
  margin: 32px 0;
  padding: 28px;
  font-size: 1.2rem;
  font-weight: 700;
  font-style: italic;
  color: var(--accent);
  border: 2px solid var(--accent);
  border-radius: 12px;
  background: rgba(128, 203, 196, 0.06);
}

.live-promo-tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--accent);
  color: var(--surface-dark);
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 4px;
  margin-bottom: 16px;
}

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

  .live-aside {
    position: static;
  }

  .live-page-hero {
    overflow: hidden;
    background-size: cover;
    background-position: center;
  }
}
