.sub-live-hero {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  padding: 48px 24px;
  background-size: cover;
  background-position: center;
}

.sub-live-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.3) 0%, rgba(2, 6, 23, 0.92) 100%);
}

.sub-live-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.sub-live-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  max-width: 700px;
}

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

.sub-live-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
}

.sub-live-main h2 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 28px 0 12px;
  color: var(--text);
}

.sub-live-main p {
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.75;
}

.sub-live-aside {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  align-self: start;
}

.sub-live-quote {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--text);
  border-left: 2px solid var(--accent);
  padding-left: 20px;
  margin-bottom: 20px;
}

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

.sub-live-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--muted);
}

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

  .sub-live-hero {
    min-height: 200px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
  }
}

@media (max-width: 375px) {
  .sub-live-hero {
    min-height: 160px;
    padding: 32px 16px;
    max-width: 100%;
    overflow: hidden;
  }

  .sub-live-body {
    padding: 32px 16px 48px;
    overflow-x: hidden;
  }
}
