/* public/gallery/css/gallery.css */

.gallery-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.gallery-item {
  max-width: 300px;
  margin: 20px;
  text-align: center;
}

.gallery-item img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 10px;
}

.gallery-item p {
  color: #666;
}