.artist-grid{display:grid;gap:1.5rem;grid-template-columns:repeat(auto-fill,minmax(200px,1fr));margin-top:2rem}.artist-card{background:var(--surface-color);border:1px solid var(--border-color);border-radius:var(--border-radius);overflow:hidden;text-decoration:none;transition:transform .2s ease,box-shadow .2s ease}.artist-card:hover{box-shadow:0 10px 25px rgba(0,0,0,.3);transform:translateY(-5px)}.artist-card-image-container{aspect-ratio:1/1;background-color:var(--bg-color);width:100%}.artist-card-image-container img{height:100%;object-fit:cover;width:100%}.artist-card-placeholder{align-items:center;background:linear-gradient(135deg,var(--border-color),var(--surface-hover-color));display:flex;height:100%;justify-content:center;width:100%}.artist-card-placeholder-letter{color:var(--accent-color);font-family:var(--font-family-heading);font-size:4rem;font-weight:800;opacity:.8}.artist-card-content{padding:1rem;text-align:center}.artist-card-name{color:var(--text-primary-color);font-size:1.2rem;font-weight:600;margin:0 0 .25rem}.artist-card-stats{color:var(--text-secondary-color);font-size:.85rem}@media (max-width:768px){.artist-grid{gap:1rem;grid-template-columns:repeat(3,1fr)}.artist-card-name{font-size:.9rem}.artist-card-stats{font-size:.8rem}.artist-card-score{bottom:6px;font-size:.8rem;height:32px;right:6px;width:32px}}@media (max-width:480px){.artist-grid{gap:.75rem;grid-template-columns:repeat(2,1fr)}.artist-card-content{padding:.75rem}}