/* ============================================================
   Region page — country / region / subregion hub.

   Page architecture:
     1. Breadcrumbs bar
     2. Smaller editorial hero (~56vh cap, no oversized type)
     3. Flat quick-facts strip directly under hero
     4. 2-column shell: sticky TOC sidebar + main content
     5. Sectioned long-form: best places, itineraries, stay, eat,
        transport, budget, best time, tips, gems, safety, FAQ,
        subregions
     6. Right rail aside (products / quick facts / related)

   All values are tokenised — never hardcode hex/px/font.
   ============================================================ */

/* ============================================================
   Page-level shell
   ============================================================ */
.otg-region-page {
  background: var(--otg-bg);
  color: var(--otg-text-primary);
}

/* ============================================================
   Breadcrumbs row
   ============================================================ */
/* This element is co-classed with .otg-container--lg, so set only the
   vertical padding here — using padding-top/padding-bottom (NOT the
   `padding` shorthand) preserves the container's fluid horizontal
   gutters. Shared top-of-page rhythm with every other breadcrumb bar. */
.otg-region-breadcrumbs {
  padding-top: var(--otg-page-top);
  padding-bottom: var(--otg-space-3);
}

/* ============================================================
   Hero meta — "Updated MMM YYYY" timestamp inside hero
   ============================================================ */
.otg-last-updated {
  font-size: var(--otg-text-small);
  color: rgba(255, 255, 255, 0.75);
  font-variant-numeric: tabular-nums;
}

/* ============================================================
   Hero — region variant
   Override .otg-hero--region to cap at 56vh max and use the
   display-lg type ramp instead of display-xl.
   ============================================================ */
.otg-hero--region {
  min-height: 48vh;
  display: flex;
  align-items: flex-end;
}

@media (min-width: 1024px) {
  .otg-hero--region {
    min-height: 56vh;          /* hard cap — never larger */
    max-height: 640px;
  }
}

/* Subtler gradient than the default — lifts the lower-left
   text only; the rest of the image stays untouched. */
.otg-hero--region .otg-hero__overlay {
  background: linear-gradient(
    180deg,
    rgba(25, 32, 36, 0) 35%,
    rgba(25, 32, 36, 0.55) 100%
  );
}

.otg-hero--region .otg-hero__body {
  padding-top: var(--otg-space-6);
  padding-bottom: var(--otg-space-6);
}

@media (min-width: 1024px) {
  .otg-hero--region .otg-hero__body {
    padding-top: var(--otg-space-7);
    padding-bottom: var(--otg-space-7);
  }
}

.otg-hero--region .otg-hero__title,
.otg-hero--region .otg-display {
  font-size: var(--otg-text-display-lg);
  line-height: var(--otg-leading-display-lg);
  font-weight: var(--otg-weight-semibold);
  letter-spacing: var(--otg-tracking-display);
  margin: 0;
}

.otg-hero--region .otg-hero__lede {
  max-width: 64ch;
  font-size: var(--otg-text-body-lg);
  line-height: var(--otg-leading-body-lg);
}

.otg-hero--region .otg-hero__meta {
  margin-top: var(--otg-space-3);
}

/* ============================================================
   Quick facts strip — flat horizontal row, directly below hero
   No coloured panel, no card chrome — just hairline divider on
   top and bottom and tidy DL rows.
   ============================================================ */
.otg-fact-strip {
  border-top: 1px solid var(--otg-border);
  border-bottom: 1px solid var(--otg-border);
  background: var(--otg-surface);
  padding: var(--otg-space-4) 0;
}

.otg-fact-strip__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--otg-space-3) var(--otg-space-5);
  margin: 0;
  padding: 0;
}

@media (min-width: 640px) {
  .otg-fact-strip__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .otg-fact-strip__list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--otg-space-3) var(--otg-space-8);
  }
}

.otg-fact-strip__item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 0;
  padding: 0;
}

.otg-fact-strip__item dt {
  font-size: var(--otg-text-micro);
  line-height: var(--otg-leading-micro);
  font-weight: var(--otg-weight-medium);
  text-transform: uppercase;
  letter-spacing: var(--otg-tracking-wide);
  color: var(--otg-text-muted);
}

.otg-fact-strip__item dd {
  margin: 0;
  font-size: var(--otg-text-body);
  line-height: var(--otg-leading-body);
  color: var(--otg-text-primary);
  font-weight: var(--otg-weight-medium);
}

