/* css/musicians.css */
.musicians-page {
    background-color: #fcfcfc;
}

.intro-section {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
}

.musicians-grid {
    background-color: #f3f4f6;
}

.musician-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.musician-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 .5rem 1.5rem rgba(0,0,0,.15) !important;
}

.year-badge {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    font-family: 'Inter', sans-serif;
    letter-spacing: 1px;
}

.musician-title {
    letter-spacing: 1px;
}

.musician-name {
    color: #2c2c2c;
    line-height: 1.4;
}

.image-wrapper .placeholder-text {
    font-size: 0.9rem;
}
