/* ============================================================
   TRAVEL — DARK EDITORIAL
   Hub + parent travel pages
   ============================================================ */

/* -------------------------------------------------------
   Page-level dark canvas
------------------------------------------------------- */
body.page:has(.travelHubWrap),
body.single-travel_page{
  background:
    radial-gradient(circle at top, #0c1118 0%, #07090c 60%),
    #07090c !important;
  color: rgba(255,255,255,.92);
}

body.page:has(.travelHubWrap) #page,
body.page:has(.travelHubWrap) #content,
body.page:has(.travelHubWrap) .site-content,
body.page:has(.travelHubWrap) .ast-container,
body.page:has(.travelHubWrap) .content-area,
body.page:has(.travelHubWrap) .site-main,
body.single-travel_page #page,
body.single-travel_page #content,
body.single-travel_page .site-content,
body.single-travel_page .ast-container,
body.single-travel_page .content-area,
body.single-travel_page .site-main{
  background: transparent !important;
}

body.single-travel_page .entry-header{
  display: none !important;
}

/* -------------------------------------------------------
   Base tokens
------------------------------------------------------- */
.travelHubWrap{
  --travel-bg0:#06080b;
  --travel-bg1:#0b0e12;
  --travel-panel: rgba(255,255,255,.05);
  --travel-panel2: rgba(12,14,18,.84);
  --travel-line: rgba(255,255,255,.12);
  --travel-line-soft: rgba(255,255,255,.08);
  --travel-text: rgba(255,255,255,.92);
  --travel-dim: rgba(255,255,255,.74);
  --travel-dimmer: rgba(255,255,255,.58);
  --travel-accent: var(--ast-global-color-0);
  --travel-rail: 1400px;
  --travel-gutter: 18px;

  font-family: "IBM Plex Sans", Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--travel-text);
  max-width: var(--travel-rail);
  margin: 0 auto;
  padding: 18px var(--travel-gutter) 42px;
}

@media (max-width: 640px){
  .travelHubWrap{
    --travel-gutter: 12px;
    padding-top: 14px;
    padding-bottom: 26px;
  }
}

/* -------------------------------------------------------
   Hub hero
------------------------------------------------------- */
.travelHubHero{
  margin: 0 0 20px;
  padding: 0 0 14px;
  border-bottom: 1px solid var(--travel-line);
}

.travelHubHero::before{
  content:"";
  display:block;
  width:100%;
  height:4px;
  margin:0 0 14px;
  background: linear-gradient(90deg, var(--travel-accent), rgba(255,255,255,.08), transparent);
}

.travelHubEyebrow{
  font-size: 11px;
  line-height: 1;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--travel-dimmer);
  font-weight: 800;
}

