/* Estilo minimalista que respeta la estética Billboard */
.bb-artist-grid{
  display:grid;grid-template-columns:repeat(auto-fill,minmax(160px,1fr));gap:24px;align-items:start
}
.bb-artist-card{
  display:flex;flex-direction:column;align-items:center;text-decoration:none;border-radius:12px;padding:16px;background:var(--bb-card-bg,rgba(255,255,255,0.02));
  transition:transform .2s ease, box-shadow .2s ease
}
.bb-artist-card:hover{transform:translateY(-2px);box-shadow:0 6px 24px rgba(0,0,0,.2)}
.bb-artist-avatar{width:120px;height:120px;border-radius:999px;object-fit:cover;background:#111}
.bb-artist-avatar--placeholder{display:flex;align-items:center;justify-content:center;color:#777}
.bb-artist-name{margin-top:12px;color:var(--bb-text, #fff);font-size:1rem;font-weight:700;text-align:center}
.bb-artist-header{display:flex;gap:20px;align-items:center;margin-bottom:24px}
.bb-artist-header .photo img{width:140px;height:140px;border-radius:999px;object-fit:cover}
.bb-artist-meta{color:#bbb;font-size:.95rem}
.bb-section{margin:28px 0}
.bb-section h2{font-size:1.4rem;margin-bottom:14px;border-left:4px solid var(--bb-accent, #ff0050);padding-left:10px}
.bb-list{list-style:none;margin:0;padding:0;display:grid;gap:10px}
.bb-list li{padding:10px 12px;border-radius:10px;background:rgba(255,255,255,.03);display:flex;justify-content:space-between;gap:10px}
.bb-pill{background:rgba(255,255,255,.08);padding:4px 10px;border-radius:999px;font-size:.8rem;color:#ddd}
