.cf-player{
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  align-items: stretch;
}

.cf-player__artwork-link{
  display: block;
  height: 100%;
}

.cf-player__artwork{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;   /* no cropping */
  background: rgba(0,0,0,0.0); /* subtle frame if aspect ratios vary */
}


.cf-player__track,
.cf-player__artists{
  margin: 0;
}

.cf-player__artists{
  margin-top: 6px;
}

.cf-player__from-release{
  margin-top: 15px;
    margin-bottom: 15px;
}

.cf-player__from-release-label{
  opacity: 0.75;
}

/* Links */
.cf-player a{
  color: inherit;
  text-decoration: none;
}
.cf-player a:hover,
.cf-player a:focus{
  text-decoration: underline;
}

/* Artist separators */
.cf-player__artists a + a::before{
  content: " | ";
  white-space: pre;
}

/* Right column fills height; controls at bottom */
.cf-player__text{
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.cf-player__controls{
  margin-top: auto;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cf-player__controls button{
  cursor: pointer;
}

/* Responsive stack */
@media (max-width: 700px){
  .cf-player{
    grid-template-columns: 1fr;
  }

  .cf-player__artwork-link{
    height: auto;
  }

  .cf-player__artwork{
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }

  .cf-player__text{
    min-height: auto;
  }

  .cf-player__controls{
    margin-top: 14px;
  }
}