.travelHubTitle{
  margin: .45rem 0 0;
  font-size: clamp(30px, 3.8vw, 46px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: #fff;
  font-weight: 720;
}

.travelHubIntro{
  max-width: 760px;
  margin-top: 1rem;
  color: var(--travel-dim);
  font-size: 1rem;
  line-height: 1.68;
}

.travelHubIntro p{
  margin: 0;
}

/* -------------------------------------------------------
   Search / filters
------------------------------------------------------- */
.travelHubControls{
  margin-top: 1.2rem;
}

.travelHubScreenReader{
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.travelHubSearch{
  display: block;
  width: min(520px, 100%);
  padding: .92rem 1rem;
  border: 1px solid var(--travel-line);
  border-radius: 0;
  background: rgba(255,255,255,.03);
  color: var(--travel-text);
  outline: none;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
}

.travelHubSearch::placeholder{
  color: rgba(255,255,255,.46);
}

.travelHubSearch:focus{
  border-color: rgba(255,255,255,.20);
  background: rgba(255,255,255,.05);
}

.travelHubPills{
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: .85rem;
}

.travelHubPill{
  appearance: none;
  border: 1px solid var(--travel-line);
  background: rgba(255,255,255,.02);
  color: var(--travel-dimmer);
  padding: .48rem .82rem;
  border-radius: 0;
  font-size: 12px;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}

.travelHubPill:hover{
  border-color: rgba(255,255,255,.18);
  color: var(--travel-text);
}

.travelHubPill.is-active{
  background: var(--travel-accent);
  border-color: var(--travel-accent);
  color: #fff;
}

/* -------------------------------------------------------
   Sections
------------------------------------------------------- */
.travelHubSection{
  margin-top: 2rem;
}

.travelHubSectionHeader{
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.travelHubSectionTitle{
  margin: 0;
  font-size: 11px;
  line-height: 1;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--travel-dimmer);
  font-weight: 800;
  white-space: nowrap;
}

.travelHubRule{
  flex: 1 1 auto;
  height: 1px;
  background: var(--travel-line);
}

/* -------------------------------------------------------
   Featured countries
------------------------------------------------------- */
.travelHubFeaturedGrid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.travelHubFeaturedCard{
  background: var(--travel-panel);
  border: 1px solid var(--travel-line);
  overflow: hidden;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.travelHubFeaturedCard:hover{
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.18);
  transform: translateY(-2px);
}

.travelHubFeaturedLink{
  display: block;
  color: inherit;
  text-decoration: none;
}

.travelHubFeaturedImage{
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--travel-line);
  background-color: rgba(255,255,255,.02);
}

.travelHubFeaturedImage.is-empty{
  background-image: none !important;
}

.travelHubFeaturedBody{
  padding: 1rem;
}

.travelHubFeaturedKicker,
.travelHubCountryKicker,
.travelHubCityKicker{
  font-size: 11px;
  line-height: 1;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--travel-dimmer);
}

.travelHubFeaturedTitle{
  margin: .4rem 0 0;
  font-size: 1.2rem;
  line-height: 1.15;
  color: var(--travel-text);
}

.travelHubFeaturedCount{
  margin-top: .45rem;
  font-size: .86rem;
  color: var(--travel-dimmer);
}

.travelHubFeaturedExcerpt{
  margin: .55rem 0 0;
  font-size: .94rem;
  line-height: 1.55;
  color: var(--travel-dim);
}

/* -------------------------------------------------------
   Country blocks
------------------------------------------------------- */
.travelHubCountryList{
  display: grid;
  gap: 1.25rem;
}

.travelHubCountryBlock{
  background: var(--travel-panel);
  border: 1px solid var(--travel-line);
  padding: 1rem;
  box-shadow: 0 14px 26px rgba(0,0,0,.28);
}

.travelHubCountryHeader{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 1rem;
  align-items: stretch;
}

.travelHubCountryTitle{
  margin: .35rem 0 0;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  line-height: 1.08;
  color: var(--travel-text);
}

.travelHubCountryTitle a{
  color: var(--travel-text);
  text-decoration: none;
}

