.new-gallery {
  padding: 100px 20px;
  background-color: var(--light-blue);
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 250px);
  gap: 15px;
  margin-bottom: 30px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-more {
  text-align: center;
  margin-top: 30px;
}

@media (max-width: 992px) {
  .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: repeat(3, 200px);
  }
}

@media (max-width: 480px) {
  .gallery-grid {
      grid-template-columns: 1fr;
      grid-template-rows: repeat(6, 220px);
  }
}