.ceg-gallery {
  display: grid;
  gap: 10px;
}

.ceg-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.ceg-gallery img:hover {
  transform: scale(1.05);
}

/* Overlay styling */
.ceg-overlay-container {
  position: relative;
  display: block;
}

.ceg-overlay-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  cursor: pointer;
}
.ceg-hidden {
  display: none !important;
}

.fancybox__container {
  z-index: 999999 !important;
  pointer-events: all !important;
}
