.yasrab-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 20px;
}
.yasrab-gallery-item {
  cursor: pointer;
  position: relative;
}
.yasrab-gallery-bg {
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
}
.yasrab-gallery-bg h3 {
  color: #ffffff;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
}
.yasrab-popup {
  display: none;
  position: fixed;
  top:0; left:0;
  width:100%; height:100%;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.yasrab-popup .yasrab-slider {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.yasrab-popup img {
  max-width: 90%;
  max-height: 90%;
  margin: auto;
  display: block;
  border-radius: 10px;
}
.yasrab-close {
  position: absolute;
  top: 20px; right: 30px;
  font-size: 40px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  z-index: 10000;
}