.travelHubCountryTitle a:hover{
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.travelHubCountryExcerpt{
  margin: .7rem 0 0;
  max-width: 900px;
  color: var(--travel-dim);
  line-height: 1.65;
}

.travelHubCountryMeta{
  margin-top: .7rem;
  color: var(--travel-dimmer);
  font-size: .92rem;
}

.travelHubCountryThumb{
  display: block;
  min-height: 180px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid var(--travel-line-soft);
  background-color: rgba(255,255,255,.03);
}

/* -------------------------------------------------------
   Cities
------------------------------------------------------- */
.travelHubCityGrid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.travelHubCityCard{
  background: linear-gradient(180deg, rgba(22,26,32,.96), rgba(14,18,24,.92));
  border: 1px solid var(--travel-line);
  overflow: hidden;
  transition: background .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.travelHubCityCard:hover{
  background: linear-gradient(180deg, rgba(28,34,42,.96), rgba(16,22,28,.94));
  border-color: rgba(255,255,255,.18);
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(0,0,0,.42);
}

.travelHubCityLink{
  display: block;
  color: inherit;
  text-decoration: none;
}

.travelHubCityImage{
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--travel-line);
  background-color: rgba(255,255,255,.02);
}

.travelHubCityImage.is-empty{
  background-image: none !important;
}

.travelHubCityBody{
  padding: .85rem .9rem 1rem;
}

.travelHubCityTitle{
  margin: .35rem 0 0;
  font-size: 1.02rem;
  line-height: 1.2;
  color: var(--travel-text);
}

.travelHubCityExcerpt{
  margin: .5rem 0 0;
  color: var(--travel-dim);
  font-size: .92rem;
  line-height: 1.55;
}

.travelHubNoCities{
  margin-top: 1rem;
  color: var(--travel-dimmer);
  font-size: .95rem;
}

/* -------------------------------------------------------
   No results / empty
------------------------------------------------------- */
.travelHubNoResults{
  margin-top: 1.5rem;
}

.travelHubNoResultsInner{
  border: 1px solid var(--travel-line);
  background: var(--travel-panel);
  padding: 2rem 1rem;
  text-align: center;
}

.travelHubNoResultsTitle{
  font-size: 1.2rem;
  color: var(--travel-text);
}

.travelHubNoResultsText{
  margin-top: .45rem;
  color: var(--travel-dim);
}

.travelHubClearButton{
  margin-top: .9rem;
  appearance: none;
  border: 1px solid var(--travel-line);
  background: rgba(255,255,255,.02);
  color: var(--travel-text);
  padding: .6rem .95rem;
  cursor: pointer;
}

.travelHubClearButton:hover{
  border-color: rgba(255,255,255,.18);
}

.travelHubEmpty{
  border: 1px solid var(--travel-line);
  background: var(--travel-panel);
  padding: 1rem;
  color: var(--travel-dim);
}

.travelHubHidden{
  display: none !important;
}

/* -------------------------------------------------------
   Parent travel page
------------------------------------------------------- */
body.single-travel_page .travelParentWrap{
  width: min(100%, 1300px);
  margin: 0 auto;
  padding: 18px 20px 42px;
  box-sizing: border-box;
  color: rgba(255,255,255,.92);
}

body.single-travel_page .travelParentHero{
  margin: 0 0 20px;
  padding: 0 0 14px;
}

body.single-travel_page .travelParentHero::before{
  content:"";
  display:block;
  width:100%;
  height:4px;
  margin:0 0 14px;
  background: linear-gradient(90deg, var(--ast-global-color-0), rgba(255,255,255,.08), transparent);
}

body.single-travel_page .travelParentTitle{
  margin: 10px 0 0;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  font-weight: 720;
}

body.single-travel_page .travelParentBlurb{
  margin: 12px 0 18px;
  max-width: 72ch;
  color: rgba(255,255,255,.74);
  font-size: 15px;
  line-height: 1.7;
}

body.single-travel_page .travelParentContent{
  margin: 0 0 22px;
  color: rgba(255,255,255,.86);
  font-size: 15px;
  line-height: 1.75;
}

body.single-travel_page .travelParentContent p:first-child{
  margin-top: 0;
}

body.single-travel_page .travelParentSection{
  margin-top: 24px;
}

body.single-travel_page .travelParentSectionHead{
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

body.single-travel_page .travelParentSectionHead h2{
  margin: 0;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  font-weight: 800;
}

body.single-travel_page .travelParentSectionHead::after{
  content:"";
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.10);
}

body.single-travel_page .travelParentTileGrid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}

body.single-travel_page .travelParentTile{
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(22,26,32,.96), rgba(14,18,24,.92));
  box-shadow: 0 10px 18px rgba(0,0,0,.22);
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease, background .16s ease;
}

body.single-travel_page .travelParentTile:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.18);
  background: linear-gradient(180deg, rgba(28,34,42,.96), rgba(16,22,28,.94));
  box-shadow: 0 14px 26px rgba(0,0,0,.42);
}

body.single-travel_page .travelParentTileMedia{
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

body.single-travel_page .travelParentTileBody{
  padding: 12px 14px;
}

body.single-travel_page .travelParentTileTitle{
  font-size: 15px;
  line-height: 1.25;
  font-weight: 650;
  color: rgba(255,255,255,.92);
}

body.single-travel_page .travelParentTileDesc{
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,.68);
}

/* -------------------------------------------------------
   Breadcrumbs
------------------------------------------------------- */
.travelBreadcrumbs{
  margin: 0 0 12px;
  padding: 0;
}

