/* ==============================
   Radio Favorites — hearts + live list
   ============================== */

/* ---- Heart inside radio card (radio.tpl) ---- */
.mzk-radio-card__title-row {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 8px;
}

.mzk-radio-card__title-row h3 {
  flex: 1 1 auto;
}

.mzk-radio-card__fav {
  position: relative;
  z-index: 2;
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #64748b;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, transform .15s ease;
}

.mzk-radio-card__fav:hover,
.mzk-radio-card__fav:focus-visible {
  background: rgba(255, 162, 0, .1);
  color: #ffa200;
  filter: drop-shadow(0 0 6px rgba(255, 162, 0, .25));
}

.mzk-radio-card__fav:active {
  transform: scale(.9);
}

.mzk-radio-card__fav svg {
  width: 18px;
  height: 18px;
}

.mzk-radio-card__fav svg path {
  fill: none;
}

.mzk-radio-card__fav.is-active {
  color: #ffa200;
}

.mzk-radio-card__fav.is-active svg path {
  fill: currentColor;
}

/* ---- Live badge in track row (favorite-radio page) ---- */
.mzk-radio-row__live {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 6px;
  color: #2d7d4c;
  font-size: 12px;
  font-weight: 650;
  line-height: 20px;
  white-space: nowrap;
}

.mzk-radio-row__live i {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #35b96b;
  box-shadow: 0 0 0 4px rgba(53, 185, 107, .1);
}

/* ---- Radio heart in row actions ---- */
.mzk-radio-row .mzk-track-row__action.is-active {
  color: #ef4444;
  background: #fef2f2;
}

.mzk-radio-row .mzk-track-row__action.is-active:hover,
.mzk-radio-row .mzk-track-row__action.is-active:focus-visible {
  color: #dc2626;
  background: #fee2e2;
}

/* ---- Compact cover in radio rows ---- */
.mzk-radio-row .mzk-track-row__cover img {
  border-radius: 12px;
}
