/*===== GOOGLE FONTS =====*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");


/*========== APP ==========*/

.gallery__wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 images per row */
  gap: 20px;
  justify-items: center;
  align-items: center;
}

.gallery__item {
  background-color: #f2f2f2; /* Light background box */
  padding: 12px;
  border-radius: 8px;
  text-align: center;
}

.gallery__image {
  width: 100%;
  max-width: 180px;
}

.gallery__caption {
  margin-top: 8px;
  font-size: 0.9rem;
  color: #555;
}


