/* Estilos para la galería */
.gallery-item{
  position:relative; margin-bottom:1rem; border-radius:8px; overflow:hidden;
  box-shadow:0 4px 8px rgba(0,0,0,0.1); transition:transform .3s ease;
}
.gallery-item:hover{ transform:translateY(-5px); }
.gallery-item img{ width:100%; height:200px; object-fit:cover; }
.gallery-caption{ padding:1rem; background:#fff; }
.gallery-caption h3{ font-size:1.1rem; margin-bottom:.5rem; color:#333; }
.gallery-caption p{ font-size:.9rem; color:#666; margin-bottom:0; }

/* Vista de tarjetas */
.gallery-card{
  background:#fff; border-radius:8px; overflow:hidden; box-shadow:0 4px 8px rgba(0,0,0,0.1);
  margin-bottom:1.5rem; height:100%; display:flex; flex-direction:column;
}
.gallery-card img{ width:100%; height:180px; object-fit:cover; }
.gallery-card-body{ padding:1rem; flex-grow:1; }
.gallery-card-body h2{ font-size:1.1rem; margin-bottom:.5rem; }
.gallery-card-body p{ font-size:.9rem; margin-bottom:.5rem; }
