/* Instagram-like responsive gallery grid */
.instagram-gallery {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin: 0 auto;
  max-width: 1200px;
  padding: 10px 0;
  background: #fafafa;
  box-sizing: border-box;
}
.instagram-gallery > * {
  min-width: 0;
}

.instagram-gallery img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  background: #e9e9e9;
  display: block;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  min-height: 0;
  min-width: 0;
}

.instagram-gallery img:hover {
  transform: scale(1.06);
  box-shadow: 0 4px 16px rgba(0,0,0,0.16);
}
