
.cards-grid {display: grid;grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));gap: 1rem;margin-top: 10px;    justify-items: center;
 }
.artist-card-title{font-weight: 700; text-align: center;}

.artist-card 
{    
    position: relative;
    display: flex;
    background: #ececec;
    border-radius: 5px;
    overflow: visible;
    width: 150px;
    height: 150px;
    background: white;
}
.artist-img-container {    
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}
.artist-card-link
{
    text-decoration: none;
    color: inherit;
    width: fit-content;
}

.artist-img
{
    width: 150px;
    height: 150px;
    border-radius: 5px;
    object-fit: cover;
    object-position: top;
    background: #f1f1f1;
} 
.artist-card:hover {box-shadow: 0 8px 16px #0002;background:orange}
.artist-info-container {

    justify-content: center;
    color: #222;
    width: 100%;
    height: 150px;
    position: absolute;
    z-index: 200;
    bottom:0;
    background: rgb(255, 255, 255, 0.9);
    justify-items: center;
    align-content: center;
    
    min-height: 70px;
}

.artist-info-container:hover{opacity:0}
.artist-nav{display: flex;justify-content: space-between;}

.artist-card-meta{font-size:12px; margin:5px}
