.galeria {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.item-galeria {
  margin: 0;
  cursor: pointer;
}

.item-galeria img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

.item-galeria figcaption {
  font-size: 0.85rem;
  color: #555;
  margin-top: 6px;
}

/* Modal */
#modal-foto {
  border: none;
  border-radius: 8px;
  padding: 16px;
  max-width: 90vw;
  max-height: 90vh;
}

#modal-foto::backdrop {
  background: rgba(0, 0, 0, 0.75);
}

#modal-foto img {
  max-width: 100%;
  max-height: 75vh;
  display: block;
  margin: 0 auto;
}

#credito-modal {
  margin-top: 12px;
  text-align: center;
  font-weight: 500;
}

#btn-cerrar {
  position: absolute;
  top: 8px;
  right: 12px;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
}