/* Contenedor general */
.vehiculo-origen-seinto{
    margin:20px 0;
    background:#fff;
}
.svo-title{
    font-size:28px;
    font-weight:700;
    margin:0;
}
.svo-divider{
    border:0;
    height:1px;
    background:#e5e5e5;
    margin:10px 0 20px;
}

/* Caja de cada resultado */
.vos-item{
    display:flex;
    gap:30px;
    align-items:flex-start;
    padding:15px;
    border-radius:6px;
    background:#fff;
    flex-wrap:nowrap;
    margin-bottom:20px;
}

/* Imagen producto izquierda */
.vos-product-image img{
    max-width:220px;
    height:auto;
    display:block;
}

/* Columna derecha */
.vos-right{
    margin-left:auto;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-start;
}
.vos-manufacturer{
    max-width:120px;
    height:auto;
    margin-bottom:15px;
}

/* Botón */
.vos-btn-consultar{
    padding:10px 35px;
    border-radius:6px;
    font-size:16px;
}

/* Responsive */
@media (max-width:768px){
    .vos-item{
        flex-direction:column;
        align-items:center;
    }
    .vos-right{
        margin-left:0;
    }
    .vos-product-image img{
        max-width:100%;
    }
}
