/* ============================================
   SAF Radio - Page styles
   ============================================ */

/* Genre badges (display only, English-only contexts) */
.radio-genre-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 2rem 0;
}

.radio-genre-badge {
  display: inline-block;
  padding: 6px 14px;
  background: #eaeaea;
  color: #333;
  border-radius: 999px;
  font-family: 'FranklinGothicBook', 'Franklin Gothic Book', sans-serif;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1.4;
}

/* "More from this show" section */
.radio-more-heading {
  font-size: 2.25rem;
  margin: 0 0 0.25rem 0;
}

/* SAF Radio show spotlight (overview page) */
.radio-show-spotlight .extended-banner {
  min-height: 270px;
}

/* ============================================
   Live "Now Playing" block (overview page)
   ============================================ */
.radio-live-block {
  margin: 2rem 0;
}

.radio-live-inner {
  background: #b2d236;
  color: #000;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  flex-wrap: wrap;
  border: 2px solid #000;
}

.radio-live-play-btn {
  width: 72px;
  height: 72px;
  background: #000;
  color: #fff;
  border: 2px solid #000;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.radio-live-play-btn:hover {
  background: #333;
  transform: scale(1.03);
}

.radio-live-play-btn:active {
  transform: scale(0.97);
}

.radio-live-play-btn.is-loading {
  pointer-events: none;
  opacity: 0.7;
}

.radio-live-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
}

.radio-live-station-name {
  font-family: 'FranklinGothicDemi', 'Franklin Gothic Medium', sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1;
  color: #000;
}

.radio-live-status-line {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.radio-live-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border: 1px solid #000;
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  white-space: nowrap;
  color: #000;
}

.radio-live-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #666;
  flex-shrink: 0;
}

.radio-live-status-badge.is-live .radio-live-status-dot {
  background: #000;
  animation: dotPulse 1.5s ease-in-out infinite;
}

.radio-live-status-text {
  line-height: 1;
}

.radio-live-track-title {
  font-family: 'FranklinGothicBook', 'Franklin Gothic Book', sans-serif;
  font-size: 0.95rem;
  color: #000;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

.radio-live-loading-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: radioSpin 0.7s linear infinite;
}