.travelBreadcrumbsList{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
}

.travelBreadcrumbsItem{
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.travelBreadcrumbsItem:not(:last-child)::after{
  content: "•";
  display: inline-block;
  margin: 0 10px;
  color: rgba(255,255,255,.26);
  transform: translateY(-.5px);
}

.travelBreadcrumbsLink{
  color: rgba(255,255,255,.52);
  text-decoration: none;
  transition: color .15s ease;
}

.travelBreadcrumbsLink:hover{
  color: rgba(255,255,255,.88);
  text-decoration: none;
}

.travelBreadcrumbsCurrent{
  color: rgba(255,255,255,.88);
}

.travelBreadcrumbsItem:first-child .travelBreadcrumbsLink,
.travelBreadcrumbsItem:first-child .travelBreadcrumbsCurrent{
  color: rgba(255,255,255,.44);
}

/* -------------------------------------------------------
   Responsive
------------------------------------------------------- */
@media (max-width: 920px){
  .travelHubCountryHeader{
    grid-template-columns: 1fr;
  }

  .travelHubCountryThumb{
    min-height: 220px;
  }
}

@media (max-width: 768px){
  .travelBreadcrumbs{
    margin-bottom: 10px;
  }

  .travelBreadcrumbsList{
    font-size: 10px;
    letter-spacing: .10em;
    line-height: 1.35;
  }

  .travelBreadcrumbsItem{
    white-space: normal;
  }

  .travelBreadcrumbsItem:not(:last-child)::after{
    margin: 0 8px;
  }

  body.single-travel_page .travelParentWrap{
    padding: 14px 14px 34px;
  }

  body.single-travel_page .travelParentTileGrid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px){
  .travelHubHero{
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
  }

  .travelHubSection{
    margin-top: 1.5rem;
  }

  .travelHubFeaturedGrid,
  .travelHubCityGrid{
    grid-template-columns: 1fr;
  }

  .travelHubCountryBlock{
    padding: .9rem;
  }

  .travelHubFeaturedBody{
    padding: .9rem;
  }
}
/* ============================================================
   TRAVEL HUB — INDEX / NEWSROOM STYLE
   ============================================================ */

body.page:has(.travelHubWrap){
  background:
    radial-gradient(circle at top, #0c1118 0%, #07090c 60%),
    #07090c !important;
  color: rgba(255,255,255,.92);
}

body.page:has(.travelHubWrap) #page,
body.page:has(.travelHubWrap) #content,
body.page:has(.travelHubWrap) .site-content,
body.page:has(.travelHubWrap) .ast-container,
body.page:has(.travelHubWrap) .content-area,
body.page:has(.travelHubWrap) .site-main{
  background: transparent !important;
}

.travelHubWrap{
  --hub-max: 1360px;
  --hub-gutter: 22px;

  --hub-panel: rgba(255,255,255,.045);
  --hub-panel-2: rgba(255,255,255,.03);
  --hub-line: rgba(255,255,255,.10);
  --hub-line-soft: rgba(255,255,255,.07);

  --hub-text: rgba(255,255,255,.94);
  --hub-dim: rgba(255,255,255,.74);
  --hub-dimmer: rgba(255,255,255,.56);

  --hub-accent: var(--ast-global-color-0);

  max-width: var(--hub-max);
  margin: 0 auto;
  padding: 18px var(--hub-gutter) 42px;
  box-sizing: border-box;

  font-family: "IBM Plex Sans", Inter, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--hub-text);
}

.travelHub{
  width: 100%;
}

.travelHubHeader{
  margin: 0 0 26px;
  padding: 0 0 18px;
  border-bottom: 1px solid var(--hub-line);
}

.travelHubHeader::before{
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  margin: 0 0 14px;
  background: linear-gradient(
    90deg,
    var(--hub-accent),
    rgba(255,255,255,.10),
    transparent
  );
}

.travelHubHeader .travelBreadcrumbs{
  margin: 0 0 10px;
  padding: 0;
}

.travelHubHeader .travelBreadcrumbsList{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  margin: 0;
  padding: 0;

  font-size: 11px;
  line-height: 1.2;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
}

.travelHubHeader .travelBreadcrumbsItem{
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.travelHubHeader .travelBreadcrumbsItem:not(:last-child)::after{
  content: "•";
  margin: 0 10px;
  color: rgba(255,255,255,.24);
}

.travelHubHeader .travelBreadcrumbsCurrent{
  color: rgba(255,255,255,.46);
}

.travelHubEyebrow{
  font-size: 11px;
  line-height: 1;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--hub-dimmer);
  font-weight: 800;
  margin-bottom: 8px;
}

.travelHubTitle{
  margin: 0;
  font-size: clamp(42px, 5vw, 68px);
  line-height: .98;
  letter-spacing: -0.03em;
  color: #fff;
  font-weight: 760;
}

.travelHubIntro{
  margin: 16px 0 0;
  max-width: 760px;
  color: var(--hub-dim);
  font-size: 20px;
  line-height: 1.45;
}

.travelHubSearch{
  display: block;
  width: min(560px, 100%);
  margin-top: 20px;
  padding: 15px 16px;
  border: 1px solid var(--hub-line);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.025));
  color: var(--hub-text);
  font-size: 16px;
  line-height: 1.2;
  outline: none;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
}

