:root {
  --ink: #18201e;
  --muted: #65706c;
  --paper: #fffdf8;
  --warm: #f3f0e8;
  --warm-2: #dfe9e5;
  --line: #d7dfdc;
  --accent: #b04b2f;
  --accent-dark: #82331f;
  --accent-soft: #cfe7e3;
  --gold: #c7a24a;
  --olive: #6f7b63;
  --blue: #2f4963;
  --shadow: 0 24px 70px rgba(16, 20, 22, 0.16);
  --glow: 0 22px 80px rgba(47, 125, 120, 0.18);
  --magazine-page-ratio: 210 / 297;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  line-height: 1.55;
  background:
    radial-gradient(circle at 14% 0%, rgba(47, 125, 120, 0.08), transparent 30rem),
    radial-gradient(circle at 90% 10%, rgba(199, 162, 74, 0.12), transparent 28rem),
    #fffdf8;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav-wrap,
.section-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand span {
  color: var(--accent);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}

.main-nav a {
  padding: 8px 2px;
  border-radius: 6px;
  color: #303736;
  font-size: 0.91rem;
  font-weight: 650;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  background: transparent;
  color: var(--accent-dark);
}

.hero {
  min-height: 720px;
  display: grid;
  align-items: end;
  background:
    radial-gradient(circle at 72% 36%, rgba(47, 125, 120, 0.32), transparent 24rem),
    linear-gradient(180deg, rgba(16, 20, 22, 0.16), rgba(16, 20, 22, 0.82)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=2200&q=82") center/cover;
  color: white;
}

.hero.home-hero {
  min-height: 520px;
}

@media (min-height: 1000px) {
  .hero.home-hero {
    min-height: 600px;
  }
}

.page-hero {
  min-height: 500px;
  display: grid;
  align-items: end;
  color: white;
  background:
    radial-gradient(circle at 78% 30%, rgba(47, 125, 120, 0.34), transparent 24rem),
    linear-gradient(180deg, rgba(16, 20, 22, 0.2), rgba(16, 20, 22, 0.8)),
    var(--hero-image) center/cover;
}

.hero-content {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 460px);
  gap: 36px;
  align-items: end;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow {
  color: var(--accent-soft);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.1rem, 7vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.page-hero h1 {
  max-width: 850px;
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.lead {
  max-width: 740px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.18rem;
}

.section {
  padding: 86px 0;
}

.section.alt {
  background: var(--warm);
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-header h2,
.legal h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.section-header p {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
}

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

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

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

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

.card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(16, 20, 22, 0.07);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

a:hover .card,
.card:hover {
  border-color: rgba(47, 125, 120, 0.32);
  box-shadow: var(--glow);
  transform: translateY(-3px);
}

.card-body {
  padding: 20px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  line-height: 1.18;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.card-image {
  aspect-ratio: 16 / 10;
  background: var(--warm-2) center/cover;
  position: relative;
}

.card-image::after {
  content: "";
  display: block;
  height: 100%;
  background: linear-gradient(180deg, rgba(16, 20, 22, 0.02), rgba(16, 20, 22, 0.22));
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--warm);
  color: #34413f;
  font-size: 0.82rem;
  font-weight: 700;
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  background: var(--ink);
  color: white;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover,
button.button:hover {
  box-shadow: 0 12px 30px rgba(16, 20, 22, 0.18);
  transform: translateY(-1px);
}

.button.secondary {
  background: transparent;
  color: var(--ink);
}

.button.warm {
  border-color: var(--accent);
  background: var(--accent);
}

.button.warm:hover {
  border-color: var(--accent-dark);
  background: var(--accent-dark);
}

.search-shell {
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.search-tabs {
  display: grid;
  grid-template-columns: repeat(var(--tab-count, 3), 1fr);
  border-bottom: 1px solid var(--line);
}

.search-tabs button {
  min-height: 54px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.search-tabs button:last-child {
  border-right: 0;
}

.search-tabs button[aria-selected="true"] {
  color: var(--ink);
  background: var(--warm);
}

.search-panel {
  padding: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.field {
  display: grid;
  gap: 6px;
}

.field.full {
  grid-column: 1 / -1;
}

.multi-city {
  grid-column: 1 / -1;
  display: grid;
  gap: 10px;
}

.multi-city-row {
  display: grid;
  grid-template-columns: auto repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-items: end;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcf8;
}

.multi-city-row .pill {
  align-self: center;
}

.multi-city-row label {
  display: grid;
  gap: 6px;
}

label {
  color: #333d3c;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 12px;
  background: white;
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.search-note,
.form-message {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.feature-band {
  background:
    radial-gradient(circle at 80% 20%, rgba(47, 125, 120, 0.28), transparent 22rem),
    #101416;
  color: white;
}

.feature-band .section-header p,
.feature-band .card p {
  color: rgba(255, 255, 255, 0.72);
}

.feature-band .card {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 32px;
  align-items: start;
}

.content-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.content-panel h2,
.content-panel h3 {
  margin-top: 0;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(280px, 1fr);
  gap: 44px;
  align-items: start;
}

.article-body {
  font-size: 1.04rem;
}

.article-body h2 {
  margin: 42px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.08;
}

.article-body p {
  color: #33403e;
}

.newsletter-issue {
  background: #fbfcf8;
}

.issue-body > h2:first-of-type {
  margin-top: 0;
}

.issue-kicker {
  margin: 0 0 10px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.issue-notes,
.issue-routes {
  display: grid;
  gap: 14px;
}

.issue-note,
.issue-route {
  display: block;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.issue-note h3,
.issue-route span {
  display: block;
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 850;
}

.issue-note p,
.issue-route p {
  margin: 0;
}

.issue-route:hover {
  border-color: var(--accent);
}

.issue-checklist {
  display: grid;
  gap: 10px;
  padding-left: 22px;
  color: #33403e;
}

.issue-signoff {
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  font-weight: 750;
}

.destination-review .article-body > h2:first-of-type {
  margin-top: 0;
}

.guide-list {
  display: grid;
  gap: 14px;
}

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

.guide-item {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcf8;
}

.guide-item h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  line-height: 1.2;
}

.guide-item p {
  margin: 0;
}

.guide-item .button {
  margin-top: 14px;
}

.affiliate-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.hotel-actions {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.hotel-actions .button {
  margin-top: 0;
}

.hotel-review-link {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.hotel-brand-card {
  display: flex;
  flex-direction: column;
}

.hotel-brand-card .card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.hotel-brand-card .hotel-actions {
  margin-top: auto;
  padding-top: 18px;
}

.hotel-spotlight {
  background:
    linear-gradient(135deg, rgba(16, 20, 22, 0.96), rgba(47, 73, 99, 0.88)),
    var(--ink);
  color: white;
}

.hotel-spotlight-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: 44px;
  align-items: center;
}

.hotel-spotlight-image {
  min-height: 440px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: var(--warm-2) center/cover;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
}

.hotel-spotlight-copy h2 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4.8vw, 4.5rem);
  line-height: 0.96;
}

.hotel-spotlight-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.hotel-spotlight .pill {
  background: rgba(255, 255, 255, 0.11);
  color: white;
}

.hotel-spotlight .button.secondary {
  border-color: rgba(255, 255, 255, 0.45);
  color: white;
}

.cinematic-band {
  background:
    radial-gradient(circle at 10% 5%, rgba(47, 125, 120, 0.14), transparent 26rem),
    radial-gradient(circle at 90% 0%, rgba(199, 162, 74, 0.16), transparent 24rem),
    #f8faf7;
}

.ship-showcase .card-image {
  aspect-ratio: 4 / 3;
}

.booking-band {
  background: #eef4f2;
}

.booking-band-inner {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.booking-band h2 {
  margin: 4px 0 8px;
}

.booking-band p {
  margin: 0;
}

.booking-band .search-note {
  margin-top: 10px;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.issue-side-link {
  margin-top: 10px;
}

.sidebar {
  position: sticky;
  top: 96px;
}

.newsletter-band {
  background:
    linear-gradient(90deg, rgba(16, 20, 22, 0.84), rgba(47, 125, 120, 0.42)),
    url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1800&q=80") center/cover;
  color: white;
}

.home-highlight {
  background: var(--warm);
  border-bottom: 1px solid var(--line);
}

.home-highlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.highlight-newsletter {
  padding: 8px 0;
}

.highlight-newsletter h2 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.1;
}

.highlight-newsletter > p {
  margin: 0 0 18px;
  color: var(--muted);
}

.planner-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.planner-image {
  height: 100%;
  min-height: 170px;
  background: var(--warm-2) center/cover;
}

.planner-body {
  padding: 20px 22px 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.planner-body h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.planner-body p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.planner-body .button {
  align-self: flex-start;
}

.newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  max-width: 640px;
}

.site-footer {
  padding: 46px 0;
  background: #101416;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: grid;
  gap: 8px;
}

.legal {
  padding: 72px 0;
}

.legal article {
  max-width: 840px;
}

.breadcrumbs {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.breadcrumbs a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 940px) {
  .nav-wrap {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .main-nav {
    justify-content: flex-start;
  }

  .hero-grid,
  .split,
  .article-layout,
  .footer-grid,
  .booking-band-inner,
  .home-highlight-grid,
  .hotel-spotlight-grid {
    grid-template-columns: 1fr;
  }

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

  .sidebar {
    position: static;
  }

  .planner-card {
    grid-template-columns: 1fr;
  }

  .planner-image {
    min-height: 180px;
  }

  .hotel-spotlight-image {
    min-height: 320px;
  }

  .planner-body {
    padding: 0 18px 18px;
  }
}

@media (max-width: 640px) {
  .nav-wrap,
  .section-inner,
  .hero-content {
    width: min(100% - 24px, 1180px);
  }

  .hero {
    min-height: 760px;
  }

  .section {
    padding: 54px 0;
  }

  .section-header {
    display: grid;
  }

  .grid.two,
  .grid.three,
  .grid.four,
  .guide-list.compact,
  .form-grid,
  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .multi-city-row {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 3.05rem;
  }

  .main-nav a {
    padding: 7px 8px;
    font-size: 0.86rem;
  }
}

/* Simplified editorial home */
.home-intro {
  padding: 54px 0 78px;
}

.home-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(420px, 1.12fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
}

.home-intro-copy {
  padding: 50px 0;
}

.home-intro h1 {
  max-width: 700px;
  color: var(--ink);
  font-size: clamp(3.9rem, 7.2vw, 7.3rem);
  line-height: .86;
  letter-spacing: -.055em;
}

.home-intro h1 em {
  color: var(--accent);
  font-weight: 400;
}

.home-intro .lead {
  max-width: 590px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.65;
}

.home-intro-image {
  position: relative;
  min-height: 660px;
  border-radius: 180px 180px 12px 12px;
  background:
    linear-gradient(180deg, transparent 55%, rgba(20, 28, 25, .58)),
    url("https://images.unsplash.com/photo-1555881400-74d7acaacd8b?auto=format&fit=crop&w=1400&q=86") center/cover;
  box-shadow: 0 30px 80px rgba(30, 35, 30, .13);
}

.image-note {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: grid;
  gap: 5px;
  color: white;
}

.image-note span {
  color: rgba(255,255,255,.72);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.image-note a {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 30px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
}

.text-link span {
  color: var(--accent);
  font-size: 1.2em;
  transition: transform .2s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.home-places {
  padding-top: 105px;
  background: var(--warm);
}

.home-places .section-header {
  max-width: 860px;
  align-items: start;
  flex-direction: column;
}

.home-places .card,
.home-places .card-image {
  border-radius: 0;
}

.home-places .card {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.home-places .card:hover {
  box-shadow: none;
}

.home-places .card-image {
  aspect-ratio: 4 / 5;
}

.home-places .card-body {
  padding: 20px 0 0;
}

.home-places .card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
}

.story-feature {
  padding: 120px 0;
}

.story-feature-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(40px, 8vw, 110px);
  align-items: center;
}

.story-feature-image {
  min-height: 590px;
  background: url("/assets/antarctica-cruise-hero.png") center/cover;
}

.story-feature-copy h2,
.quiet-cta h2 {
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  line-height: .95;
  letter-spacing: -.04em;
}

.story-feature-copy > p:not(.eyebrow),
.quiet-cta > .section-inner > p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.75;
}

.story-feature-copy .text-link {
  margin-top: 18px;
}

.home-highlight {
  padding: 100px 0;
}

.highlight-newsletter {
  display: none;
}

.home-highlight-grid {
  display: block;
}

.highlight-planner {
  max-width: 980px;
  margin: auto;
}

.planner-card {
  border: 0;
  box-shadow: none;
}

.quiet-cta {
  padding: 120px 0;
  color: white;
  text-align: center;
  background: #1c2824;
}

.quiet-cta .eyebrow {
  color: #e7b09f;
}

.quiet-cta h2,
.quiet-cta > .section-inner > p {
  margin-right: auto;
  margin-left: auto;
}

.quiet-cta .newsletter-form {
  max-width: 620px;
  margin: 34px auto 0;
}

.quiet-cta label {
  color: rgba(255,255,255,.75);
  text-align: left;
}

.footer-note {
  display: flex;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.55);
  font-size: .82rem;
}

.footer-note span {
  margin-right: auto;
}

@media (max-width: 940px) {
  .home-intro-grid,
  .story-feature-grid {
    grid-template-columns: 1fr;
  }

  .home-intro-copy {
    padding: 25px 0 0;
  }

  .home-intro-image {
    min-height: 580px;
    border-radius: 120px 120px 10px 10px;
  }

  .story-feature-copy {
    max-width: 680px;
  }
}

@media (max-width: 640px) {
  .nav-wrap {
    min-height: 68px;
  }

  .main-nav a:nth-child(3) {
    display: none;
  }

  .main-nav {
    gap: 10px;
  }

  .main-nav a {
    font-size: .78rem;
  }

  .home-intro {
    padding: 26px 0 56px;
  }

  .home-intro h1 {
    font-size: clamp(3.35rem, 16vw, 5rem);
  }

  .home-intro-image,
  .story-feature-image {
    min-height: 470px;
  }

  .home-intro-image {
    border-radius: 80px 80px 8px 8px;
  }

  .home-places,
  .story-feature,
  .home-highlight,
  .quiet-cta {
    padding: 72px 0;
  }

  .footer-note {
    flex-wrap: wrap;
  }

  .footer-note span {
    width: 100%;
  }
}

/* The RealKH Monthly interactive episode */

.monthly-masthead {
  min-height: 610px;
  display: grid;
  align-items: end;
  padding: 100px 0 74px;
  color: #f8f3e9;
  background:
    linear-gradient(90deg, rgba(12, 17, 18, 0.92) 0%, rgba(12, 17, 18, 0.64) 52%, rgba(12, 17, 18, 0.22)),
    url("/magazine/monthly-template/lisbon-cover.jpg") center 45%/cover;
}

.monthly-masthead h1 {
  max-width: 860px;
  font-size: clamp(3.6rem, 8vw, 7.4rem);
}

.monthly-masthead > div > p:not(.magazine-eyebrow) {
  max-width: 670px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}

.monthly-masthead .weekly-meta span {
  border-color: rgba(255,255,255,.24);
  color: white;
  background: rgba(14,19,20,.35);
}

.monthly-reader-section {
  padding: 72px max(18px, 3vw) 90px;
  background: #dcd8cf;
}

.monthly-reader-head {
  width: min(1320px, 100%);
  margin: 0 auto 22px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.monthly-reader-head h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.monthly-reader-head > p {
  max-width: 450px;
  margin: 0;
  color: #575650;
}

.monthly-reader {
  width: min(1400px, 100%);
  margin: 0 auto;
}

.monthly-toolbar {
  min-height: 62px;
  display: grid;
  grid-template-columns: auto minmax(180px, 260px) 1fr auto auto;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: #f5f0e7;
  background: #111718;
  border-radius: 8px 8px 0 0;
}

.monthly-toolbar button,
.monthly-toolbar select {
  min-height: 40px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 5px;
  color: inherit;
  background: rgba(255,255,255,.07);
  font: inherit;
  font-size: .84rem;
  font-weight: 750;
  cursor: pointer;
}

.monthly-toolbar button {
  padding: 0 14px;
}

.monthly-toolbar button:hover:not(:disabled),
.monthly-toolbar select:hover {
  background: rgba(255,255,255,.14);
}

.monthly-toolbar button:disabled {
  opacity: .35;
  cursor: default;
}

.monthly-toolbar label {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.monthly-toolbar select {
  width: 100%;
  padding: 0 28px 0 10px;
}

.monthly-toolbar > p {
  margin: 0;
  text-align: center;
  color: rgba(255,255,255,.75);
  font-size: .84rem;
  font-weight: 700;
}

.monthly-stage {
  --drag-turn: 0;
  --pointer-x: 50%;
  position: relative;
  display: grid;
  place-items: center;
  min-height: min(76vw, 860px);
  padding: clamp(18px, 4vw, 54px);
  overflow: hidden;
  perspective: 2200px;
  background:
    linear-gradient(90deg, rgba(0,0,0,.24), transparent 16%, transparent 84%, rgba(0,0,0,.24)),
    radial-gradient(ellipse at center, rgba(255,255,255,.14), transparent 50%),
    repeating-linear-gradient(0deg, rgba(255,255,255,.012) 0 1px, transparent 1px 4px),
    #252b2b;
  outline: none;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.monthly-stage:focus-visible {
  box-shadow: inset 0 0 0 3px var(--gold);
}

.monthly-stage.is-dragging {
  cursor: grabbing;
  touch-action: none;
}

.monthly-book {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(1140px, 94%);
  aspect-ratio: 1.414 / 1;
  filter: drop-shadow(0 30px 42px rgba(0,0,0,.42));
  transform-style: preserve-3d;
  isolation: isolate;
}

.monthly-book::before,
.monthly-book::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 4px -4px -7px;
  border-radius: 0 2px 4px 0;
  background: repeating-linear-gradient(0deg, #d8d3c8 0 1px, #eee9df 1px 3px);
  box-shadow: 0 8px 18px rgba(0,0,0,.28);
}

.monthly-book::before {
  inset: 2px -2px -4px 2px;
  background: #c8c2b7;
}

.monthly-page {
  position: relative;
  min-width: 0;
  overflow: hidden;
  color: #171b1b;
  background: #ffffff;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.monthly-page::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  opacity: .2;
  pointer-events: none;
  mix-blend-mode: multiply;
  background:
    repeating-linear-gradient(0deg, rgba(64,51,33,.025) 0 1px, transparent 1px 4px),
    radial-gradient(circle at 20% 10%, rgba(255,255,255,.35), transparent 34%);
}

.monthly-page.is-left {
  transform-origin: right center;
  box-shadow: inset -24px 0 35px -34px rgba(0,0,0,.8);
}

.monthly-page.is-right {
  transform-origin: left center;
  box-shadow: inset 24px 0 35px -34px rgba(0,0,0,.8);
}

.monthly-page-image {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
}

.monthly-page--editor {
  position: relative;
  display: block;
  background: #ffffff;
}

.monthly-page--editor .monthly-editor-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .52;
  filter: saturate(.78) contrast(.9);
}

.monthly-page--editor::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.48) 0%, rgba(255,255,255,.65) 42%, rgba(255,255,255,.95) 78%, #fff 100%);
  pointer-events: none;
}

.monthly-page--editor .monthly-page-inner {
  z-index: 2;
  height: 100%;
  padding: clamp(26px, 4vw, 58px);
}

.monthly-page--editor .monthly-kicker {
  margin: 0 0 6px;
}

.monthly-page--editor h2 {
  max-width: 88%;
  margin: 6px 0 9px;
  font-size: clamp(1.4rem, 2.35vw, 2.8rem);
}

.monthly-page--editor .monthly-lead {
  max-width: 34em;
  margin-bottom: 10px;
}

.monthly-page--editor .monthly-copy,
.monthly-page--editor .monthly-bridge {
  max-width: 38em;
  line-height: 1.45;
}

.monthly-page--editor footer {
  padding-top: 10px;
}

.monthly-page--editor .monthly-body {
  max-width: 36em;
  font-size: clamp(.52rem, .68vw, .68rem);
  line-height: 1.3;
}

.monthly-page--editor .monthly-body p {
  margin-bottom: .42em;
}

.monthly-page--editor .monthly-body p:last-child {
  margin-top: .7em;
}

.monthly-page--letter-continuation .monthly-page-inner {
  padding: clamp(30px, 4.4vw, 64px);
}

.monthly-page--letter-continuation .monthly-kicker {
  margin: 0 0 auto;
}

.monthly-page--letter-continuation .monthly-body {
  max-width: 37em;
  font-size: clamp(.7rem, .96vw, .96rem);
  line-height: 1.5;
}

.monthly-page--letter-continuation .monthly-body p:last-child {
  margin-top: 1.2em;
}

.monthly-page-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 4.2vw, 68px);
}

.monthly-kicker {
  margin: 0 0 auto;
  color: #98772c;
  font-size: clamp(.55rem, .8vw, .72rem);
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.monthly-page h2 {
  max-width: 94%;
  margin: 18px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 3.3vw, 4.1rem);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.035em;
}

.monthly-lead {
  max-width: 34em;
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(.98rem, 1.4vw, 1.3rem);
  font-style: italic;
  line-height: 1.3;
}

.monthly-copy,
.monthly-bridge {
  max-width: 40em;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(.74rem, 1vw, 1rem);
  line-height: 1.6;
}

.monthly-body {
  max-width: 40em;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(.68rem, .92vw, .92rem);
  line-height: 1.48;
}

.monthly-body p {
  margin: 0 0 .72em;
}

.monthly-body strong {
  font-weight: 700;
}

.monthly-bridge {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(23,27,27,.25);
  font-style: italic;
}

.monthly-page footer {
  display: flex;
  flex-shrink: 0;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 20px;
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.monthly-page--cover,
.monthly-page--full-image,
.monthly-page--feature,
.monthly-page--photo,
.monthly-page--dark,
.monthly-page--closing,
.monthly-page--experiment,
.monthly-page--book,
.monthly-page--quote:has(.monthly-page-image) {
  color: white;
}

.monthly-page--cover::after,
.monthly-page--full-image::after,
.monthly-page--feature::after,
.monthly-page--photo::after,
.monthly-page--dark::after,
.monthly-page--closing::after,
.monthly-page--experiment::after,
.monthly-page--book::after,
.monthly-page--quote:has(.monthly-page-image)::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,9,10,.08), rgba(6,9,10,.78));
}

.monthly-page--full-image::after {
  background: linear-gradient(180deg, rgba(6,9,10,.34), transparent 28%, rgba(6,9,10,.08) 70%, rgba(6,9,10,.48));
}

.monthly-page--full-image .monthly-kicker {
  margin-bottom: auto;
  color: #f2dfad;
}

.monthly-page--cover h2 {
  max-width: 90%;
  font-size: clamp(2.8rem, 5.4vw, 6.7rem);
}

.monthly-page--cover .monthly-copy {
  font-family: inherit;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.monthly-page--quote:not(:has(.monthly-page-image)) {
  background: #ffffff;
}

.monthly-page--quote h2 {
  margin: auto 0 24px;
}

.monthly-page--dark {
  background: #0c1215;
}

.monthly-page--dark::after {
  background: linear-gradient(180deg, rgba(3,5,8,.18), rgba(3,5,8,.9));
}

.monthly-page--contents {
  background: #ffffff;
}

.monthly-contents {
  columns: 2;
  column-gap: 30px;
  margin: 8px 0 auto;
  padding: 0;
  list-style: none;
}

.monthly-contents li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(23,27,27,.16);
  break-inside: avoid;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(.68rem, .95vw, .9rem);
}

.monthly-list,
.monthly-stats,
.monthly-scores {
  margin: 10px 0 24px;
}

.monthly-list > div {
  display: grid;
  grid-template-columns: minmax(80px, .55fr) 1fr;
  gap: 18px;
  padding: 12px 0;
  border-top: 1px solid rgba(23,27,27,.2);
}

.monthly-list strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(.82rem, 1.15vw, 1.15rem);
}

.monthly-list span {
  color: #555952;
  font-size: clamp(.65rem, .9vw, .85rem);
}

.monthly-page--contents .monthly-copy {
  max-width: 34em;
}

.monthly-page--issue-map .monthly-page-inner {
  padding: clamp(26px, 3.8vw, 56px);
}

.monthly-page--issue-map .monthly-kicker {
  margin: 0 0 14px;
}

.monthly-page--issue-map h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 3.8vw, 4.3rem);
}

.monthly-page--issue-map .monthly-lead {
  margin-bottom: 18px;
}

.monthly-page--issue-map .monthly-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(18px, 3vw, 38px);
  margin: 0 0 18px;
}

.monthly-page--issue-map .monthly-list > div {
  display: block;
  min-width: 0;
  padding: clamp(7px, .9vw, 11px) 0;
  border-top: 1px solid rgba(23,27,27,.18);
}

.monthly-page--issue-map .monthly-list strong,
.monthly-page--issue-map .monthly-list span {
  display: block;
}

.monthly-page--issue-map .monthly-list strong {
  margin-bottom: 3px;
  font-size: clamp(.72rem, 1vw, 1rem);
  line-height: 1.15;
}

.monthly-page--issue-map .monthly-list span {
  font-size: clamp(.57rem, .72vw, .72rem);
  line-height: 1.35;
}

.monthly-page--issue-map .monthly-bridge {
  margin-top: auto;
}

.monthly-page--departure {
  background: #fff;
}

.monthly-page--departure .monthly-page-image {
  position: absolute;
  inset: 0 0 auto;
  width: 100%;
  height: 59.5%;
  background-position: center;
  background-size: cover;
}

.monthly-page--departure .monthly-page-inner {
  position: absolute;
  inset: 59.5% 0 0;
  height: auto;
  padding: clamp(16px, 2.4vw, 32px) clamp(25px, 4.2vw, 60px) clamp(15px, 2.4vw, 30px);
  border-top: 1px solid rgba(23,27,27,.3);
}

.monthly-page--departure h2 {
  max-width: 15em;
  margin: 0 0 clamp(8px, 1.2vw, 16px);
  font-size: clamp(1.25rem, 2.25vw, 2.7rem);
  line-height: 1.02;
}

.monthly-page--departure .monthly-body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(18px, 3vw, 40px);
  max-width: 54em;
  font-size: clamp(.52rem, .68vw, .7rem);
  line-height: 1.38;
}

.monthly-page--departure .monthly-body p {
  margin-bottom: .45em;
}

.monthly-page--departure footer {
  padding-top: 6px;
}

.monthly-placeholder {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-width: 0;
  margin: 0;
}

.monthly-placeholder > div {
  display: flex;
  height: 100%;
  min-height: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px;
  color: #6f6b62;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(181,143,54,.08), transparent 44%),
    #efeee9;
  border: 1px solid rgba(23,27,27,.18);
}

.monthly-placeholder strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(.8rem, 1.15vw, 1.1rem);
  font-weight: 500;
}

.monthly-placeholder span,
.monthly-placeholder figcaption {
  font-size: clamp(.48rem, .62vw, .62rem);
  line-height: 1.4;
}

.monthly-placeholder span {
  max-width: 34em;
  margin-top: 7px;
}

.monthly-placeholder figcaption {
  padding-top: 6px;
  color: #696b66;
  font-style: italic;
}

.monthly-pull-quote {
  margin: 0;
  padding: 12px 0;
  border-top: 2px solid #b58f36;
  border-bottom: 1px solid rgba(23,27,27,.18);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(.82rem, 1.2vw, 1.18rem);
  font-style: italic;
  line-height: 1.25;
}

.monthly-page--waiting-open-left .monthly-page-inner,
.monthly-page--waiting-open-right .monthly-page-inner {
  display: grid;
  grid-template-rows: minmax(180px, 52%) 1fr auto;
  gap: clamp(8px, 1.1vw, 14px);
  padding: clamp(25px, 3.5vw, 48px);
}

.monthly-page--waiting-open-left .monthly-kicker,
.monthly-page--waiting-open-right .monthly-kicker {
  position: absolute;
  z-index: 2;
  top: clamp(38px, 5vw, 70px);
  left: clamp(42px, 5.5vw, 76px);
  margin: 0;
}

.monthly-page--waiting-open-left h2 {
  position: absolute;
  z-index: 2;
  top: clamp(66px, 8vw, 110px);
  left: clamp(42px, 5.5vw, 76px);
  max-width: 72%;
  margin: 0;
  color: #171b1b;
  font-size: clamp(2rem, 4vw, 4.8rem);
}

.monthly-page--waiting-open-left .monthly-placeholder > div {
  border-right: 0;
}

.monthly-page--waiting-open-right .monthly-placeholder > div {
  border-left: 0;
}

.monthly-page--waiting-open-left .monthly-body,
.monthly-page--waiting-open-right .monthly-body {
  max-width: none;
  font-size: clamp(.54rem, .7vw, .7rem);
  line-height: 1.42;
}

.monthly-page--waiting-open-left footer,
.monthly-page--waiting-open-right footer {
  margin-top: 0;
  padding-top: 2px;
}

.monthly-page--waiting-portrait .monthly-page-inner {
  display: grid;
  grid-template: auto auto 1fr auto / minmax(0, .82fr) minmax(0, 1.18fr);
  grid-template-areas:
    "kicker kicker"
    "image quote"
    "image body"
    "footer footer";
  gap: clamp(12px, 2vw, 26px);
  padding: clamp(25px, 3.7vw, 52px);
}

.monthly-page--waiting-portrait .monthly-kicker { grid-area: kicker; margin: 0; }
.monthly-page--waiting-portrait .monthly-placeholder { grid-area: image; min-height: 0; }
.monthly-page--waiting-portrait .monthly-pull-quote { grid-area: quote; }
.monthly-page--waiting-portrait .monthly-body { grid-area: body; }
.monthly-page--waiting-portrait footer { grid-area: footer; margin-top: 0; padding-top: 0; }

.monthly-page--waiting-portrait .monthly-body,
.monthly-page--waiting-landscape .monthly-body,
.monthly-page--waiting-close .monthly-body {
  max-width: none;
  font-size: clamp(.58rem, .76vw, .76rem);
  line-height: 1.46;
}

.monthly-page--waiting-landscape .monthly-page-inner {
  display: grid;
  grid-template: auto minmax(150px, 34%) auto 1fr auto / minmax(0, 1fr) minmax(0, 1fr);
  grid-template-areas:
    "kicker kicker"
    "image image"
    "quote body"
    "quote body"
    "footer footer";
  gap: clamp(12px, 1.8vw, 22px);
  padding: clamp(25px, 3.7vw, 52px);
}

.monthly-page--waiting-landscape .monthly-kicker { grid-area: kicker; margin: 0; }
.monthly-page--waiting-landscape .monthly-placeholder { grid-area: image; }
.monthly-page--waiting-landscape .monthly-pull-quote { grid-area: quote; align-self: start; }
.monthly-page--waiting-landscape .monthly-body { grid-area: body; }
.monthly-page--waiting-landscape footer { grid-area: footer; margin-top: 0; padding-top: 0; }

.monthly-page--waiting-close .monthly-page-inner {
  padding: clamp(36px, 6vw, 82px);
}

.monthly-page--waiting-close .monthly-kicker {
  margin: 0 0 clamp(35px, 8vh, 90px);
}

.monthly-page--waiting-close .monthly-body {
  width: min(100%, 43em);
  columns: 2;
  column-gap: clamp(28px, 4vw, 52px);
}

.monthly-page--waiting-close .monthly-body p {
  break-inside: avoid;
}

.monthly-page--waiting-close .monthly-body strong {
  color: #8c6b24;
}

.monthly-page--journey-transition .monthly-page-inner {
  padding: clamp(28px, 4.2vw, 62px);
}

.monthly-page--journey-transition .monthly-kicker {
  margin: 0 0 18px;
  font-size: clamp(.7rem, 1vw, .9rem);
}

.monthly-page--journey-transition .monthly-placeholder {
  height: 48%;
  margin-bottom: clamp(18px, 3vw, 36px);
}

.monthly-page--journey-transition .monthly-body {
  max-width: 30em;
  font-size: clamp(.66rem, .88vw, .88rem);
  line-height: 1.5;
}

.monthly-page--journey-transition .monthly-body p {
  margin-bottom: .42em;
}

.monthly-page--bangkok-open .monthly-page-inner {
  display: grid;
  grid-template-rows: auto auto auto minmax(180px, 42%) 1fr auto;
  gap: clamp(7px, 1vw, 13px);
  padding: clamp(24px, 3.4vw, 48px);
}

.monthly-page--bangkok-open .monthly-kicker,
.monthly-page--bangkok-open h2,
.monthly-page--bangkok-open .monthly-lead,
.monthly-page--bangkok-open footer {
  margin: 0;
}

.monthly-page--bangkok-open h2 {
  max-width: 13em;
  font-size: clamp(1.8rem, 3.45vw, 4.15rem);
}

.monthly-page--bangkok-open .monthly-lead {
  color: #625b4c;
  font-size: clamp(.78rem, 1.05vw, 1rem);
}

.monthly-page--bangkok-open .monthly-body,
.monthly-page--bangkok-portrait .monthly-body,
.monthly-page--bangkok-landscape .monthly-body,
.monthly-page--bangkok-details .monthly-body,
.monthly-page--bangkok-close .monthly-body {
  max-width: none;
  font-size: clamp(.55rem, .72vw, .72rem);
  line-height: 1.44;
}

.monthly-page--bangkok-open footer {
  padding-top: 2px;
}

.monthly-page--bangkok-portrait .monthly-page-inner {
  display: grid;
  grid-template: auto auto 1fr auto / minmax(0, .86fr) minmax(0, 1.14fr);
  grid-template-areas:
    "kicker kicker"
    "image quote"
    "image body"
    "footer footer";
  gap: clamp(12px, 1.8vw, 24px);
  padding: clamp(24px, 3.6vw, 50px);
}

.monthly-page--bangkok-portrait .monthly-kicker { grid-area: kicker; margin: 0; }
.monthly-page--bangkok-portrait .monthly-placeholder { grid-area: image; }
.monthly-page--bangkok-portrait .monthly-pull-quote { grid-area: quote; }
.monthly-page--bangkok-portrait .monthly-body { grid-area: body; }
.monthly-page--bangkok-portrait footer { grid-area: footer; margin: 0; padding: 0; }

.monthly-page--bangkok-landscape .monthly-page-inner {
  display: grid;
  grid-template: auto minmax(145px, 30%) auto 1fr auto / minmax(0, .78fr) minmax(0, 1.22fr);
  grid-template-areas:
    "kicker kicker"
    "image image"
    "quote body"
    "quote body"
    "footer footer";
  gap: clamp(10px, 1.6vw, 20px);
  padding: clamp(24px, 3.5vw, 48px);
}

.monthly-page--bangkok-landscape .monthly-kicker { grid-area: kicker; margin: 0; }
.monthly-page--bangkok-landscape .monthly-placeholder { grid-area: image; }
.monthly-page--bangkok-landscape .monthly-pull-quote { grid-area: quote; align-self: start; }
.monthly-page--bangkok-landscape .monthly-body { grid-area: body; }
.monthly-page--bangkok-landscape footer { grid-area: footer; margin: 0; padding: 0; }

.monthly-page--bangkok-details .monthly-page-inner {
  display: grid;
  grid-template-rows: auto minmax(240px, 56%) 1fr auto;
  gap: clamp(12px, 2vw, 24px);
  padding: clamp(25px, 3.8vw, 54px);
}

.monthly-page--bangkok-details .monthly-kicker,
.monthly-page--bangkok-details footer {
  margin: 0;
}

.monthly-page--bangkok-details footer {
  padding: 0;
}

.monthly-page--bangkok-partner .monthly-page-inner {
  display: grid;
  grid-template-rows: auto auto minmax(230px, 52%) auto auto auto;
  gap: clamp(10px, 1.6vw, 20px);
  padding: clamp(25px, 3.8vw, 54px);
}

.monthly-page--bangkok-partner .monthly-kicker,
.monthly-page--bangkok-partner h2,
.monthly-page--bangkok-partner footer {
  margin: 0;
}

.monthly-page--bangkok-partner h2 {
  font-size: clamp(1.55rem, 2.8vw, 3.3rem);
}

.monthly-page--bangkok-partner .monthly-body {
  max-width: 36em;
  font-size: clamp(.62rem, .82vw, .82rem);
  font-style: italic;
}

.monthly-partner-meta {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(23,27,27,.22);
  color: #6c675d;
  font-size: clamp(.48rem, .62vw, .62rem);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.monthly-partner-meta span:nth-child(2) {
  display: grid;
  width: clamp(42px, 5vw, 64px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(23,27,27,.3);
  text-align: center;
}

.monthly-partner-meta span:last-child {
  text-align: right;
}

.monthly-page--bangkok-partner footer {
  padding: 0;
}

.monthly-page--bangkok-close .monthly-page-inner {
  padding: clamp(42px, 6.5vw, 90px);
}

.monthly-page--bangkok-close .monthly-kicker {
  margin: 0 0 clamp(44px, 8vh, 96px);
}

.monthly-page--bangkok-close .monthly-body {
  max-width: 35em;
  font-size: clamp(.68rem, .92vw, .92rem);
  line-height: 1.55;
}

.monthly-page--bangkok-close .monthly-body p {
  margin-bottom: .52em;
}

.monthly-page--bangkok-close .monthly-body strong {
  color: #8c6b24;
}

.monthly-page--lens-transition .monthly-page-inner {
  padding: clamp(28px, 4.2vw, 62px);
}

.monthly-page--lens-transition .monthly-kicker {
  margin: 0 0 18px;
  font-size: clamp(.7rem, 1vw, .9rem);
}

.monthly-page--lens-transition .monthly-placeholder {
  height: 52%;
  margin-bottom: clamp(18px, 3vw, 34px);
}

.monthly-page--lens-transition .monthly-body {
  max-width: 31em;
  font-size: clamp(.64rem, .86vw, .86rem);
  line-height: 1.45;
}

.monthly-page--lens-transition .monthly-body p {
  margin-bottom: .38em;
}

.monthly-page--journey-photo-transition {
  color: #f5f0e4;
  background: #171713;
}

.monthly-page--journey-photo-transition .monthly-page-image {
  background-position: center;
  background-size: cover;
}

.monthly-page--journey-photo-transition::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,7,7,.3) 0%, rgba(5,7,7,.18) 43%, transparent 72%),
    linear-gradient(0deg, rgba(5,7,7,.32) 0%, transparent 58%);
  pointer-events: none;
}

.monthly-page--journey-photo-transition .monthly-page-inner {
  z-index: 2;
  justify-content: flex-end;
  padding: clamp(34px, 5.2vw, 74px);
}

.monthly-page--journey-photo-transition .monthly-kicker {
  margin: auto 0 10px;
  color: #e2c985;
}

.monthly-page--journey-photo-transition h2 {
  max-width: 9em;
  margin: 0 0 16px;
  font-size: clamp(1.9rem, 3.5vw, 4.2rem);
}

.monthly-page--journey-photo-transition .monthly-body {
  max-width: 29em;
  font-size: clamp(.62rem, .82vw, .82rem);
  line-height: 1.45;
  text-shadow: 0 1px 12px rgba(0,0,0,.42);
}

.monthly-page--journey-photo-transition .monthly-body p {
  margin-bottom: .45em;
}

.monthly-page--journey-photo-transition .monthly-bridge {
  width: fit-content;
  margin: 12px 0 0;
  padding: 10px 30px 0 0;
  border-color: rgba(245,240,228,.45);
  font-family: inherit;
  font-size: clamp(.5rem, .65vw, .65rem);
  font-style: normal;
  line-height: 1.35;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.monthly-page--journey-photo-transition footer {
  margin-top: 14px;
  padding-top: 0;
  color: #f5f0e4;
}

.monthly-page--lens-opening .monthly-page-inner {
  display: grid;
  grid-template: auto auto minmax(105px, 18%) 1fr auto / minmax(0, 1fr) minmax(120px, .38fr);
  grid-template-areas:
    "kicker kicker"
    "title title"
    "lead image"
    "body body"
    "footer footer";
  gap: clamp(9px, 1.4vw, 18px) clamp(18px, 2.6vw, 34px);
  padding: clamp(24px, 3.6vw, 50px) clamp(24px, 3.6vw, 50px) clamp(42px, 5vw, 68px);
}

.monthly-page--lens-opening .monthly-kicker { grid-area: kicker; margin: 0; }
.monthly-page--lens-opening h2 { grid-area: title; margin: 0; font-size: clamp(1.8rem, 3.4vw, 4rem); }
.monthly-page--lens-opening .monthly-lead { grid-area: lead; margin: 0; }
.monthly-page--lens-opening .monthly-placeholder { grid-area: image; min-height: 0; height: 100%; }
.monthly-page--lens-opening .monthly-body { grid-area: body; }
.monthly-page--lens-opening footer { grid-area: footer; margin: 0; padding: 0; }

.monthly-page--lens-opening .monthly-body {
  max-width: none;
  columns: 3;
  column-gap: clamp(12px, 1.5vw, 20px);
  font-size: clamp(.46rem, .58vw, .58rem);
  line-height: 1.34;
}

.monthly-page--lens-opening .monthly-body p {
  break-inside: avoid;
  margin-bottom: .55em;
}

.monthly-page--lens-full-photo,
.monthly-page--lens-one-frame,
.monthly-page--beyond-transition {
  color: #f5f0e4;
  background: #1d211f;
}

.monthly-page--lens-full-photo .monthly-placeholder,
.monthly-page--lens-one-frame .monthly-placeholder,
.monthly-page--beyond-transition .monthly-placeholder {
  position: absolute;
  z-index: 0;
  inset: 0;
}

.monthly-page--lens-full-photo .monthly-placeholder > div,
.monthly-page--lens-one-frame .monthly-placeholder > div,
.monthly-page--beyond-transition .monthly-placeholder > div {
  color: rgba(245,240,228,.75);
  background:
    linear-gradient(135deg, rgba(181,143,54,.14), transparent 42%),
    #343a36;
  border: 0;
}

.monthly-page--lens-full-photo .monthly-page-inner,
.monthly-page--lens-one-frame .monthly-page-inner,
.monthly-page--beyond-transition .monthly-page-inner {
  z-index: 2;
}

.monthly-page--lens-full-photo .monthly-page-inner {
  padding-bottom: clamp(42px, 5vw, 68px);
}

.monthly-page--lens-full-photo::after,
.monthly-page--lens-one-frame::after,
.monthly-page--beyond-transition::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(0deg, rgba(5,7,7,.62), transparent 68%);
  pointer-events: none;
}

.monthly-page--lens-full-photo .monthly-kicker {
  margin: 0 0 auto;
  color: #e2c985;
}

.monthly-page--lens-full-photo h2 {
  max-width: 11em;
  margin: auto 0 26px;
  color: #f5f0e4;
  font-size: clamp(1.8rem, 3.5vw, 4.2rem);
}

.monthly-photo-meta {
  display: flex;
  gap: 14px;
  padding-top: 10px;
  border-top: 1px solid rgba(245,240,228,.42);
  font-size: clamp(.48rem, .62vw, .62rem);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.monthly-page--lens-full-photo footer,
.monthly-page--lens-one-frame footer,
.monthly-page--beyond-transition footer {
  color: #f5f0e4;
}

.monthly-page--lens-behind .monthly-page-inner {
  display: grid;
  grid-template-rows: auto auto minmax(110px, 22%) 1fr auto;
  gap: clamp(8px, 1.2vw, 15px);
  padding: clamp(22px, 3.3vw, 46px) clamp(22px, 3.3vw, 46px) clamp(42px, 5vw, 68px);
}

.monthly-page--lens-behind .monthly-kicker,
.monthly-page--lens-behind h2,
.monthly-page--lens-behind footer {
  margin: 0;
}

.monthly-page--lens-behind h2 {
  font-size: clamp(1.7rem, 3.15vw, 3.8rem);
}

.monthly-editorial-blocks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(10px, 1.5vw, 18px) clamp(20px, 2.8vw, 36px);
}

.monthly-editorial-blocks section {
  min-width: 0;
  padding-top: 8px;
  border-top: 2px solid #b58f36;
}

.monthly-editorial-blocks h3,
.monthly-principles h3 {
  margin: 0 0 5px;
  font-size: clamp(.55rem, .72vw, .72rem);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.monthly-editorial-blocks p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(.45rem, .56vw, .56rem);
  line-height: 1.3;
}

.monthly-page--lens-behind footer {
  padding: 0;
}

.monthly-page--lens-framework .monthly-page-inner {
  padding: clamp(22px, 3.3vw, 46px);
}

.monthly-page--lens-framework .monthly-kicker {
  margin: 0 0 10px;
}

.monthly-page--lens-framework h2 {
  margin: 0 0 18px;
  font-size: clamp(1.7rem, 3.15vw, 3.8rem);
}

.monthly-principles {
  display: grid;
  gap: clamp(6px, .8vw, 10px);
}

.monthly-principles section {
  display: grid;
  grid-template-columns: clamp(58px, 8vw, 90px) 1fr;
  align-items: center;
  gap: clamp(12px, 1.8vw, 22px);
  padding-top: 6px;
  border-top: 1px solid rgba(23,27,27,.18);
}

.monthly-principle-image {
  display: grid;
  aspect-ratio: 1;
  place-content: center;
  padding: 6px;
  color: #716d65;
  text-align: center;
  background: #efeee9;
}

.monthly-principle-image strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(.5rem, .62vw, .62rem);
}

