/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Feb 27 2026 | 22:22:38 */




/* ===================================================== */
/* MOBILE FIX – HLAVNÁ FOTKA CELÁ */
/* ===================================================== */

@media(max-width:768px){

  /* odstráni pevné výšky čo robia bordel */
  .listivo-gallery-v2__image{
    height:auto !important;
  }

  .listivo-gallery-v2__image:first-child{
    aspect-ratio:4/3;
  }

}

/* ===================================================== */
/* EXTRA STABILITY PATCH */
/* ===================================================== */

/* niektoré verzie Listivo dávajú absolute thumbnails */
.listivo-gallery-v2__image--hidden{
  display:none !important;
}




/* ===================================== */
/* SEXTERAZ HOME MOBILE – EQUAL CARDS */
/* ===================================== */

@media(max-width:768px){

/* každý item je flex kontajner */
body.home .listivo-listing-grid > *{
display:flex;
height:100%;
}

/* samotná karta */
body.home .listivo-listing-card-v4{
display:flex !important;
flex-direction:column !important;
height:100% !important;
min-height:100% !important;
}

/* telo karty rastie */
body.home .listivo-listing-card-v4__body{
display:flex;
flex-direction:column;
flex-grow:1;
}

/* obsah rastie */
body.home .listivo-listing-card-v4__content{
flex-grow:1;
}

/* spodné ikonky vždy dole */
body.home .listivo-listing-card-v4__bottom{
margin-top:auto;
}

/* fix aby sa grid natiahol */
body.home .listivo-listing-list-with-tabs__list
.listivo-listing-grid{
align-items:stretch !important;
}

}