/* ── Hero Wrapper ── */
.hero-section {
  background: white;
  padding: var(--space-10) 0;
  border-bottom: 1px solid var(--color-border-light);
}

/* ── Hero Card ── */
.hero-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--color-bg-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border-light);
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--transition-base);
}

.hero-card:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,0.16);
}

/* ── Hero Media (thumbnail, RTL = right side) ── */
.hero-media {
  position: relative;
  order: 1;
  background: #0d0d1a;
}

.hero-thumb-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 340px;
  overflow: hidden;
}

.hero-thumb-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform var(--transition-slow);
}

.hero-card:hover .hero-thumb-wrap img {
  transform: scale(1.04);
}

/* Gradient overlay on thumbnail */
.hero-thumb-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, transparent 60%, rgba(0,0,0,0.35));
  pointer-events: none;
}

/* Play button overlay */
.hero-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  background: rgba(220, 53, 69, 0.88);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  backdrop-filter: blur(4px);
  z-index: 2;
  box-shadow: 0 4px 20px rgba(220, 53, 69, 0.5);
}

.hero-play-btn:hover,
.hero-card:hover .hero-play-btn {
  background: var(--color-accent-red);
  transform: translate(-50%, -50%) scale(1.10);
}

.hero-play-btn svg {
  width: 26px;
  height: 26px;
  fill: white;
  margin-right: -3px;
}

/* Placeholder (when no thumbnail) */
.hero-thumb-placeholder {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
}

.hero-thumb-placeholder .ph-icon {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.hero-thumb-placeholder .ph-icon svg {
  width: 28px;
  height: 28px;
  fill: white;
  margin-right: -3px;
}

.hero-thumb-placeholder .ph-label {
  font-size: var(--font-size-xs);
  color: rgba(255,255,255,0.45);
}

/* ── Hero Content (text, RTL = left side) ── */
.hero-content {
  order: 2;
  padding: var(--space-10) var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  justify-content: center;
}

.hero-badge-row {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}

/* Animated "live" badge */
.badge-new {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-accent-red);
  color: white;
  padding: 3px var(--space-3);
  border-radius: var(--radius-sm);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.badge-new::before {
  content: '';
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  animation: pulse-dot 1.6s infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.35; transform: scale(0.8); }
}

.hero-title {
  font-size: var(--font-size-3xl);
  font-weight: 800;
  line-height: 1.4;
  color: var(--color-text-primary);
}

.hero-summary {
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
  line-height: 1.85;
}

.hero-meta-row {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-accent-red);
  color: white;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: var(--font-size-sm);
  transition: all var(--transition-fast);
  align-self: flex-start;
  margin-top: var(--space-2);
}

.hero-cta:hover {
  background: var(--color-accent-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(220, 53, 69, 0.38);
}

.hero-cta svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-card {
    grid-template-columns: 1fr;
  }

  .hero-thumb-wrap {
    min-height: 240px;
  }

  .hero-content {
    order: 2;
    padding: var(--space-6);
  }

  .hero-title {
    font-size: var(--font-size-2xl);
  }

  .hero-thumb-wrap::after {
    background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 60%);
  }
}

@media (max-width: 480px) {
  .hero-section { padding: var(--space-6) 0; }
  .hero-thumb-wrap { min-height: 200px; }
  .hero-title { font-size: var(--font-size-xl); }
}
