/*--------------------------------------------------------------
 * Bloque · Cuadro
 *-------------------------------------------------------------*/

.cuadro-wrapper{
  width:100%;
  height:260px;              /* strip horizontal, ajusta si quieres */
  background-size:cover;
  background-position:center;
  border-radius:2px;
  box-shadow:0 2px 8px rgba(0,0,0,.05);
  transition:transform .6s ease;
  overflow:hidden;
}



/* Responsive: más bajo en móviles */
@media(max-width:768px){
  .cuadro-wrapper{height:200px;}
}
