/* Scoped Artist Single to avoid theme overlap */
.bat-section.artist-single *{box-sizing:border-box}
.bat-section.artist-single .artist-profile{display:grid;grid-template-columns:360px 1fr;gap:34px;align-items:start}
@media(max-width:960px){.bat-section.artist-single .artist-profile{grid-template-columns:1fr}}
.bat-section.artist-single .artist-avatar img{width:100%;height:auto;border-radius:12px;box-shadow:0 10px 30px rgba(0,0,0,.25)}
.bat-section.artist-single .artist-socials{display:flex;gap:10px;margin-top:12px}
.bat-section.artist-single .artist-socials a{width:40px;height:40px;border-radius:10px;border:1px solid var(--bat-border,rgba(255,255,255,.1));display:flex;align-items:center;justify-content:center;text-decoration:none;color:var(--bat-accent,#0ea5ff);transition:transform .2s ease, box-shadow .2s ease}
.bat-section.artist-single .artist-socials a:hover{transform:translateY(-2px);box-shadow:0 6px 18px rgba(14,165,255,.25)}
.bat-section.artist-single .artist-name{margin:0 0 .25rem;font-size:2rem;letter-spacing:.2px}
.bat-section.artist-single .artist-style{margin:.35rem 0 1rem;opacity:.85}
.bat-section.artist-single .artist-content p{margin:.7rem 0}
.bat-section.artist-single .artist-gallery{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:42px}
@media(max-width:1024px){.bat-section.artist-single .artist-gallery{grid-template-columns:repeat(2,1fr)}}
@media(max-width:640px){.bat-section.artist-single .artist-gallery{grid-template-columns:1fr}}
.bat-section.artist-single .artist-gallery img{width:100%;height:360px;object-fit:cover;border-radius:12px;filter:grayscale(1);transition:filter .25s ease, transform .25s ease}
.bat-section.artist-single .artist-gallery a:hover img{filter:grayscale(0);transform:scale(1.02)}