.afspeellijst {
  background: var(--mint-licht);
  border: 1px solid var(--rand);
  border-radius: 12px;
  box-shadow: 0 4px 20px var(--schaduw);
  margin: 44px auto;
  padding: 32px 22px 18px;
  max-width: 540px;
  text-align: center;
  transition: box-shadow 0.2s;
}
.afspeellijst.active,
.afspeellijst:has(audio:not([src=""])) {
  box-shadow: 0 6px 32px rgba(58,114,105,0.14);
}
.afspeellijst-cover-wrap {
  margin-bottom: 16px;
  transition: box-shadow 0.3s;
}
.afspeellijst-cover {
  width: 100%;
  max-width: 180px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 10px var(--schaduw);
  object-fit: cover;
  transition: box-shadow 0.2s, filter 0.2s;
}
.afspeellijst.active .afspeellijst-cover,
.afspeellijst:has(audio:not([src=""])) .afspeellijst-cover {
  box-shadow: 0 0 0 3px var(--teal-midden), 0 4px 24px rgba(58,114,105,0.12);
  filter: brightness(1.03);
}
.afspeellijst h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3em;
  font-weight: 400;
  color: var(--teal-donker);
  margin-bottom: 18px;
  margin-top: 0;
}
.afspeellijst-player-wrap {
  margin-bottom: 18px;
}
.audio-title {
  font-size: 1em;
  color: var(--teal-midden);
  font-weight: 400;
  min-height: 20px;
  margin-top: 8px;
  font-style: italic;
}
.audio-flat-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 18px auto;
  max-width: 420px;
  text-align: left;
}
.audio-flat-list li {
  margin-bottom: 8px;
}
.audio-flat-list button.audio-select {
  width: 100%;
  background: var(--wit);
  border: 1px solid var(--rand);
  border-radius: 5px;
  padding: 11px 16px 11px 38px;
  font-size: 0.93em;
  font-family: 'Lato', sans-serif;
  color: var(--tekst);
  text-align: left;
  cursor: pointer;
  position: relative;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  outline: none;
}
.audio-flat-list button.audio-select .audio-play-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1em;
  color: var(--teal-midden);
  pointer-events: none;
}
.audio-flat-list button.audio-select:hover,
.audio-flat-list button.audio-select.active {
  background: var(--mint-bg);
  border-color: var(--teal-midden);
  color: var(--teal-donker);
}
.audio-flat-list button.audio-select.active .audio-play-icon {
  color: var(--teal-donker);
}
@media (max-width: 600px) {
  .afspeellijst {
    padding: 16px 3vw 10px;
    max-width: 100%;
    border-radius: 8px;
  }
  .audio-flat-list { max-width: 100%; }
  .afspeellijst-cover { max-width: 140px; }
}
/* Bezetting-label achter trackname in mix-preview */
.audio-flat-list button.audio-select .audio-bezetting {
  color: var(--teal-licht);
  font-size: 0.85em;
  font-style: italic;
  margin-left: 4px;
}
