/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Feb 27 2026 | 22:16:16 */



/* ===================================================== */
/* LISTIVO GALLERY SAFE FIX – NO OVERLAP */
/* ===================================================== */

/* základ – nech JS layout funguje */
.listivo-gallery-v2__images{
  gap:12px;
  position:relative;
}

/* image box */
.listivo-gallery-v2__image{
  overflow:hidden;
  border-radius:14px;
  position:relative;
  transform:translateZ(0);
}

/* hlavná vec – ZRUŠÍ prekrývanie */
.listivo-gallery-v2__image{
  z-index:1;
}



/* ===================================================== */
/* DESKTOP STYLE (len vizuálne vylepšenie) */
/* ===================================================== */

@media(hover:hover){

  .listivo-gallery-v2__image{
    transition:.25s ease;
  }

  .listivo-gallery-v2__image:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 40px rgba(0,0,0,.5);
  }

}