.page-title {
    font-size: 48px;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 3px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
}

.artist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.artist-card {
    border: 1px solid #ddd;
    padding: 0;
}

.artist-image {
    width: 100%;
    height: 300px;
    background-color: #f5f5f5;
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    letter-spacing: 2px;
    color: #999;
}

.artist-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-bottom: 1px solid #ddd;
    display: block;
    filter: grayscale(100%);
}

.artist-card h2 {
    font-size: 28px;
    margin: 20px 20px 10px 20px;
    letter-spacing: 1px;
}

.artist-bio {
    font-size: 15px;
    line-height: 1.6;
    margin: 0 20px 20px 20px;
    color: #333;
}

.artist-links {
    display: flex;
    gap: 10px;
    margin: 0 20px 20px 20px;
    flex-wrap: wrap;
}

.artist-links a {
    color: #333;
    text-decoration: none;
    padding: 6px 12px;
    border: 1px solid #ddd;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s;
}

.artist-links a:hover {
    border-color: #333;
    color: #000;
}

@media (max-width: 768px) {
    .page-title {
        font-size: 32px;
    }

    .artist-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .artist-image-placeholder {
        height: 250px;
    }

    .artist-card img {
        height: 250px;
    }
}
