
/* Safe Gallery Reset Patch */
.safe-gallery .gallery-card{
  display:block;
  position:relative;
  overflow:hidden;
  border-radius:28px;
  background:#fff;
  text-decoration:none;
  box-shadow:0 10px 28px rgba(0,0,0,.08);
  border:1px solid rgba(0,0,0,.08);
}
.safe-gallery .gallery-card img{
  display:block;
  width:100%;
  height:320px;
  object-fit:cover;
}
.safe-gallery .gallery-card span{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  display:block;
  padding:22px 18px 18px;
  text-align:center;
  color:#fff !important;
  font-size:clamp(1.05rem, 2vw, 1.45rem) !important;
  line-height:1.15;
  font-weight:800;
  text-shadow:0 2px 10px rgba(0,0,0,.8);
  background:linear-gradient(to top, rgba(0,0,0,.68), rgba(0,0,0,0));
}
@media (max-width:760px){
  .safe-gallery .gallery-card img{height:260px;}
}