/* ============================================================
   Page shell — two-column with sticky TOC on desktop
   ============================================================ */
.otg-region-shell {
  padding: var(--otg-space-7) 0;
  display: grid;
  gap: var(--otg-space-7);
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .otg-region-shell {
    padding: var(--otg-space-8) 0 var(--otg-space-9) 0;
    grid-template-columns: 220px minmax(0, 1fr) 300px;
    gap: var(--otg-space-7);
  }
}

/* ---------- Mobile TOC dropdown ---------- */
.otg-toc-mobile {
  margin: 0 0 var(--otg-space-5) 0;
}

.otg-toc-mobile summary {
  list-style: none;
  cursor: pointer;
  padding: var(--otg-space-3) var(--otg-space-4);
  border: 1px solid var(--otg-border);
  border-radius: var(--otg-radius);
  background: var(--otg-surface);
  font-family: var(--otg-font-sans);
  font-size: var(--otg-text-body);
  font-weight: var(--otg-weight-medium);
  color: var(--otg-text-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.otg-toc-mobile summary::-webkit-details-marker { display: none; }
.otg-toc-mobile summary::marker { display: none; content: ""; }

.otg-toc-mobile summary::after {
  content: "+";
  font-weight: var(--otg-weight-regular);
  color: var(--otg-text-muted);
}

.otg-toc-mobile[open] summary::after { content: "\2212"; }

.otg-toc-mobile__list {
  list-style: none;
  margin: var(--otg-space-3) 0 0 0;
  padding: var(--otg-space-2) 0;
  border: 1px solid var(--otg-border);
  border-radius: var(--otg-radius);
  background: var(--otg-surface);
}

.otg-toc-mobile__list li { margin: 0; }

.otg-toc-mobile__list a {
  display: block;
  padding: var(--otg-space-2) var(--otg-space-4);
  font-size: var(--otg-text-body);
  color: var(--otg-text-secondary);
  text-decoration: none;
}

.otg-toc-mobile__list a:hover {
  color: var(--otg-text-primary);
  background: var(--otg-surface-sunken);
}

@media (min-width: 1024px) {
  .otg-toc-mobile { display: none; }
}

/* ---------- Sticky TOC (desktop only) ---------- */
.otg-toc {
  display: none;
}

@media (min-width: 1024px) {
  .otg-toc {
    display: block;
    position: sticky;
    top: calc(var(--otg-space-8) + var(--otg-space-3));
    align-self: start;
    max-height: calc(100vh - var(--otg-space-8));
    overflow-y: auto;
    padding-right: var(--otg-space-3);
  }
}

.otg-toc__heading {
  font-size: var(--otg-text-micro);
  line-height: var(--otg-leading-micro);
  font-weight: var(--otg-weight-medium);
  text-transform: uppercase;
  letter-spacing: var(--otg-tracking-wide);
  color: var(--otg-text-muted);
  margin: 0 0 var(--otg-space-3) 0;
}

.otg-toc__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-left: 1px solid var(--otg-border);
}

.otg-toc__list li { margin: 0; }

.otg-toc__link {
  display: block;
  padding: var(--otg-space-2) var(--otg-space-3);
  margin-left: -1px;
  border-left: 2px solid transparent;
  font-size: var(--otg-text-small);
  line-height: var(--otg-leading-small);
  color: var(--otg-text-secondary);
  text-decoration: none;
  transition: color var(--otg-duration-2) var(--otg-ease),
              border-color var(--otg-duration-2) var(--otg-ease);
}

.otg-toc__link:hover {
  color: var(--otg-text-primary);
  border-left-color: var(--otg-border-strong);
}

.otg-toc__link--active {
  color: var(--otg-text-primary);
  border-left-color: var(--otg-accent);
  font-weight: var(--otg-weight-medium);
}

/* ============================================================
   Main content column
   ============================================================ */
.otg-main-content {
  display: block;
  min-width: 0;
}

/* Section rhythm inside main column — tighter than .otg-section
   because the column already has its own padding from the shell */
.otg-region-section {
  padding: 0 0 var(--otg-space-8) 0;
  scroll-margin-top: var(--otg-space-8);
}

.otg-region-section:last-child {
  padding-bottom: 0;
}

.otg-region-section + .otg-region-section {
  border-top: 1px solid var(--otg-border);
  padding-top: var(--otg-space-7);
}

.otg-region-section h2 {
  font-size: var(--otg-text-display-md);
  line-height: var(--otg-leading-display-md);
  font-weight: var(--otg-weight-semibold);
  letter-spacing: var(--otg-tracking-display);
  color: var(--otg-text-primary);
  margin: 0 0 var(--otg-space-4) 0;
}

.otg-region-section h3 {
  font-size: var(--otg-text-h3);
  line-height: var(--otg-leading-h3);
  font-weight: var(--otg-weight-semibold);
  color: var(--otg-text-primary);
  margin: var(--otg-space-6) 0 var(--otg-space-3) 0;
}

.otg-region-section h4 {
  font-size: var(--otg-text-h4);
  line-height: var(--otg-leading-h4);
  font-weight: var(--otg-weight-semibold);
  color: var(--otg-text-primary);
  margin: var(--otg-space-5) 0 var(--otg-space-2) 0;
}

.otg-region-section > p {
  font-size: var(--otg-text-body);
  line-height: var(--otg-leading-body);
  color: var(--otg-text-secondary);
  margin: 0 0 var(--otg-space-4) 0;
  max-width: 68ch;
}

/* Section opener lede — slightly larger first paragraph */
.otg-region-section__lede {
  font-size: var(--otg-text-body-lg);
  line-height: var(--otg-leading-body-lg);
  color: var(--otg-text-secondary);
  margin: 0 0 var(--otg-space-5) 0;
  max-width: 60ch;
}

/* ============================================================
   Topic chip grid (Explore by Topic)
   ============================================================ */
.otg-topic-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--otg-space-2);
}

