.route-jump {
  width: min(1220px, calc(100% - 28px));
  margin: -54px auto 0;
  position: relative;
  z-index: 4;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(214, 166, 74, .26);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 248, 226, .94), rgba(236, 205, 151, .86)),
    url("../assets/img/rutas-landing/lienzo-limari.webp") center / min(1180px, 100%) auto;
  box-shadow: 0 24px 58px rgba(40, 24, 10, .22);
}

.route-jump-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin: 0 4px 14px;
}

.route-jump-head h2 {
  margin: 0;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.04;
  color: var(--green, #172b17);
}

.route-jump-head p {
  max-width: 520px;
  margin: 0;
  color: var(--muted, #6d563d);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.route-jump-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(150px, 1fr);
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px 2px 10px;
  scroll-snap-type: x proximity;
  scrollbar-color: rgba(82, 101, 38, .55) rgba(255, 248, 226, .5);
}

.jump-card {
  min-height: 172px;
  position: relative;
  display: flex;
  align-items: end;
  overflow: hidden;
  border: 1px solid rgba(255, 248, 226, .5);
  border-radius: 8px;
  color: #fff8e8;
  text-decoration: none;
  background: #2d2014;
  box-shadow: 0 12px 28px rgba(55, 32, 12, .18);
  scroll-snap-align: start;
}

.jump-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.04) brightness(.72);
  transition: transform .35s ease, filter .35s ease;
}

.jump-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(12, 9, 4, .9), rgba(12, 9, 4, .42) 54%, rgba(12, 9, 4, .12)),
    radial-gradient(circle at 20% 14%, rgba(214, 166, 74, .22), transparent 32%);
  pointer-events: none;
}

.jump-card:hover img,
.jump-card:focus-visible img {
  transform: scale(1.05);
  filter: saturate(1.08) contrast(1.06) brightness(.82);
}

.jump-card:focus-visible {
  outline: 3px solid rgba(214, 166, 74, .9);
  outline-offset: 3px;
}

.jump-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 14px;
}

.jump-content strong {
  display: block;
  margin-bottom: 6px;
  font-family: Cinzel, Georgia, serif;
  font-size: 16px;
  line-height: 1.05;
  text-transform: uppercase;
}

.jump-content small {
  display: block;
  color: rgba(255, 246, 220, .86);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
}

@media (max-width: 980px) {
  .route-jump-head { display: block; }
  .route-jump-head p { margin-top: 8px; }
}

@media (max-width: 680px) {
  .route-jump {
    width: min(100% - 16px, 1220px);
    margin-top: -34px;
    padding: 12px;
  }
  .route-jump-track { grid-auto-columns: minmax(138px, 72vw); }
  .jump-card { min-height: 168px; }
}
