.artist-list{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;padding:20px;list-style-type:none;margin:0 auto;max-width:1200px}.artist-item{background-color:#f8f8f8;border-radius:8px;box-shadow:0 2px 10px #0000001a;overflow:hidden;transition:transform .3s ease,box-shadow .3s ease;display:flex;flex-direction:column;justify-content:space-between;height:350px;margin:0 auto}.artist-item:hover{transform:translateY(-5px);box-shadow:0 4px 20px #00000026}.artist-info{text-align:center}.artist-name{font-size:1.2rem;font-weight:700;color:#333;margin-bottom:10px}.artist-image{width:100%;height:200px;object-fit:cover;object-position:center;border-radius:8px}@media screen and (max-width: 768px){.artist-list{grid-template-columns:repeat(2,1fr)}.artist-item{height:300px}}@media screen and (max-width: 480px){.artist-list{grid-template-columns:1fr}.artist-item{height:250px}}