.travelHubSearch::placeholder{
  color: rgba(255,255,255,.44);
}

.travelHubSearch:focus{
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.05);
}

.travelHubJump{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.travelHubJumpPill{
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--hub-line);
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.76);
  text-decoration: none;
  font-size: 12px;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
  transition: border-color .16s ease, background .16s ease, color .16s ease;
}

.travelHubJumpPill:hover{
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: #fff;
}

.travelCountries{
  display: grid;
  gap: 18px;
}

.travelCountry{
  background: linear-gradient(
    90deg,
    rgba(255,255,255,.03),
    rgba(255,255,255,.05),
    rgba(255,255,255,.03)
  );
  border: 1px solid var(--hub-line);
  overflow: hidden;
}

.travelCountryHeader{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--hub-line-soft);
}

.travelCountryHeaderMain{
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}

.travelCountryTitle{
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 740;
}

.travelCountryTitle a{
  color: #fff;
  text-decoration: none;
}

.travelCountryTitle a:hover{
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.travelCountryMeta{
  font-size: 12px;
  line-height: 1;
  letter-spacing: .10em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--hub-dimmer);
}

.travelCountryToggle{
  appearance: none;
  border: 1px solid var(--hub-line);
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.78);
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  transition: border-color .16s ease, background .16s ease, color .16s ease;
}

.travelCountryToggle:hover{
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: #fff;
}

.travelCountryBody{
  padding: 18px;
}

.travelCountryBody[hidden]{
  display: none;
}

.travelCityGrid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}

.travelCityCard{
  background: linear-gradient(180deg, rgba(20,24,30,.98), rgba(12,16,22,.94));
  border: 1px solid rgba(255,255,255,.10);
  overflow: hidden;
  transition:
    transform .18s ease,
    border-color .18s ease,
    box-shadow .18s ease,
    background .18s ease;
}

.travelCityCard:hover{
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.18);
  box-shadow: 0 16px 34px rgba(0,0,0,.42);
  background: linear-gradient(180deg, rgba(26,32,40,.98), rgba(14,20,28,.96));
}

.travelCityCard > a{
  display: block;
  color: inherit;
  text-decoration: none;
}

.travelCityImage{
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(255,255,255,.03);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.travelCityImage.is-empty{
  background-image: none !important;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
}

.travelCityBody{
  padding: 8px 10px;
}

.travelCityTitle{
  margin: 0;
  font-size: 15px;
  line-height: 1.15;
  font-weight: 650;
  color: rgba(255,255,255,.94);
}


.travelHubEmpty{
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.035);
  color: rgba(255,255,255,.66);
  font-size: 15px;
  line-height: 1.45;
}

