/* ===== 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;
    }
}


.bi-vkontakte {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1em;
    height: 1em;
    font-style: normal;
}

.bi-vkontakte::before {
    content: "VK";
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 0.7em;
    font-weight: 600;
    letter-spacing: -0.5px;
    transform: translateY(-1px);
}

