


    /* --- All Artists Page Grid --- */
    .all-artists-container {
        max-width: 1000px;
        margin: 0 auto;
        padding: 0;
    }
    .all-artists-header {
        background-color: var(--nav-btn-bg, #3060FF);
        color: white;
        padding: 20px 24px;
        border-radius: 24px;
        margin-bottom: 24px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    }
    .all-artists-header h1 {
        margin: 0;
        font-size: 17px;
        font-weight: 500;
    }
    .all-artists-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 16px;
    }
    @media (min-width: 600px) {
        .all-artists-grid {
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 20px;
        }
    }
    .all-artist-card {
        background-color: var(--nav-bg, #ffffff);
        border-radius: 20px;
        padding: 12px;
        text-decoration: none;
        display: flex;
        flex-direction: column;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    }
    .all-artist-img-wrapper {
        position: relative;
        width: 100%;
        aspect-ratio: 1 / 1;
        border-radius: 12px;
        overflow: hidden;
        margin-bottom: 12px;
    }
    .all-artist-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .all-artist-badges {
        position: absolute;
        bottom: 8px;
        left: 8px;
        right: 8px;
        display: flex;
        justify-content: space-between;
    }
    .all-artist-badge {
        background-color: var(--nav-btn-bg, #3060FF);
        color: white;
        font-size: 11px;
        font-weight: 500;
        padding: 4px 8px;
        border-radius: 20px;
        display: flex;
        align-items: center;
        gap: 4px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    }
    .all-artist-badge i, .all-artist-badge svg {
        width: 12px;
        height: 12px;
    }
    .all-artist-name {
        font-size: 14px;
        font-weight: 500;
        color: var(--nav-text, #606468);
        margin: 0;
        padding: 0 4px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
