/* ===============================
   Galerie grid
   =============================== */

.gallery--grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* ===============================
   Gallery item
   =============================== */

.gallery-item {
  background: #fff;
  box-shadow: var(--shadow-2);
  overflow: hidden;
  transition: transform 0.3s ease;
  will-change: transform;
}

/* Масштабируем ТОЛЬКО контейнер */
.gallery-item:hover {
  transform: scale(1.05);
}

/* ===============================
   Images
   =============================== */

.gallery-item img {
  display: block; /* убирает inline-gap */
  width: 100%;
  height: auto;
  cursor: pointer;
}

/* ===============================
   Caption
   =============================== */

.caption {
  padding: 10px;
  text-align: center;
}

.caption a {
  text-decoration: none;
  color: #3158bb;
  font-weight: 600;
  display: inline-block;
  transition: color 0.3s ease;
}

.caption a:hover {
  color: #6d81b4;
}
