/* ═══════════════════════════════════════════
   podcast.css — Mikrofonda Sayfası
   site.css zaten nav/footer/lang/animations içerir.
   ═══════════════════════════════════════════ */

/* ── Hero ── */
.page-hero { background: var(--navy); padding: 80px 5%; }
.page-hero-inner { max-width: 1200px; margin: 0 auto; }
.page-title { font-family: 'DM Serif Display', serif; font-size: clamp(2.2rem, 4vw, 3.4rem); color: white; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 1rem; }
.page-sub { font-size: 1rem; color: rgba(255,255,255,0.55); font-weight: 300; max-width: 520px; line-height: 1.7; }

/* ── Episode Card ── */
.episode-section { max-width: 1200px; margin: 0 auto; padding: 64px 5% 80px; }
.episode-card { background: var(--bg-card); border: 1.5px solid var(--border); border-radius: 20px; overflow: hidden; display: grid; grid-template-columns: 280px 1fr; transition: all 0.3s; }
.episode-visual { background: linear-gradient(135deg, #0f2248 0%, #1a3461 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 2.5rem; gap: 1rem; position: relative; overflow: hidden; }
.episode-visual::before { content: ''; position: absolute; top: -30px; right: -30px; width: 160px; height: 160px; border: 1px solid rgba(201,168,76,0.15); border-radius: 50%; }
.mic-icon { width: 64px; height: 64px; background: rgba(201,168,76,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(201,168,76,0.25); }
.ep-number { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.episode-content { padding: 2.5rem; display: flex; flex-direction: column; justify-content: space-between; }
.ep-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 1.2rem; flex-wrap: wrap; }
.ep-tag { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px; border-radius: 20px; background: var(--navy-light); color: var(--navy); }
.ep-show { font-size: 0.78rem; color: var(--text-muted); }
.ep-title { font-family: 'DM Serif Display', serif; font-size: 1.6rem; color: var(--navy); line-height: 1.25; margin-bottom: 1rem; letter-spacing: -0.02em; }
.ep-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.75; font-weight: 300; margin-bottom: 1.8rem; }
.ep-listen { display: flex; gap: 1rem; flex-wrap: wrap; }
.listen-btn { display: inline-flex; align-items: center; gap: 8px; padding: 11px 20px; border-radius: 8px; font-size: 0.82rem; font-weight: 600; text-decoration: none; transition: all 0.2s; font-family: 'DM Sans', sans-serif; }
.listen-btn.spotify { background: #1DB954; color: white; }
.listen-btn.apple { background: var(--navy); color: white; }
.listen-btn:hover { transform: translateY(-2px); opacity: 0.9; }

/* ── More Section ── */
.more-section { max-width: 1200px; margin: 0 auto; padding: 0 5% 80px; }
.more-card { background: var(--bg-card); border: 1.5px dashed var(--border); border-radius: 16px; padding: 3rem; text-align: center; }
.more-title { font-family: 'DM Serif Display', serif; font-size: 1.4rem; color: var(--navy); margin-bottom: 0.8rem; }
.more-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; max-width: 420px; margin: 0 auto; }

/* ── Podcast Responsive ── */
@media (max-width: 900px) {
    .episode-card { grid-template-columns: 1fr; }
    .episode-visual { min-height: 160px; padding: 2rem; }
}
