/* Artist List Page */
.artist-list-wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
    margin: 0 auto;
    max-width: 1000px;
}
.artist-list-title {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Mobile: list rows */
.artist-list-mobile {
    display: flex;
    flex-direction: column;
    max-width: 475px;
    margin: 0 auto;
}
.artist-list-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: rem;
    padding: 0 0;
}
.artist-thumb {
    flex: 1;
    height: 56px;
    min-width: 56px;
    max-width: 160px;
    max-height: 56px;
    object-fit: contain;
    border-radius: 0;
    flex-shrink: 0;
}
.artist-thumb-placeholder {
    width: 72px;
    height: 72px;
    background-color: #2a2a2a;
    border-left: 3px solid #FF0000;
    flex-shrink: 0;
}
.artist-list-name {
    flex: 1;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.artist-list-btn {
    flex-shrink: 0;
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
}
hr {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Desktop: grid */
.artist-card {
    width: 100%;
    max-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.25rem 0.5rem 0.25rem;
    border: 1px solid #FF0000;
    border-radius: 5px;
}
.artist-card-photo {
    width: 100%;
    height: 120px;
    object-fit: contain;
    border-radius: 0;
}
.artist-card-photo-placeholder {
    width: 100%;
    height: 120px;
    background-color: #2a2a2a;
    border-radius: 4px;
}
