.artist-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}

.artist-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
    transition: transform 0.15s, box-shadow 0.15s;
    text-align: center;
}

.artist-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.artist-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.artist-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.artist-info {
    padding: 12px;
}

.artist-name {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a2e;
}

@media (max-width: 768px) {
    .artist-container {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 12px;
    }

    .artist-photo {
        height: 160px;
    }

    .artist-info {
        padding: 10px;
    }

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