@media (min-width: 640px) {
  .otg-topic-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .otg-topic-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.otg-topic-grid li {
  margin: 0;
  display: flex;
}

.otg-topic-chip {
  width: 100%;
  justify-content: flex-start;
  padding: var(--otg-space-3) var(--otg-space-4);
  font-size: var(--otg-text-small);
  font-weight: var(--otg-weight-medium);
  background: var(--otg-surface);
  border: 1px solid var(--otg-border);
  color: var(--otg-text-primary);
}

.otg-topic-chip:hover {
  background: var(--otg-surface);
  border-color: var(--otg-border-strong);
  color: var(--otg-accent);
}

.otg-topic-chip__name {
  display: inline-block;
  white-space: normal;
  text-align: left;
  line-height: var(--otg-leading-body);
}

/* ============================================================
   Best places — 3-up card grid (cards have media)
   ============================================================ */
.otg-places-grid {
  display: grid;
  gap: var(--otg-space-5);
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .otg-places-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .otg-places-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.otg-place-card .otg-card__body {
  padding: var(--otg-space-4);
  gap: var(--otg-space-1);
}

.otg-place-card .otg-card__title {
  font-size: var(--otg-text-h4);
  line-height: var(--otg-leading-h4);
}

.otg-place-card .otg-card__desc {
  font-size: var(--otg-text-small);
  line-height: var(--otg-leading-small);
  color: var(--otg-text-secondary);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============================================================
   Itineraries — flat list/card per duration
   ============================================================ */
.otg-itinerary-cards {
  display: grid;
  gap: var(--otg-space-4);
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .otg-itinerary-cards {
    grid-template-columns: 1fr;
  }
}

.otg-itinerary-card {
  padding: var(--otg-space-5);
  background: var(--otg-surface);
  border: 1px solid var(--otg-border);
  border-radius: var(--otg-radius);
  transition: border-color var(--otg-duration-3) var(--otg-ease),
              box-shadow var(--otg-duration-3) var(--otg-ease);
}

.otg-itinerary-card:hover {
  border-color: var(--otg-border-strong);
  box-shadow: var(--otg-shadow-hover);
}

.otg-itinerary-card .otg-card__title {
  font-size: var(--otg-text-h3);
  line-height: var(--otg-leading-h3);
  margin: 0 0 var(--otg-space-3) 0;
}

.otg-day-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--otg-space-2);
}

.otg-day-list li {
  padding: var(--otg-space-2) 0;
  border-top: 1px solid var(--otg-border);
  font-size: var(--otg-text-body);
  line-height: var(--otg-leading-body);
  color: var(--otg-text-secondary);
}

.otg-day-list li:first-child { border-top: 0; padding-top: 0; }

.otg-day-list li strong {
  color: var(--otg-text-primary);
  font-weight: var(--otg-weight-semibold);
  display: inline-block;
  min-width: 60px;
  margin-right: var(--otg-space-2);
}

/* ============================================================
   Where to stay — 3-tier (Budget / Mid / Luxury) headings,
   then card grid of hotels.
   ============================================================ */
.otg-tier-block {
  margin: 0 0 var(--otg-space-5) 0;
}

.otg-tier-block__heading {
  font-size: var(--otg-text-h4);
  line-height: var(--otg-leading-h4);
  font-weight: var(--otg-weight-semibold);
  margin: 0 0 var(--otg-space-2) 0;
  color: var(--otg-text-primary);
}

.otg-tier-block__price {
  display: inline-block;
  margin-left: var(--otg-space-2);
  font-size: var(--otg-text-small);
  font-weight: var(--otg-weight-regular);
  color: var(--otg-text-muted);
}

.otg-tier-block__notes {
  font-size: var(--otg-text-body);
  line-height: var(--otg-leading-body);
  color: var(--otg-text-secondary);
  margin: 0;
  max-width: 68ch;
}

.otg-hotels-grid,
.otg-restaurants-grid,
.otg-gems-grid,
.otg-transport-options,
.otg-subregion-grid {
  display: grid;
  gap: var(--otg-space-4);
  grid-template-columns: 1fr;
  margin-top: var(--otg-space-5);
}

@media (min-width: 640px) {
  .otg-hotels-grid,
  .otg-restaurants-grid,
  .otg-gems-grid,
  .otg-transport-options,
  .otg-subregion-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .otg-hotels-grid,
  .otg-restaurants-grid,
  .otg-gems-grid,
  .otg-subregion-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .otg-transport-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.otg-hotel-card,
.otg-restaurant-card,
.otg-gem-card,
.otg-transport-card {
  display: flex;
  flex-direction: column;
}

.otg-hotel-card .otg-card__body,
.otg-restaurant-card .otg-card__body,
.otg-gem-card .otg-card__body,
.otg-transport-card .otg-card__body {
  padding: var(--otg-space-5);
  gap: var(--otg-space-2);
}

.otg-hotel-card .otg-card__title,
.otg-restaurant-card .otg-card__title,
.otg-gem-card .otg-card__title,
.otg-transport-card .otg-card__title {
  font-size: var(--otg-text-h4);
  line-height: var(--otg-leading-h4);
  font-weight: var(--otg-weight-semibold);
  color: var(--otg-text-primary);
  margin: 0;
}

.otg-hotel-card__meta,
.otg-restaurant-card__meta,
.otg-gem-card__location,
.otg-transport-card__cost {
  font-size: var(--otg-text-small);
  line-height: var(--otg-leading-small);
  color: var(--otg-text-muted);
  margin: 0;
}

.otg-hotel-card .otg-card__desc,
.otg-restaurant-card .otg-card__desc,
.otg-gem-card .otg-card__desc,
.otg-transport-card .otg-card__desc {
  font-size: var(--otg-text-body);
  line-height: var(--otg-leading-body);
  color: var(--otg-text-secondary);
  margin: 0;
}

.otg-hotel-booking-cta {
  margin-top: auto;
  padding-top: var(--otg-space-3);
  align-self: flex-start;
  font-size: 13px;
  padding: 10px 16px;
}

/* ============================================================
   Sub-regions — flat link cards (country hub only)
   ============================================================ */
.otg-subregion-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.otg-subregion-card .otg-card__body {
  padding: var(--otg-space-5);
  gap: var(--otg-space-2);
}

.otg-subregion-card .otg-card__title {
  font-size: var(--otg-text-h4);
  line-height: var(--otg-leading-h4);
  font-weight: var(--otg-weight-semibold);
  color: var(--otg-text-primary);
}

.otg-subregion-card:hover .otg-card__title {
  color: var(--otg-accent);
}

.otg-subregion-card .otg-card__desc {
  font-size: var(--otg-text-small);
  line-height: var(--otg-leading-small);
  color: var(--otg-text-secondary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============================================================
   Budget table — already styled by .otg-table; just constrain
   ============================================================ */
.otg-budget-table {
  margin: var(--otg-space-4) 0 0 0;
}

/* ============================================================
   Best-time callout (key/value list inside otg-callout)
   ============================================================ */
.otg-best-time-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--otg-space-3);
  margin: 0;
  padding: 0;
}

@media (min-width: 640px) {
  .otg-best-time-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.otg-best-time-list__item {
  margin: 0;
  padding: 0;
}

.otg-best-time-list__item dt {
  font-size: var(--otg-text-micro);
  line-height: var(--otg-leading-micro);
  font-weight: var(--otg-weight-medium);
  text-transform: uppercase;
  letter-spacing: var(--otg-tracking-wide);
  color: var(--otg-text-muted);
  margin: 0 0 2px 0;
}

.otg-best-time-list__item dd {
  margin: 0;
  font-size: var(--otg-text-body);
  line-height: var(--otg-leading-body);
  color: var(--otg-text-primary);
  font-weight: var(--otg-weight-medium);
}

.otg-best-time-notes {
  margin: var(--otg-space-4) 0 0 0;
  font-size: var(--otg-text-body);
  line-height: var(--otg-leading-body);
  color: var(--otg-text-secondary);
  max-width: 68ch;
}

/* ============================================================
   Travel tips — bulleted list (revert default disc)
   ============================================================ */
.otg-tips-list {
  list-style: disc;
  padding-left: var(--otg-space-5);
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--otg-space-2);
  color: var(--otg-text-secondary);
  max-width: 68ch;
}

.otg-tips-list li {
  font-size: var(--otg-text-body);
  line-height: var(--otg-leading-body);
  padding-left: var(--otg-space-1);
}

.otg-tips-list li::marker {
  color: var(--otg-text-muted);
}

/* ============================================================
   Safety — list of severity-graded callouts (no coloured chips)
   Default severity uses default callout border. Medium+ uses
   warning colour border-left only.
   ============================================================ */
.otg-safety-cards {
  display: flex;
  flex-direction: column;
  gap: var(--otg-space-3);
  margin-top: var(--otg-space-4);
}

.otg-safety-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--otg-space-3) var(--otg-space-4);
  padding: var(--otg-space-4) var(--otg-space-5);
  background: var(--otg-surface-sunken);
  border: 0;
  border-left: 3px solid var(--otg-accent);
  border-radius: 0 var(--otg-radius) var(--otg-radius) 0;
}

