/* Thumbnail links must establish a block box before sizing their images. */
#episode-list{grid-template-columns:repeat(2,minmax(0,1fr));align-items:stretch}
#episode-list .ep{min-width:0;display:flex;flex-direction:column}
#episode-list .ep-thumb{display:block;width:100%;aspect-ratio:16/9;position:relative;overflow:hidden;background:#000}
#episode-list .ep-thumb img{display:block;position:absolute;inset:0;width:100%;height:100%;object-fit:contain}
#episode-list .ep-copy{min-width:0;overflow-wrap:anywhere;display:grid;grid-template-rows:22px 84px 102px 44px;gap:16px;flex:1}
#episode-list .meta{grid-row:1;margin:0;line-height:22px}
#episode-list h2{grid-row:2;font-size:20px;line-height:28px;margin:0}
#episode-list p{grid-row:3;font-size:17px;line-height:25.5px;margin:0}
/* Reserve the same title and excerpt space even when an episode has less copy. */
#episode-list h2,#episode-list p{display:-webkit-box;-webkit-box-orient:vertical;overflow:hidden}
#episode-list h2{-webkit-line-clamp:3}
#episode-list p{-webkit-line-clamp:4}
#episode-list .go{grid-row:4;align-self:end;justify-self:start;margin:0}
@media(max-width:800px){#episode-list{grid-template-columns:minmax(0,1fr)}}
