

/* --- FIXES for cover size, vinyl, and text layout --- */
.cover {
  width: 220px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  z-index: 2;
}

.vinyl {
  width: 180px;
  right: -60px;
  top: 20px;
}

.hero {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 20px;
  align-items: center;
}

.meta h1 {
  margin: 0 0 6px;
  font-size: 22px;
}


/* --- COMPACT LAYOUT TUNING --- */
/* Smaller cover */
.cover{
  width: 180px;  /* was 220 */
  height: auto;
}

/* Smaller vinyl tucked further behind */
.vinyl{
  width: 160px;  /* was 180 */
  right: -50px;
  top: 10px;
}

/* Two-column hero: fixed left image column, flexible right text column */
.hero{
  grid-template-columns: 200px 1fr; /* narrower image column */
  gap: 24px;                         /* more breathing room */
}

/* Right column becomes 3 stacked rows: title, artist, slider */
.meta{
  display: grid;
  grid-template-rows: auto auto auto;
  align-content: start;
  row-gap: 8px;
  text-align: left;     /* left-justify text */
}

/* Title size/spacing */
.meta h1{
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}
/* Artist line */
.meta .sub{
  font-size: 16px;
  color: var(--sub);
}

/* Slider row styling */
.volume{
  margin-top: 0;            /* sit tight under artist */
  justify-content: flex-start;
}
.volume input[type=range]{ width: 260px; }  /* longer slider on desktop */

/* Keep playlist text left-aligned as well */
.playlist .track{ text-align: left; }


/* --- RESPONSIVE COVER SIZING --- */
.cover {
  width: 180px;  /* default desktop */
  height: auto;
}

@media (max-width: 900px) {
  .cover { width: 150px; }
}

@media (max-width: 600px) {
  .cover { width: 120px; }
}
