/*GALLERY LIGHTBOX*/
.lightbox-active .wp-block-image a img{transition: all 300ms ease-in-out;}

.lightbox-active .wp-block-image a:hover img { transform: scale(1.05); }

div.glightbox-clean .gbtn{background-color:var(--wp--custom--primary--dark);}

div.glightbox-clean .gbtn:hover{background-color:var(--wp--custom--primary--light);}

div.glightbox-pagination-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

div.glightbox-pagination-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s ease;
}

div.glightbox-pagination-dots .dot.active {
  background: var(--wp--custom--primary--light);
}

/*HIDE ENLARGEMENT ON CLICK FOR GALLERY IMAGES*/
.wp-block-gallery [data-wp-on-async--click="actions.showLightbox"] {
    pointer-events: none !important;
}