.otg-safety-card .otg-severity-badge {
  align-self: start;
  font-size: 11px;
  letter-spacing: var(--otg-tracking-wide);
  text-transform: uppercase;
}

.otg-safety-card__text {
  margin: 0;
  font-size: var(--otg-text-body);
  line-height: var(--otg-leading-body);
  color: var(--otg-text-primary);
}

.otg-severity-low {
  border-left-color: var(--otg-border-strong);
}

.otg-severity-medium {
  border-left-color: var(--otg-accent);
}

.otg-severity-high {
  border-left-color: var(--otg-warning);
}

.otg-callout--advisory {
  border-left-color: var(--otg-warning);
}

/* ============================================================
   FAQ — use the component's native .otg-faq pattern.
   The template wraps everything in a parent .otg-faq element.
   ============================================================ */

/* ============================================================
   Right rail sidebar
   ============================================================ */
.otg-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--otg-space-5);
}

@media (min-width: 1024px) {
  .otg-sidebar {
    position: sticky;
    top: calc(var(--otg-space-8) + var(--otg-space-3));
    align-self: start;
    max-height: calc(100vh - var(--otg-space-8));
    overflow-y: auto;
  }
}

.otg-sidebar-block,
.otg-products-box,
.otg-cta-box {
  padding: var(--otg-space-5);
  background: var(--otg-surface);
  border: 1px solid var(--otg-border);
  border-radius: var(--otg-radius);
}

