 :root {
  --paper: #f7f4ee;
  --ink: #141a24;
  --muted: #667085;
  --line: #d9d0c3;
  --blue: #226db2;
  --gold: #b9812d;
  --panel: rgba(255,255,255,0.82);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}
a { color: inherit; text-decoration: none; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 3vw, 42px);
  min-height: 132px;
  padding: 30px clamp(28px, 5vw, 72px);
  border-bottom: 1px solid rgba(20, 26, 36, 0.09);
  background: rgba(247, 244, 238, 0.9);
  backdrop-filter: blur(16px);
}
.brand { display: flex; align-items: center; gap: 20px; min-width: 0; }
.brand-avatar {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  flex: 0 0 auto;
  box-shadow: 0 8px 26px rgba(20, 26, 36, 0.18);
}
.brand-text { display: flex; align-items: baseline; gap: 10px; min-width: 0; }
.brand-title { font-size: clamp(28px, 2vw, 34px); font-weight: 830; white-space: nowrap; }
nav { display: flex; gap: 12px; color: #344054; font-size: clamp(15px, 1.05vw, 17px); }
nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
      padding: 0 20px;
  border: 1px solid rgba(20, 26, 36, 0.12);
  border-radius: 12px;
  background: rgba(255,255,255,0.72);
  font-weight: 780;
  white-space: nowrap;
  box-shadow: 0 1px 0 rgba(20, 26, 36, 0.04), 0 8px 20px rgba(20, 26, 36, 0.06);
}
nav a:hover {
  border-color: rgba(34, 109, 178, 0.32);
  background: rgba(34, 109, 178, 0.09);
  color: var(--blue);
}
nav a[aria-current="page"] {
  border-color: rgba(34, 109, 178, 0.26);
  background: rgba(34, 109, 178, 0.14);
  color: var(--blue);
}
.stories-page { padding: clamp(24px, 4vw, 56px); }
.stories-hero {
  max-width: 760px;
  margin-bottom: 26px;
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}
.stories-hero h1, .article h1 {
  margin: 0;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.03;
  font-weight: 830;
}
.stories-hero p {
  color: #344054;
  font-size: 17px;
  line-height: 1.7;
}
.stories-hero a {
  color: var(--blue);
  font-weight: 720;
}
.stories-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0 12px;
}
.stories-stats div {
  padding: 12px 14px;
  border: 1px solid rgba(20, 26, 36, 0.1);
  border-radius: 8px;
  background: rgba(255,255,255,0.68);
}
.stories-stats strong {
  display: block;
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  font-weight: 830;
}
.stories-stats span {
  display: block;
  margin-top: 5px;
  color: #475467;
  font-size: 13px;
  font-weight: 720;
}
.country-map-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
  margin: 0 0 32px;
  padding: 18px;
  border: 1px solid rgba(20, 26, 36, 0.1);
  border-radius: 8px;
  background: rgba(255,255,255,0.58);
}
.country-map-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.country-map-copy h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.1;
}
.country-map-copy p:not(.eyebrow) {
  color: #344054;
  line-height: 1.65;
}
.country-map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: #475467;
  font-size: 13px;
  font-weight: 680;
}
.country-map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.country-map-legend i {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  display: inline-block;
}
.country-map-legend .has-story,
.country-map-legend .visited-only { background: #4c83b6; }
.country-map {
  min-height: 390px;
  border-radius: 8px;
  overflow: hidden;
  background: #dcecf0;
  opacity: 0;
  transition: opacity 180ms ease;
}
.country-map.is-ready {
  opacity: 1;
}
.country-feature-map {
  margin: 0 auto 28px;
  max-width: 960px;
  text-align: center;
}
.country-feature-map img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: clamp(260px, 48vh, 520px);
  margin: 0 auto;
  border-radius: 8px;
  border: 1px solid rgba(20, 26, 36, 0.1);
  background: #a6d3dd;
}
.country-photo-wall {
  margin-top: 34px;
}
.country-photo-group {
  margin-top: 34px;
}
.country-photo-group .photo-wall {
  margin-top: 14px;
}
.country-map svg {
  width: 100%;
  height: 100%;
  min-height: 390px;
  display: block;
}
.map-country {
  fill: #f0eadf;
  stroke: rgba(20,26,36,0.24);
  stroke-width: 0.55;
}
.map-country.visited {
  cursor: pointer;
  stroke: rgba(20,26,36,0.38);
}
.map-country.has-story,
.map-country.visited-only { fill: #4c83b6; }
.map-country.visited:hover,
.map-country.visited:focus {
  fill: #d9a441;
  outline: none;
}
.country-label {
  pointer-events: none;
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0;
  fill: #1d2939;
  stroke: rgba(255,255,255,0.88);
  stroke-width: 3px;
  paint-order: stroke;
}
.country-label.has-story {
  fill: #111827;
}
.stories-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  min-height: calc(100vh - 132px);
}
.country-detail-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
  min-height: calc(100vh - 132px);
}
.country-detail-map-pane {
  position: sticky;
  top: 132px;
  height: calc(100vh - 132px);
  min-height: 720px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 0;
  border-right: 1px solid rgba(20, 26, 36, 0.1);
  background: #e9eef2;
}
.country-detail-map-pane .country-feature-map {
  width: 100%;
  max-width: 1120px;
  margin: 0;
}
.country-detail-map-pane .country-feature-map img {
  width: 100%;
  max-height: calc(100vh - 130px);
  object-fit: contain;
}
.country-detail-map {
  position: absolute;
  inset: 0;
  background: #e9eef2;
  opacity: 0;
  transition: opacity 180ms ease;
}
.country-detail-map.is-ready {
  opacity: 1;
}
.country-detail-map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.country-detail-map .maplibregl-popup-content {
  border-radius: 8px;
  padding: 8px 10px;
  color: #17212b;
  font: 700 13px/1.3 ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.country-city-marker {
  position: relative;
  width: 22px;
  height: 22px;
  border: 3px solid #fff;
  border-radius: 999px;
  background: #226db2;
  box-shadow: 0 6px 18px rgba(20, 26, 36, 0.22);
  cursor: pointer;
}
.country-city-marker::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: inherit;
  background: #d9a441;
}
.country-map-placeholder {
  width: min(520px, 100%);
  padding: 30px;
  border: 1px solid rgba(20, 26, 36, 0.1);
  border-radius: 8px;
  background: rgba(255,255,255,0.72);
}
.country-map-placeholder h2 {
  margin: 0;
  font-size: clamp(40px, 7vw, 88px);
  line-height: 0.98;
}
.country-detail-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: clamp(22px, 3vw, 34px);
  background: linear-gradient(180deg, rgba(255,255,255,0.84), rgba(247,244,238,0.98));
}
.country-detail-side .stories-hero {
  max-width: none;
  margin: 0;
}
.country-detail-side .stories-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
}
.country-detail-side .story-grid {
  grid-template-columns: 1fr;
}
.country-detail-side .story-card {
  min-height: 0;
  grid-template-rows: 150px 1fr;
}
.map-pane {
  position: sticky;
  top: 132px;
  height: calc(100vh - 132px);
  min-height: 720px;
  overflow: hidden;
  border-right: 1px solid rgba(20, 26, 36, 0.1);
  background: #e9eef2;
}
.stories-shell .country-map {
  position: absolute;
  inset: 0;
  min-height: 720px;
  border-radius: 0;
  background: #e9eef2;
}
.maplibregl-ctrl-attrib {
  color: #667085;
  font-size: 10px;
}
.maplibregl-ctrl-group {
  border-radius: 8px;
  box-shadow: 0 4px 18px rgba(16, 24, 40, 0.16);
}
.stories-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: clamp(22px, 3vw, 34px);
  background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(247,244,238,0.98));
}
.stories-side .stories-hero {
  max-width: none;
  margin: 0;
}
.stories-side .stories-hero h1 {
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.08;
}
.stories-side .stories-hero p {
  margin-bottom: 12px;
  font-size: 15px;
}
.stories-side .country-nav {
  margin-bottom: 4px;
}
.stories-side .story-grid {
  grid-template-columns: 1fr;
}
.stories-side .story-card {
  min-height: 0;
  grid-template-rows: 150px 1fr;
}
.country-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 30px;
}
.country-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(20, 26, 36, 0.1);
  border-radius: 999px;
  background: rgba(255,255,255,0.58);
  color: #243244;
  font-size: 13px;
  font-weight: 680;
}
.country-nav b {
  min-width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(34, 109, 178, 0.12);
  color: var(--blue);
  font-size: 11px;
}
.country-section {
  padding: 28px 0 34px;
  border-top: 1px solid rgba(20, 26, 36, 0.1);
}
.country-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 14px;
}
.country-header h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
}
.country-header span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 680;
  white-space: nowrap;
}
.country-empty {
  min-height: 132px;
  display: grid;
  place-items: center;
  padding: 24px;
  border: 1px dashed rgba(20, 26, 36, 0.2);
  border-radius: 8px;
  background: rgba(255,255,255,0.46);
  color: #667085;
  text-align: center;
  line-height: 1.6;
}
.country-empty-page {
  min-height: 240px;
}
.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 14px;
}
.story-card {
  min-height: 360px;
  display: grid;
  grid-template-rows: 170px 1fr;
  border: 1px solid rgba(20, 26, 36, 0.1);
  border-radius: 8px;
  overflow: hidden;
  background: var(--panel);
}
.cover { background: #e3dccd; overflow: hidden; }
.cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.story-card-body { padding: 16px; }
.story-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.story-date, .flight-link time {
  color: #475467;
  font-size: 12px;
  font-weight: 760;
}
.airport-tags, .flight-link {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.airport-tags span, .flight-link span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(34, 109, 178, 0.09);
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}
.story-card h2 {
  margin: 12px 0 8px;
  font-size: 20px;
  line-height: 1.25;
}
.story-card p {
  margin: 0;
  color: #475467;
  font-size: 14px;
  line-height: 1.65;
}
.article-shell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(22px, 5vw, 64px) clamp(16px, 4vw, 42px);
}
.article {
  width: min(1180px, 100%);
}
.article > h1,
.article > .flight-link,
.article > p,
.article > ul,
.article > h2,
.article > h3,
.article > hr {
  width: min(840px, 100%);
  margin-left: auto;
  margin-right: auto;
}
.flight-link {
  margin: 18px auto 28px;
  padding: 12px 0;
  border-top: 1px solid rgba(20,26,36,0.1);
  border-bottom: 1px solid rgba(20,26,36,0.1);
}
.flight-link b {
  margin-right: 6px;
  color: #475467;
  font-size: 12px;
  text-transform: uppercase;
}
.article p, .article li {
  color: #283342;
  font-size: 18px;
  line-height: 1.92;
}
.article h2 {
  margin-top: 34px;
  font-size: 26px;
  line-height: 1.25;
}
.article h3 { margin-top: 28px; font-size: 21px; }
.article figure {
  width: min(920px, 100%);
  margin: 34px auto;
}
.article img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.article figure.route-infographic {
  position: relative;
  width: 100%;
  max-width: 1080px;
  margin: 22px auto 42px;
  overflow: hidden;
}
.route-infographic img {
  border: 1px solid rgba(20,26,36,0.1);
  box-shadow: 0 18px 45px rgba(20,26,36,0.12);
  background: #eef6f7;
}
.article figure.route-infographic.comic-route {
  max-width: 980px;
}
.route-infographic.comic-route img {
  background: #f4efe5;
  box-shadow: 0 24px 70px rgba(20,26,36,0.16);
}
.comic-route-label {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 2;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  min-height: 30px;
  padding: 5px 12px;
  border: 1px solid rgba(20,26,36,0.2);
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 8px 20px rgba(20,26,36,0.14);
  color: #17212b;
  font-size: clamp(12px, 1.8vw, 18px);
  font-weight: 820;
  line-height: 1.1;
  white-space: nowrap;
}
.route-infographic figcaption {
  display: none;
}
.photo-grid {
  width: min(1120px, 100%);
  margin: 34px auto;
  display: grid;
  gap: 12px;
}
.photo-grid.photos-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.photo-grid.photos-many { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.photo-grid figure {
  width: 100%;
  aspect-ratio: 4 / 5;
  margin: 0;
}
.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-grid figcaption {
  display: none;
}
.article figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}
.article hr {
  border: 0;
  border-top: 1px solid rgba(20,26,36,0.1);
  margin: 30px 0;
}
.photo-story {
  width: 100%;
}
.photo-story-hero {
  position: relative;
  width: min(1280px, 100%);
  min-height: clamp(460px, 68vh, 780px);
  margin: 0 auto 12px;
  overflow: hidden;
  border-radius: 8px;
  background: #1b2024;
}
.photo-story-hero img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  border-radius: 0;
  filter: saturate(0.96) contrast(1.03);
}
.photo-story-hero::after {
  content: none;
}
.photo-story-copy {
  width: min(1280px, 100%);
  margin: 20px auto 28px;
  display: grid;
  grid-template-columns: minmax(170px, 0.8fr) minmax(0, 2.2fr);
  gap: clamp(22px, 5vw, 70px);
  align-items: start;
  padding: clamp(18px, 3vw, 34px) 0 clamp(14px, 2vw, 22px);
  border-top: 1px solid rgba(20, 26, 36, 0.12);
  border-bottom: 1px solid rgba(20, 26, 36, 0.08);
}
.photo-story-meta {
  display: grid;
  gap: 8px;
  color: #6b7280;
  font-size: 12px;
  font-weight: 760;
  line-height: 1.45;
}
.photo-story-meta span:first-child {
  color: #141a24;
  font-size: 14px;
}
.photo-story-copy .photo-story-kicker {
  margin: 0 0 10px;
  color: #6b7280;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0;
}
.photo-story-copy h1 {
  max-width: 760px;
  margin: 0 0 12px;
  color: #141a24;
  font-size: clamp(30px, 4.4vw, 56px);
  line-height: 1.02;
}
.photo-story-copy p:last-child {
  max-width: 820px;
  margin: 0;
  color: #4b5563;
  font-size: clamp(16px, 1.55vw, 19px);
  line-height: 1.78;
}
.related-cities {
  width: min(1280px, 100%);
  margin: 4px auto 16px;
  padding: 0 0 12px;
  border-bottom: 1px solid rgba(20, 26, 36, 0.08);
}
.related-cities-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3px 12px;
  align-items: end;
  margin-bottom: 8px;
}
.related-cities-head .photo-story-kicker {
  grid-column: 1 / -1;
  margin: 0;
  color: #6b7280;
  font-size: 11px;
  font-weight: 820;
}
.related-cities-head h2 {
  margin: 0;
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.05;
}
.related-cities-head a {
  color: var(--blue);
  font-size: 12px;
  font-weight: 780;
}
.related-city-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 6px;
}
.related-city-card {
  display: grid;
  gap: 5px;
  padding: 5px;
  border: 1px solid rgba(20,26,36,0.1);
  border-radius: 8px;
  background: rgba(255,255,255,0.64);
}
.related-city-cover {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 6px;
  background: #d8d2c7;
}
.related-city-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}
.related-city-card:hover img {
  transform: scale(1.03);
}
.related-city-title {
  padding: 0 2px 2px;
  font-size: 12px;
  font-weight: 780;
}
.photo-wall {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 10px;
}
.photo-wall-item {
  position: relative;
  min-height: 260px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 8px;
  background: #d8d2c7;
}
.photo-wall-item.wide {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}
.photo-wall-item.tall {
  grid-row: span 2;
  aspect-ratio: auto;
}
.photo-wall-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform 260ms ease, filter 260ms ease;
}
.photo-wall-item:hover img {
  transform: scale(1.025);
  filter: contrast(1.04) saturate(1.04);
}
.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(14px, 4vw, 42px);
}
.photo-lightbox.is-open {
  display: flex;
}
.photo-lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(8,13,18,0.88);
  backdrop-filter: blur(14px);
  cursor: zoom-out;
}
.photo-lightbox figure {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  max-height: 90vh;
  margin: 0;
}
.photo-lightbox img {
  width: 100%;
  max-height: 84vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.44);
}
.photo-lightbox-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 10px;
  color: rgba(255,255,255,0.82);
  font-size: 13px;
  font-weight: 700;
}
.photo-lightbox-close {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  color: #111827;
  border: 0;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}
