.gallery-grid {
  column-count: 3;
  column-gap: 6px;
  padding-top: 140px;
}

@media (max-width: 1200px) {
  .gallery-grid {
    column-count: 2;
  }
}
@media (max-width: 768px) {
  .gallery-grid {
    column-count: 2;
  }
}
@media (max-width: 480px) {
  .gallery-grid {
    column-count: 1;
  }
}

.gallery-item {
  background: #11111179;
  margin-bottom: 2px;
  break-inside: avoid;
  position: relative;
  border-radius: 2%;
  
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  background-color: #00000079;
  aspect-ratio: auto;
  border-radius: 2%;
}

.gallery-caption {
  position: relative;
  width: 100%;
  background: #00000071;
  color: white;
  font-size: .8rem;
  letter-spacing: 3px;
  padding: 10px;
  box-sizing: border-box;

  text-align: left;
}