.otg-cta-box p {
  font-size: var(--otg-text-body);
  line-height: var(--otg-leading-body);
  color: var(--otg-text-secondary);
  margin: 0 0 var(--otg-space-4) 0;
}

.otg-sidebar__heading {
  font-size: var(--otg-text-micro);
  line-height: var(--otg-leading-micro);
  font-weight: var(--otg-weight-medium);
  text-transform: uppercase;
  letter-spacing: var(--otg-tracking-wide);
  color: var(--otg-text-muted);
  margin: 0 0 var(--otg-space-3) 0;
}

/* ---------- Quick-facts inside sidebar block (compact dl) ---------- */
.otg-sidebar-block .otg-quick-facts,
.otg-quick-facts {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.otg-sidebar-block .otg-quick-facts__item,
.otg-quick-facts__item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: var(--otg-space-3);
  padding: var(--otg-space-2) 0;
  border-bottom: 1px solid var(--otg-border);
  margin: 0;
}

.otg-sidebar-block .otg-quick-facts__item:last-child,
.otg-quick-facts__item:last-child {
  border-bottom: 0;
}

.otg-quick-facts__item dt {
  font-size: var(--otg-text-small);
  font-weight: var(--otg-weight-medium);
  color: var(--otg-text-muted);
  margin: 0;
}

