
.gallery-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  padding: 20px;
}

.gallery-container a {
  width: 200px;
  margin: 0; /* eliminamos el margin individual para que 'gap' se encargue */
  flex: 0 1 auto;
}

.gallery-container a img {
  max-width: 100%;
  height: auto;
}

.thumb-wrapper {
  width: 200px;
  height: 200px; /* Relación 16:9, puedes ajustar */
  overflow: hidden;
  /* border-radius: 5px; */
  background: #000;
  /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); */ 
}

.thumb-wrapper img {
  width: 100%;
  height: 100%;
  position: relative;
  top: 50%;
  transform: translateY(-50%);

  object-fit:cover;
}

@media (max-width: 500px) {

  .gallery-container a {
    width: 90px;

  }

  .thumb-wrapper {
    width: 90px;
    height: 90px; /* Relación 16:9, puedes ajustar */
  }
  
}