:root {
  /* ajustá según tu header fijo (si te tapa el mapa) */
  --tm-blue: #0062FF;
  --trv-header-offset: 0px;
}

.trv {
  background: #f3f3f3;
}

.trv__wrap {
  display: flex;
  align-items: flex-start;
  /* importante para sticky en flex */
  gap: 0;
  padding: 150px 2% 30px;
  margin: 0 auto;
}

/* 50/50 */
.trv__left,
.trv__right {
  width: 50%;
}

.trv__left {
  position: sticky;
  top: var(--trv-header-offset);
  height: calc(100vh - var(--trv-header-offset));
}

/* ✅ Sticky real: acompaña el scroll del body */
.trv__leftSticky {
  position: sticky;
  top: var(--trv-header-offset);

  /* clave: en flex, esto ayuda a que sticky se “enganche” bien */
  align-self: flex-start;

  /* ocupa el viewport disponible */
  height: calc(100vh - var(--trv-header-offset));

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 24px;
  padding-top: 0;
}

/* mapa */
.trv__map {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.trv__map img {
  width: 100%;
  max-width: 620px;
  height: auto;
  display: block;
}

/* links sobre el mapa (simple) */
.trv__mapLinks {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.trv__mapLinks a {
  color: #1d33ff;
  text-decoration: none;
  font-size: 12px;
}

.trv__right {
  padding: 0 32px 100px;
  background: #f3f3f3;
  position: relative;

  /* defaults por si JS no corre */
  --grad-left: 0px;
  --grad-width: 50vw;
}

.trv__right::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 500px;

  /* 👇 desde 50vw hasta el borde derecho del viewport */
  left: var(--grad-left);
  width: var(--grad-width);

  background: linear-gradient(to top, #F2FF00 0%, #f3f3f3 100%);
  pointer-events: none;
  z-index: 0;
}

.trv__right>* {
  position: relative;
  z-index: 1;
}

.trv__title {
  font-family: 'asfalt';
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 22vh;
  font-weight: 400;
}

.trv__intro {
  margin: 1rem 0 8rem;
}

.trv__intro p {
  font-family: "SerialB";
  font-size: 18px;
  margin-bottom: 1.5rem;
}

.trv__intro strong {
  font-family: 'synt';
  color: #FF0000;
  font-size: 19px;
}


.trv__h2 {
  margin: 14px 0 24px;
  font-size: 26px;
  letter-spacing: 0.08em;
  font-family: 'SerialB';
  text-transform: uppercase;
  color: var(--tm-blue);
}

.trv__latest {
  display: grid;
  gap: 12px;
  max-width: 85%;
}

.trv__latestItem {
  display: grid;
  grid-template-columns: 1fr 120px;
  gap: 14px;
  align-items: start;
  text-decoration: none;
  color: #111;
}

.trv__latestTitle {
  font-size: 16px;
  font-family: "serialb";
  text-transform: uppercase;
  color: gray;
  transition: all 0.3s ease-in-out;
  cursor: pointer
}

.trv__latestTitle:hover {
  color: black;
}

.trv__latestLugarFecha {
  font-size: 14px;
  font-family: "serialb";
  color: gray;
  transition: all 0.3s ease-in-out;

  text-transform: uppercase;
}


.trv__latestMeta {
  font-size: 10px;
  opacity: 0.9;
  margin-top: 6px;
}

.trv__latestImg img {
  width: 150px;
  height: 100px;
  object-fit: cover;
  display: block;
}

.trv__body {
  margin-top: 24px;
  font-size: 12px;
  line-height: 1.45;
}

/* cards grandes como la parte de abajo de tu captura */
.trv__cards {
  margin-top: 24px;
  display: grid;
  gap: 26px;
}

.trv__card {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 18px;
  text-decoration: none;
  color: #111;
  align-items: start;
}

.trv__cardKicker {
  font-style: italic;
  font-size: 14px;
}

.trv__cardText {
  text-align: end;
}

.trv__cardTitle {
  font-size: 35px;
  line-height: 1;
  font-family: 'synt';
  /* width: 75%; */
  margin-left: auto;
  margin-top: 6px;
}

.trv__cardImg img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.trv__cardExcerpt {
  font-size: 14px;
  margin-top: 14px;
  width: 80%;
  margin-left: auto;
  font-family: "SerialB";
  line-height: normal;
}

/* responsive: en mobile apila */
@media (max-width: 980px) {
  .trv__wrap {
    flex-direction: column;
  }

  .trv__left,
  .trv__right {
    width: 100%;
  }

  /* en mobile no sticky */
  .trv__leftSticky {
    position: relative;
    top: auto;
    height: auto;
    align-self: auto;
  }

  .trv__card {
    display: flex;
    gap: 10px;
  }

  .trv__latestItem {
    grid-template-columns: 1fr;
    gap: 6px;
    margin-bottom: 1rem;
  }

  .trv__latestImg img {
    width: auto;
    height: 90px;
  }
}

/* FIX sticky: si algún wrapper del theme rompe sticky */
.trv,
.trv__wrap,
.trv__left,
.trv__right {
  overflow: visible !important;
  transform: none !important;
  filter: none !important;
}


/* El mapa pasa a ser el "stage" relativo */
.trv__mapStage {
  position: relative;
  width: 100%;
  max-width: 620px;
  /* el mismo que venías usando */
  margin: 0 auto;
}

.trv__mapStage>img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}


.trv__overlay-images>.trv__trav .img:hover {
  transform: rotateZ(-45deg) rotateX(-3deg) rotateY(5deg);
  cursor: pointer;
}

/* Overlay que vive arriba del mapa */
.trv__overlay-images {
  position: absolute;
  inset: 0;
  pointer-events: none;
  /* para que solo clickeen los pins */
}

/* Cada pin (trav-1 / trav-2 / etc) */
.trv__trav {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  pointer-events: auto;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.trv__trav a {
  display: inline-flex;
}

.trv__trav img {
  width: 86px;
  /* ajustalo según tu PNG */
  height: auto;
  display: block;
}

/* Texto azul como tu captura */
.trv__travTitle {
  margin: 0;
  font-size: 12px;
  line-height: 1.1;
  color: #1d33ff;
  text-align: center;
  white-space: nowrap;
}

/* que el hover sea suave */
.trv__trav {
  transition: transform 600ms ease;
  transform: translate(-50%, -50%);
  transform-origin: center;
}

/* importante: pointer en todo el grupo */
.trv__trav:hover {
  transform: translate(-50%, -50%) rotateZ(-45deg) rotateX(-3deg) rotateY(5deg);
  cursor: pointer;
}

/* si querés que también el link muestre cursor */
.trv__trav a,
.trv__travTitle {
  cursor: pointer;
}


@media (max-width: 980px) {
  .trv__wrap {
    padding: 0px 18px 0;
  }

  .trv__hero {
    padding-top: 80px;
  }

  .trv__right {
    padding: 0;
  }

  .trv__right::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 300px;
    background: linear-gradient(to bottom, #F2FF00 0%, #f3f3f3 100%);
    pointer-events: none;
    z-index: 0;
  }

  .trv__title {
    font-size: 15vh;
  }

  .trv__intro {
    margin: 1rem 0 3rem;
  }

  .trv__intro p {
    font-size: 16px;
  }

  .trv__trav img {
    width: 60px;
  }

  .trv__travTitle {
    font-size: 10px;
    font-family: "serialb";
  }

  .trv__cardTitle {
    font-size: 22px;
    letter-spacing: -0.5px;
    width: 100%;
    margin: 0;
    word-break: break-word;
  }

  .trv__cardImg img {
    width: 190px;
    height: 130px;
    object-fit: cover;
    display: block;
  }

  .trv__cardExcerpt {
    display: none;
  }

  .trv__cards {
    display: flex;
    flex-direction: column;
  }

  .trv__right {
    display: flex;
    flex-direction: column;
  }

  .trv__body {
    order: 1;
  }

  .trv__latest {
    order: 3;
    max-width: unset;
    background: #FAFF1F;
    margin-top: 1.5rem;
    margin-left: -18px;
    width: calc(100% + 2.5rem);
    padding: 24px;
  }

  .trv__h2 {
    line-height: normal;
    color: #000000ba;
    font-size: 20px;
    margin-bottom: 0;
    margin-top: 0;
  }

  .trv__latestTitle {
    font-size: 16px;
    line-height: normal;
    color: black;
    margin-bottom: 0;
    margin-top: 0;
  }




}