/* =========================
   VEHÍCULO DE ORIGEN SEINTO
   Optimizado CLS / responsive / rendimiento
   ========================= */

.vehiculo-origen-seinto {
  margin: 20px 0 40px;
  padding: 0;
  background: #fff;
  contain: layout paint;
}

.svo-header {
  margin: 0 0 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e5e7eb;
}

.svo-title {
  margin: 0;
  color: #111827;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  line-height: 1.2;
  text-align: left;
}

.svo-list {
  display: grid;
  gap: 20px;
}

.vos-item {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  min-height: 225px;
  padding: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(15, 23, 42, .06);
}

.vos-product-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 260px;
  min-height: 195px;
  border-radius: 14px;
  background: #f6f7f9;
  overflow: hidden;
  text-decoration: none;
}

.vos-product-image img {
  width: 260px;
  height: 195px;
  object-fit: contain;
  display: block;
}

.vos-right {
  min-width: 0;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 16px;
}

.vos-manufacturer-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  min-height: 96px;
  padding: 8px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #fff;
  text-decoration: none;
}

.vos-manufacturer {
  width: 140px;
  height: 90px;
  object-fit: contain;
  display: block;
}

.vos-btn-consultar {
  width: 100%;
  max-width: 320px;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 12px;
  border: 0;
  background: #ec2324;
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none !important;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.1;
  box-shadow: 0 10px 22px rgba(236, 35, 36, .18);
  transition: background-color .16s ease, box-shadow .16s ease;
}

.vos-btn-consultar:hover {
  background: #c91517;
  color: #fff !important;
  box-shadow: 0 14px 28px rgba(236, 35, 36, .24);
}

/* Tablet / móvil */
@media (max-width: 768px) {
  .vehiculo-origen-seinto {
    margin: 22px 0 32px;
  }

  .vos-item {
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: 0;
    padding: 16px;
  }

  .vos-product-image {
    width: 100%;
    min-height: 220px;
  }

  .vos-product-image img {
    width: 100%;
    height: 220px;
  }

  .vos-right {
    width: 100%;
  }

  .vos-btn-consultar {
    max-width: none;
  }
}

@media (max-width: 480px) {
  .svo-title {
    font-size: 22px;
  }

  .vos-product-image {
    min-height: 190px;
  }

  .vos-product-image img {
    height: 190px;
  }

  .vos-manufacturer-link {
    width: 130px;
    min-height: 78px;
  }

  .vos-manufacturer {
    width: 120px;
    height: 70px;
  }

  .vos-btn-consultar {
    min-height: 46px;
    font-size: 15px;
  }
}