.monthly-principle-image span,
.monthly-principles small {
  font-size: clamp(.38rem, .48vw, .48rem);
  line-height: 1.3;
}

.monthly-principles p {
  margin: 0 0 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(.54rem, .7vw, .7rem);
  line-height: 1.35;
}

.monthly-principles small {
  color: #77786f;
  font-style: italic;
}

.monthly-page--lens-kit .monthly-page-inner {
  display: grid;
  grid-template-rows: auto auto minmax(210px, 43%) auto auto auto;
  gap: clamp(9px, 1.3vw, 16px);
  padding: clamp(24px, 3.5vw, 48px);
}

.monthly-page--lens-kit .monthly-kicker,
.monthly-page--lens-kit h2,
.monthly-page--lens-kit footer {
  margin: 0;
}

.monthly-page--lens-kit h2 {
  font-size: clamp(1.5rem, 2.7vw, 3.2rem);
}

.monthly-page--lens-kit .monthly-body {
  max-width: 39em;
  font-size: clamp(.57rem, .75vw, .75rem);
}

.monthly-partner-full {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

.monthly-partner-full span {
  display: grid;
  min-height: 30px;
  place-items: center;
  padding: 6px;
  border: 1px solid rgba(23,27,27,.24);
  color: #6c675d;
  font-size: clamp(.4rem, .5vw, .5rem);
  letter-spacing: .08em;
  text-align: center;
}

.monthly-partner-full span:last-child {
  color: #fff;
  background: #171b1b;
  font-weight: 800;
}

.monthly-page--lens-kit footer {
  padding: 0;
}

.monthly-page--lens-one-frame .monthly-kicker {
  margin: 0 0 8px;
  color: #e2c985;
}

.monthly-page--lens-one-frame h2 {
  margin: 0 0 auto;
  color: #f5f0e4;
}

.monthly-page--lens-one-frame .monthly-body {
  max-width: 31em;
  padding: 14px 16px;
  background: rgba(5,7,7,.4);
  font-size: clamp(.55rem, .72vw, .72rem);
  line-height: 1.42;
}

.monthly-page--lens-one-frame .monthly-photo-meta {
  margin-top: 12px;
}

.monthly-page--beyond-transition .monthly-page-inner {
  justify-content: flex-start;
  padding: clamp(34px, 5.2vw, 74px);
}

.monthly-page--beyond-transition .monthly-kicker {
  margin: 0 0 10px;
  color: #e2c985;
}

.monthly-page--beyond-transition h2 {
  margin: 0 0 18px;
  color: #f5f0e4;
  font-size: clamp(2.2rem, 4.2vw, 5rem);
}

.monthly-page--beyond-transition .monthly-body {
  max-width: 25em;
  font-size: clamp(.72rem, 1vw, 1rem);
  line-height: 1.5;
}

.monthly-page--beyond-transition .monthly-body p {
  margin-bottom: .3em;
}

.monthly-page--beyond-transition .monthly-page-image {
  background-position: center;
}

.monthly-page--beyond-transition::after {
  background: linear-gradient(135deg, rgba(3,5,8,.38) 0%, rgba(3,5,8,.18) 33%, transparent 62%);
}

.monthly-page--beyond-transition footer {
  margin-top: auto;
}

.monthly-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.monthly-stats > div {
  padding: 12px;
  border-top: 3px solid #b58f36;
  background: rgba(255,255,255,.7);
}

.monthly-page--photo .monthly-stats > div,
.monthly-page--experiment .monthly-stats > div {
  color: #171b1b;
}

.monthly-stats strong,
.monthly-stats span {
  display: block;
}

.monthly-stats strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.8vw, 1.8rem);
}

