/* Artist list styling */
.artist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.artist-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.artist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.artist-header {
    position: relative;
    padding: 25px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.artist-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
    border: 3px solid #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.artist-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #2d3748;
}

.artist-specialization {
    color: #718096;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.artist-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: #718096;
    font-size: 0.85rem;
}

.artist-works {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    overflow: hidden;
}

.artwork-thumbnail {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.artwork-container {
    overflow: hidden;
}

.artwork-container:hover .artwork-thumbnail {
    transform: scale(1.05);
}

.artist-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.artist-bio {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #4a5568;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.artist-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    font-size: 0.85rem;
    color: #718096;
}

.artist-count {
    display: flex;
    align-items: center;
    gap: 5px;
}

.artist-link {
    color: #4a5568;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.2s ease;
    padding: 8px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    display: inline-block;
    margin-top: 15px;
}

.artist-link:hover {
    color: #3182ce;
    border-color: #3182ce;
}

.no-artworks {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f7fafc;
    font-size: 0.9rem;
    color: #718096;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #3182ce;
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 0.7rem;
    margin-left: 5px;
}

.artist-hero {
    background-color: #f8f9fa;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
}

.artist-hero h1 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 15px;
}

.artist-hero p {
    font-size: 1.1rem;
    color: #718096;
    max-width: 700px;
    margin: 0 auto;
}

.pagination-container {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.social-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: all 0.2s ease;
}

.social-icon:hover {
    background-color: #3182ce;
    color: white;
}

/* Added styles */
.commission-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #48bb78;
    color: #fff;
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .artist-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    .artwork-thumbnail {
        height: 120px;
    }
}