/* ===== Hero (shared pattern with Articles page) ===== */
.videos-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: var(--space-xl) var(--space-md);
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border-hair) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-hair) 1px, transparent 1px);
  background-size: 44px 44px;
  animation: gridDrift 18s linear infinite;
  mask-image: radial-gradient(circle at 50% 40%, black, transparent 75%);
}
@keyframes gridDrift {
  from { background-position: 0 0; }
  to { background-position: 44px 44px; }
}
.typing-heading {
  position: relative;
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  max-width: 800px;
  min-height: 3.2rem;
}
.typing-cursor { display: inline-block; color: var(--accent-gold); animation: blink 0.9s step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }
.hero-subtitle {
  max-width: 640px;
  margin-top: var(--space-md);
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* ===== Channel section ===== */
.channel-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
}
.channel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border-hair);
}
.channel-info h2 { font-size: 1.6rem; margin-bottom: 0.4rem; }
.channel-info p { color: var(--text-muted); max-width: 520px; font-size: 0.95rem; }

.youtube-subscribe-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #FF0000;
  color: #fff;
  padding: 0.7rem 1.4rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.youtube-subscribe-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,0,0,0.35);
}

/* ===== Video grid ===== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.video-card {
  border: 1px solid var(--border-hair);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.video-embed-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  cursor: pointer;
}
.video-thumb { width: 100%; height: 100%; object-fit: cover; }
.video-embed-wrap iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: none;
}
.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(255,0,0,0.9);
  color: #fff;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
}
.play-btn:hover { transform: translate(-50%, -50%) scale(1.1); background: #FF0000; }

.video-card-body { padding: var(--space-md); }
.video-card-body h3 { font-size: 0.95rem; margin-bottom: 0.6rem; line-height: 1.4; }
.yt-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-muted);
}
.yt-link:hover { color: #FF0000; }

/* ===== Podcast section ===== */
.podcast-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
}
.podcast-section h2 {
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
  padding-left: 1rem;
  position: relative;
}
.podcast-section h2::before {
  content: '//';
  color: var(--accent-gold);
  font-family: var(--font-mono);
  margin-right: 0.5rem;
}

.podcast-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.podcast-card {
  border: 1px solid var(--border-hair);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.podcast-card:hover { transform: translateY(-4px); border-color: var(--accent-gold); }

.podcast-cover { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.podcast-card-body { padding: var(--space-md); }
.podcast-platform {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--accent-gold);
}
.podcast-card-body h3 { font-size: 1rem; margin: 0.4rem 0; }
.podcast-card-body p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.5rem; line-height: 1.5; }
.podcast-date { font-family: var(--font-mono); font-size: 0.72rem; color: var(--text-muted); display: block; margin-bottom: 0.8rem; }

.podcast-embed { width: 100%; height: 152px; border: none; border-radius: 6px; margin-bottom: 0.8rem; }

.listen-btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 0.6rem;
  font-size: 0.85rem;
}

.view-all-wrap { text-align: center; margin-top: var(--space-lg); }
.view-all-link {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--accent-gold);
  border-bottom: 1px solid var(--accent-gold);
  padding-bottom: 2px;
}

/* ===== Hindi section subtle distinction ===== */
.hindi-section { background: rgba(255,255,255,0.015); border-radius: 12px; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .video-grid, .podcast-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .video-grid, .podcast-grid { grid-template-columns: 1fr; }
  .channel-header { flex-direction: column; align-items: flex-start; }
}