/* ===== Music card — "Phát trực tiếp tại:" + platform icons (Spotify / Apple Music) ===== */
.music-platforms {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 2px 0 8px;
}
.music-plat-label {
  font-family: var(--font-body, 'Manrope', sans-serif);
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted, #9a8a78);
  white-space: nowrap;
}
.music-plat-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--text-muted, #9a8a78);
  border: 1px solid rgba(120, 95, 58, 0.22);
  background: rgba(255, 255, 255, 0.55);
  transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.music-plat-ic svg { width: 16px; height: 16px; }
.music-plat-ic:hover {
  transform: translateY(-1px);
  background: #fff;
  box-shadow: 0 3px 10px rgba(120, 95, 58, 0.16);
}
.music-plat-ic.is-spotify:hover { color: #1DB954; border-color: #1DB954; }
.music-plat-ic.is-apple:hover   { color: #FA243C; border-color: #FA243C; }

@media (max-width: 900px) {
  .music-platforms { gap: 6px; }
  .music-plat-label { font-size: 10px; }
  .music-plat-ic { width: 26px; height: 26px; }
  .music-plat-ic svg { width: 14px; height: 14px; }
}
