/* COMING NEXT specifics */

/* Thumb + horizontal layout */
.track{
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.thumb-wrap{
  width: 86px;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
  flex: 0 0 auto;
}

.thumb{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Match your original next.css spacing */
.meta{
  min-width: 0;
  flex: 1 1 auto;
  text-align: left;
  padding-top: 2px;
  margin-top: 0; /* override base */
}

.row{
  grid-template-columns: 64px 1fr;
  margin-top: 8px;
}

.label{
  font-size: 12px;
  line-height: 1.25;
  padding-top: 1px;
}

.value{
  line-height: 1.25;
}

.value.artist,
.value.title{
  font-size: 13px;
  font-weight: 650;
}

.value.album{
  font-size: 13px;
}

/* Responsive (as in your original next.css) */
@media (max-width: 420px){
  .thumb-wrap{ width: 78px; }
  .row{ grid-template-columns: 60px 1fr; }
}
