/* Artists Page Layout */
.artists-container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 40px 20px;

    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 per row */
    gap: 40px;
}

.artist-card {
    background: rgba(0, 0, 0, 80);
    border: 2px solid #ffffff;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.4);
}

/* Artist Image */
.artist-card img {
    width: 100%;
    max-width: 220px;
    height: auto;
    border-radius: 12px;
    border: 3px solid #09ff00;
    transition: transform 0.3s, box-shadow 0.3s;
}

.artist-card img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #09ff00;
}

/* Artist Name */
.artist-card h3 {
    margin-top: 15px;
    font-size: 1.6rem;
    color: #09ff00;
    font-family: 'Kanit', sans-serif, monospace;
}

/* Artist Description */
.artist-card p {
    margin-top: 10px;
    color: rgba(255,255,255,0.85);
    
}

/* Make UL lists look cleaner */
.artist-card ul {
    margin-top: 12px;
    list-style-type: none;
    padding: 0;
}

.artist-card ul li {
    margin-bottom: 6px;
}

.artist-card a {
    color: #ffffff;
    font-weight: bold;
    text-decoration: none;
}

.artist-card a:hover {
    color: #09ff00;
}

/* Responsive — 2 per row on small screens */
@media (max-width: 900px) {
    .artists-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive — 1 per row on phones */
@media (max-width: 600px) {
    .artists-container {
        grid-template-columns: 1fr;
    }
}

.overview h2 {
    text-align: center;
    width: 100%;
    margin-bottom: 40px;
}