.monthly-stats span {
  font-size: clamp(.55rem, .75vw, .72rem);
}

.monthly-scores > div {
  display: grid;
  grid-template-columns: 80px 1fr 24px;
  gap: 12px;
  align-items: center;
  margin: 12px 0;
  font-size: .8rem;
}

.monthly-scores i {
  height: 5px;
  background: linear-gradient(90deg, #b58f36 calc(var(--score) * 10%), rgba(23,27,27,.12) 0);
}

.monthly-spine {
  position: absolute;
  z-index: 5;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  transform: translateX(-1px);
  background: linear-gradient(90deg, rgba(0,0,0,.28), rgba(255,255,255,.32), rgba(0,0,0,.3));
  box-shadow: -9px 0 20px rgba(0,0,0,.12), 9px 0 20px rgba(0,0,0,.14);
  pointer-events: none;
}

.monthly-turn-leaf {
  position: absolute;
  z-index: 7;
  top: 0;
  bottom: 0;
  width: 50%;
  display: none;
  transform-style: preserve-3d;
  will-change: transform;
}

.monthly-turn-leaf.is-active {
  display: block;
}

.monthly-turn-leaf.turns-next {
  left: 50%;
  transform-origin: left center;
}

.monthly-turn-leaf.turns-prev {
  left: 0;
  transform-origin: right center;
}

.monthly-turn-face {
  position: absolute;
  inset: 0;
  overflow: hidden;
  backface-visibility: hidden;
  background: #ffffff;
  transform-style: preserve-3d;
}

.monthly-turn-face > .monthly-page-image {
  z-index: 0;
}

.monthly-turn-face > .monthly-page-inner {
  z-index: 1;
}

.monthly-turn-front {
  box-shadow: inset -24px 0 32px -28px rgba(0,0,0,.72);
}

.monthly-turn-back {
  transform: rotateY(180deg);
  box-shadow: inset 24px 0 32px -28px rgba(0,0,0,.72);
}

.monthly-turn-leaf::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  opacity: 0;
  backface-visibility: hidden;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255,255,255,.24), transparent 18%, rgba(0,0,0,.22));
}

