/* Artist Series Top Section */
.artist-series-intro {
 background-color: #e7e4de;
 padding: 4rem 2rem;
 border-radius: 1.25rem;
 max-width: 1200px;
 margin: 0 auto 4rem auto;
 box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.artist-banner-wrapper {
 text-align: center;
 margin-bottom: 2rem;
}

.artist-banner {
 width: 100%;
 height: auto;
 border-radius: 0.5rem;
 max-height: 500px;
 object-fit: cover;
}

.artist-intro-text {
 text-align: center;
 max-width: 800px;
 margin: 0 auto;
}

.artist-intro-text h2 {
 font-size: 2rem;
 font-weight: 800;
 color: #b87c9e !important;
 margin-bottom: 1rem;
}

.artist-intro-text p {
 font-size: 1.5rem;
 line-height: 1.7;
 color: #322f33;
}




/* Wrapper for all artist bios */
.artist-bio {
 background-color: #f9f8f6;
 padding: 3rem 2rem;
 margin-bottom: 3rem;
 border-radius: 1.25rem;
 box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
 max-width: 1000px;
 margin-left: auto;
 margin-right: auto;
}

/* Headings and names */
.artist-bio h3 {
 font-size: 1.75rem;
 color: #322f33;
 font-weight: 800;
 margin-bottom: 1rem;
}

.artist-name {
 color: #f26741;
 font-weight: 700;
}

.artist-name-link {
 color: #f26741 !important;
 font-weight: 700;
 text-decoration: none;
}
.artist-name-link:hover {
 text-decoration: underline;
}

/* Bio description */
.artist-bio p {
 font-size: 1.5rem;
 color: #322f33;
 line-height: 1.7;
 margin-bottom: 2rem;
}

.artist-bio.alternate {
 background-color: #f5f5f3;
}




/* Image grid */
.artist-image-grid {
 display: flex;
 flex-wrap: wrap;
 gap: 1.25rem;
 justify-content: center;
}

.artist-image-grid img {
 max-width: 200px;
 width: 100%;
 height: auto;
 border-radius: 0.5rem;
 box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
}


/* Responsive tweaks */
@media (max-width: 600px) {
 .artist-image-grid {
 flex-direction: column;
 align-items: center;
 }

 .artist-image-grid img {
 max-width: 90%;
 }
}


