/* Artists page CSS - scoped */
.ww-scope-artists .ww-artist-form {
  display: flex;
  gap: 10px;
  align-items: center;
  max-width: 1100px;
  margin: 30px auto 18px auto;
  padding: 0 20px;
}

.ww-scope-artists .ww-artist-form input {
  flex: 1;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #2a2a2a;
  background: #121212;
  color: #fff;
}

.ww-scope-artists .ww-artist-form button {
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid #2a2a2a;
  background: #1e1e1e;
  color: #fff;
  cursor: pointer;
}

.ww-scope-artists .ww-artist-clear {
  color: #aaa;
  text-decoration: none;
  padding: 8px 10px;
}

.ww-scope-artists .ww-artist-clear:hover {
  color: #ff8a00;
}

.ww-scope-artists .ww-artist-grid {
  max-width: 1100px;
  margin: 0 auto 60px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 18px;
}

.ww-scope-artists a.ww-artist-card {
  display: block;
  text-decoration: none;
  background: #141414;
  border: 1px solid #2a2a2a;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.35);
  transition: transform 0.12s ease, border-color 0.12s ease;
}

.ww-scope-artists a.ww-artist-card:hover {
  transform: translateY(-2px);
  border-color: #ff8a00;
}

.ww-scope-artists .ww-artist-thumbwrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #0f0f0f;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ww-scope-artists .ww-artist-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ww-scope-artists .ww-artist-thumb--placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #111, #1b1b1b);
}

.ww-scope-artists .ww-artist-meta {
  padding: 12px 14px 14px 14px;
}

.ww-scope-artists .ww-artist-name {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
}

.ww-scope-artists .ww-artist-count {
  margin-top: 6px;
  color: #aaa;
  font-size: 13px;
}

.ww-scope-artists .ww-artist-recent {
  margin-top: 8px;
  color: #8c8c8c;
  font-size: 12px;
}

.ww-scope-artists .ww-artist-recent span {
  color: #cfcfcf;
}