.monthly-stage.is-curling-next .monthly-turn-leaf.turns-next,
.monthly-stage.is-curling-prev .monthly-turn-leaf.turns-prev {
  display: block;
  transition: transform .24s cubic-bezier(.2,.7,.2,1), filter .24s ease;
}

.monthly-stage.is-curling-next .monthly-turn-leaf.turns-next {
  transform: translateX(-.5%) scaleX(.985) rotateY(-7deg) skewY(-.18deg);
  filter: drop-shadow(-10px 4px 12px rgba(0,0,0,.24));
}

.monthly-stage.is-curling-prev .monthly-turn-leaf.turns-prev {
  transform: translateX(.5%) scaleX(.985) rotateY(7deg) skewY(.18deg);
  filter: drop-shadow(10px 4px 12px rgba(0,0,0,.24));
}

.monthly-stage.is-curling-next .monthly-turn-leaf::after,
.monthly-stage.is-curling-prev .monthly-turn-leaf::after,
.monthly-stage.is-dragging .monthly-turn-leaf::after {
  opacity: calc(.12 + (var(--drag-turn) * .45));
}

.monthly-stage.is-dragging-next .monthly-turn-leaf {
  transform:
    translateX(calc(var(--drag-turn) * -2.5%))
    scaleX(calc(1 - (sin(var(--drag-turn) * 180deg) * .12)))
    rotateY(calc(var(--drag-turn) * -168deg));
}

