.artist-page{
  --artist-accent:var(--accent);
  background:#070707;
}

.artist-page[data-artist-theme="midnight-gold"]{
  --artist-accent:var(--accent);
}

.artist-page[data-artist-theme="ivory-ink"]{
  --artist-accent:#f1e8d5;
}

.artist-page[data-artist-theme="ember-red"]{
  --artist-accent:#e15b43;
}

#artist-page-content[hidden],
.artist-page-status[hidden]{
  display:none !important;
}

.artist-page .brand span,
.artist-page .section-label{
  color:var(--artist-accent);
}

.artist-page-hero{
  position:relative;
  min-height:72vh;
  display:flex;
  align-items:flex-end;
  overflow:hidden;
  border-bottom:1px solid #292929;
  background:
    radial-gradient(circle at 70% 25%,#2b2317 0%,#080808 58%);
}

.artist-page-hero > img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:.58;
}

.artist-page-hero-shade{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(5,5,5,.96) 0%,rgba(5,5,5,.66) 45%,rgba(5,5,5,.25) 100%);
}

.artist-page-hero-copy{
  position:relative;
  z-index:1;
  width:100%;
  padding-top:170px;
  padding-bottom:80px;
}

.artist-page-hero h1{
  max-width:980px;
  margin:8px 0 24px;
  font-size:clamp(50px,8vw,104px);
  line-height:.82;
  letter-spacing:-4px;
  overflow-wrap:anywhere;
}

.artist-page-tagline{
  margin:16px 0 0;
  color:#d0d0d0;
  font-size:clamp(17px,2vw,24px);
}

.artist-page-links{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.artist-page-links a{
  min-height:40px;
  display:inline-flex;
  align-items:center;
  padding:0 14px;
  border:1px solid #555;
  color:#fff;
  font-size:11px;
  font-weight:800;
  letter-spacing:.8px;
  text-transform:uppercase;
}

.artist-page-links a:hover{
  border-color:var(--artist-accent);
  color:var(--artist-accent);
}

.artist-page-about-grid{
  display:grid;
  grid-template-columns:minmax(220px,420px) 1fr;
  gap:55px;
  align-items:center;
}

.artist-page-about-grid > img{
  width:100%;
  aspect-ratio:1;
  object-fit:cover;
  border:1px solid #333;
}

.artist-page-about h2,
#artist-singles-section h2,
#artist-albums-section h2{
  margin:8px 0 22px;
  font-size:clamp(42px,6vw,78px);
  line-height:.9;
  letter-spacing:-3px;
}

.artist-page-about p{
  max-width:720px;
  color:#bcbcbc;
  white-space:pre-line;
}

.artist-release-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
  gap:22px;
}

.artist-release-card,
.artist-album-card{
  border:1px solid #292929;
  background:#0d0d0d;
}

.artist-release-card img,
.artist-album-cover{
  width:100%;
  aspect-ratio:1;
  object-fit:cover;
  background:#161616;
}

.artist-release-body,
.artist-album-body{
  padding:22px;
}

.artist-release-card h3,
.artist-album-card h3{
  margin:0 0 8px;
  font-size:25px;
}

.artist-release-meta{
  color:#999;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.7px;
}

.artist-release-card audio{
  width:100%;
  margin-top:16px;
}

.artist-store-link{
  display:inline-flex;
  margin-top:15px;
  color:var(--artist-accent);
  font-size:11px;
  font-weight:900;
  letter-spacing:.8px;
  text-transform:uppercase;
}

.artist-album-list{
  display:grid;
  gap:28px;
}

.artist-album-card{
  display:grid;
  grid-template-columns:minmax(220px,340px) 1fr;
}

.artist-track-list{
  margin:20px 0 0;
  padding:0;
  list-style:none;
  border-top:1px solid #292929;
}

.artist-track-list li{
  display:grid;
  grid-template-columns:38px 1fr;
  gap:12px;
  padding:13px 0;
  border-bottom:1px solid #222;
}

.artist-track-number{
  color:var(--artist-accent);
  font-weight:900;
}

.artist-page-empty{
  color:#888;
}

.artist-page-status{
  min-height:70vh;
  display:flex;
  align-items:center;
}

.artist-page-status h1{
  margin:8px 0 16px;
  font-size:clamp(46px,8vw,96px);
  line-height:.9;
}

.artist-page-status p{
  max-width:620px;
  margin-bottom:24px;
  color:#aaa;
}

@media(max-width:760px){
  .artist-page-hero{
    min-height:64vh;
  }

  .artist-page-hero-copy{
    padding-top:145px;
    padding-bottom:55px;
  }

  .artist-page-hero h1{
    letter-spacing:-3px;
  }

  .artist-page-about-grid,
  .artist-album-card{
    grid-template-columns:1fr;
  }

  .artist-page-about-grid{
    gap:30px;
  }
}
