/* Spotify Episodes styles */
.wpse-episodes { display: grid; gap: 16px; }
.wpse-style-cards { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.wpse-style-list { grid-template-columns: 1fr; }
.wpse-episode { display: grid; grid-template-columns: 96px 1fr; gap: 12px; align-items: start; background: #fff; border: 1px solid rgba(0,0,0,.06); border-radius: 12px; padding: 12px; box-shadow: 0 8px 20px rgba(0,0,0,.06); }
.wpse-episode img { width: 96px; height: 96px; object-fit: cover; border-radius: 8px; }
.wpse-title { margin: 0 0 4px; font-size: 16px; line-height: 1.3; }
.wpse-sub { font-size: 12px; opacity: .75; margin-bottom: 8px; }
.wpse-actions .wpse-play { display: inline-block; padding: 8px 10px; border-radius: 8px; background: #1DB954; color: #fff; text-decoration: none; font-weight: 600; }
.wpse-actions .wpse-play:hover { filter: brightness(0.9); }
.wpse-error { padding: 12px; background: #fee; border: 1px solid #f88; border-radius: 8px; }
.wpse-note { margin-top: 8px; font-size: 12px; opacity: .7; }

/* SIMPLE layout: small font list with inline play */
.wpse-simple { list-style: none; margin: 0; padding: 0; font-size: 13px; line-height: 1.4; }
.wpse-simple-item { display: grid; grid-template-columns: 28px 1fr; align-items: start; gap: 8px; padding: 6px 0; border-bottom: 1px dashed rgba(0,0,0,.08); }
.wpse-simple-item:last-child { border-bottom: 0; }
.wpse-play-toggle { width: 24px; height: 24px; border: 1px solid rgba(0,0,0,.15); border-radius: 999px; background: #fff; font-size: 12px; line-height: 1; cursor: pointer; }
.wpse-play-toggle[aria-expanded="true"] { background: #1DB954; color: #fff; border-color: #1DB954; }
.wpse-simple .wpse-title a { text-decoration: none; }
.wpse-simple .wpse-title a:hover { text-decoration: underline; }
.wpse-embed { margin: 6px 0 0 0; grid-column: 1 / -1; }
.wpse-embed iframe { width: 100%; height: 152px; border: 0; border-radius: 8px; }
