/* Podcast Directory Lite: layout */
.pdl-player { display:flex; gap:16px; align-items:flex-start; margin: 12px 0 20px; border:1px solid #e5e7eb; padding:12px; border-radius:8px; }
.pdl-player .pdl-cover { width:96px; height:96px; object-fit:cover; border-radius:8px; }
.pdl-player .pdl-title { display:block; margin-bottom:8px; }

.pdl-episode-list { display:grid; grid-template-columns: repeat(auto-fill,minmax(260px,1fr)); gap:16px; }
.pdl-episode-card { border:1px solid #e5e7eb; padding:12px; border-radius:8px; }
.pdl-episode-cover { width:100%; height:160px; object-fit:cover; border-radius:6px; margin-bottom:8px; }
.pdl-episode-title { margin: 6px 0; font-size: 16px; }
.pdl-episode-meta { font-size: 12px; opacity: .75; margin-bottom: 6px; }

.pdl-podcast-cover img { border-radius: 8px; }
.pdl-pagination ul { list-style:none; display:flex; gap:8px; padding:0; }
.pdl-pagination li { border:1px solid #e5e7eb; padding:6px 10px; border-radius:6px; }
