/* Page header */
.artists-header {
  background: #32003a;
  padding: 1.5rem 2rem;
  text-align: center;
}
.artists-header h1 {
  color: #fff;
  font-size: 2rem;
}

/* Search bar */
.filter-bar {
  max-width: 1200px;
  margin: 1rem auto;
  padding: 0 2rem;
}
.filter-bar input {
  width: 100%;
  padding: 0.6rem 1rem;
  background: #222;
  border: 1px solid #444;
  border-radius: 6px;
  color: #eee;
  font-size: 1rem;
}
.filter-bar input::placeholder {
  color: #888;
}

/* Artists grid */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 2rem auto 4rem;
  padding: 0 2rem;
}

/* Artist card */
.artist-card {
  background: #111;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  transition: transform 0.2s, filter 0.2s;
  cursor: default;
}
.artist-card:hover {
  transform: translateY(-4px);
  filter: brightness(1.1);
}
.artist-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.artist-card h3 {
  margin: 0.75rem 0 1rem;
  color: #fff;
  font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .filter-bar { padding: 0 1rem; }
  .artists-header,
  .filter-bar,
  .artists-grid {
    padding: 0 1rem;
  }
}