.monthly-stage.is-dragging-prev .monthly-turn-leaf {
  transform:
    translateX(calc(var(--drag-turn) * 2.5%))
    scaleX(calc(1 - (sin(var(--drag-turn) * 180deg) * .12)))
    rotateY(calc(var(--drag-turn) * 168deg));
}

.monthly-stage.is-settling .monthly-turn-leaf,
.monthly-stage.is-cancelling .monthly-turn-leaf {
  transition: transform .5s cubic-bezier(.22,.75,.18,1);
}

.monthly-stage.is-turning-next .monthly-turn-leaf {
  animation: monthlyTurnNext .72s cubic-bezier(.4,.08,.14,1) forwards;
}

.monthly-stage.is-turning-prev .monthly-turn-leaf {
  animation: monthlyTurnPrev .72s cubic-bezier(.4,.08,.14,1) forwards;
}

@keyframes monthlyTurnNext {
  0% { transform: translateX(0) scaleX(1) rotateY(0); }
  18% { transform: translateX(-1%) scaleX(.96) rotateY(-22deg); }
  52% { transform: translateX(-2.5%) scaleX(.88) rotateY(-92deg); }
  82% { transform: translateX(-1%) scaleX(.96) rotateY(-155deg); }
  100% { transform: translateX(0) scaleX(1) rotateY(-180deg); }
}

