.pod-main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 40px 100px;
}

/* ── Hero ── */
.pod-hero {
    margin-bottom: 56px;
}

.pod-hero-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--navy);
}

.pod-hero-title {
    font-family: var(--serif);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    color: var(--text);
    margin: 10px 0 8px;
    line-height: 1.1;
}

.pod-hero-sub {
    font-size: 16px;
    color: var(--muted);
}

/* ── Episode list ── */
.pod-list {
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.pod-loading {
    font-size: 14px;
    color: var(--muted);
}

/* ── Episode card ── */
.pod-episode {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--gray);
}

.pod-episode:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* ── Left: text ── */
.pod-number {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 12px;
}

.pod-title {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--text);
    margin-bottom: 8px;
}

.pod-date {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 16px;
}

.pod-description {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text);
    margin-bottom: 24px;
    text-align: justify;
}

.pod-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: 16px;
    border-top: 1px solid var(--gray);
}

.pod-meta-row {
    display: flex;
    gap: 10px;
    font-size: 13px;
    color: var(--text);
}

.pod-meta-label {
    font-weight: 600;
    color: var(--navy);
    min-width: 52px;
}

/* ── Right: video ── */
.pod-video-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.pod-video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .pod-main { padding: 40px 20px 60px; }

    .pod-episode {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    /* video first on mobile */
    .pod-episode-right { order: -1; }
}
