.artist-gallery-section{
  max-width:1500px;
  margin:auto;
  padding:120px 40px;
}
.artist-gallery{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:40px;
}
.gallery-item{
  position:relative;
  display:block;
  cursor:pointer;
}
.gallery-item img{
  width:100%;
  display:block;
  object-fit:cover;
  transition:transform .4s cubic-bezier(.16,1,.3,1), opacity .4s ease;
  box-shadow:0 8px 30px rgba(0,0,0,0.06);
  border-radius:0;
}
.gallery-item:hover img{
  transform:scale(1.04);
  opacity:.95;
}
.art-overlay{
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  padding:24px;
  background:linear-gradient(transparent, rgba(0,0,0,.65));
  color:white;
  opacity:0;
  transition:opacity .35s ease;
}
.gallery-item:hover .art-overlay{
  opacity:1;
}
.art-overlay h3{
  font-family:"Cormorant Garamond", serif;
  font-size:20px;
  margin:0;
}
@media (max-width:1100px){
  .artist-gallery{grid-template-columns:repeat(auto-fit,minmax(250px,1fr));}
}
@media (max-width:600px){
  .artist-gallery{grid-template-columns:1fr;}
  .artist-gallery-section{padding:80px 20px;}
}
/* Lightbox */
.lightbox{
  position:fixed;
  top:0; left:0;
  width:100%; height:100%;
  background:rgba(0,0,0,.92);
  display:none;
  align-items:center; justify-content:center;
  z-index:999;
}
.lightbox-img{
  max-width:90%; max-height:90%;
  box-shadow:0 20px 60px rgba(0,0,0,.6);
}
.close{
  position:absolute;
  top:40px; right:60px;
  color:white; font-size:40px;
  cursor:pointer;
}