.otg-quick-facts__item dd {
  margin: 0;
  font-size: var(--otg-text-small);
  line-height: var(--otg-leading-small);
  color: var(--otg-text-primary);
}

/* In the intro section, fall back to a horizontal flat row */
.otg-region-section .otg-quick-facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: var(--otg-space-5);
  border-top: 1px solid var(--otg-border);
  border-bottom: 1px solid var(--otg-border);
}

@media (min-width: 640px) {
  .otg-region-section .otg-quick-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .otg-region-section .otg-quick-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.otg-region-section .otg-quick-facts__item {
  border-bottom: 0;
  padding: var(--otg-space-3) var(--otg-space-4) var(--otg-space-3) 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* ---------- Sidebar product list ---------- */
.otg-product-list {
  display: flex;
  flex-direction: column;
  gap: var(--otg-space-3);
  margin-bottom: var(--otg-space-4);
}

.otg-product-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--otg-space-3);
  padding: var(--otg-space-3) 0;
  border-bottom: 1px solid var(--otg-border);
  text-decoration: none;
  color: var(--otg-text-primary);
  transition: color var(--otg-duration-2) var(--otg-ease);
}

.otg-product-card:last-child { border-bottom: 0; }

.otg-product-card:hover {
  color: var(--otg-accent);
}

.otg-product-card__name {
  font-size: var(--otg-text-small);
  font-weight: var(--otg-weight-medium);
  line-height: var(--otg-leading-small);
}

.otg-product-card__price {
  display: inline-flex;
  align-items: baseline;
  gap: var(--otg-space-2);
  white-space: nowrap;
}

.otg-price-sale {
  font-size: var(--otg-text-small);
  font-weight: var(--otg-weight-semibold);
  color: var(--otg-text-primary);
}

.otg-price-original {
  font-size: var(--otg-text-micro);
  color: var(--otg-text-muted);
  text-decoration: line-through;
}

.otg-cta-button {
  width: 100%;
  justify-content: center;
}

/* ---------- Sidebar related-destinations list ---------- */
.otg-sidebar-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.otg-sidebar-list li {
  border-bottom: 1px solid var(--otg-border);
}

.otg-sidebar-list li:last-child { border-bottom: 0; }

.otg-sidebar-list a {
  display: block;
  padding: var(--otg-space-3) 0;
  font-size: var(--otg-text-small);
  line-height: var(--otg-leading-small);
  color: var(--otg-text-secondary);
  text-decoration: none;
  transition: color var(--otg-duration-2) var(--otg-ease);
}

.otg-sidebar-list a:hover {
  color: var(--otg-accent);
}

/* ============================================================
   Superwide ladder (v2 §7.2)
   Additive media queries — no rule below 1440px is touched.
   Page-layout sizes (880, 920, 240, 260, 320, 340) are deliberate
   per the spec; everything else uses tokens.
   ============================================================ */

/* ---------- Tier 2: 1440px+ (modest widescreen) ---------- */
@media (min-width: 1440px) {
  .otg-region-shell {
    grid-template-columns: 240px minmax(0, 880px) 320px;
    justify-content: center;
  }

  .otg-fact-strip__list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    flex-wrap: unset;
  }

  .otg-topic-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .otg-places-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .otg-hotels-grid,
  .otg-restaurants-grid,
  .otg-gems-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .otg-subregion-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

/* ---------- Tier 4: 1920px+ (full HD) ---------- */
@media (min-width: 1920px) {
  .otg-region-shell {
    grid-template-columns: 260px minmax(0, 920px) 340px;
  }

  .otg-main-content {
    max-width: 920px;
  }

  .otg-fact-strip__list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .otg-topic-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .otg-places-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .otg-hotels-grid,
  .otg-restaurants-grid,
  .otg-gems-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .otg-subregion-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* ---------- Tier 5: 2560px+ (superwide / 5K) ---------- */
@media (min-width: 2560px) {
  .otg-topic-grid {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
}
