/* Container styling */
.gallery {
  max-width: 320px;
  margin: 1rem;
  padding: 0.5rem;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

/* Image styling */
.gallery .image img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  transition: transform 0.3s ease;
}

/* Hover effect */
.gallery:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.gallery .image img:hover {
  transform: scale(1.03);
}

/* Caption styling */
.gallery h6 {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #444;
  font-family: Arial, sans-serif;
  word-break: break-word;
}
