div.gallery {
  margin: 5px;
  border: 1px solid #ccc;
  float: left;
  width: 180px;
}

div.gallery:hover {
  border: 1px solid #777;
}

div.gallery img {
  width: 150%;
  height: auto;
}

div.desc {
  padding: 15px;
  text-align: center;
}

/*--------------------------
    MODERN GALLERY LAYOUT
----------------------------*/
.gallery-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
  padding: 10px;
  max-width: 1000px;
  margin: 0 auto;
}

.gallery {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
  float: none;
  width: auto;
  max-height: 400px; /* limit max height */
}

.gallery:hover {
  transform: scale(1.05);
}

.gallery img {
  width: 100%;
  height: 100%; /* fill container height */
  object-fit: cover; /* crop to fill */
  display: block;
}

.gallery .desc {
  padding: 10px;
  font-size: 1rem;
  color: #555;
  text-align: center;
}

/* Responsive adjustments for gallery */
@media (max-width: 991.98px) {
  .gallery-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  .gallery-container {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}
