/* ===== ARTISTS GRID ===== */
.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.artist-card-inner {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* ===== ARTIST AVATAR ===== */
.artist-avatar-section {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.artist-avatar-container {
    position: relative;
}

.artist-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
}

.artist-card:hover .artist-avatar {
    transform: scale(1.05);
}

.artist-avatar-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(var(--bg-primary), 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(var(--text-muted));
    box-shadow: var(--shadow-medium);
    position: relative;
}

.placeholder-icon {
    font-size: 3rem;
}

.verified-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: rgb(var(--primary-glow));
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    box-shadow: var(--shadow-soft);
}

/* ===== ARTIST INFO ===== */
.artist-info {
    flex: 1;
    text-align: center;
    margin-bottom: 1rem;
}

.artist-name {
    margin: 0 0 1rem 0;
}

.artist-link {
    color: rgb(var(--text-primary));
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.artist-link:hover {
    color: rgb(var(--primary-glow));
}

.artist-stats {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.artist-stat {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    color: rgb(var(--text-secondary));
}

.artist-stat .stat-icon {
    font-size: 0.875rem;
    color: rgb(var(--text-muted));
}

.artist-stat .stat-number {
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    color: rgb(var(--text-primary));
}

.artist-stat .stat-label {
    font-size: 0.75rem;
    text-transform: lowercase;
}

.artist-bio-preview {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.artist-bio-preview p {
    color: rgb(var(--text-secondary));
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.artist-social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.social-more {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(var(--text-muted), 0.1);
    color: rgb(var(--text-muted));
    font-size: 0.75rem;
    font-weight: var(--font-weight-medium);
}

/* ===== ARTIST ACTIONS ===== */
.artist-actions {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(var(--border-light), 0.3);
}

.follow-btn.following {
    background: rgba(var(--primary-glow), 0.2);
    color: rgb(var(--primary-glow));
    border-color: rgba(var(--primary-glow), 0.3);
}

/* ===== ARTISTS RESPONSIVE ===== */
@media (max-width: 768px) {
    .artists-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .artist-card-inner {
        padding: 1.25rem;
    }

    .artist-stats {
        gap: 1rem;
    }

    .artist-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .artist-avatar,
    .artist-avatar-placeholder {
        width: 80px;
        height: 80px;
    }

    .placeholder-icon {
        font-size: 2.5rem;
    }

    .artist-name {
        font-size: 1.125rem;
    }
}









/*!* ===== ARTIST LIST STYLES ===== *!*/
/*.artists-container {*/
/*    max-width: 1400px;*/
/*    margin: 0 auto;*/
/*    padding: 2rem 1rem;*/
/*}*/

/*!* ===== LIST STATS ===== *!*/
/*.list-stats {*/
/*    border-radius: var(--radius-lg);*/
/*    padding: 1.5rem 2rem;*/
/*    margin-bottom: 2rem;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    gap: 3rem;*/
/*}*/

/*.stat-item {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    align-items: center;*/
/*    gap: 0.5rem;*/
/*}*/

/*.stat-icon {*/
/*    font-size: 1.5rem;*/
/*    color: rgb(var(--primary-glow));*/
/*}*/

/*.stat-number {*/
/*    font-size: 2rem;*/
/*    font-weight: var(--font-weight-bold);*/
/*    color: rgb(var(--text-primary));*/
/*    line-height: 1;*/
/*}*/

/*.stat-label {*/
/*    font-size: 0.875rem;*/
/*    color: rgb(var(--text-muted));*/
/*    font-weight: var(--font-weight-medium);*/
/*    text-transform: uppercase;*/
/*    letter-spacing: 0.05em;*/
/*}*/

/*!* ===== SEARCH SECTION ===== *!*/

/*.search-box {*/
/*    border-radius: var(--radius-lg);*/
/*    padding: 1.5rem;*/
/*    position: relative;*/
/*    margin: 0 auto 1.5rem;*/
/*}*/

/*.search-header {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 0.75rem;*/
/*    margin-bottom: 1rem;*/
/*}*/

/*.search-input-container {*/
/*    position: relative;*/
/*}*/

/*.search-input {*/
/*    width: 100%;*/
/*    padding: 0.875rem 1rem;*/
/*    padding-right: 3rem;*/
/*    border: 1px solid rgba(var(--border-light), 0.5);*/
/*    border-radius: var(--radius-md);*/
/*    background: rgba(var(--bg-primary), 0.5);*/
/*    color: rgb(var(--text-primary));*/
/*    font-size: 0.95rem;*/
/*    transition: var(--transition-smooth);*/
/*}*/

/*.search-input:focus {*/
/*    outline: none;*/
/*    border-color: rgba(var(--primary-glow), 0.6);*/
/*    box-shadow: 0 0 0 3px rgba(var(--primary-glow), 0.1);*/
/*}*/

/*.search-indicator {*/
/*    position: absolute;*/
/*    right: 3rem;*/
/*    top: 50%;*/
/*    transform: translateY(-50%);*/
/*    opacity: 0;*/
/*    transition: var(--transition-smooth);*/
/*}*/

/*.search-title {*/
/*    font-size: 1.125rem;*/
/*    font-weight: var(--font-weight-semibold);*/
/*    color: rgb(var(--text-primary));*/
/*}*/

/*.search-icon {*/
/*    font-size: 1.25rem;*/
/*    color: rgb(var(--primary-glow));*/
/*}*/

/*.search-clear {*/
/*    position: absolute;*/
/*    right: 0.75rem;*/
/*    top: 50%;*/
/*    transform: translateY(-50%);*/
/*    background: none;*/
/*    border: none;*/
/*    color: rgb(var(--text-muted));*/
/*    cursor: pointer;*/
/*    padding: 0.25rem;*/
/*    border-radius: var(--radius-sm);*/
/*    transition: var(--transition-smooth);*/
/*}*/

/*.search-clear:hover {*/
/*    background: rgba(var(--text-muted), 0.1);*/
/*    color: rgb(var(--text-primary));*/
/*}*/


/*!* ===== FILTERS SECTION ===== *!*/
/*.filters-section {*/
/*    border-radius: var(--radius-lg);*/
/*    padding: 1.5rem;*/
/*    margin-bottom: 2rem;*/
/*}*/

/*.filter-controls {*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    gap: 2rem;*/
/*    flex-wrap: wrap;*/
/*}*/

/*.filter-group {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 0.75rem;*/
/*}*/

/*.filter-label {*/
/*    color: rgb(var(--text-primary));*/
/*    font-weight: var(--font-weight-medium);*/
/*    font-size: 0.875rem;*/
/*}*/

/*.filter-select {*/
/*    padding: 0.5rem 1rem;*/
/*    border: 1px solid rgba(var(--border-light), 0.6);*/
/*    border-radius: var(--radius-md);*/
/*    background: rgba(var(--bg-surface), 0.8);*/
/*    color: rgb(var(--text-primary));*/
/*    font-size: 0.875rem;*/
/*    cursor: pointer;*/
/*    transition: var(--transition-smooth);*/
/*}*/

/*.filter-select:focus {*/
/*    outline: none;*/
/*    border-color: rgba(var(--primary-glow), 0.6);*/
/*}*/

/*.filter-buttons {*/
/*    display: flex;*/
/*    gap: 0.5rem;*/
/*}*/

/*.filter-btn {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 0.5rem;*/
/*    padding: 0.5rem 1rem;*/
/*    border: 1px solid rgba(var(--border-light), 0.6);*/
/*    border-radius: var(--radius-md);*/
/*    background: rgba(var(--bg-surface), 0.8);*/
/*    color: rgb(var(--text-secondary));*/
/*    font-size: 0.875rem;*/
/*    font-weight: var(--font-weight-medium);*/
/*    cursor: pointer;*/
/*    transition: var(--transition-smooth);*/
/*}*/

/*.filter-btn:hover {*/
/*    background: rgba(var(--primary-glow), 0.05);*/
/*    border-color: rgba(var(--primary-glow), 0.3);*/
/*}*/

/*.filter-btn.active {*/
/*    background: rgba(var(--primary-glow), 0.1);*/
/*    color: rgb(var(--primary-glow));*/
/*    border-color: rgba(var(--primary-glow), 0.3);*/
/*}*/

/*.active-filters-info {*/
/*    background: rgba(var(--bg-surface), 0.8);*/
/*    border: 1px solid rgba(var(--border-light), 0.6);*/
/*    border-radius: var(--radius-lg);*/
/*    padding: 20px 24px;*/
/*    margin: 20px 0;*/
/*    backdrop-filter: blur(10px);*/
/*    box-shadow: var(--shadow-soft);*/
/*    transition: all var(--primary-glow);*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*}*/

/*.active-filters-info::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 4px;*/
/*    height: 100%;*/
/*    background: linear-gradient(135deg, rgb(var(--primary-glow)), rgb(var(--primary-glow)));*/
/*    border-radius: var(--radius-lg) 0 0 var(--radius-lg);*/
/*}*/

/*.filters-info-content {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 16px;*/
/*    width: 100%;*/
/*}*/

/*.filters-info-icon {*/
/*    font-size: 20px;*/
/*    color: rgb(var(--primary-glow));*/
/*    flex-shrink: 0;*/
/*}*/

/*.filters-info-text {*/
/*    flex: 1;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    gap: 12px;*/
/*}*/

/*.filters-info-text strong {*/
/*    color: rgba(var(--text-primary), 0.9);*/
/*    font-size: 14px;*/
/*    font-weight: var(--font-weight-semibold);*/
/*    letter-spacing: -0.01em;*/
/*}*/

/*.filters-list {*/
/*    display: flex;*/
/*    flex-wrap: wrap;*/
/*    gap: 8px;*/
/*}*/

/*.filter-tag {*/
/*    display: inline-flex;*/
/*    align-items: center;*/
/*    gap: 8px;*/
/*    background: rgba(var(--primary-glow), 0.1);*/
/*    color: rgb(var(--primary-glow));*/
/*    padding: 6px 12px;*/
/*    border-radius: var(--radius-md);*/
/*    font-size: 13px;*/
/*    font-weight: var(--font-weight-medium);*/
/*    border: 1px solid rgba(var(--primary-glow), 0.2);*/
/*    transition: all var(--primary-glow);*/
/*    backdrop-filter: blur(5px);*/
/*}*/

/*.filter-tag:hover {*/
/*    background: rgba(var(--primary-glow), 0.15);*/
/*    border-color: rgba(var(--primary-glow), 0.3);*/
/*    transform: translateY(-1px);*/
/*}*/

/*.remove-filter {*/
/*    padding: 2px;*/
/*    border-radius: var(--radius-sm);*/
/*    transition: all var(--primary-glow);*/
/*    color: rgba(var(--text-secondary), 0.7);*/
/*}*/

/*.remove-filter:hover {*/
/*    background: rgba(var(--primary-glow), 0.1);*/
/*    color: rgb(var(--primary-glow));*/
/*    transform: scale(1.1);*/
/*}*/

/*.results-count {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    align-items: flex-end;*/
/*    gap: 2px;*/
/*    flex-shrink: 0;*/
/*    min-width: 80px;*/
/*}*/

/*.results-number {*/
/*    font-size: 20px;*/
/*    font-weight: var(--font-weight-bold);*/
/*    color: rgb(var(--primary-glow));*/
/*    line-height: 1;*/
/*    letter-spacing: -0.02em;*/
/*}*/

/*.results-label {*/
/*    font-size: 12px;*/
/*    color: rgba(var(--text-secondary), 0.8);*/
/*    font-weight: var(--font-weight-medium);*/
/*    text-transform: lowercase;*/
/*}*/

/*!* Анимации *!*/
/*@keyframes slideInFilters {*/
/*    from {*/
/*        opacity: 0;*/
/*        transform: translateY(-10px);*/
/*    }*/
/*    to {*/
/*        opacity: 1;*/
/*        transform: translateY(0);*/
/*    }*/
/*}*/

/*.active-filters-info {*/
/*    animation: slideInFilters 0.3s ease-out;*/
/*}*/

/*!* Адаптивность *!*/
/*@media (max-width: 768px) {*/
/*    .active-filters-info {*/
/*        padding: 16px 20px;*/
/*        margin: 16px 0;*/
/*    }*/

/*    .filters-info-content {*/
/*        flex-direction: column;*/
/*        align-items: flex-start;*/
/*        gap: 12px;*/
/*    }*/

/*    .results-count {*/
/*        flex-direction: row;*/
/*        align-items: center;*/
/*        gap: 8px;*/
/*        width: 100%;*/
/*        justify-content: space-between;*/
/*        padding-top: 8px;*/
/*        border-top: 1px solid rgba(var(--border-light), 0.3);*/
/*    }*/

/*    .results-number {*/
/*        font-size: 18px;*/
/*    }*/

/*    .filters-list {*/
/*        gap: 6px;*/
/*    }*/

/*    .filter-tag {*/
/*        font-size: 12px;*/
/*        padding: 5px 10px;*/
/*    }*/
/*}*/

/*@media (max-width: 480px) {*/
/*    .active-filters-info {*/
/*        padding: 14px 16px;*/
/*        border-radius: var(--radius-md);*/
/*    }*/

/*    .filters-info-content {*/
/*        gap: 10px;*/
/*    }*/

/*    .filters-list {*/
/*        flex-direction: column;*/
/*        width: 100%;*/
/*    }*/

/*    .filter-tag {*/
/*        justify-content: space-between;*/
/*        width: 100%;*/
/*    }*/
/*}*/

/*!* Темная тема *!*/
/*@media (prefers-color-scheme: dark) {*/
/*    .active-filters-info {*/
/*        background: rgba(var(--bg-surface-dark), 0.6);*/
/*        border-color: rgba(var(--border-light-dark), 0.4);*/
/*    }*/

/*    .filters-info-text strong {*/
/*        color: rgba(var(--text-primary-dark), 0.9);*/
/*    }*/

/*    !*.filter-tag {*!*/
/*    !*    background: rgba(var(--accent-primary), 0.15);*!*/
/*    !*    border-color: rgba(var(--accent-primary), 0.3);*!*/
/*    !*    color: rgb(var(--accent-primary));*!*/
/*    !*}*!*/

/*    !*.filter-tag:hover {*!*/
/*    !*    background: rgba(var(--accent-primary), 0.2);*!*/
/*    !*    border-color: rgba(var(--accent-primary), 0.4);*!*/
/*    !*}*!*/

/*    .remove-filter {*/
/*        color: rgba(var(--text-secondary-dark), 0.7);*/
/*    }*/

/*    !*.remove-filter:hover {*!*/
/*    !*    color: rgb(var(--accent-primary));*!*/
/*    !*}*!*/

/*    .results-label {*/
/*        color: rgba(var(--text-secondary-dark), 0.8);*/
/*    }*/
/*}*/

/*[data-theme="dark"] .active-filters-info {*/
/*    background: rgba(var(--bg-surface-dark), 0.6);*/
/*    border-color: rgba(var(--border-light-dark), 0.4);*/
/*}*/

/*!*[data-theme="dark"] .filters-info-text strong {*!*/
/*!*    color: rgba(var(--text-primary-dark), 0.9);*!*/
/*!*}*!*/

/*!*[data-theme="dark"] .filter-tag {*!*/
/*!*    background: rgba(var(--accent-primary), 0.15);*!*/
/*!*    border-color: rgba(var(--accent-primary), 0.3);*!*/
/*!*}*!*/

/*!*[data-theme="dark"] .filter-tag:hover {*!*/
/*!*    background: rgba(var(--accent-primary), 0.2);*!*/
/*!*    border-color: rgba(var(--accent-primary), 0.4);*!*/
/*!*}*!*/

/*[data-theme="dark"] .remove-filter {*/
/*    color: rgba(var(--text-secondary-dark), 0.7);*/
/*}*/

/*!*[data-theme="dark"] .remove-filter:hover {*!*/
/*!*    color: rgb(var(--accent-primary));*!*/
/*!*}*!*/

/*[data-theme="dark"] .results-label {*/
/*    color: rgba(var(--text-secondary-dark), 0.8);*/
/*}*/

/*!* Состояния загрузки *!*/
/*.active-filters-info:has(+ #loading-indicator:not([style*="display: none"])) {*/
/*    opacity: 0.7;*/
/*    pointer-events: none;*/
/*}*/

/*!* Микро-интеракции *!*/
/*.filter-tag:active {*/
/*    transform: scale(0.98);*/
/*}*/

/*.remove-filter:active {*/
/*    transform: scale(0.9);*/
/*}*/

/*!* Плавные переходы *!*/
/*.active-filters-info,*/
/*.filter-tag,*/
/*.remove-filter,*/
/*.results-count {*/
/*    transition: all var(--transition-bounce);*/
/*}*/


/*!* ===== ARTISTS GRID ===== *!*/
/*.artists-grid {*/
/*    display: grid;*/
/*    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));*/
/*    gap: 1.5rem;*/
/*    margin-bottom: 3rem;*/
/*}*/

/*.artist-card {*/
/*    border-radius: var(--radius-lg);*/
/*    padding: 0;*/
/*    transition: var(--transition-smooth);*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*}*/

/*.artist-card::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 4px;*/
/*    height: 100%;*/
/*    background: linear-gradient(to bottom,*/
/*    rgba(var(--primary-glow), 0.8),*/
/*    rgba(var(--success-glow), 0.6));*/
/*    opacity: 0;*/
/*    transition: var(--transition-smooth);*/
/*}*/

/*.artist-card:hover {*/
/*    transform: translateY(-5px);*/
/*    box-shadow: var(--shadow-strong);*/
/*}*/

/*.artist-card:hover::before {*/
/*    opacity: 1;*/
/*}*/

/*.artist-card-inner {*/
/*    padding: 1.5rem;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    height: 100%;*/
/*}*/

/*!* ===== ARTIST AVATAR ===== *!*/
/*.artist-avatar-section {*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    margin-bottom: 1rem;*/
/*}*/

/*.artist-avatar-container {*/
/*    position: relative;*/
/*}*/

/*.artist-avatar {*/
/*    width: 100px;*/
/*    height: 100px;*/
/*    border-radius: 50%;*/
/*    object-fit: cover;*/
/*    box-shadow: var(--shadow-medium);*/
/*    transition: var(--transition-smooth);*/
/*}*/

/*.artist-card:hover .artist-avatar {*/
/*    transform: scale(1.05);*/
/*}*/

/*.artist-avatar-placeholder {*/
/*    width: 100px;*/
/*    height: 100px;*/
/*    border-radius: 50%;*/
/*    background: rgba(var(--bg-primary), 0.5);*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    color: rgb(var(--text-muted));*/
/*    box-shadow: var(--shadow-medium);*/
/*    position: relative;*/
/*}*/

/*.placeholder-icon {*/
/*    font-size: 3rem;*/
/*}*/

/*.verified-badge {*/
/*    position: absolute;*/
/*    bottom: 5px;*/
/*    right: 5px;*/
/*    background: rgb(var(--primary-glow));*/
/*    color: white;*/
/*    width: 24px;*/
/*    height: 24px;*/
/*    border-radius: 50%;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    font-size: 0.75rem;*/
/*    box-shadow: var(--shadow-soft);*/
/*}*/

/*!* ===== ARTIST INFO ===== *!*/
/*.artist-info {*/
/*    flex: 1;*/
/*    text-align: center;*/
/*    margin-bottom: 1rem;*/
/*}*/

/*.artist-name {*/
/*    margin: 0 0 1rem 0;*/
/*}*/

/*.artist-link {*/
/*    color: rgb(var(--text-primary));*/
/*    text-decoration: none;*/
/*    font-size: 1.25rem;*/
/*    font-weight: var(--font-weight-semibold);*/
/*    transition: var(--transition-smooth);*/
/*    display: inline-flex;*/
/*    align-items: center;*/
/*    gap: 0.5rem;*/
/*}*/

/*.artist-link:hover {*/
/*    color: rgb(var(--primary-glow));*/
/*}*/

/*.verified-icon {*/
/*    color: rgb(var(--primary-glow));*/
/*    font-size: 1rem;*/
/*}*/

/*.artist-stats {*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    gap: 1.5rem;*/
/*    margin-bottom: 1rem;*/
/*}*/

/*.artist-stat {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 0.375rem;*/
/*    font-size: 0.875rem;*/
/*    color: rgb(var(--text-secondary));*/
/*}*/

/*.artist-stat .stat-icon {*/
/*    font-size: 0.875rem;*/
/*    color: rgb(var(--text-muted));*/
/*}*/

/*.artist-stat .stat-number {*/
/*    font-size: 1rem;*/
/*    font-weight: var(--font-weight-semibold);*/
/*    color: rgb(var(--text-primary));*/
/*}*/

/*.artist-stat .stat-label {*/
/*    font-size: 0.75rem;*/
/*    text-transform: lowercase;*/
/*}*/

/*.artist-bio-preview {*/
/*    margin-top: 1rem;*/
/*    margin-bottom: 1rem;*/
/*}*/

/*.artist-bio-preview p {*/
/*    color: rgb(var(--text-secondary));*/
/*    font-size: 0.875rem;*/
/*    line-height: 1.5;*/
/*    margin: 0;*/
/*    display: -webkit-box;*/
/*    -webkit-line-clamp: 2;*/
/*    -webkit-box-orient: vertical;*/
/*    overflow: hidden;*/
/*}*/

/*.artist-social-links {*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    gap: 0.5rem;*/
/*    flex-wrap: wrap;*/
/*}*/

/*.social-more {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    width: 32px;*/
/*    height: 32px;*/
/*    border-radius: 50%;*/
/*    background: rgba(var(--text-muted), 0.1);*/
/*    color: rgb(var(--text-muted));*/
/*    font-size: 0.75rem;*/
/*    font-weight: var(--font-weight-medium);*/
/*}*/

/*!* ===== ARTIST ACTIONS ===== *!*/
/*.artist-actions {*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    gap: 0.75rem;*/
/*    padding-top: 1rem;*/
/*    border-top: 1px solid rgba(var(--border-light), 0.3);*/
/*}*/

/*.follow-btn.following {*/
/*    background: rgba(var(--primary-glow), 0.2);*/
/*    color: rgb(var(--primary-glow));*/
/*    border-color: rgba(var(--primary-glow), 0.3);*/
/*}*/

/*!* ===== PAGINATION ===== *!*/
/*.pagination-section {*/
/*    display: flex;*/
/*    justify-content: center;*/
/*}*/

/*.pagination {*/
/*    border-radius: var(--radius-lg);*/
/*    padding: 1rem 1.5rem;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 0.75rem;*/
/*}*/

/*.pagination-btn {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    width: 40px;*/
/*    height: 40px;*/
/*    border-radius: var(--radius-md);*/
/*    background: rgba(var(--primary-glow), 0.1);*/
/*    color: rgb(var(--primary-glow));*/
/*    text-decoration: none;*/
/*    transition: var(--transition-smooth);*/
/*    border: 1px solid rgba(var(--primary-glow), 0.2);*/
/*}*/

/*.pagination-btn:hover {*/
/*    background: rgba(var(--primary-glow), 0.15);*/
/*    transform: translateY(-1px);*/
/*}*/

/*.pagination-info {*/
/*    color: rgb(var(--text-secondary));*/
/*    font-weight: var(--font-weight-medium);*/
/*    font-size: 0.875rem;*/
/*    margin: 0 1rem;*/
/*}*/

/*!* ===== RESPONSIVE DESIGN ===== *!*/
/*@media (max-width: 768px) {*/
/*    .artists-container {*/
/*        padding: 1rem 0.75rem;*/
/*    }*/

/*    .list-stats {*/
/*        flex-direction: column;*/
/*        gap: 1.5rem;*/
/*        padding: 1.5rem;*/
/*    }*/

/*    .filters-section {*/
/*        padding: 1.25rem;*/
/*    }*/

/*    .filter-controls {*/
/*        flex-direction: column;*/
/*        gap: 1rem;*/
/*        align-items: stretch;*/
/*    }*/

/*    .filter-group {*/
/*        justify-content: space-between;*/
/*    }*/

/*    .artists-grid {*/
/*        grid-template-columns: 1fr;*/
/*        gap: 1rem;*/
/*    }*/

/*    .artist-card-inner {*/
/*        padding: 1.25rem;*/
/*    }*/

/*    .artist-stats {*/
/*        gap: 1rem;*/
/*    }*/

/*    .artist-actions {*/
/*        flex-direction: column;*/
/*    }*/

/*    .pagination {*/
/*        padding: 0.75rem 1rem;*/
/*    }*/
/*}*/

/*@media (max-width: 480px) {*/
/*    .artist-avatar,*/
/*    .artist-avatar-placeholder {*/
/*        width: 80px;*/
/*        height: 80px;*/
/*    }*/

/*    .placeholder-icon {*/
/*        font-size: 2.5rem;*/
/*    }*/

/*    .artist-name {*/
/*        font-size: 1.125rem;*/
/*    }*/

/*    .empty-state {*/
/*        padding: 3rem 1.5rem;*/
/*    }*/

/*    .search-box,*/
/*    .sorting-panel,*/
/*    .alphabet-filter {*/
/*        padding: 1rem;*/
/*    }*/
/*}*/

/*.search-box {*/
/*    border-radius: var(--radius-lg);*/
/*    padding: 1.5rem;*/
/*}*/