/*========================================
  Artists Page
========================================*/
.artists-wrapper {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  background: var(--card-bg);
  border-radius: 6px;
}

.artist-load-more-wrap {
  margin-top: 12px;
}

@media (max-width: 768px) {
  .artists-wrapper {
    margin: 10px 5px;
    padding: 15px;
  }
}

.artists-header {
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 3px solid var(--accent-color);
}

.artists-header h1 {
  font-size: 1.5em;
  font-weight: 700;
  color: var(--text-color);
  margin: 0 0 4px;
}

.artists-header p {
  font-size: 0.88em;
  color: #999;
  margin: 0;
}

/* A-Z Navigation */
.artist-alphabet {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--divider-color);
}

.artist-alphabet a {
  font-size: 0.82em;
  font-weight: 700;
  padding: 4px 9px;
  color: var(--text-color);
  background: var(--hover-bg);
  border: 1px solid var(--divider-color);
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.artist-alphabet a:hover {
  background: var(--accent-color);
  color: #fff;
  border-color: var(--accent-color);
}

/* Artist Sections */
.artist-section {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--divider-color);
}

.artist-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.artist-section h2 {
  font-size: 1.1em;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 12px;
}

.artist-section ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.artist-section ul li a {
  display: inline-block;
  padding: 5px 13px;
  font-size: 0.88em;
  color: var(--text-color);
  background: transparent;
  border: 1px solid var(--divider-color);
  border-radius: 20px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.artist-section ul li a:hover {
  background: var(--accent-color);
  color: #fff;
  border-color: var(--accent-color);
}
