  .gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 16px; /* gap für die Spalten und Zeilen */
  }
  
  .column 
   {
    display: grid;
    gap: 16px;
    align-content: start;
  }
  
  
  .gallery-item 
   {
    position: relative;
    overflow: hidden;
    margin-bottom: 16px;
    align-items: start;
  }
  
  .gallery-item img 
  {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  

  .gallery-item .flag {
    width: auto;
    height: 16px;
    border-radius:0px;
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 8px;
    margin-bottom: 4px;
  }

  .gallery-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.8);
    padding: 7px;
    font-size: 16px;
    color: #333;
    box-sizing: border-box;
    opacity: 0;
    margin-bottom: 4px;
    transition: opacity 0.3s ease-in-out;
  }
  
  .gallery-item:hover .overlay {
    opacity: 1;
  }
  
  @media screen and (max-width: 768px) {
    .gallery {
      grid-template-columns: 1fr;
    }
  }
  
