﻿/* Classic pixel-feel homepage layout */
.lt-classic-home {
  --lt-shell: min(100% - 140px, 1296px);
  --lt-shell-wide: min(100% - 110px, 1300px);
  --lt-left-col: 430px;
  --lt-right-col: minmax(0, 1fr);
  background: #fbf8f1;
  margin: 0;
}

.lt-classic-home .lt-page {
  position: relative;
  overflow: clip;
  background: #fbf8f1;
  margin: 0;
}

.lt-classic-home .lt-page > * {
  margin-block-start: 0;
}

.lt-classic-home .lt-reveal {
  opacity: 1;
  transform: none;
}

.js-enabled .lt-classic-home .lt-reveal {
  opacity: 1;
  transform: translateY(14px);
}

.js-enabled .lt-classic-home .lt-reveal.is-revealed {
  opacity: 1;
  transform: none;
  transition: opacity 520ms ease, transform 520ms ease;
}

.lt-classic-home .lt-skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 99999;
  transform: translateY(-160%);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  background: #dff7ed;
  color: #14313b;
  box-shadow: 0 16px 32px rgba(9, 33, 49, 0.18);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.lt-classic-home .lt-skip-link:focus {
  transform: translateY(0);
}

.lt-classic-home .lt-header-overlay {
  position: absolute !important;
  inset: 0 0 auto 0;
  z-index: 80;
  height: 92px;
  background: linear-gradient(180deg, rgba(2, 20, 29, 0.42), rgba(2, 20, 29, 0));
  color: #fff;
}

.lt-classic-home .lt-header-overlay.is-scrolled {
  position: fixed !important;
  height: 68px;
  background: rgba(6, 25, 34, 0.9);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.lt-classic-home .lt-header-inner {
  width: var(--lt-shell-wide);
  min-height: 92px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr) 96px;
  align-items: center;
  gap: 1.45rem;
}

.lt-classic-home .lt-header-overlay.is-scrolled .lt-header-inner {
  min-height: 68px;
}

.lt-classic-home .lt-logo-wrap {
  width: 154px;
}

.lt-classic-home .lt-logo-link img {
  width: 154px;
  height: 64px;
  display: block;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.26));
}

.lt-classic-home .lt-primary-nav {
  display: flex;
  justify-content: center;
  min-width: 0;
}

.lt-classic-home .lt-primary-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 1.75vw, 1.7rem);
  padding: 0;
  margin: 0;
  list-style: none;
  white-space: nowrap;
}

.lt-classic-home .lt-primary-menu a {
  position: relative;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 0;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
  text-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.lt-classic-home .lt-primary-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: currentColor;
  transition: transform var(--lt-transition);
}

.lt-classic-home .lt-primary-menu .current-menu-item > a::after,
.lt-classic-home .lt-primary-menu a:hover::after,
.lt-classic-home .lt-primary-menu a:focus-visible::after {
  transform: scaleX(1);
}

.lt-classic-home .lt-header-tools {
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.38rem;
}

.lt-classic-home .lt-mobile-menu-toggle {
  display: none;
}

.lt-classic-home .lt-tool-btn,
.lt-classic-home .lt-header-social a {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  box-shadow: none;
  backdrop-filter: none;
}

.lt-classic-home .lt-tool-btn:hover,
.lt-classic-home .lt-tool-btn:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.lt-classic-home .lt-search-panel {
  position: absolute;
  left: 50%;
  top: 74px;
  width: min(100% - 2rem, 540px);
  transform: translateX(-50%);
  z-index: 90;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 40px rgba(4, 18, 28, 0.18);
  backdrop-filter: blur(12px);
}

.lt-classic-home .lt-search-panel[hidden] {
  display: none;
}

.lt-classic-home .lt-search-panel form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 6px;
  padding: 6px;
}

.lt-classic-home .lt-search-panel input {
  min-height: 42px;
  min-width: 0;
  border: 0;
  border-radius: 999px;
  background: #edf7f2;
  color: #18353d;
  padding: 0.68rem 0.95rem;
  font-weight: 800;
}

.lt-classic-home .lt-search-panel button {
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  padding: 0.62rem 1rem;
  background: #4db395;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.lt-classic-home .lt-search-panel .lt-search-close {
  width: 42px;
  padding: 0;
  background: #17343e;
  font-size: 18px;
  line-height: 1;
}

.lt-classic-home .lt-header-social {
  display: none;
}

.lt-classic-home .lt-hero-wrap {
  position: relative;
  z-index: 1;
  height: 665px;
  min-height: 665px;
  color: #fff;
  background-image:
    radial-gradient(720px 380px at 70% 72%, rgba(51, 145, 125, 0.14), transparent 68%),
    linear-gradient(90deg, rgba(6, 25, 33, 0.62) 0%, rgba(6, 25, 33, 0.22) 48%, rgba(6, 25, 33, 0.42) 100%),
    linear-gradient(180deg, rgba(5, 23, 31, 0.24), rgba(5, 23, 31, 0.08) 45%, rgba(5, 23, 31, 0.2)),
    var(--lt-hero-image);
  background-size: cover;
  background-position: center 44%;
  isolation: isolate;
  transition: filter 320ms ease;
}

.lt-classic-home .lt-hero-wrap.is-changing {
  filter: saturate(0.92) brightness(0.96);
}

.lt-classic-home .lt-hero-wrap::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  background: linear-gradient(180deg, rgba(251, 248, 241, 0), #fbf8f1 92%);
  opacity: 0.2;
  pointer-events: none;
}

.lt-classic-home .lt-hero-inner {
  position: relative;
  width: var(--lt-shell-wide);
  height: 100%;
  min-height: 0;
  margin: 0 auto;
  display: block;
  padding: 0;
}

