/* =========================
   CONTENT WIDTH – PODCAST
========================= */
.podcast-container {
    max-width: 1100px;   /* było ~1200–1400 */
    padding-left: 24px;
    padding-right: 24px;
    margin: 0 auto;
}
.podcast-episodes .container,
/* =========================
   ROOT – KOLORY & TOKENS
========================= */
:root {
    --bg-main: #fff;
    --bg-card: #ffffff;
    --bg-soft: #f1f5f9;

    --border: #e5e7eb;

    --text-main: #0f172a;
    --text-muted: #64748b;

    --primary: #4f46e5;
    --primary-soft: #eef2ff;

    --radius-lg: 28px;
    --radius-md: 20px;

    --shadow-soft: 0 10px 30px rgba(2,6,23,.08);
    --shadow-hover: 0 20px 50px rgba(2,6,23,.12);
}

/* =========================
   BASE
========================= */
.podcast-page {
    color: var(--text-main);
}

.podcast-page h1,
.podcast-page h2,
.podcast-page h3 {
    color: var(--text-main);
}

.podcast-page p {
    color: var(--text-muted);
    line-height: 1.65;
}
/* =========================
   HERO – FIXED LAYOUT
========================= */

.podcast-hero .grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 40px;
    align-items: stretch;
}

/* COVER */
.podcast-hero-cover {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 0;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.podcast-hero-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    display: block;
}

/* CONTENT */
.podcast-hero-content {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* =========================
   HERO – BOXES
========================= */
.podcast-hero {
    padding: 100px 0;
}

.podcast-hero .grid {
    gap: 40px;
}

.podcast-hero-cover,
.podcast-hero-content {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-soft);
}

.podcast-hero-cover img {
    width: 100%;
    border-radius: 20px;
}

.podcast-label {
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--primary);
}

.podcast-title {
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    margin: 15px 0;
}

.podcast-desc {
    font-size: 1.05rem;
}

.podcast-platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 25px;
}

.platform {
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}

/* =========================
   PLAYER – CARD
========================= */

.podcast-player .container {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

.podcast-player iframe {
    width: 100%;
    border-radius: 18px;
}

/* =========================
   EPISODES – GRID BOXES
========================= */


.podcast-episodes .grid-auto {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.episode-card {
    border: 1px solid var(--border);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    transition: all .3s ease;
}

.episode-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.episode-number {
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.episode-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.episode-card p {
    margin-bottom: 18px;
}

.episode-link {
    margin-top: auto;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

/* =========================
   ABOUT – BOXES
========================= */
.podcast-about {
    padding: 100px 0;
}

.podcast-about .grid {
    gap: 40px;
}

.podcast-host {
    text-align: center;
}

.podcast-host img {
    width: 120px;
    border-radius: 50%;
    margin-bottom: 15px;
    box-shadow: var(--shadow-soft);
}

.podcast-host strong {
    display: block;
    margin-bottom: 4px;
}

.podcast-host span {
    color: var(--text-muted);
}

/* =========================
   CTA – LIGHT PREMIUM
========================= */
.podcast-cta {
    padding: 100px 0;
    text-align: center;
}

.podcast-cta h2 {
    margin-bottom: 10px;
}

.btn-primary {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 30px;
    background: var(--primary);
    color: #ffffff;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(79,70,229,.3);
    transition: transform .2s ease, box-shadow .2s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(79,70,229,.35);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

    .podcast-hero,
    .podcast-player,
    .podcast-episodes,
    .podcast-about,
    .podcast-cta {
        padding: 70px 0;
    }

    .podcast-hero-cover,
    .podcast-hero-content,
    .podcast-player .container,
    .podcast-about > .container > div {
        padding: 28px;
    }
}
