  <style>
  
  
   .gallery-container {
	   padding-top:100px;
     width: 100%; /* on élargit à 100% */
  margin: 0 auto;
  padding-bottom: 30px;
  transition: padding-top 0.3s ease;
    }
.gallery-container.shifted {
  padding-top: 26px; /* ou margin-top selon ton besoin, ajuste la valeur si nécessaire */
  transition: padding-top 0.3s ease;
}
  
    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 10px;
      justify-items: center;
    }

    @media (max-width: 768px) {
    .gallery {
	      grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
	
    }}
	
    .image-wrapper:hover img {
      opacity: 0.80;
    }


    .image-wrapper {
      position: relative;
      width: 100%;
    }

    .gallery img {
      width: 100%;
      height: auto;
      transition: opacity 0.2s ease;
      display: block;
	  cursor:pointer;
    }


.label {
  position: absolute;
  bottom: 0;
  left: 50%;
    padding: 20px 30px;
  text-transform: uppercase;
  transform: translateX(-50%);
  height: 20px;
  background-color: #FF0;
  padding: 0 10px;
  display: flex;
  font-size: 14px;
  margin: 0;
  pointer-events: auto;
  white-space: normal;
  opacity: 1 !important;
  width: auto;
  text-align:center;
      font-family: 'Quicksand', sans-serif;
    white-space: nowrap;        /* empêche le retour à la ligne */

}


    @media (max-width: 768px) {
 .label {
   height: 15px;
  font-size: 10px;
}}




 .hidden {
  display: none !important;
}
  </style>
