.sz-artist-badge-host { min-width: 0; }
.sz-artist-badge {
    min-width: 0;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    align-items: center;
    gap: 11px;
    padding: 11px 0;
}
.sz-artist-avatar {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(52, 211, 153, .22);
    border-radius: 50%;
    background: #07150f;
}
.sz-artist-avatar img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.sz-artist-wave {
    width: 28px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
}
.sz-artist-wave i {
    width: 3px;
    border-radius: 2px;
    background: #34d399;
}
.sz-artist-wave i:nth-child(1) { height: 9px; opacity: .58; }
.sz-artist-wave i:nth-child(2) { height: 18px; opacity: .88; }
.sz-artist-wave i:nth-child(3) { height: 13px; opacity: .72; }
.sz-artist-wave i:nth-child(4) { height: 21px; }
.sz-artist-copy { min-width: 0; display: grid; gap: 3px; }
.sz-artist-name {
    overflow: hidden;
    color: #e5ede9;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.sz-artist-tags {
    min-width: 0;
    display: flex;
    gap: 6px;
    overflow: hidden;
}
.sz-artist-tags b {
    overflow: hidden;
    color: #71837a;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.sz-artist-microcopy {
    color: #607169;
    font-size: 10px;
    line-height: 1.4;
    letter-spacing: 0;
}
.sz-artist-action { min-width: 68px; justify-self: end; }
.sz-artist-action .sz-follow-note { display: none; }
@media (max-width: 420px) {
    .sz-artist-badge { grid-template-columns: 48px minmax(0, 1fr); }
    .sz-artist-action {
        grid-column: 2;
        justify-self: start;
    }
}
