/* Gallery image hover effects */
.layout-ncol img {
  transition: all 0.3s ease;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.layout-ncol img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  filter: brightness(1.05);
}

/* Optional: Add a subtle border on hover */
.layout-ncol a {
  display: block;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.layout-ncol a:hover {
  background: linear-gradient(145deg, rgba(100, 150, 255, 0.1), rgba(150, 100, 255, 0.1));
  padding: 4px;
}