/* ==========================================================
   LOGO GALLERY (Non-clickable Divi Gallery)
   Target: .logo-gallery
   ========================================================== */

/* Disable all link functionality (no lightbox, no click) */

.logo-gallery .et_overlay {
  display: none;
}

.logo-gallery .et_pb_gallery_image a {
  pointer-events: none !important;
  cursor: default !important;
}


/* ==========================================================
   LOGO GALLERY — Disable Divi slide-in / fade-in effects
   ========================================================== */

/* Stop Divi's built-in animation and transition */
.logo-gallery .et_pb_gallery_item,
.logo-gallery .et_pb_gallery_item * {
  animation: none !important;
  transition: none !important;
  transform: none !important;
  opacity: 1 !important;
}

/* Make sure hidden items are visible immediately */
.logo-gallery .et_pb_gallery_item.et_pb_animation_off,
.logo-gallery .et_pb_gallery_item.et-waypoint,
.logo-gallery .et_pb_gallery_item.et-animated,
.logo-gallery .et_pb_gallery_item.et_pb_gallery_item_0,
.logo-gallery .et_pb_gallery_item.et_pb_gallery_item_1,
.logo-gallery .et_pb_gallery_item.et_pb_gallery_item_2 {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

/* Disable transition delays Divi uses for gallery load-in */
.logo-gallery .et_pb_gallery_item {
  transition-delay: 0s !important;
  transition-duration: 0s !important;
}


html body .logo-gallery .et_post_gallery {
  padding-left: 10% !important;
  padding-right: 10% !important;
  display: flex;
  flex-wrap: wrap;
  gap: 4%;
  justify-content: center;
}

html body .logo-gallery .et_post_gallery>div {
  flex: 0 0 18%;
}