.jam-song-previews {
  margin: 30px 0;
}

.jam-song-previews[hidden] {
  display: none !important;
}

.jam-song-preview-intro {
  color: rgba(255,255,255,.76);
  margin: 0 0 20px;
  font-size: 1.02rem;
}

.jam-song-preview-grid {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.jam-song-preview-card {
  display: grid;
  grid-template-columns: 82px minmax(0,1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 15px;
  border-radius: 20px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.14);
}

.jam-song-preview-art {
  width: 82px;
  height: 82px;
  object-fit: cover;
  border-radius: 14px;
  background: #0b0f14;
  border: 1px solid rgba(255,255,255,.10);
}

.jam-song-preview-copy h3 {
  margin: 0 0 5px;
  font-size: 1.12rem;
  color: #fff;
}

.jam-song-preview-copy p {
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: .91rem;
}

.jam-song-preview-actions {
  min-width: 210px;
  text-align: center;
}

.jam-song-preview-btn {
  width: 100%;
  border: 1px solid rgba(124,200,255,.32);
  border-radius: 999px;
  padding: 12px 18px;
  background: #1e9be6;
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.jam-song-preview-btn.is-playing {
  background: #ff2b7a;
}

.jam-song-preview-btn:disabled {
  opacity: .55;
  cursor: not-allowed;
}

.jam-song-preview-status {
  display: block;
  margin-top: 7px;
  color: rgba(255,255,255,.62);
  font-size: .78rem;
}

@media (max-width: 700px) {
  .jam-song-preview-card {
    grid-template-columns: 68px minmax(0,1fr);
  }

  .jam-song-preview-art {
    width: 68px;
    height: 68px;
  }

  .jam-song-preview-actions {
    grid-column: 1 / -1;
    min-width: 0;
  }
}