.photo-lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 48px;
  height: 64px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  color: #111827;
  font: inherit;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 16px 44px rgba(0,0,0,0.24);
}
.photo-lightbox-prev { left: clamp(10px, 3vw, 34px); }
.photo-lightbox-next { right: clamp(10px, 3vw, 34px); }
.photo-lightbox-nav:hover,
.photo-lightbox-close:hover {
  background: #fff;
}
.comments-box {
  width: min(1280px, 100%);
  margin: 22px auto 0;
  display: flex;
  justify-content: center;
}
.photo-story-meta .comments-box {
  width: auto;
  margin: 6px 0 0;
  justify-content: flex-start;
}
.comments-open {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(20,26,36,0.14);
  border-radius: 999px;
  background: rgba(255,255,255,0.74);
  color: #141a24;
  font: inherit;
  font-size: 13px;
  font-weight: 780;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(20,26,36,0.08);
}
.comments-open:hover {
  border-color: rgba(34,109,178,0.36);
  color: var(--blue);
}
.comments-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(14px, 4vw, 36px);
}
.comments-modal.is-open {
  display: flex;
}
.comments-modal-open {
  overflow: hidden;
}
.comments-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(8,13,18,0.54);
  backdrop-filter: blur(10px);
}
.comments-dialog {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: min(680px, 88vh);
  overflow: auto;
  padding: 18px;
  border: 1px solid rgba(20,26,36,0.12);
  border-radius: 8px;
  background: #f7f4ee;
  box-shadow: 0 28px 80px rgba(20,26,36,0.32);
}
.comments-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(20,26,36,0.12);
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  color: #141a24;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.comments-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin: 0 42px 12px 0;
}
.comments-head .photo-story-kicker {
  margin: 0;
  color: #6b7280;
  font-size: 12px;
  font-weight: 820;
}
.comments-head h2 {
  margin: 0;
  font-size: 20px;
}
.comments-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: stretch;
  margin-top: 12px;
}
.comments-form input[name="website"] {
  display: none;
}
.comments-form textarea {
  width: 100%;
  min-height: 72px;
  resize: vertical;
  padding: 8px 10px;
  border: 1px solid rgba(20,26,36,0.14);
  border-radius: 8px;
  background: rgba(255,255,255,0.82);
  color: #141a24;
  font: inherit;
  font-size: 13px;
  line-height: 1.55;
}
.comments-form textarea:focus {
  outline: 2px solid rgba(34,109,178,0.22);
  border-color: rgba(34,109,178,0.42);
}
.comments-form button,
.comments-admin-actions button,
.comments-admin-item-actions button {
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(20,26,36,0.14);
  border-radius: 8px;
  background: #141a24;
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 780;
  cursor: pointer;
}
.comments-form button:disabled,
.comments-admin-item-actions button:disabled {
  opacity: 0.55;
  cursor: wait;
}
.comments-status,
.comments-empty {
  margin: 10px 0 0;
  color: #6b7280;
  font-size: 12px;
}
.comments-list {
  display: grid;
  gap: 6px;
  margin-top: 0;
}
.comment-item {
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(247,244,238,0.76);
}
.comment-item p {
  margin: 0;
  color: #344054;
  font-size: 13px;
  line-height: 1.65;
}
.comment-item small {
  display: block;
  margin-top: 5px;
  color: #7a8493;
  font-size: 11px;
  line-height: 1.4;
}
.comments-admin-shell {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: clamp(22px, 4vw, 54px) clamp(16px, 4vw, 28px) 60px;
}
.comments-admin-panel h1 {
  margin: 0 0 10px;
  font-size: clamp(34px, 6vw, 72px);
  line-height: 0.96;
}
.comments-admin-note {
  max-width: 640px;
  margin: 0 0 18px;
  color: #4b5563;
  line-height: 1.75;
}
.comments-admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.comments-admin-actions button {
  background: rgba(255,255,255,0.72);
  color: #141a24;
}
.comments-admin-actions button.is-active {
  background: #141a24;
  color: #fff;
}
.comments-admin-status {
  margin: 12px 0;
  color: #6b7280;
  font-size: 13px;
}
.comments-admin-list {
  display: grid;
  gap: 10px;
}
.comments-admin-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(20,26,36,0.1);
  border-radius: 8px;
  background: rgba(255,255,255,0.68);
}
.comments-admin-item p {
  margin: 0 0 6px;
  color: #141a24;
  line-height: 1.65;
}
.comments-admin-item small {
  color: #6b7280;
}
.comments-admin-item-actions {
  display: flex;
  gap: 8px;
}
@media (max-width: 680px) {
  .site-header { flex-direction: column; align-items: flex-start; min-height: auto; padding: 18px; }
  .brand { gap: 12px; }
  .brand-avatar { width: 48px; height: 48px; }
  .brand-title { font-size: 24px; }
  .brand-text { flex-direction: column; align-items: flex-start; gap: 2px; }
  nav { width: 100%; justify-content: flex-start; overflow-x: auto; padding-bottom: 2px; gap: 8px; font-size: 16px; }
  nav a { min-height: 44px; padding: 0 14px; border-radius: 10px; }
  .stories-shell,
  .country-detail-shell { grid-template-columns: 1fr; }
  .map-pane {
    position: relative;
    top: auto;
    height: 55vh;
    min-height: 360px;
    border-right: 0;
    border-bottom: 1px solid rgba(20, 26, 36, 0.1);
  }
  .country-detail-map-pane {
    position: relative;
    top: auto;
    height: 56vh;
    min-height: 390px;
    padding: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(20, 26, 36, 0.1);
  }
  .country-detail-map-pane .country-feature-map img {
    max-height: 42vh;
  }
  .stories-shell .country-map { min-height: 360px; }
  .country-map-panel { grid-template-columns: 1fr; padding: 14px; }
  .country-map, .country-map svg { min-height: 280px; }
  .story-grid { grid-template-columns: 1fr; }
  .article-shell { padding: 20px 14px 42px; }
  .article h1 { font-size: clamp(34px, 11vw, 48px); }
  .article figure, .photo-grid { margin: 24px auto; }
  .article figure.route-infographic {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }
  .route-infographic img {
    width: 760px;
    max-width: none;
  }
  .photo-grid.photos-2,
  .photo-grid.photos-many { grid-template-columns: 1fr; }
  .photo-grid img {
    height: auto;
    object-fit: contain;
  }
  .photo-grid figure {
    aspect-ratio: auto;
  }
  .photo-grid figcaption {
    display: block;
  }
  .photo-story-hero {
    min-height: 68vh;
    margin-bottom: 20px;
  }
  .photo-story-copy {
    width: 100%;
    margin: 8px auto 24px;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px 0 20px;
  }
  .photo-story-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
  }
  .related-cities {
    margin-top: 2px;
  }
  .related-cities-head {
    grid-template-columns: 1fr;
  }
  .related-city-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .comments-box {
    margin-top: 20px;
    padding: 0;
  }
  .comments-dialog { padding: 16px; }
  .comments-head {
    display: grid;
    gap: 4px;
  }
  .comments-form {
    grid-template-columns: 1fr;
  }
  .comments-admin-item {
    grid-template-columns: 1fr;
  }
  .comments-admin-item-actions {
    justify-content: flex-start;
  }
  .photo-wall {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .photo-wall-item,
  .photo-wall-item.wide,
  .photo-wall-item.tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
    aspect-ratio: auto;
  }
  .photo-wall-item img {
    height: auto;
    object-fit: contain;
  }
  .photo-lightbox {
    padding: 12px;
  }
  .photo-lightbox figure {
    width: 100%;
  }
  .photo-lightbox img {
    max-height: 78vh;
  }
  .photo-lightbox-nav {
    top: auto;
    bottom: 24px;
    width: 48px;
    height: 48px;
    transform: none;
    font-size: 34px;
    background: rgba(255,255,255,0.86);
  }
  .photo-lightbox-prev { left: 18px; }
  .photo-lightbox-next { right: 18px; }
  .photo-lightbox-caption {
    padding: 0 70px;
    justify-content: center;
  }
  body.photo-story-page {
    background: #f7f4ee;
    color: #141a24;
  }
  body.photo-story-page .site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    flex-direction: column;
    align-items: flex-start;
    min-height: auto;
    gap: 10px;
    padding: 12px 14px 10px;
    border-bottom: 1px solid rgba(20,26,36,0.1);
    background: rgba(247,244,238,0.9);
    backdrop-filter: blur(18px);
  }
  body.photo-story-page .brand {
    gap: 10px;
  }
  body.photo-story-page .brand-avatar {
    width: 38px;
    height: 38px;
  }
  body.photo-story-page .brand-title {
    font-size: 18px;
    color: #141a24;
  }
  body.photo-story-page .visitor-badge {
    display: none;
  }
  body.photo-story-page nav {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    overflow-x: auto;
    padding: 2px 0 4px;
    font-size: 15px;
    scrollbar-width: none;
  }
  body.photo-story-page nav::-webkit-scrollbar {
    display: none;
  }
  body.photo-story-page nav a {
    min-height: 38px;
    padding: 0 13px;
    border-color: rgba(20,26,36,0.12);
    background: rgba(255,255,255,0.78);
    color: #344054;
    box-shadow: 0 1px 0 rgba(20,26,36,0.04), 0 8px 18px rgba(20,26,36,0.06);
  }
  body.photo-story-page .article-shell {
    padding: 0;
  }
  body.photo-story-page .article {
    width: 100%;
    max-width: none;
    padding: 0;
  }
  body.photo-story-page .photo-story-copy {
    width: 100%;
    min-height: calc(100svh - 132px);
    margin: 0;
    padding: 54svh 20px 26px;
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-start;
    gap: 18px;
    background:
      linear-gradient(180deg, rgba(13,17,23,0.08) 0%, rgba(13,17,23,0.22) 42%, rgba(13,17,23,0.82) 74%, rgba(13,17,23,0.92) 100%),
      var(--mobile-cover) center / cover no-repeat;
  }
  body.photo-story-page .photo-story-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  body.photo-story-page .photo-story-meta span {
    border-color: rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.12);
    color: #e5e7eb;
  }
  body.photo-story-page .photo-story-meta .comments-box {
    display: none;
  }
  body.photo-story-page .photo-story-lede {
    max-width: none;
  }
  body.photo-story-page .photo-story-kicker {
    color: #93c5fd;
  }
  body.photo-story-page .photo-story-lede h1 {
    margin: 0 0 12px;
    font-size: 34px;
    line-height: 1.05;
    color: #fff;
  }
  body.photo-story-page .photo-story-lede p:last-child {
    margin: 0;
    color: rgba(255,255,255,0.78);
    font-size: 16px;
    line-height: 1.65;
  }
  body.photo-story-page .photo-wall {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    width: 100%;
    margin: 0;
    padding: 52px 0 8px;
    background: #f7f4ee;
  }
  body.photo-story-page .photo-wall::before {
    content: attr(data-gallery-label);
    position: sticky;
    top: 104px;
    z-index: 5;
    justify-self: start;
    margin: 0 0 0 12px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.82);
    color: #344054;
    font-size: 13px;
    line-height: 1;
    backdrop-filter: blur(14px);
  }
  body.photo-story-page .photo-wall-item,
  body.photo-story-page .photo-wall-item.wide,
  body.photo-story-page .photo-wall-item.tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
    aspect-ratio: auto;
    border-radius: 0;
    background: #ebe7df;
    box-shadow: none;
  }
  body.photo-story-page .photo-wall-item img {
    width: 100%;
    height: auto;
    max-height: 92svh;
    object-fit: contain;
    background: #ebe7df;
  }
  body.photo-story-page .related-cities {
    width: 100%;
    margin: 0;
    padding: 28px 16px 34px;
    border: 0;
    background: #f7f4ee;
  }
  body.photo-story-page .related-cities-head {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 4px 12px;
    align-items: end;
    margin-bottom: 14px;
  }
  body.photo-story-page .related-cities-head .photo-story-kicker {
    color: #2f7b57;
  }
  body.photo-story-page .related-cities-head h2 {
    color: #141a24;
    font-size: 20px;
  }
  body.photo-story-page .related-cities-head a {
    color: var(--blue);
  }
  body.photo-story-page .related-city-grid {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }
  body.photo-story-page .related-city-grid::-webkit-scrollbar {
    display: none;
  }
  body.photo-story-page .related-city-card {
    width: 132px;
    flex: 0 0 132px;
    border-color: rgba(20,26,36,0.1);
    background: rgba(255,255,255,0.72);
    color: #141a24;
    scroll-snap-align: start;
  }
  body.photo-story-page .related-city-cover {
    background: #d8d2c7;
  }
  body.photo-story-page .related-city-title {
    color: #141a24;
  }
  body.photo-story-page .photo-lightbox {
    align-items: stretch;
    justify-content: stretch;
    padding: 0;
  }
  body.photo-story-page .photo-lightbox figure {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100svh;
    max-height: none;
    margin: 0;
    padding: 0;
    border-radius: 0;
    background: #05070b;
    box-shadow: none;
  }
  body.photo-story-page .photo-lightbox img {
    position: absolute;
    left: 50%;
    top: calc(50% - 22px);
    width: auto;
    height: auto;
    max-width: 100vw;
    max-height: calc(100svh - 168px);
    transform: translate(-50%, -50%);
    border-radius: 0;
    object-fit: contain;
    box-shadow: none;
  }
  body.photo-story-page .photo-lightbox-close {
    top: max(16px, env(safe-area-inset-top));
    right: 14px;
    width: 48px;
    height: 48px;
    z-index: 3;
  }
  body.photo-story-page .photo-lightbox-nav {
    top: auto;
    bottom: max(28px, env(safe-area-inset-bottom));
    z-index: 3;
    background: rgba(255,255,255,0.18);
    color: #fff;
  }
  body.photo-story-page .photo-lightbox-prev {
    left: 18px;
  }
  body.photo-story-page .photo-lightbox-next {
    right: 18px;
  }
  body.photo-story-page .photo-lightbox-caption {
    position: fixed;
    left: 88px;
    right: 88px;
    bottom: max(42px, calc(env(safe-area-inset-bottom) + 14px));
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 0;
    color: rgba(255,255,255,0.62);
    font-size: 13px;
    text-align: center;
  }
}
@media (max-width: 420px) {
  .related-city-grid { grid-template-columns: 1fr; }
}
