.podcast-player { max-width: 600px; margin: 2em auto; }

.podcast-player .playlist {
  list-style: none;
  padding: 0;
  margin: 1em 0 0;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
}

.podcast-player .playlist li {
  padding: 10px 12px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  transition: background 0.2s;
}

.podcast-player .playlist li:last-child { border-bottom: none; }
.podcast-player .playlist li:hover { background: #f7f7f7; }
.podcast-player .playlist li.active { background: #e0e0e0; font-weight: 600; }

.podcast-player .caption {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  color: #555;
}

.podcast-subtitle {
  display: block;      /* pour forcer la ligne en dessous */
  font-size: 0.9em;    /* plus petit que le titre */
  font-style: italic;  /* ou autre style */
  color: #555;         /* gris pour distinguer */
}