/* .gallery {
    display: grid;
    grid-gap: 13px;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    grid-auto-rows: 350px;
 grid-auto-flow: dense; 

  }
   */
  .gallery__item {
    align-items: center;
    display: flex;
    justify-content: center;
  }
  
  .gallery__item > img {
    height: 100%;
    object-fit: cover;
    width: 100%;
  }
  
  .gallery__item--hor {
    grid-column: span 2;
  }
  
  .gallery__item--vert {
    grid-row: span 2;
  }
  .gallery__item--no {
    grid-row: span 1;
  }
  

@media (max-width:667px){}
@media (max-width:667px){
    .gallery {
        grid-gap: 0px;
        grid-auto-rows: auto;
    }
}
  