#gallery-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
  width: 100%;
  overflow-x: hidden; /* No horizontal scrollbar */
  padding: 40px 0;
}

#gallery-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  width: 90%;
  max-width: 1200px;
  justify-items: center; /* Center images nicely */
}

#gallery-box a {
  display: block;
  width: 100%;
  max-width: 300px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

#gallery-box a:hover {
  transform: scale(1.03);
}

#gallery-box img {
  width: 100%;
  height: 355px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
