/* Suppression du trait après le titre */
.BAZ_fiche_titre::after {
    content: none;
}
.no-li-if-alone li:only-child::marker{
    content:'';
    }
.no-li-if-alone li:only-child{
margin-left:-2em;
}

.entry-header{display:flex;justify-content: space-between;align-items: center; }
.bloc-info{
    border: 2px solid #bcdddf;
    padding:1em;
    margin:1em;
    
}
.meta-info{
    background: #dbf2f4;
    font-size:.8em;
    padding:0 1em;
}
.groupe-bloc{
    display:flex;
    justify-content: flex-start;
    }
.groupe-bloc .bloc-info{
   
    background: #dbf2f4;
}

/* [1] The container */
.img-hover-zoom {
    height:200px;
   /* max-width:300px;*/
   overflow: hidden; 
   flex-shrink:0;/* [1.2] Hide the overflowing of child elements */
  }
  
  /* [2] Transition property for smooth transformation of images */
  .img-hover-zoom img {
    transition: transform .5s ease;
  }
  
  /* [3] Finally, transforming the image when container gets hovered */
  .img-hover-zoom:hover img {
    transform: scale(1.2) rotate(3deg);
  }