@keyframes monthlyTurnPrev {
  0% { transform: translateX(0) scaleX(1) rotateY(0); }
  18% { transform: translateX(1%) scaleX(.96) rotateY(22deg); }
  52% { transform: translateX(2.5%) scaleX(.88) rotateY(92deg); }
  82% { transform: translateX(1%) scaleX(.96) rotateY(155deg); }
  100% { transform: translateX(0) scaleX(1) rotateY(180deg); }
}

.monthly-edge {
  position: absolute;
  z-index: 10;
  top: 10%;
  bottom: 10%;
  width: 10%;
  border: 0;
  background: transparent;
  cursor: grab;
}

.monthly-edge--prev { left: 0; }
.monthly-edge--next { right: 0; }

.monthly-edge:hover:not(:disabled) {
  background: linear-gradient(90deg, rgba(255,255,255,.08), transparent);
}

.monthly-edge--next:hover:not(:disabled) {
  background: linear-gradient(-90deg, rgba(255,255,255,.08), transparent);
}

.monthly-progress {
  height: 4px;
  background: #101516;
}

.monthly-progress i {
  display: block;
  width: 0;
  height: 100%;
  background: #c6a34f;
  transition: width .35s ease;
}

.monthly-reader-hint {
  margin: 12px 0 0;
  color: #61605a;
  text-align: center;
  font-size: .8rem;
}

