/* Voices & Views (Podcast) — pairs with blog.css */
.pod-list { display: flex; flex-direction: column; gap: 28px; max-width: 920px; margin: 0 auto; }
.pod-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 26px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: box-shadow .3s ease, transform .3s ease;
}
.pod-card:hover { box-shadow: var(--shadow-accent); transform: translateY(-3px); }
.pod-cover { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 1; background: var(--accent-soft); }
.pod-cover img { width: 100%; height: 100%; object-fit: cover; }
.pod-cover-icon { display: grid; place-items: center; height: 100%; font-size: 44px; color: var(--accent); }

.pod-body { min-width: 0; }
.pod-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 8px; }
.pod-ep { background: var(--accent); color: #fff; font-size: 12px; font-weight: 700; padding: 3px 12px; border-radius: var(--radius-pill); }
.pod-dur { font-size: 13px; color: var(--muted); }
.pod-body h2 { font-family: var(--font-display); font-size: 21px; color: var(--ink); margin: 0 0 6px; line-height: 1.3; }
.pod-guest { font-size: 14px; color: var(--accent); margin: 0 0 10px; font-weight: 500; }
.pod-desc { font-size: 14.5px; color: var(--muted); line-height: 1.65; margin: 0 0 16px; }

.pod-player iframe { width: 100%; border: 0; border-radius: 12px; }
.pod-player audio { width: 100%; }

@media (max-width: 640px) {
    .pod-card { grid-template-columns: 1fr; }
    .pod-cover { max-width: 200px; }
}