@media (max-width: 900px){
  .travelHubTitle{
    font-size: clamp(36px, 8vw, 52px);
  }

  .travelHubIntro{
    font-size: 18px;
  }

  .travelCountryTitle{
    font-size: clamp(24px, 5vw, 34px);
  }

  .travelCityGrid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px){
  .travelHubWrap{
    padding: 14px 14px 30px;
  }

  .travelHubHeader{
    margin-bottom: 20px;
    padding-bottom: 16px;
  }

  .travelHubTitle{
    font-size: clamp(34px, 11vw, 44px);
    line-height: .98;
  }

  .travelHubIntro{
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.5;
  }

  .travelHubSearch{
    margin-top: 16px;
    padding: 14px 14px;
    font-size: 15px;
  }

  .travelHubJump{
    gap: 6px;
  }

  .travelHubJumpPill{
    min-height: 32px;
    padding: 0 10px;
    font-size: 11px;
  }

  .travelCountryHeader{
    padding: 14px 14px;
    align-items: flex-start;
  }

  .travelCountryHeaderMain{
    gap: 10px;
  }

  .travelCountryBody{
    padding: 14px;
  }

  .travelCityGrid{
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
.travelCityImage{
  position: relative;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(255,255,255,.03);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.travelCityImage::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(6,8,11,.10),
      rgba(6,8,11,.18) 45%,
      rgba(6,8,11,.34)
    );
  pointer-events: none;
}
.travelHubJumpPill.is-active,
.travelHubJumpPill:hover{
  border-color: var(--ast-global-color-0);
  color: #fff;
}

.travelHubSearch:focus{
  border-color: color-mix(in srgb, var(--ast-global-color-0) 55%, white 10%);
}
.travelCityGrid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.travelCityCard:first-child{
  grid-column: span 2;
  grid-row: span 2;
}

.travelCityCard:first-child .travelCityImage{
  aspect-ratio: 16 / 10;
}

.travelCityCard:not(:first-child) .travelCityImage{
  aspect-ratio: 16 / 9;
}

@media (max-width: 900px){
  .travelCityGrid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .travelCityCard:first-child{
    grid-column: span 2;
    grid-row: auto;
  }
}

@media (max-width: 640px){
  .travelCityGrid{
    grid-template-columns: 1fr;
  }

  .travelCityCard:first-child{
    grid-column: auto;
  }
}

/* ============================================================
   TRAVEL HUB — TIGHTER + NO DEAD SPACE
   ============================================================ */

/* Country block */
.travelCountry{
  border: 1px solid rgba(255,255,255,.10);
}

.travelCountryHeader{
  padding: 12px 14px;
}

.travelCountryHeaderMain{
  gap: 10px;
}

.travelCountryTitle{
  font-size: clamp(24px, 2.4vw, 34px);
}

.travelCountryMeta{
  font-size: 11px;
  letter-spacing: .08em;
}

.travelCountryBody{
  padding: 12px 14px 14px;
}

/* IMPORTANT: auto-fit, not auto-fill */
.travelCityGrid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

/* tighter cards */
.travelCityCard{
  border: 1px solid rgba(255,255,255,.10);
}

.travelCityImage{
  aspect-ratio: 16 / 9;
}

.travelCityBody{
  padding: 7px 9px 8px;
}

.travelCityTitle{
  font-size: 14px;
  line-height: 1.15;
  font-weight: 650;
}

/* smaller toggle */
.travelCountryToggle{
  min-width: 34px;
  height: 34px;
  padding: 0 10px;
  font-size: 11px;
  line-height: 1;
}

/* if there is only one city, make it feel intentional */
.travelCityGrid > .travelCityCard:only-child{
  max-width: 320px;
}

.travelCityGrid > .travelCityCard:only-child .travelCityImage{
  aspect-ratio: 3 / 2;
}

/* mobile */
@media (max-width: 640px){
  .travelCountryHeader{
    padding: 10px 12px;
  }

  .travelCountryBody{
    padding: 10px 12px 12px;
  }

  .travelCityGrid{
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .travelCountryToggle{
    min-width: 30px;
    height: 30px;
    padding: 0 8px;
    font-size: 10px;
  }

  .travelCityGrid > .travelCityCard:only-child{
    max-width: none;
  }
}