/* ===== Headliners Grid ===== */
.artists-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0,1fr));
}
@media (max-width: 900px){ .artists-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px){ .artists-grid { grid-template-columns: 1fr; } }

.artist-card {
  border: 1px solid #2c2c2c;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(0,0,0,0.2));
  box-shadow: 0 4px 14px rgba(0,0,0,0.6);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.artist-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.8);
}

.artist-card .ac-media {
  aspect-ratio: 4/3;
  background: rgba(255,255,255,0.07);
  display: grid;
  place-items: center;
}
.artist-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.artist-card .ac-body {
  padding: 12px 14px;
  text-align: center;
}
.artist-card .ac-body h3 {
  color: #fff;
  margin: 0 0 4px;
  font-size: 1.1rem;
}
.artist-card .ac-body .muted {
  color: #bbb;
  font-size: 0.9rem;
}
