.gallery-grid {
  column-count: 3;
  column-gap: 10px;
  width: 100%;
}

.gallery-item {
  display: inline-block;
  width: 100%;
  margin-bottom: 10px;
}

.gallery-item a {
  display: block;
  text-decoration: none;
}

.gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  transition: transform 0.3s ease;
  display: block;
}

.gallery-item img:hover {
  transform: scale(1.02);
  cursor: pointer;
}

@media (max-width: 1000px) {
  .gallery-grid {
    column-count: 2;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    column-count: 1;
  }
}
