.pswp__caption__center {
  text-align: center;
}

/* Gallery Grid */
#gallery-betdancestore {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
  gap: 20px;
  justify-items: center;
  padding: 0 15px;
  margin: 0 auto;
}

#gallery-betdancestore figure {
  margin: 0;
  width: 100%;
  height: 0;
  padding-bottom: 75%; /* 4:3 ratio box, adjust if needed */
  position: relative;
  overflow: hidden;
}

#gallery-betdancestore img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* crop & fill */
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.3s ease;
}

#gallery-betdancestore a:hover img {
  transform: scale(1.05); /* nice hover zoom */
}

/* Video Wrapper inside PhotoSwipe */
.pswp__video-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

/* Spacer */
.spacer {
  height: 5em;
}