/* Podcast Single Page - Responsive & Standardized */
.single-podcast-container { padding: 40px 15px; max-width: 100%; }
.podcast-hero { display: flex; flex-direction: column; gap: 24px; margin: 0 auto 48px; max-width: 1000px; width: 100%; }
.podcast-hero .hero-video { position: relative; width: 100%; }
.podcast-hero .hero-video .hero-card { position: relative; border-radius: 16px; overflow: hidden; background: var(--color-black); width: 100%; }
.podcast-hero .hero-video .hero-card::after { content: ""; position: absolute; inset: 10px; border: 2px dotted rgba(92, 184, 92, 0.3); border-radius: 14px; pointer-events: none; }
.podcast-hero .hero-video img { width: 100%; display: block; height: auto; }
.podcast-hero .hero-video .video-embed { position: relative; padding-top: 56.25%; border-radius: 16px; overflow: hidden; width: 100%; }
.podcast-hero .hero-video .video-embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.podcast-hero .hero-info { display: flex; flex-direction: column; gap: 20px; width: 100%; }
.podcast-hero .hero-info .hero-meta { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.podcast-hero .hero-info .date-badge { background: var(--color-dark); color: var(--text-light); border-radius: 6px; padding: 6px 12px; font-size: 12px; font-weight: 600; white-space: nowrap; }
.podcast-hero .hero-info .pill { background: #e8f5e9; color: var(--color-primary); border-radius: 999px; padding: 5px 14px; font-size: 12px; font-weight: 500; white-space: nowrap; }
.podcast-hero .hero-title { margin: 0; font-size: clamp(24px, 5vw, 32px); font-weight: 700; line-height: 1.3; color: var(--text-primary); }
.author-strip { display: flex; align-items: center; gap: 12px; padding: 14px 18px; background: var(--color-dark); color: var(--text-light); border-radius: 12px; }
.author-strip .author-avatar img { border-radius: 50%; width: 40px; height: 40px; object-fit: cover; }
.author-strip .author-info .author-name { font-weight: 600; font-size: 14px; margin-bottom: 2px; }
.author-strip .author-info .author-role { font-size: 12px; opacity: 0.8; }

.podcast-content { margin: 0 auto 48px; max-width: 1000px; width: 100%; padding: 0 15px; }
.podcast-content .content-block { background: var(--bg-secondary); padding: 24px; border-radius: 12px; font-size: 16px; line-height: 1.7; color: var(--text-primary); }
.podcast-sidebar .sidebar-block { background: var(--bg-primary); border: 1px solid var(--border-gray); border-radius: 8px; padding: 16px; margin-bottom: 16px; }
.podcast-sidebar ul { list-style: none; margin: 0; padding: 0; }
.podcast-sidebar li { margin-bottom: 6px; }

.podcast-related { margin: 0 auto 48px; max-width: 1200px; width: 100%; padding: 0 15px; }
.podcast-related .section-title { margin: 32px 0 12px; font-size: clamp(24px, 4vw, 28px); font-weight: 700; color: var(--text-primary); }
.podcast-related .tabs { display: flex; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.podcast-related .tabs .tab { color: var(--color-primary); text-decoration: none; padding: 8px 16px; border-radius: 999px; background: var(--bg-secondary); transition: all 0.2s; font-weight: 500; border: none; cursor: pointer; font-size: 14px; font-family: inherit; }
.podcast-related .tabs .tab:hover, .podcast-related .tabs .tab.active { background: var(--color-primary); color: var(--text-light); }

.episodes-list { display: grid; grid-template-columns: 1fr; gap: 24px; }
.episode-card { display: grid; grid-template-columns: 260px 1fr; gap: 20px; align-items: start; background: var(--bg-primary); border: 1px solid var(--border-gray); border-radius: 16px; padding: 16px; transition: box-shadow 0.2s; }
.episode-card:hover { box-shadow: var(--shadow-md); }
.episode-card.active-episode { border-color: var(--color-primary); background: #f1f8f1; box-shadow: var(--shadow-primary); }
.episode-thumb { position: relative; min-height: 146px; border-radius: 8px; overflow: hidden; background: var(--color-black); }
.episode-thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }
.episode-thumb .video-embed { position: relative; padding-top: 56.25%; border-radius: 8px; overflow: hidden; }
.episode-thumb .video-embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.episode-thumb .play { position: absolute; bottom: 8px; left: 8px; width: 40px; height: 40px; border-radius: 50%; background: var(--color-primary); color: var(--text-light); display: flex; align-items: center; justify-content: center; text-decoration: none; }
.episode-body { display: flex; flex-direction: column; gap: 12px; }
.episode-body .episode-meta { color: var(--text-secondary); display: flex; gap: 8px; align-items: center; margin-bottom: 6px; flex-wrap: wrap; }
.episode-body .date-badge { background: var(--color-dark); color: var(--text-light); border-radius: 6px; padding: 4px 10px; font-size: 11px; font-weight: 600; white-space: nowrap; }
.episode-body .pill { background: #e8f5e9; color: var(--color-primary); border-radius: 999px; padding: 4px 10px; font-size: 11px; font-weight: 500; white-space: nowrap; }
.episode-title { margin: 6px 0; font-weight: 600; font-size: clamp(16px, 3vw, 18px); line-height: 1.3; color: var(--text-primary); }
.episode-excerpt { color: var(--text-secondary); font-size: 14px; line-height: 1.6; }
.episode-actions { display: flex; gap: 10px; margin-top: 8px; flex-wrap: wrap; }
.icon-btn { background: var(--bg-primary); border: 1px solid var(--border-gray); border-radius: 8px; padding: 8px 12px; cursor: pointer; transition: all 0.2s; font-size: 16px; color: var(--text-secondary); }
.icon-btn:hover { background: var(--bg-secondary); border-color: var(--color-primary); color: var(--color-primary); }

/* Responsive Breakpoints */
@media (max-width: 768px) {
  .single-podcast-container { padding: 24px 10px; }
  .podcast-hero { gap: 20px; margin-bottom: 32px; }
  .podcast-hero .hero-info { gap: 16px; }
  .podcast-content { margin-bottom: 32px; padding: 0 10px; }
  .podcast-content .content-block { padding: 20px; }
  .podcast-related { margin-bottom: 32px; padding: 0 10px; }
  .podcast-related .tabs { gap: 8px; }
  .podcast-related .tabs .tab { padding: 6px 14px; font-size: 13px; }
  .episode-card { grid-template-columns: 1fr; gap: 16px; padding: 12px; }
  .episode-thumb { min-height: auto; }
}

@media (max-width: 480px) {
  .single-podcast-container { padding: 20px 8px; }
  .podcast-hero .hero-info .hero-meta { gap: 6px; }
  .podcast-hero .hero-info .date-badge, .podcast-hero .hero-info .pill { font-size: 11px; padding: 5px 10px; }
  .author-strip { padding: 12px 14px; gap: 10px; }
  .podcast-content .content-block { padding: 16px; font-size: 15px; }
  .podcast-related .episodes-list { gap: 16px; }
  .episode-actions { gap: 8px; }
  .icon-btn { padding: 6px 10px; font-size: 14px; }
}