.lt-classic-home .lt-hero-copy {
  position: absolute;
  left: 0;
  top: 130px;
  width: min(650px, 62vw);
  max-width: none;
}

.lt-classic-home .lt-hero-kicker {
  margin: 0 0 0.42rem;
  color: #dff7ed;
  font-size: 11px;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.lt-classic-home .lt-hero-title {
  display: inline-block;
  margin: 0;
  padding-bottom: 30px;
  max-width: 640px;
  color: #fff;
  font-family: "Segoe Print", "Comic Sans MS", Georgia, "Times New Roman", serif;
  font-size: clamp(72px, 8.8vw, 118px);
  font-weight: 700;
  font-style: italic;
  line-height: 0.88;
  letter-spacing: -0.065em;
  text-shadow: 0 14px 34px rgba(2, 8, 14, 0.48);
}

.lt-classic-home .lt-hero-subtitle {
  max-width: 380px;
  margin: 1rem 0 1.08rem;
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.72;
}

.lt-classic-home .lt-cta-primary {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  border-radius: 999px;
  padding: 0.78rem 1.55rem;
  background: linear-gradient(90deg, #9fcd9b, #bcd7a5);
  color: #15333b;
  box-shadow: 0 12px 28px rgba(82, 186, 145, 0.28);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.lt-classic-home .lt-cta-primary::after {
  content: "↗";
  margin-left: 0.74rem;
  font-size: 15px;
  line-height: 1;
}

.lt-classic-home .lt-cta-primary:hover,
.lt-classic-home .lt-cta-primary:focus-visible,
.lt-classic-home .lt-map-cta:hover,
.lt-classic-home .lt-map-cta:focus-visible,
.lt-classic-home .lt-newsletter-row button:hover,
.lt-classic-home .lt-newsletter-row button:focus-visible {
  transform: translateY(-2px);
}

.lt-classic-home .lt-hero-controls {
  position: absolute;
  left: 0;
  bottom: 68px;
  z-index: 4;
  display: inline-flex;
  gap: 0.44rem;
}

.lt-classic-home .lt-dot {
  width: 24px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
  cursor: pointer;
}

.lt-classic-home .lt-dot.is-active,
.lt-classic-home .lt-dot:hover {
  width: 38px;
  background: #dff7ed;
}

.lt-classic-home .lt-social-rail {
  position: absolute;
  top: 290px;
  right: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transform: none;
}

.lt-classic-home .lt-social-label {
  position: relative;
  margin: 0 0 0.7rem;
  writing-mode: initial;
  transform: rotate(-8deg);
  color: rgba(255, 255, 255, 0.86);
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.lt-classic-home .lt-social-label::after {
  content: "";
  position: absolute;
  right: -16px;
  top: 22px;
  width: 34px;
  height: 26px;
  border-right: 2px solid rgba(255, 255, 255, 0.86);
  border-bottom: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 0 0 24px 0;
  transform: rotate(22deg);
}

.lt-classic-home .lt-social-rail a {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #17343e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 900;
  text-decoration: none;
}

.lt-classic-home .lt-main-shell {
  position: relative;
  z-index: 5;
  width: var(--lt-shell);
  margin: 0 auto;
  padding: 0 0 3.3rem;
}

.lt-classic-home .lt-category-dock-wrap {
  width: 100%;
  max-width: none;
  margin: -58px auto 34px;
  position: relative;
  z-index: 10;
}

.lt-classic-home .lt-category-dock-shell {
  min-height: 156px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 40px rgba(8, 38, 48, 0.13);
  padding: 15px 18px;
}

.lt-classic-home .lt-category-dock {
  height: 100%;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.lt-classic-home .lt-category-item {
  min-height: 124px;
  padding: 0.55rem 0.45rem;
  border-radius: 16px;
  background: transparent;
  box-shadow: none;
  color: #18353d;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.28rem;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  transition: background-color var(--lt-transition), box-shadow var(--lt-transition), transform var(--lt-transition), color var(--lt-transition);
}

.lt-classic-home .lt-category-item:hover,
.lt-classic-home .lt-category-item:focus-visible {
  background: #f4fbf7;
  box-shadow: 0 10px 20px rgba(9, 33, 49, 0.08);
  transform: translateY(-2px);
}

.lt-classic-home .lt-category-item small {
  color: #849297;
  font-size: 11px;
  line-height: 1.25;
  font-weight: 800;
}

.lt-classic-home .lt-cat-icon {
  width: 52px;
  height: 52px;
  color: #62b59b;
}

.lt-classic-home .lt-cat-icon svg {
  width: 52px;
  height: 52px;
}

.lt-classic-home .lt-cat-icon svg path,
.lt-classic-home .lt-cat-icon svg rect,
.lt-classic-home .lt-cat-icon svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lt-classic-home .lt-cat-icon svg .fill {
  fill: rgba(98, 181, 155, 0.26);
}

.lt-classic-home .lt-cat-icon svg .pale {
  fill: rgba(241, 211, 151, 0.28);
}

.lt-classic-home .lt-category-item:nth-child(6n+1) .lt-cat-icon { color: #36a79d; }
.lt-classic-home .lt-category-item:nth-child(6n+2) .lt-cat-icon { color: #e1aa5f; }
.lt-classic-home .lt-category-item:nth-child(6n+3) .lt-cat-icon { color: #6698d9; }
.lt-classic-home .lt-category-item:nth-child(6n+4) .lt-cat-icon { color: #dc7c8b; }
.lt-classic-home .lt-category-item:nth-child(6n+5) .lt-cat-icon { color: #6faf90; }
.lt-classic-home .lt-category-item:nth-child(6n+6) .lt-cat-icon { color: #9a7bd6; }

.lt-classic-home .lt-home-grid {
  display: grid;
  grid-template-columns: var(--lt-left-col) var(--lt-right-col);
  gap: 32px;
  align-items: start;
}

.lt-classic-home .lt-latest-col,
.lt-classic-home .lt-video-map-col {
  min-width: 0;
}

.lt-classic-home .lt-section {
  scroll-margin-top: 90px;
}

.lt-classic-home .lt-section + .lt-section {
  margin-top: 28px;
}

.lt-classic-home .lt-section-head {
  margin: 0 0 13px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.lt-classic-home .lt-section-head h2 {
  position: relative;
  margin: 0;
  padding-bottom: 8px;
  color: #17343e;
  font-size: 18px;
  line-height: 1.22;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.lt-classic-home .lt-section-head h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 38px;
  height: 2px;
  border-radius: 99px;
  background: #5fb89e;
}

.lt-classic-home .lt-section-link {
  color: #4d7f75;
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.lt-classic-home .lt-section-link:hover,
.lt-classic-home .lt-section-link:focus-visible {
  color: #123946;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lt-classic-home .lt-card,
.lt-classic-home .lt-post-card,
.lt-classic-home .lt-place-card,
.lt-classic-home .lt-journey-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.lt-classic-home .lt-post-card a,
.lt-classic-home .lt-journey-card a {
  color: inherit;
  text-decoration: none;
}

.lt-classic-home .lt-post-card-featured {
  margin-bottom: 14px;
}

.lt-classic-home .lt-post-card-featured .lt-post-thumb {
  position: relative;
  display: block;
  width: 100%;
  height: 278px;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #dce7e4;
  box-shadow: 0 14px 28px rgba(9, 33, 49, 0.12);
}

.lt-classic-home .lt-post-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
  transition: transform 420ms ease, filter 420ms ease;
}

.lt-classic-home .lt-post-thumb:hover img,
.lt-classic-home .lt-post-thumb:focus-visible img,
.lt-classic-home .lt-journey-card a:hover img,
.lt-classic-home .lt-journey-card a:focus-visible img {
  transform: scale(1.045);
  filter: saturate(1.1) contrast(1.04);
}

.lt-classic-home .lt-post-overlay {
  position: absolute;
  inset: auto 0 0;
  min-height: 88px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 0.3rem;
  background: linear-gradient(180deg, rgba(4, 18, 28, 0), rgba(4, 18, 28, 0.82));
  color: #fff;
}

.lt-classic-home .lt-post-overlay strong {
  font-size: 18px;
  line-height: 1.2;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.38);
}

.lt-classic-home .lt-post-meta {
  margin: 0 0 0.22rem;
  color: #6e7f85;
  font-size: 10px;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 900;
}

.lt-classic-home .lt-post-overlay .lt-post-meta {
  color: rgba(255, 255, 255, 0.78);
}

.lt-classic-home .lt-post-list-column {
  display: grid;
  gap: 12px;
}

.lt-classic-home .lt-post-card-compact {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 0;
  background: transparent;
}

.lt-classic-home .lt-post-card-compact .lt-post-thumb {
  display: block;
  width: 120px;
  height: 80px;
  margin: 0;
  overflow: hidden;
  border-radius: 13px;
  background: #dce7e4;
}

.lt-classic-home .lt-post-card-compact h3 {
  margin: 0;
  color: #17343e;
  font-size: 13px;
  line-height: 1.34;
  font-weight: 900;
}

.lt-classic-home .lt-latest-col > .lt-section-link {
  display: inline-flex;
  margin-top: 14px;
}

.lt-classic-home .lt-featured-video {
  position: static;
  margin: 0;
}

.lt-classic-home .lt-video-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 18px;
  align-items: stretch;
}

.lt-classic-home .lt-video-play {
  position: relative;
  min-height: 310px;
  height: 310px;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
  color: #fff;
  background-position: center;
  background-size: cover;
  box-shadow: 0 14px 28px rgba(9, 33, 49, 0.14);
  text-decoration: none;
}

.lt-classic-home .lt-video-label {
  position: absolute;
  left: 18px;
  bottom: 16px;
  max-width: 24ch;
  font-size: 0;
  line-height: 1.24;
  font-weight: 900;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.lt-classic-home .lt-video-icon {
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #17343e;
  font-size: 24px;
  box-shadow: 0 14px 30px rgba(4, 18, 28, 0.18);
}

.lt-classic-home .lt-video-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lt-classic-home .lt-video-list li a {
  min-height: 75px;
  height: 75px;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 7px 0.75rem 7px 7px;
  border-radius: 15px;
  background: #fff;
  color: #18353d;
  box-shadow: 0 9px 20px rgba(9, 33, 49, 0.08);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 900;
  text-decoration: none;
}

.lt-classic-home .lt-video-list li a:hover,
.lt-classic-home .lt-video-list li a:focus-visible {
  background: #f4fbf7;
  transform: translateX(2px);
  text-decoration: none;
}

.lt-classic-home .lt-video-list-thumb {
  position: relative;
  height: 61px;
  overflow: hidden;
  border-radius: 12px;
  background: #dce7e4;
}

.lt-classic-home .lt-video-list-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.lt-classic-home .lt-video-list-thumb > span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 24px;
  height: 24px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #17343e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  line-height: 1;
}

.lt-classic-home .lt-video-list-thumb em {
  position: absolute;
  right: 5px;
  bottom: 5px;
  border-radius: 999px;
  padding: 2px 5px;
  background: rgba(4, 18, 28, 0.72);
  color: #fff;
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
}

.lt-classic-home .lt-video-list-copy {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.lt-video-modal__frame-wrap video,
.lt-content-video-embed video,
.lt-content-video-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.lt-content-video-embed {
  max-width: 980px;
  aspect-ratio: 16 / 9;
  margin: 0 auto 28px;
  overflow: hidden;
  border-radius: 22px;
  background: #091921;
  box-shadow: 0 18px 38px rgba(9, 33, 49, 0.13);
}

.lt-classic-home .lt-destination-map {
  position: relative;
}

.lt-classic-home .lt-destination-map .lt-section-head {
  margin-bottom: 14px;
  align-items: flex-end;
}

.lt-classic-home .lt-destination-map .lt-section-head h2 {
  font-size: 20px;
  padding-bottom: 10px;
}

.lt-classic-home .lt-destination-map .lt-section-head h2::after {
  width: 38px;
  height: 3px;
  background: #49a98f;
}

.lt-classic-home .lt-destination-map .lt-section-link {
  margin-bottom: 10px;
  color: #3d7c72;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lt-classic-home .lt-destination-map .lt-map-grid {
  min-height: 270px;
}

.lt-classic-home .lt-map-panel {
  position: relative;
  min-height: 270px;
  height: 270px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 62%) minmax(138px, 30%);
  align-items: center;
  gap: clamp(12px, 2.4vw, 24px);
  border-radius: 20px;
  padding: 16px 18px 16px 14px;
  background:
    radial-gradient(210px 130px at 25% 22%, rgba(255, 255, 255, 0.74), transparent 70%),
    radial-gradient(170px 120px at 73% 100%, rgba(123, 193, 170, 0.16), transparent 72%),
    linear-gradient(135deg, #e7f6ef 0%, #d8eff2 58%, #d1e9ef 100%);
  box-shadow: 0 16px 32px rgba(18, 60, 69, 0.11);
  isolation: isolate;
}

.lt-classic-home .lt-map-panel::before {
  content: "";
  position: absolute;
  inset: 12px 44% 12px 12px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.52), transparent 34%),
    linear-gradient(145deg, rgba(213, 240, 236, 0.5), rgba(192, 225, 232, 0.28));
  pointer-events: none;
  z-index: -1;
}

.lt-classic-home .lt-map-visual {
  position: relative;
  width: 100%;
  height: 238px;
  min-width: 0;
  overflow: visible;
}

.lt-classic-home .lt-map-visual .lt-map-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
  object-position: center center;
  border-radius: 16px;
  image-rendering: auto;
  transform: none;
  filter: drop-shadow(0 14px 18px rgba(18, 77, 77, 0.15));
}

.lt-classic-home .lt-map-route {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.lt-classic-home .lt-map-route path:first-child {
  fill: none;
  stroke: rgba(58, 131, 143, 0.45);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 4 7;
}

.lt-classic-home .lt-map-plane {
  fill: #77aeb9;
  opacity: 0.72;
  transform-origin: center;
  transform: rotate(-9deg);
}

.lt-classic-home .lt-map-hotspots {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  pointer-events: none;
}

.lt-classic-home .lt-map-hotspot {
  position: absolute;
  transform: translate(-50%, -50%);
  pointer-events: auto;
  z-index: 5;
}

.lt-classic-home .lt-map-hotspot-btn {
  position: relative;
  width: 15px;
  height: 15px;
  display: block;
  border: 2.5px solid #fff;
  border-radius: 999px 999px 999px 0;
  background: #b47948;
  box-shadow: 0 7px 16px rgba(59, 86, 90, 0.2);
  transform: rotate(-45deg);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.lt-classic-home .lt-map-hotspot-btn::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
}

.lt-classic-home .lt-map-hotspot-btn::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 999px;
  background: rgba(174, 113, 69, 0.16);
  opacity: 0;
  transform: scale(0.76);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.lt-classic-home .lt-map-hotspot-btn--orange { background: #df8d4d; }
.lt-classic-home .lt-map-hotspot-btn--blue { background: #4d9aa7; }
.lt-classic-home .lt-map-hotspot-btn--brown { background: #a56f45; }

.lt-classic-home .lt-map-hotspot-btn:hover,
.lt-classic-home .lt-map-hotspot-btn:focus-visible,
.lt-classic-home .lt-map-hotspot-btn.is-active,
.lt-classic-home .lt-map-hotspot-btn[aria-pressed="true"] {
  box-shadow: 0 9px 19px rgba(59, 86, 90, 0.28);
  outline: 0;
  transform: rotate(-45deg) scale(1.12);
}

.lt-classic-home .lt-map-hotspot-btn:hover::before,
.lt-classic-home .lt-map-hotspot-btn:focus-visible::before,
.lt-classic-home .lt-map-hotspot-btn.is-active::before,
.lt-classic-home .lt-map-hotspot-btn[aria-pressed="true"]::before {
  opacity: 1;
  transform: scale(1);
}

.lt-classic-home .lt-map-label-bubble,
.lt-classic-home .lt-map-place-pill {
  position: absolute;
  z-index: 8;
  text-decoration: none;
}

.lt-classic-home .lt-map-label-bubble {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.34rem 0.72rem;
  background: #fff;
  color: #2d4c51;
  box-shadow: 0 10px 22px rgba(31, 81, 89, 0.13);
  font-size: 11px;
  font-weight: 900;
  pointer-events: none;
}

.lt-classic-home .lt-map-label-bubble--ha-giang {
  top: 12%;
  left: 35%;
}

.lt-classic-home .lt-map-place-pill {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  min-width: 150px;
  max-width: min(180px, 56%);
  min-height: 64px;
  border-radius: 999px;
  padding: 6px 14px 6px 6px;
  background: rgba(255, 255, 255, 0.96);
  color: #18353d;
  box-shadow: 0 13px 28px rgba(27, 76, 84, 0.16);
  font-size: 13px;
  font-weight: 950;
}

.lt-classic-home .lt-map-place-pill img {
  width: 64px;
  height: 52px;
  border-radius: 999px;
  object-fit: cover;
  display: block;
}

.lt-classic-home .lt-map-place-pill span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lt-classic-home .lt-map-place-pill--da-nang {
  right: 1%;
  top: 47%;
}

.lt-classic-home .lt-map-place-pill--phu-quoc {
  left: 3%;
  bottom: 4%;
}

.lt-classic-home .lt-map-sea-label {
  position: absolute;
  z-index: 4;
  color: rgba(37, 84, 94, 0.72);
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
  pointer-events: none;
}

.lt-classic-home .lt-map-sea-label--hoang-sa {
  right: 9%;
  top: 39%;
}

.lt-classic-home .lt-map-sea-label--truong-sa {
  right: 2%;
  top: 72%;
}

.lt-classic-home .lt-map-copy {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: start;
  gap: 16px;
  padding-right: 2px;
}

.lt-classic-home .lt-map-default-copy {
  display: block;
}

.lt-classic-home .lt-map-copy p:first-child {
  margin: 0;
  color: #25474f;
  font-size: 17px;
  line-height: 1.52;
  font-weight: 800;
}

.lt-classic-home .lt-map-cards {
  display: grid;
  width: 100%;
}

.lt-classic-home .lt-map-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  padding: 9px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 22px rgba(27, 76, 84, 0.1);
}

.lt-classic-home .lt-map-card[hidden] {
  display: none;
}

.lt-classic-home .lt-map-card img {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  object-fit: cover;
}

.lt-classic-home .lt-map-card h3 {
  margin: 0 0 0.16rem;
  color: #17343e;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 950;
}

.lt-classic-home .lt-map-card p {
  margin: 0;
  color: #527077;
  font-size: 10.5px;
  line-height: 1.42;
  font-weight: 800;
}

.lt-classic-home .lt-map-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 0.76rem 1.14rem;
  background: #4db395;
  color: #fff;
  box-shadow: 0 14px 24px rgba(61, 148, 124, 0.25);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-decoration: none;
  white-space: nowrap;
}

.lt-classic-home .lt-map-cta span {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  font-size: 14px;
}

.lt-classic-home .lt-map-cta:hover,
.lt-classic-home .lt-map-cta:focus-visible {
  background: #2f967d;
  color: #fff;
  text-decoration: none;
}

.lt-classic-home .lt-map-sovereignty-note {
  margin: -4px 0 0;
  color: #5b7e85;
  font-size: 9.5px;
  font-weight: 800;
  line-height: 1.35;
}

.lt-classic-home .lt-journeys-row {
  margin-top: 34px;
}

.lt-classic-home .lt-journey-controls {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lt-classic-home .lt-journey-controls button {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #17343e;
  box-shadow: 0 10px 22px rgba(9, 33, 49, 0.12);
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.lt-classic-home .lt-journey-controls button:hover,
.lt-classic-home .lt-journey-controls button:focus-visible {
  background: #dff7ed;
  transform: translateY(-2px);
}

.lt-classic-home .lt-journey-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  scroll-behavior: smooth;
}

.lt-classic-home .lt-journey-card {
  height: 160px;
  overflow: hidden;
  border-radius: 18px;
  background: #dce7e4;
  box-shadow: 0 13px 28px rgba(9, 33, 49, 0.12);
}

.lt-classic-home .lt-journey-card a {
  position: relative;
  height: 100%;
  display: block;
  color: #fff;
}

.lt-classic-home .lt-journey-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.06) contrast(1.02);
}

.lt-classic-home .lt-journey-card a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 18, 28, 0.04), rgba(4, 18, 28, 0.78));
}

.lt-classic-home .lt-journey-card span {
  position: absolute;
  z-index: 1;
  left: 13px;
  right: 48px;
  bottom: 13px;
  display: grid;
  gap: 0.22rem;
}

.lt-classic-home .lt-journey-card small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lt-classic-home .lt-journey-card strong {
  font-size: 13px;
  line-height: 1.22;
  font-weight: 900;
}

.lt-classic-home .lt-journey-card em {
  position: absolute;
  z-index: 1;
  right: 13px;
  bottom: 14px;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #17343e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-weight: 900;
}

.lt-classic-home .lt-footer-newsletter {
  margin-top: 0;
  min-height: 125px;
  padding: 24px 0;
  color: #fff;
  background:
    radial-gradient(450px 180px at 86% 0%, rgba(223, 247, 237, 0.17), transparent 68%),
    radial-gradient(340px 130px at 8% 100%, rgba(92, 184, 158, 0.18), transparent 70%),
    linear-gradient(120deg, #0d374e 0%, #12533f 100%);
  border-radius: 0;
}

.lt-classic-home .lt-newsletter-inner {
  position: relative;
  width: var(--lt-shell);
  min-height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.82fr) 80px;
  align-items: center;
  gap: 2.2rem;
}

.lt-classic-home .lt-newsletter-copy {
  position: relative;
}

.lt-classic-home .lt-newsletter-script {
  position: absolute;
  left: 280px;
  top: -7px;
  opacity: 0.95;
  color: #fff;
  font-family: "Segoe Print", "Comic Sans MS", Georgia, serif;
  font-size: 32px;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.lt-classic-home .lt-newsletter-copy h2 {
  position: relative;
  margin: 0 0 0.25rem;
  color: #fff;
  font-size: 20px;
  line-height: 1.22;
  font-weight: 900;
}

.lt-classic-home .lt-newsletter-copy p {
  margin: 0;
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.55;
}

.lt-classic-home .lt-newsletter-form {
  position: relative;
  z-index: 2;
  max-width: none;
}

.lt-classic-home .lt-newsletter-row {
  display: flex;
  gap: 8px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  box-shadow: none;
}

.lt-classic-home .lt-newsletter-row input {
  flex: 1;
  min-width: 0;
  min-height: 45px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 0.68rem 0.92rem;
}

.lt-classic-home .lt-newsletter-row button {
  min-height: 45px;
  border: 0;
  border-radius: 999px;
  padding: 0.65rem 1.55rem;
  background: #b7c88f;
  color: #14313b;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.lt-classic-home .lt-newsletter-status {
  min-height: 18px;
  margin: 0.45rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 11px;
  font-weight: 800;
}

.lt-classic-home .lt-newsletter-plane {
  position: absolute;
  right: 0;
  top: 8px;
  width: 76px;
  height: 46px;
  opacity: 0.72;
  transform: rotate(-12deg);
  pointer-events: none;
}

.lt-classic-home .lt-newsletter-plane::before {
  content: "";
  position: absolute;
  inset: 0;
  clip-path: polygon(0 48%, 100% 0, 70% 54%, 100% 100%, 0 48%, 58% 54%);
  background: #fff;
}

/* Inner content pages keep the same visual language as the homepage chrome. */
.lt-content-view.lt-classic-home .lt-header-overlay {
  position: absolute !important;
  height: 92px;
  background: linear-gradient(180deg, rgba(2, 20, 29, 0.5), rgba(2, 20, 29, 0));
  box-shadow: none;
}

.lt-content-view.lt-classic-home .lt-header-overlay.is-scrolled {
  position: fixed !important;
  height: 68px;
  background: rgba(6, 25, 34, 0.9);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.lt-content-view.lt-classic-home .lt-header-inner {
  min-height: 92px;
}

.lt-content-view.lt-classic-home .lt-header-overlay.is-scrolled .lt-header-inner {
  min-height: 68px;
}

.lt-content-view.lt-classic-home .lt-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.lt-content-hero-banner {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background-image:
    linear-gradient(90deg, rgba(5, 24, 32, 0.72), rgba(5, 24, 32, 0.18) 58%, rgba(5, 24, 32, 0.42)),
    linear-gradient(180deg, rgba(5, 24, 32, 0.2), rgba(5, 24, 32, 0.5)),
    var(--lt-content-hero-image);
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

.lt-content-hero-banner::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 96px;
  background: linear-gradient(180deg, rgba(251, 248, 241, 0), #fbf8f1);
  pointer-events: none;
}

.lt-content-hero-inner {
  position: relative;
  z-index: 2;
  width: var(--lt-shell);
  margin: 0 auto;
  padding: 136px 0 76px;
}

.lt-content-hero-inner .lt-post-meta {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.86);
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}

.lt-content-hero-inner h1 {
  max-width: 860px;
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 4.8vw, 64px);
  line-height: 1.08;
  font-weight: 950;
  text-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

.lt-content-main {
  width: var(--lt-shell);
  margin: 0 auto;
  padding: 46px 0 72px;
  flex: 1 0 auto;
}

.lt-content-article,
.lt-content-list-head,
.lt-content-empty {
  max-width: 900px;
  margin: 0 auto;
}

.lt-content-hero-image {
  margin: 0 0 28px;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 18px 38px rgba(9, 33, 49, 0.13);
}

.lt-content-hero-image img {
  width: 100%;
  max-height: 470px;
  display: block;
  object-fit: cover;
}

.lt-content-head {
  margin-bottom: 28px;
}

.lt-content-head h1,
.lt-content-list-head h1 {
  max-width: 820px;
  margin: 0;
  color: #17343e;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.lt-content-body {
  color: #263f45;
  font-size: 17px;
  line-height: 1.82;
}

.lt-content-body > * {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.lt-content-body img {
  border-radius: 16px;
}

.lt-content-nav {
  max-width: 760px;
  margin: 44px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(23, 52, 62, 0.12);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.lt-content-nav a,
.lt-pagination a,
.lt-pagination span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border-radius: 999px;
  padding: 0.68rem 1rem;
  background: #fff;
  color: #17343e;
  box-shadow: 0 10px 22px rgba(9, 33, 49, 0.08);
  font-weight: 900;
  text-decoration: none;
}

.lt-content-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.lt-content-card {
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(9, 33, 49, 0.09);
}

.lt-content-card-thumb {
  display: block;
  height: 220px;
  overflow: hidden;
}

.lt-content-card-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.lt-content-card > div {
  padding: 18px;
}

.lt-content-card h2 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.25;
}

.lt-content-card h2 a {
  color: #17343e;
  text-decoration: none;
}

.lt-content-card p:last-child {
  margin-bottom: 0;
  color: #607379;
  font-size: 14px;
  line-height: 1.6;
}

.lt-pagination {
  margin-top: 28px;
}

/* Tighten the destination map to match the demo card: airy map left, simple copy right. */
.lt-classic-home .lt-map-panel {
  height: 380px;
  min-height: 380px;
  grid-template-columns: minmax(300px, 48%) minmax(210px, 1fr);
  gap: clamp(18px, 3vw, 38px);
  padding: 22px 38px 22px 26px;
  border-radius: 20px;
  background:
    radial-gradient(300px 210px at 30% 50%, rgba(255, 255, 255, 0.48), transparent 72%),
    linear-gradient(135deg, #e9f4ef 0%, #d8eef1 55%, #d0e9f0 100%);
}

.lt-classic-home .lt-map-panel::before {
  inset: 22px auto 22px 24px;
  width: min(42%, 354px);
  border-radius: 20px 0 0 20px;
  background: rgba(232, 238, 238, 0.55);
}

.lt-classic-home .lt-map-visual {
  width: min(100%, 338px);
  height: auto;
  aspect-ratio: 834 / 875;
  justify-self: center;
  align-self: center;
  overflow: hidden;
  border-radius: 18px;
  background: #e8eeee;
  box-shadow: 0 16px 26px rgba(30, 79, 91, 0.12);
}

.lt-classic-home .lt-map-visual .lt-map-image {
  inset: 0;
  border-radius: 18px;
  object-fit: contain;
  object-position: center;
  filter: none;
  opacity: 1;
}

.lt-classic-home .lt-map-label-bubble {
  min-height: 28px;
  padding: 0.38rem 0.82rem;
  font-size: 12px;
}

.lt-classic-home .lt-map-place-pill {
  grid-template-columns: 54px minmax(0, 1fr);
  min-width: 146px;
  min-height: 54px;
  padding: 5px 13px 5px 5px;
  font-size: 12px;
}

.lt-classic-home .lt-map-place-pill img {
  width: 54px;
  height: 44px;
}

.lt-classic-home .lt-map-copy {
  gap: 16px;
}

.lt-classic-home .lt-map-copy p:first-child {
  color: #2d4c51;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 500;
}

.lt-classic-home .lt-map-cta {
  min-height: 42px;
  padding: 0.72rem 1.08rem;
  font-size: 10px;
}

.lt-classic-home.lt-dark-mode,
.lt-dark-mode.lt-classic-home .lt-page {
  background: #0a1d25;
  color: #eaf5f1;
}

.lt-dark-mode.lt-classic-home .lt-page {
  background:
    radial-gradient(640px 420px at 10% 8%, rgba(95, 184, 158, 0.14), transparent 60%),
    linear-gradient(180deg, #08181f 0%, #102b32 48%, #091b22 100%);
}

.lt-dark-mode.lt-classic-home .lt-main-shell {
  color: #eaf5f1;
}

.lt-dark-mode.lt-classic-home .lt-category-dock-shell,
.lt-dark-mode.lt-classic-home .lt-search-panel {
  background: rgba(18, 46, 52, 0.94);
  border-color: rgba(223, 247, 237, 0.18);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.lt-dark-mode.lt-classic-home .lt-category-item,
.lt-dark-mode.lt-classic-home .lt-video-list li a,
.lt-dark-mode.lt-classic-home .lt-map-card,
.lt-dark-mode.lt-classic-home .lt-journey-controls button {
  background: rgba(255, 255, 255, 0.08);
  color: #eaf5f1;
}

.lt-dark-mode.lt-classic-home .lt-section-head h2,
.lt-dark-mode.lt-classic-home .lt-post-card-compact h3,
.lt-dark-mode.lt-classic-home .lt-map-card h3 {
  color: #f7fffb;
}

.lt-dark-mode.lt-classic-home .lt-post-meta,
.lt-dark-mode.lt-classic-home .lt-map-card p,
.lt-dark-mode.lt-classic-home .lt-category-item small,
.lt-dark-mode.lt-classic-home .lt-map-sovereignty-note {
  color: rgba(234, 245, 241, 0.68);
}

.lt-dark-mode.lt-classic-home .lt-map-panel {
  background:
    radial-gradient(230px 150px at 25% 22%, rgba(223, 247, 237, 0.18), transparent 70%),
    linear-gradient(135deg, #16343d 0%, #173f42 58%, #122d38 100%);
}

.lt-dark-mode.lt-classic-home .lt-map-copy p:first-child,
.lt-dark-mode.lt-classic-home .lt-map-sea-label {
  color: rgba(234, 245, 241, 0.86);
}

@media (min-width: 1180px) {
  .lt-classic-home {
    --lt-shell: min(100% - 140px, 1296px);
    --lt-left-col: 430px;
    --lt-right-col: minmax(0, 1fr);
  }

  .lt-classic-home .lt-video-layout {
    grid-template-columns: minmax(0, 1fr) 250px;
  }

  .lt-classic-home .lt-post-card-featured .lt-post-thumb {
    height: 278px;
  }
}

@media (max-width: 980px) {
  .lt-classic-home {
    --lt-shell: min(100% - 1.5rem, 760px);
  }

  .lt-classic-home .lt-header-inner {
    width: var(--lt-shell);
    grid-template-columns: 132px minmax(0, 1fr) 112px;
  }

  .lt-classic-home .lt-primary-menu {
    gap: 0.9rem;
  }

  .lt-classic-home .lt-primary-menu a {
    font-size: 11px;
  }

  .lt-classic-home .lt-hero-inner {
    width: var(--lt-shell);
  }

  .lt-classic-home .lt-home-grid {
    grid-template-columns: 1fr;
  }

  .lt-classic-home .lt-video-layout {
    grid-template-columns: minmax(0, 1fr) 210px;
  }

  .lt-classic-home .lt-category-dock {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lt-classic-home .lt-category-dock-shell {
    min-height: 0;
  }

  .lt-classic-home .lt-journey-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lt-classic-home .lt-newsletter-inner {
    width: var(--lt-shell);
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 700px) {
  .lt-classic-home {
    --lt-shell: min(100% - 1rem, 560px);
  }

  .lt-classic-home .lt-header-overlay {
    min-height: 100px;
    height: auto;
    background: rgba(8, 24, 36, 0.58);
  }

  .lt-classic-home .lt-header-inner {
    min-height: 100px;
    grid-template-columns: 126px 1fr;
    grid-template-areas: "logo tools" "nav nav";
    row-gap: 0;
    padding: 0.52rem 0;
  }

  .lt-classic-home .lt-logo-wrap { grid-area: logo; }
  .lt-classic-home .lt-primary-nav { grid-area: nav; justify-content: flex-start; overflow-x: auto; }
  .lt-classic-home .lt-header-tools { grid-area: tools; }
  .lt-classic-home .lt-mobile-menu-toggle { display: inline-flex; }

  .js-enabled .lt-classic-home .lt-primary-nav {
    display: none;
  }

  .js-enabled .lt-classic-home .lt-primary-nav.is-open {
    display: flex;
  }

  .lt-classic-home .lt-search-panel {
    top: 104px;
    width: min(100% - 1rem, 520px);
    border-radius: 22px;
  }

  .lt-classic-home .lt-search-panel form {
    grid-template-columns: 1fr auto;
  }

  .lt-classic-home .lt-search-panel .lt-search-close {
    grid-column: 2;
    grid-row: 1;
  }

  .lt-classic-home .lt-primary-menu {
    min-width: max-content;
    justify-content: flex-start;
    gap: 1rem;
    padding-bottom: 0.2rem;
  }

  .lt-classic-home .lt-hero-wrap {
    height: 560px;
    min-height: 560px;
  }

  .lt-classic-home .lt-hero-copy {
    top: 104px;
    width: min(100%, 420px);
  }

  .lt-classic-home .lt-hero-title {
    font-size: clamp(54px, 16vw, 78px);
    padding-bottom: 24px;
  }

  .lt-classic-home .lt-social-rail {
    top: auto;
    right: auto;
    left: 0;
    bottom: 74px;
    flex-direction: row;
  }

  .lt-classic-home .lt-hero-controls {
    bottom: 116px;
  }

  .lt-classic-home .lt-social-label {
    writing-mode: initial;
    transform: none;
  }

  .lt-classic-home .lt-category-dock-wrap {
    margin-top: -42px;
  }

  .lt-classic-home .lt-category-dock {
    display: flex;
    overflow-x: auto;
    padding-bottom: 0.2rem;
  }

  .lt-classic-home .lt-category-item {
    min-width: 128px;
    min-height: 82px;
  }

  .lt-classic-home .lt-video-layout {
    grid-template-columns: 1fr;
  }

  .lt-classic-home .lt-destination-map .lt-section-head h2 {
    font-size: 19px;
  }

  .lt-classic-home .lt-destination-map .lt-map-grid {
    height: auto;
    min-height: 0;
  }

  .lt-classic-home .lt-map-panel {
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 14px;
    overflow: hidden;
  }

  .lt-classic-home .lt-map-panel::before {
    inset: 10px;
  }

  .lt-classic-home .lt-map-visual {
    width: min(100%, 430px);
    height: auto;
    max-height: none;
    aspect-ratio: 834 / 875;
  }

  .lt-classic-home .lt-map-visual img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
    object-position: center center;
  }

  .lt-classic-home .lt-map-copy {
    padding: 0 4px 4px;
    gap: 12px;
  }

  .lt-classic-home .lt-map-copy p:first-child {
    font-size: 15px;
  }

  .lt-classic-home .lt-map-place-pill {
    max-width: min(178px, 72%);
  }

  .lt-classic-home .lt-video-play {
    height: 230px;
    min-height: 230px;
  }

  .lt-classic-home .lt-video-list {
    grid-template-columns: 1fr;
  }

  .lt-classic-home .lt-map-info {
    padding: 0 16px 16px;
  }

  .lt-classic-home .lt-place-card p,
  .lt-classic-home .lt-map-sovereignty-note {
    font-size: 11px;
  }

  .lt-classic-home .lt-post-card-compact {
    grid-template-columns: 106px minmax(0, 1fr);
  }

  .lt-classic-home .lt-post-card-compact .lt-post-thumb {
    width: 106px;
    height: 74px;
  }

  .lt-classic-home .lt-journey-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 0 2px 0.35rem;
    scroll-snap-type: x mandatory;
  }

  .lt-classic-home .lt-journey-card {
    min-width: min(82vw, 320px);
    scroll-snap-align: start;
  }

  .lt-classic-home .lt-newsletter-plane {
    display: none;
  }

  .lt-content-hero-banner {
    min-height: 400px;
    background-position: center top;
  }

  .lt-content-hero-inner {
    width: var(--lt-shell);
    padding: 132px 0 68px;
  }

  .lt-content-hero-inner h1 {
    font-size: clamp(34px, 10.5vw, 46px);
    line-height: 1.06;
  }

  .lt-content-main {
    padding: 38px 0 52px;
  }

  .lt-content-body {
    font-size: 16px;
    line-height: 1.72;
  }

  .lt-content-nav {
    grid-template-columns: 1fr;
  }

  .lt-content-nav a {
    width: 100%;
    justify-content: flex-start;
    border-radius: 18px;
    line-height: 1.35;
  }

  .lt-classic-home .lt-newsletter-copy {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.15rem 0.6rem;
  }

  .lt-classic-home .lt-newsletter-copy h2 {
    order: 1;
  }

  .lt-classic-home .lt-newsletter-script {
    order: 2;
    position: static;
    display: block;
    margin: 0.15rem 0 0.25rem;
    font-size: 26px;
    white-space: normal;
  }

  .lt-classic-home .lt-newsletter-copy p {
    order: 3;
    flex-basis: 100%;
  }

  .lt-classic-home .lt-newsletter-row {
    border-radius: 24px;
    flex-direction: column;
  }

  .lt-classic-home .lt-newsletter-row input,
  .lt-classic-home .lt-newsletter-row button {
    width: 100%;
  }
}
