/* Shared media holder overlay */
.media-holder {
  position: relative;
  display: inline-block;
}

.media-holder .media-thumb img {
  display: block;
  width: 100%;
  height: auto;
}

.media-holder .video-play-trigger {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  margin: -30px 0 0 -30px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  text-align: center;
  line-height: 60px;
  transition: background 0.2s ease-in-out;
}

.media-holder .video-play-trigger:hover {
  background: rgba(91, 182, 111, 0.85);
}

/* Preserve compact promo sizing */
.updates-block .media-holder {
  width: 170px;
  height: 100px;
}

.updates-block .media-holder .video-play-trigger {
  width: 36px;
  height: 36px;
  margin: -18px 0 0 -18px;
  line-height: 36px;
}

/* Larger media holder in Music section */
.music-section .media-holder {
  max-width: 640px; /* larger thumbnail on desktop */
  width: 100%;      /* responsive */
  margin: 20px auto; /* add a bit of spacing and center */
}

.music-section .media-holder .video-play-trigger {
  width: 72px;
  height: 72px;
  margin: -36px 0 0 -36px;
  line-height: 72px;
}

@media (max-width: 576px) {
  .music-section .media-holder .video-play-trigger {
    width: 48px;
    height: 48px;
    margin: -24px 0 0 -24px;
    line-height: 48px;
  }
}

/* ===== Audio Player ===== */
.audio-intro {
  max-width: 600px;
  margin: 30px auto 0;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #101113;
}


.audio-player {
  max-width: 600px;
  text-align: left;
  margin-top: 40px;
}

.now-playing-card {
  background: #1c1d21;
  color: #fff;
  padding: 24px 28px;
  display: flex;
  gap: 24px;
  align-items: center;
}

.np-logo {
  width: 140px;
  height: 140px;
  flex-shrink: 0;
  border-radius: 4px;
  object-fit: contain;
  background: #111;
}

.np-right { flex: 1; min-width: 0; }

.np-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #5bb66f;
  margin-bottom: 6px;
}

.np-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 900;
  font-size: 22px;
  margin-bottom: 20px;
  min-height: 30px;
}

.scrubber-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.time-label {
  font-size: 12px;
  color: #888;
  width: 36px;
  flex-shrink: 0;
}

.np-scrubber {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  background: #333;
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

.np-scrubber::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #5bb66f;
  cursor: pointer;
}

.np-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

.np-ctrl-btn {
  background: none;
  border: none;
  color: #888;
  font-size: 18px;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition: color 0.2s;
}

.np-ctrl-btn:hover { color: #fff; }

.np-play-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #5bb66f;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}

.np-play-btn:hover { background: #4cab61; }

.np-track-list {
  list-style: none;
  padding: 0;
  margin: 0;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-top: none;
}

.np-track {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  transition: background 0.15s;
}

.np-track:last-child { border-bottom: none; }
.np-track:hover { background: #f9f9f9; }
.np-track.active { background: #f0faf2; }
.np-track.active .np-track-num { color: #5bb66f; }
.np-track.active .np-track-name { color: #5bb66f; font-weight: 700; }

.np-track-num {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: #bbb;
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

.np-track-name {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 14px;
  flex: 1;
  color: #101113;
}

.np-track-dur {
  font-size: 12px;
  color: #bbb;
  flex-shrink: 0;
}

@media (max-width: 576px) {
  .audio-intro {
    font-size: 11px;
    letter-spacing: 1px;
  }

  .now-playing-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 16px;
  }

  .np-logo {
    width: 100px;
    height: 100px;
  }

  .np-title {
    font-size: 16px;
  }

  .np-controls {
    justify-content: center;
  }
}