/* MuLo — minimalist, in the spirit of mumblelouder v1 */

#nav-logo {
  margin: 10px;
}

.comment-panel {
  background-color: #f8f9fa;
}

.comment-item:last-child {
  border-bottom: none !important;
}

.transcript-scroll {
  height: 480px;
  overflow-y: scroll;
  scroll-behavior: smooth;
}

.transcript-turn .turn-header {
  margin-bottom: 2px;
}

.speaker-chip {
  display: inline-block;
  padding: 0 8px;
  border-radius: 10px;
  font-weight: 600;
  color: #333;
  background-color: #e9ecef;
}

.turn-time {
  text-decoration: none;
  margin-left: 4px;
}

.turn-time:hover {
  text-decoration: underline;
}

.transcript-segment:hover {
  background-color: #fff3cd;
  cursor: pointer;
}

.current-segment {
  background-color: #ffeb3b !important;
  text-shadow: 0 0 0.5px currentColor;
}

#follow-btn {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 999px;
  z-index: 5;
}

.episode-description img {
  max-width: 100%;
  height: auto;
}

/* Per-episode cover art on the detail page, between title and player.
   Left-aligned; scales down with the viewport on narrow screens. */
.episode-cover {
  display: block;
  width: min(320px, 100%);
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  margin: 0 0 1.25rem;
  transition: box-shadow 0.15s ease;
}

.episode-cover:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.24);
}