.monthly-reader:fullscreen {
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: 100%;
  padding: 14px;
  background: #252b2b;
}

.monthly-reader:fullscreen .monthly-stage {
  min-height: 0;
}

@media (max-width: 760px) {
  .monthly-reader-section {
    padding-inline: 0;
  }

  .monthly-reader-head {
    padding-inline: 18px;
    align-items: start;
    flex-direction: column;
  }

  .monthly-toolbar {
    grid-template-columns: auto 1fr auto;
    border-radius: 0;
  }

  .monthly-toolbar label,
  .monthly-toolbar > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .monthly-toolbar > p {
    align-self: center;
    pointer-events: none;
  }

  .monthly-toolbar label {
    visibility: hidden;
  }

  .monthly-toolbar [data-monthly-fullscreen] {
    display: none;
  }

  .monthly-stage {
    min-height: 130vw;
    padding: 18px;
  }

  .monthly-book {
    grid-template-columns: 1fr;
    width: min(92%, 560px);
    aspect-ratio: 210 / 297;
  }

  .monthly-spine {
    display: none;
  }

  .monthly-turn-leaf {
    left: 0 !important;
    width: 100%;
  }

  .monthly-page-inner {
    padding: clamp(24px, 8vw, 48px);
  }

  .monthly-page h2 {
    font-size: clamp(2rem, 9vw, 4rem);
  }

  .monthly-page--editor .monthly-page-inner {
    padding: 20px;
  }

  .monthly-page--editor h2 {
    margin: 3px 0 6px;
    font-size: 1.28rem;
  }

  .monthly-page--editor .monthly-body {
    font-size: .47rem;
    line-height: 1.23;
  }

  .monthly-page--editor footer {
    padding-top: 5px;
  }

  .monthly-copy,
  .monthly-bridge {
    font-size: clamp(.78rem, 3.2vw, 1rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .monthly-stage::after {
    display: none;
  }

  .monthly-progress i {
    transition: none;
  }
}

/* PageFlip physics engine */

.monthly-stage {
  min-height: 0;
  padding: clamp(18px, 3vw, 44px);
  cursor: default;
  touch-action: pan-y;
}

.monthly-book {
  display: block;
  width: 100%;
  height: min(72vw, 820px);
  max-width: 1280px;
  aspect-ratio: auto;
  filter: drop-shadow(0 30px 42px rgba(0,0,0,.42));
  isolation: auto;
}

.monthly-book::before,
.monthly-book::after,
.monthly-page::before {
  display: none;
}

.monthly-book .stf__parent {
  margin: auto;
}

.monthly-page.stf__page {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #ffffff;
  box-shadow: inset 0 0 22px rgba(40,32,22,.06);
  backface-visibility: hidden;
}

.monthly-page.stf__page[data-density="hard"] {
  background: #171c1c;
}

.monthly-stage .stf__block {
  cursor: grab;
}

.monthly-stage .stf__block:active {
  cursor: grabbing;
}

@media (max-width: 760px) {
  .monthly-book {
    width: 100%;
    height: min(132vw, 720px);
  }

  .monthly-stage {
    min-height: 0;
    padding: 18px 0;
  }

  .monthly-page--contents .monthly-page-inner {
    padding: 20px 24px;
  }

  .monthly-page--contents h2 {
    margin: 10px 0;
  }

  .monthly-page--contents .monthly-contents li {
    padding: 5px 0;
  }

  .monthly-page--contents .monthly-copy {
    font-size: .7rem;
    line-height: 1.4;
  }

  .monthly-page--issue-map .monthly-page-inner {
    padding: 18px 20px;
  }

  .monthly-page--issue-map .monthly-kicker {
    margin-bottom: 6px;
    font-size: .5rem;
  }

  .monthly-page--issue-map h2 {
    margin-bottom: 4px;
    font-size: 1.65rem;
  }

  .monthly-page--issue-map .monthly-lead {
    margin-bottom: 8px;
    font-size: .75rem;
  }

  .monthly-page--issue-map .monthly-list {
    column-gap: 14px;
    margin-bottom: 8px;
  }

  .monthly-page--issue-map .monthly-list > div {
    padding: 4px 0;
  }

  .monthly-page--issue-map .monthly-list strong {
    margin-bottom: 1px;
    font-size: .63rem;
  }

  .monthly-page--issue-map .monthly-list span {
    font-size: .5rem;
    line-height: 1.22;
  }

  .monthly-page--issue-map .monthly-bridge {
    padding-top: 8px;
    font-size: .56rem;
    line-height: 1.3;
  }

  .monthly-page--issue-map footer {
    padding-top: 5px;
    font-size: .45rem;
  }

  .monthly-page--departure .monthly-page-inner {
    padding: 12px 20px 12px;
  }

  .monthly-page--departure h2 {
    margin-bottom: 7px;
    font-size: 1.18rem;
    line-height: 1.03;
  }

  .monthly-page--departure .monthly-body {
    column-gap: 12px;
    font-size: .47rem;
    line-height: 1.25;
  }

  .monthly-page--departure .monthly-body p {
    margin-bottom: .35em;
  }

  .monthly-page--departure footer {
    padding-top: 3px;
    font-size: .45rem;
  }

  .monthly-page--waiting-open-left .monthly-page-inner,
  .monthly-page--waiting-open-right .monthly-page-inner,
  .monthly-page--waiting-portrait .monthly-page-inner,
  .monthly-page--waiting-landscape .monthly-page-inner {
    padding: 18px 20px;
    gap: 8px;
  }

  .monthly-page--waiting-open-left .monthly-page-inner {
    grid-template-rows: 45% 1fr auto;
  }

  .monthly-page--waiting-open-right .monthly-page-inner {
    grid-template-rows: 45% 1fr auto;
  }

  .monthly-page--waiting-open-left .monthly-kicker,
  .monthly-page--waiting-open-right .monthly-kicker {
    top: 26px;
    left: 30px;
  }

  .monthly-page--waiting-open-left h2 {
    top: 48px;
    left: 30px;
  }

  .monthly-page--waiting-open-left h2 {
    font-size: 1.8rem;
  }

  .monthly-page--waiting-open-left .monthly-body,
  .monthly-page--waiting-open-right .monthly-body,
  .monthly-page--waiting-portrait .monthly-body,
  .monthly-page--waiting-landscape .monthly-body,
  .monthly-page--waiting-close .monthly-body {
    font-size: .47rem;
    line-height: 1.28;
  }

  .monthly-page--waiting-portrait .monthly-page-inner {
    grid-template-columns: .78fr 1.22fr;
  }

  .monthly-page--waiting-landscape .monthly-page-inner {
    grid-template-rows: auto 31% auto 1fr auto;
  }

  .monthly-pull-quote {
    padding: 7px 0;
    font-size: .68rem;
  }

  .monthly-placeholder span,
  .monthly-placeholder figcaption {
    font-size: .42rem;
  }

  .monthly-page--waiting-close .monthly-page-inner,
  .monthly-page--journey-transition .monthly-page-inner {
    padding: 24px;
  }

  .monthly-page--waiting-close .monthly-kicker {
    margin-bottom: 36px;
  }

  .monthly-page--journey-transition .monthly-placeholder {
    height: 44%;
    margin-bottom: 14px;
  }

  .monthly-page--journey-transition .monthly-body {
    font-size: .54rem;
    line-height: 1.32;
  }

  .monthly-page--bangkok-open .monthly-page-inner,
  .monthly-page--bangkok-portrait .monthly-page-inner,
  .monthly-page--bangkok-landscape .monthly-page-inner,
  .monthly-page--bangkok-details .monthly-page-inner,
  .monthly-page--bangkok-partner .monthly-page-inner {
    padding: 18px 20px;
    gap: 8px;
  }

  .monthly-page--bangkok-open .monthly-page-inner {
    grid-template-rows: auto auto auto 34% 1fr auto;
  }

  .monthly-page--bangkok-open h2 {
    font-size: 1.55rem;
  }

  .monthly-page--bangkok-open .monthly-lead {
    font-size: .7rem;
  }

  .monthly-page--bangkok-open .monthly-body,
  .monthly-page--bangkok-portrait .monthly-body,
  .monthly-page--bangkok-landscape .monthly-body,
  .monthly-page--bangkok-details .monthly-body {
    font-size: .45rem;
    line-height: 1.23;
  }

  .monthly-page--bangkok-portrait .monthly-page-inner {
    grid-template-columns: .74fr 1.26fr;
  }

  .monthly-page--bangkok-landscape .monthly-page-inner {
    grid-template-rows: auto 26% auto 1fr auto;
    grid-template-columns: .7fr 1.3fr;
  }

  .monthly-page--bangkok-details .monthly-page-inner {
    grid-template-rows: auto 53% 1fr auto;
  }

  .monthly-page--bangkok-partner .monthly-page-inner {
    grid-template-rows: auto auto 48% auto auto auto;
  }

  .monthly-page--bangkok-partner h2 {
    font-size: 1.25rem;
  }

  .monthly-page--bangkok-partner .monthly-body,
  .monthly-page--bangkok-close .monthly-body,
  .monthly-page--lens-transition .monthly-body {
    font-size: .52rem;
    line-height: 1.3;
  }

  .monthly-page--bangkok-close .monthly-page-inner,
  .monthly-page--lens-transition .monthly-page-inner {
    padding: 24px;
  }

  .monthly-page--bangkok-close .monthly-kicker {
    margin-bottom: 36px;
  }

  .monthly-page--lens-transition .monthly-placeholder {
    height: 47%;
    margin-bottom: 14px;
  }

  .monthly-page--journey-photo-transition .monthly-page-inner {
    padding: 28px;
  }

  .monthly-page--journey-photo-transition h2 {
    margin-bottom: 10px;
    font-size: 1.65rem;
  }

  .monthly-page--journey-photo-transition .monthly-body {
    max-width: 26em;
    font-size: .53rem;
    line-height: 1.32;
  }

  .monthly-page--journey-photo-transition .monthly-bridge {
    margin-top: 8px;
    padding-top: 7px;
    font-size: .43rem;
  }

  .monthly-page--lens-opening .monthly-page-inner,
  .monthly-page--lens-behind .monthly-page-inner,
  .monthly-page--lens-framework .monthly-page-inner,
  .monthly-page--lens-kit .monthly-page-inner {
    padding: 18px 20px 32px;
    gap: 7px;
  }

  .monthly-page--lens-opening .monthly-page-inner {
    grid-template-columns: 1fr .38fr;
    grid-template-rows: auto auto 16% 1fr auto;
  }

  .monthly-page--lens-opening h2,
  .monthly-page--lens-behind h2,
  .monthly-page--lens-framework h2 {
    font-size: 1.45rem;
  }

  .monthly-page--lens-opening .monthly-lead {
    font-size: .68rem;
  }

  .monthly-page--lens-opening .monthly-body {
    column-gap: 7px;
    font-size: .38rem;
    line-height: 1.17;
  }

  .monthly-page--lens-behind .monthly-page-inner {
    grid-template-rows: auto auto 19% 1fr auto;
  }

  .monthly-editorial-blocks {
    gap: 6px 12px;
  }

  .monthly-editorial-blocks p {
    font-size: .37rem;
    line-height: 1.16;
  }

  .monthly-principles {
    gap: 4px;
  }

  .monthly-principles section {
    grid-template-columns: 54px 1fr;
    gap: 9px;
    padding-top: 4px;
  }

  .monthly-principles p {
    font-size: .48rem;
    line-height: 1.2;
  }

  .monthly-principles small,
  .monthly-principle-image span {
    font-size: .34rem;
  }

  .monthly-page--lens-kit .monthly-page-inner {
    grid-template-rows: auto auto 39% auto auto auto;
  }

  .monthly-page--lens-kit .monthly-body,
  .monthly-page--lens-one-frame .monthly-body,
  .monthly-page--beyond-transition .monthly-body {
    font-size: .5rem;
    line-height: 1.28;
  }

  .monthly-partner-full span {
    min-height: 25px;
    font-size: .34rem;
  }

  .monthly-page--lens-full-photo h2 {
    font-size: 1.65rem;
  }

  .monthly-page--lens-one-frame .monthly-body {
    padding: 10px;
  }
}

/* Travel Weekly */

.magazine-eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.weekly-hero {
  padding: 86px 0 54px;
  background: var(--warm);
  border-bottom: 1px solid var(--line);
}

.weekly-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 54px;
  align-items: end;
}

.weekly-hero-copy h1 {
  max-width: 760px;
  font-size: clamp(3rem, 6vw, 5.8rem);
}

.weekly-hero-copy > p:not(.magazine-eyebrow) {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.06rem;
}

.weekly-subheadline {
  margin: 22px 0 10px;
  color: var(--ink) !important;
  font-size: clamp(1.25rem, 2vw, 1.65rem) !important;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.25;
}

.weekly-hero-actions,
.weekly-card-actions,
.weekly-archive-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.weekly-hero-panel {
  display: grid;
  gap: 18px;
}

.weekly-jump {
  display: grid;
  gap: 8px;
}

.weekly-jump label,
.weekly-label,
.weekly-date {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.weekly-jump select {
  min-height: 48px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  color: var(--ink);
  font: inherit;
  font-weight: 750;
  padding: 0 12px;
}

.weekly-mini-cover,
.weekly-featured-cover,
.weekly-cover {
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.18), rgba(17, 17, 17, 0.02)),
    var(--warm-2) center/cover;
  border: 1px solid var(--line);
}

