/* Artist index card system */
#artist.feature-band {
  padding-inline: var(--home-gutter, clamp(18px, 3.6vw, 64px));
}

#artist .section-heading,
#artist .artist-label-row,
#artist .artist-roster {
  width: min(100%, var(--home-wide, 1760px));
  margin-inline: auto;
}

#artist .section-heading {
  justify-content: center;
  text-align: center;
}

#artist .section-heading .eyebrow {
  margin-inline: auto;
}

#artist .artist-label-row {
  justify-content: center;
}

.artist-roster {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: start;
  gap: clamp(28px, 3vw, 54px) clamp(20px, 3.2vw, 62px);
}

.artist-card {
  position: relative;
  display: block;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.artist-card figure {
  position: relative;
  margin: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #030303;
}

.artist-card figure::after {
  z-index: 1;
  border-color: rgba(246, 242, 234, 0.16);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, transparent 42%, rgba(0, 0, 0, 0.2) 100%);
  opacity: 1;
  transition: background 180ms ease, border-color 180ms ease;
}

.artist-card img {
  transition: filter 220ms ease, transform 220ms ease;
}

.artist-card:hover figure::after,
.artist-card:focus-within figure::after {
  border-color: rgba(246, 242, 234, 0.34);
  background:
    radial-gradient(circle at 50% 48%, rgba(229, 27, 63, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.54));
}

.artist-card:hover img,
.artist-card:focus-within img {
  filter: grayscale(0.28) saturate(0.9) contrast(1.08) brightness(0.76);
  transform: scale(1.025);
}

.artist-card-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: grid;
  gap: 4px;
  min-height: 58px;
  padding: 12px 10px 11px;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(4px);
  text-align: center;
  opacity: 1;
  transform: none;
  pointer-events: none;
  transition: background 180ms ease, transform 180ms ease;
}

.artist-card-copy h3 {
  color: #fff;
  font-size: clamp(0.98rem, 1.18vw, 1.32rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.05;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.72);
}

.artist-card-copy p {
  color: rgba(246, 242, 234, 0.62);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.artist-card:hover .artist-card-copy h3,
.artist-card:focus-within .artist-card-copy h3 {
  color: #fff;
}

.artist-card:hover .artist-card-copy,
.artist-card:focus-within .artist-card-copy {
  background: rgba(0, 0, 0, 0.58);
}

@media (max-width: 1280px) {
  .artist-roster {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(24px, 3vw, 42px) clamp(16px, 2.8vw, 34px);
  }
}

@media (max-width: 1020px) {
  .artist-roster {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  #artist.feature-band {
    padding-inline: 18px;
  }

  .artist-roster {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 12px;
  }

  .artist-card-copy {
    min-height: 48px;
  }

  .artist-card-copy h3 {
    font-size: clamp(0.92rem, 5vw, 1.18rem);
  }
}
