/* ── Genre artist carousel — auto-mounts any .genre-artists-strip[data-genres] ── */
.genre-artists-strip { margin: var(--sb-space-md) 0 var(--sb-space-lg); }
.genre-artists-label {
    display: flex; justify-content: space-between; align-items: baseline;
    margin-bottom: var(--sb-space-sm); font-size: 0.85em;
    color: var(--sb-text-muted); text-transform: uppercase;
    letter-spacing: 0.08em; font-weight: 600;
}
.genre-artists-label a {
    color: var(--sb-ice); text-decoration: none; text-transform: none;
    letter-spacing: 0; font-weight: 500; font-size: 0.95em;
}
.genre-artists-label a:hover { text-decoration: underline; }
.genre-artists-wrap {
    position: relative; overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, #000 3%, #000 97%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 3%, #000 97%, transparent 100%);
}
.genre-artists-row {
    display: flex; gap: 14px; width: max-content; padding: 8px 0;
    animation: genre-artists-scroll 60s linear infinite;
}
.genre-artists-wrap:hover .genre-artists-row { animation-play-state: paused; }
.genre-artists-row:hover { cursor: grab; }
@keyframes genre-artists-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .genre-artists-row { animation: none; overflow-x: auto; }
    .genre-artists-wrap { mask-image: none; -webkit-mask-image: none; }
}
.genre-artist-card {
    position: relative;
    display: flex; flex-direction: column;
    flex: 0 0 170px;
    text-decoration: none; color: var(--sb-text);
    background: rgba(15,21,37,0.70);
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}
.genre-artist-link {
    flex: 1 1 auto;
    display: flex; flex-direction: column;
    text-decoration: none; color: inherit;
}
.genre-artist-body { flex: 1 1 auto; padding: 10px 12px 12px; }
.genre-artist-card::before {
    content: '';
    position: absolute; inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, var(--sb-ice), var(--sb-sky), var(--sb-violet));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}
.genre-artist-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 12px rgba(var(--sb-ice-rgb),0.25),
                0 0 24px rgba(var(--sb-violet-rgb),0.12);
}
.genre-artist-avatar {
    width: 100%; aspect-ratio: 1/1; background-size: cover;
    background-position: center;
    background-color: rgba(var(--sb-violet-rgb,99,102,241),0.15);
}
.genre-artist-name {
    font-weight: 600; font-size: 0.95em; line-height: 1.2;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.genre-artist-meta {
    font-size: 0.78em; color: var(--sb-text-muted);
    margin-top: 4px;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.genre-artist-footer {
    position: relative;
    padding: 10px 12px 12px;
    border-top: 1px solid rgba(var(--sb-ice-rgb), 0.08);
    min-height: 42px;
}
.genre-artist-footer-default,
.genre-artist-footer-actions {
    display: flex; align-items: center; gap: 6px;
    transition: opacity 0.18s ease;
}
.genre-artist-footer-actions {
    position: absolute; inset: 0;
    padding: 6px 8px;
    opacity: 0; pointer-events: none;
    justify-content: center; gap: 8px;
}
.genre-artist-card:hover .genre-artist-footer-default { opacity: 0; }
.genre-artist-card:hover .genre-artist-footer-actions { opacity: 1; pointer-events: auto; }
.genre-artist-footer-actions .bk-card-action { text-decoration: none; }
.genre-artist-verified { color: var(--sb-ice); margin-left: 4px; }
.genre-artists-skeleton { display: flex; gap: 14px; }
.genre-artists-skeleton > div {
    flex: 0 0 170px; aspect-ratio: 1/1.4;
    background: linear-gradient(90deg,
        rgba(255,255,255,0.03) 0%,
        rgba(255,255,255,0.07) 50%,
        rgba(255,255,255,0.03) 100%);
    background-size: 200% 100%;
    animation: skel-shine 1.4s infinite;
    border-radius: var(--sb-radius-md);
}
@keyframes skel-shine { to { background-position: -200% 0; } }
.genre-artists-strip.is-empty { display: none; }
