/* ═══════════════════════════════════════════════════════
   VCP Deportes — Hero Section
   ═══════════════════════════════════════════════════════ */

.hero {
  position: relative;
  background: var(--gradient-hero);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255, 215, 0, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.hero .container {
  display: grid;
  gap: var(--space-10);
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .hero .container {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
  }
}

/* ── Text content ── */
.hero__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: var(--weight-black);
  line-height: var(--line-tight);
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
}

.hero__lead {
  margin: 0;
  max-width: 30rem;
  color: var(--color-text-secondary);
  font-size: var(--text-subhead);
  line-height: var(--line-relaxed);
}

.hero__lead strong {
  color: var(--color-success);
  font-weight: var(--weight-semibold);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

/* ── Featured stream card ── */
.hero__featured {
  position: relative;
}

.hero__featured .stream-card {
  box-shadow: var(--shadow-xl), var(--shadow-glow-yellow);
  border-color: var(--vcp-yellow);
}

.hero__featured .stream-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl), 0 0 36px rgba(255, 215, 0, 0.28);
}

.hero__featured-label {
  position: absolute;
  top: var(--space-4);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-pill);
  background: var(--color-text-primary);
  color: var(--color-text-inverse);
  font-size: var(--text-micro);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