.weekly-mini-cover {
  aspect-ratio: var(--magazine-page-ratio);
  box-shadow: var(--shadow);
}

.weekly-featured {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.weekly-featured-cover {
  aspect-ratio: var(--magazine-page-ratio);
  min-height: 420px;
}

.weekly-featured-copy h3,
.weekly-issue-body h3,
.weekly-signup h2 {
  margin: 8px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.05;
}

.weekly-featured-copy > p,
.weekly-issue-body p,
.weekly-signup p {
  color: var(--muted);
}

.weekly-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 18px;
}

.weekly-meta span,
.weekly-signup-note {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #34413f;
  background: var(--warm);
  font-size: 0.78rem;
  font-weight: 750;
}

.weekly-date {
  margin: 0 0 14px;
  color: var(--olive);
}

.weekly-signup {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1fr);
  gap: 24px;
  margin-top: 30px;
  padding: 28px;
  border: 1px solid var(--line);
  background: #fbfcf8;
}

.weekly-signup h2 {
  font-size: clamp(1.5rem, 2.4vw, 2.25rem);
}

.systeme-form-shell {
  align-self: center;
}

.systeme-placeholder {
  display: grid;
  min-height: 150px;
  place-items: center;
  padding: 22px;
  border: 1px dashed rgba(47, 125, 120, 0.55);
  border-radius: 8px;
  background: white;
  color: var(--muted);
  text-align: center;
}

.weekly-form {
  max-width: none;
}

.weekly-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.weekly-issue-card {
  display: grid;
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--paper);
}

.weekly-cover {
  aspect-ratio: var(--magazine-page-ratio);
}

.weekly-issue-body {
  padding: 22px;
}

.weekly-issue-body h3 {
  font-size: 1.45rem;
}

.weekly-affiliate-links {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.weekly-affiliate-links p {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.weekly-affiliate-links div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.weekly-affiliate-links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 750;
}

.weekly-affiliate-links a:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.weekly-card-actions {
  margin-top: 18px;
}

.weekly-archive-link {
  margin: 26px 0 0;
}

.travel-weekly-header {
  text-align: center;
  padding: 80px 0 60px;
}

.travel-weekly-header h1 {
  margin: 0 0 16px;
}

.travel-weekly-header > div > p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--muted);
}

.issue-detail-hero .weekly-meta {
  justify-content: center;
}

.weekly-issue-layout {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.weekly-issue-aside {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 18px;
}

.weekly-issue-aside img {
  width: 100%;
  aspect-ratio: var(--magazine-page-ratio);
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.weekly-reader,
.weekly-preview {
  min-width: 0;
}

.weekly-reader-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.weekly-reader-head h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1;
}

.pdf-viewer {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0f1516;
  box-shadow: var(--shadow);
}

.pdf-toolbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: #101416;
  color: white;
}

.pdf-toolbar .button {
  min-height: 38px;
  border-color: rgba(255, 255, 255, 0.24);
  color: white;
}

.pdf-toolbar span {
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 750;
}

.pdf-stage {
  position: relative;
  min-height: 680px;
  background: #20282a;
}

.pdf-stage iframe {
  width: 100%;
  height: min(82vh, 820px);
  min-height: 680px;
  border: 0;
  background: white;
}

.pdf-fallback {
  margin: 0;
  padding: 12px 16px;
  background: white;
  color: var(--muted);
  font-size: 0.9rem;
}

.pdf-fallback a {
  color: var(--accent-dark);
  font-weight: 800;
}

@media (max-width: 940px) {
  .weekly-hero-grid,
  .weekly-featured,
  .weekly-signup,
  .weekly-issue-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .weekly-issue-aside {
    position: static;
  }

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

  .weekly-featured-cover {
    min-height: 0;
  }
}

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

  .weekly-hero {
    padding: 58px 0 42px;
  }

  .weekly-signup {
    padding: 20px;
  }

  .weekly-hero-actions .button,
  .weekly-card-actions .button,
  .weekly-form .button,
  .weekly-reader-head .button {
    width: 100%;
  }

  .weekly-reader-head {
    align-items: stretch;
    flex-direction: column;
  }

  .pdf-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .pdf-toolbar span {
    margin: 4px 0;
    text-align: center;
  }

  .pdf-stage,
  .pdf-stage iframe {
    min-height: 520px;
  }
}
