.artist-list {
    max-width: 1200px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 기본 4열 */
    gap: 40px;
    padding: 0 20px;
}

.artist-card {
    text-align: center;
    text-decoration: none; /* 링크 밑줄 제거 */
    color: inherit;        /* 글자색 기본 유지 */
    display: block;        /* 전체 영역 클릭 가능 */
}

.artist-card img {
    width: 100%;
    border-radius: 4px;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.artist-info h3 {
    margin-top: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
}

.artist-info p {
    margin-top: 4px;
    font-size: 0.95rem;
    color: #888;
}

/* ✅ 모바일(768px 이하)에서는 2열로 변경 */
@media (max-width: 1033px) {
    .artist-list {
        grid-template-columns: repeat(2, 1fr);
    }
}


.artist-list.empty {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
}

.empty-message p {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
}


