@import url('https://fonts.googleapis.com/css2?family=Alegreya+SC:wght@600&family=Cinzel:wght@500;600&family=DM+Serif+Display&family=Inter:wght@400;500;600;700&family=Marcellus&family=Montserrat+Alternates:wght@600&family=Orbitron:wght@600&family=Playfair+Display:wght@700&family=Rajdhani:wght@600&display=swap');

:root {
  --bg-1: #030507;
  --bg-2: #07151d;
  --ink: #f4fbff;
  --muted: #9cb4ca;
  --soft: rgba(226, 237, 247, 0.8);
  --panel: rgba(7, 17, 26, 0.62);
  --panel-strong: rgba(13, 26, 39, 0.86);
  --panel-border: rgba(122, 207, 238, 0.26);
  --focus-accent: #d7dee8;
  --line: rgba(255, 255, 255, 0.12);
  --aura: rgba(82, 184, 215, 0.18);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  min-height: 100%;
  overflow-x: clip;
  background: #030507;
  overscroll-behavior-x: none;
  overscroll-behavior-y: none;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: clip;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(980px 560px at 50% 31%, var(--aura), transparent 66%),
    linear-gradient(180deg, var(--bg-1), var(--bg-2) 54%, #041015);
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 20px clamp(18px, 4vw, 54px);
  background: linear-gradient(180deg, rgba(3, 8, 12, 0.88), rgba(3, 8, 12, 0));
}

.brand {
  width: fit-content;
  font-family: "Cinzel", Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: clamp(16px, 3vw, 34px);
  color: var(--soft);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a,
.subscribe-link,
.hero-actions a,
.back-link,
.upload-cta {
  text-decoration: none;
}

.site-nav a:hover,
.subscribe-link:hover {
  color: var(--ink);
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* When `subscribe-link` is placed directly in the header (no .header-actions wrapper),
   prevent it from stretching to fill the grid column and keep it right-aligned. */
.site-header > .subscribe-link {
  justify-self: end;
  align-self: center;
  display: inline-flex;
}

.continent-menu {
  position: relative;
}


.continent-menu summary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 14px 0 16px;
  color: var(--soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  list-style: none;
  background: rgba(255, 255, 255, 0.055);
  box-shadow:
    inset 0 0 18px rgba(122, 207, 238, 0.08),
    0 10px 30px rgba(0, 0, 0, 0.14);
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.continent-menu summary::-webkit-details-marker {
  display: none;
}

.continent-menu summary::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.continent-menu[open] summary::after {
  transform: translateY(2px) rotate(225deg);
}

.continent-menu summary:hover,
.continent-menu[open] summary {
  color: var(--ink);
  border-color: rgba(126, 220, 226, 0.42);
  background: rgba(126, 220, 226, 0.09);
}

.continent-menu-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  min-width: 190px;
  padding: 8px;
  border: 1px solid rgba(126, 220, 226, 0.18);
  border-radius: 18px;
  background: rgba(8, 17, 27, 0.96);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.42);
}

.continent-menu-panel a {
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--soft);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

.continent-menu-panel a:hover {
  color: var(--ink);
  background: rgba(126, 220, 226, 0.1);
}

.continent-menu-panel a:focus {
  outline: 1px solid rgba(126, 220, 226, 0.42);
  outline-offset: -1px;
}

.subscribe-link {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--soft);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(77, 205, 238, 0.09);
  box-shadow: inset 0 0 22px rgba(72, 198, 232, 0.08);
}

.landing {
  overflow: hidden;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  min-height: 100vh;
  padding: 92px clamp(18px, 4vw, 54px) 88px;
  gap: 8px;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 12% 18% 7%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(126, 220, 226, 0.1), transparent 62%);
  border: 0;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 4;
  display: grid;
  justify-items: center;
  max-width: 760px;
  margin-bottom: -18px;
}

.eyebrow,
.section-heading span,
.article-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 4px 0 2px;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(64px, 12vw, 158px);
  font-weight: 600;
  line-height: 0.86;
  letter-spacing: 0.04em;
  text-shadow:
    0 18px 50px rgba(0, 0, 0, 0.56),
    0 0 44px rgba(67, 184, 224, 0.22);
}

.hero-copy p {
  max-width: 670px;
  margin: 0 auto;
  color: var(--soft);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  justify-content: center;
}

.hero-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.05);
}

.hero-actions a:first-child {
  border-color: rgba(89, 215, 238, 0.36);
  background: rgba(55, 190, 224, 0.16);
}

.globe-shell {
  position: relative;
  justify-self: center;
  width: min(76vh, 82vw, 760px);
  min-width: min(90vw, 440px);
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  border: 1px solid var(--panel-border);
  background:
    radial-gradient(circle at 50% 50%, rgba(45, 93, 122, 0.24), transparent 56%),
    radial-gradient(circle at 24% 28%, rgba(255, 255, 255, 0.55) 0 1px, transparent 1.5px),
    radial-gradient(circle at 72% 36%, rgba(255, 255, 255, 0.45) 0 1px, transparent 1.5px),
    radial-gradient(circle at 58% 72%, rgba(255, 255, 255, 0.38) 0 1px, transparent 1.5px),
    radial-gradient(circle at 35% 78%, rgba(126, 220, 226, 0.34) 0 1px, transparent 1.5px),
    var(--panel);
  background-size: auto, 120px 120px, 150px 150px, 180px 180px, 210px 210px, auto;
  box-shadow:
    inset 0 0 92px rgba(62, 178, 218, 0.16),
    0 0 120px rgba(38, 181, 220, 0.16),
    0 42px 120px rgba(0, 0, 0, 0.66);
  overflow: hidden;
  z-index: 2;
}

.globe-shell::before {
  content: "";
  position: absolute;
  inset: -14%;
  border-radius: inherit;
  background: radial-gradient(circle, color-mix(in srgb, var(--focus-accent), transparent 78%), transparent 56%);
  opacity: 0.72;
  pointer-events: none;
}

.globe-shell::after {
  content: "";
  position: absolute;
  inset: 7%;
  border-radius: inherit;
  border: 1px solid color-mix(in srgb, var(--focus-accent), transparent 76%);
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 280ms ease, transform 420ms ease;
  pointer-events: none;
}

.globe-shell.is-focused::after {
  opacity: 1;
  transform: scale(1);
}

#globeViz {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: grab;
}

#globeViz.is-clickable {
  cursor: pointer;
}

.continent-focus {
  position: absolute;
  left: 50%;
  bottom: 11%;
  min-width: min(320px, 70vw);
  transform: translate(-50%, 14px);
  opacity: 0;
  text-align: center;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.68);
  transition: opacity 220ms ease, transform 280ms ease;
  pointer-events: none;
}

.continent-focus.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.focus-kicker {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.focus-name {
  display: block;
  color: var(--focus-accent);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(27px, 5vw, 54px);
  line-height: 0.98;
}

.hint {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  z-index: 3;
}

.section-band,
.newsletter-section,
.continent-desk {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 76px 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
}

.section-heading h2,
.newsletter-section h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  max-width: 780px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.continent-desk {
  position: relative;
}

.continent-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.continent-link {
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: var(--ink);
  text-decoration: none;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(20px, 2.5vw, 34px);
  background: rgba(255, 255, 255, 0.035);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.continent-link:hover {
  transform: translateY(-2px);
  border-color: rgba(126, 220, 226, 0.34);
  background: rgba(126, 220, 226, 0.08);
}

.article-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}

.article-card,
.metric-panel {
  min-height: 0;
  padding: 24px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.article-card {
  display: grid;
  grid-template-columns: minmax(160px, 0.34fr) minmax(280px, 0.82fr) minmax(220px, 0.58fr);
  align-items: start;
  gap: 28px;
  border-bottom: 1px solid var(--line);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.region-tag {
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid rgba(126, 220, 226, 0.2);
  border-radius: 999px;
  color: var(--soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  background: rgba(126, 220, 226, 0.06);
}

.article-card h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.05;
}

.article-card h3 a {
  text-decoration: none;
  color: inherit;
}

.article-card p {
  margin: 0;
  color: var(--soft);
  line-height: 1.55;
  font-size: 16px;
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.metric-panel {
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: start;
  gap: 12px 16px;
  padding: 22px;
  min-height: 190px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.035);
}

.metric-panel span {
  color: var(--muted);
  font-family: "Rajdhani", sans-serif;
  font-size: 30px;
  line-height: 1;
}

.metric-panel strong {
  max-width: 260px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26px;
  line-height: 1.05;
}

.metric-panel p {
  grid-column: 2;
  margin: 0;
  color: var(--soft);
  line-height: 1.5;
}

.newsletter-section {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 430px);
  align-items: end;
  gap: 28px;
  padding-bottom: 110px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input,
.newsletter-form button {
  min-height: 48px;
  border-radius: 999px;
  font: inherit;
}

.newsletter-form input {
  width: 100%;
  border: 1px solid var(--line);
  padding: 0 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
}

.newsletter-form button {
  border: 0;
  padding: 0 18px;
  color: #071016;
  font-weight: 800;
  background: var(--ink);
}

.simple-page {
  min-height: 100vh;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 18px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 132px 0 90px;
  text-align: center;
}

.simple-page h1,
.continent-page h1 {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(44px, 10vw, 120px);
  letter-spacing: 0.04em;
}

.simple-page p {
  margin: 0 auto 16px;
  max-width: 620px;
  color: var(--soft);
  font-size: 20px;
  line-height: 1.55;
}

.page-article-list {
  width: 100%;
  margin: 24px 0;
  text-align: left;
}

.back-link {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
}

.back-link:hover {
  color: var(--ink);
}

.continent-body {
  --aura: color-mix(in srgb, var(--continent-accent), transparent 72%);
}

.theme-africa {
  --bg-2: #1b1110;
}

.theme-asia {
  --bg-2: #101326;
}

.theme-europe {
  --bg-2: #071923;
}

.theme-north-america {
  --bg-2: #0b1b14;
}

.theme-south-america {
  --bg-2: #1d180b;
}

.theme-oceania {
  --bg-2: #151024;
}

.theme-antarctica {
  --bg-2: #0b1820;
}

.continent-page,
.upload-page,
.article-page {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 132px 0 90px;
}

.continent-hero {
  min-height: 52vh;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 14px;
  border-bottom: 1px solid var(--line);
}

.continent-hero h1,
.upload-intro h1,
.article-page h1 {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(56px, 13vw, 170px);
  line-height: 0.9;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-shadow: 0 0 54px color-mix(in srgb, var(--continent-accent, #7edce2), transparent 72%);
}

.continent-hero p,
.upload-intro p,
.article-summary {
  max-width: 720px;
  margin: 0;
  color: var(--soft);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.55;
}

.upload-cta,
.article-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 44px;
  margin-top: 8px;
  padding: 0 18px;
  border: 1px solid color-mix(in srgb, var(--continent-accent, #7edce2), transparent 48%);
  border-radius: 999px;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  background: color-mix(in srgb, var(--continent-accent, #7edce2), transparent 86%);
  cursor: pointer;
}

.continent-articles {
  padding-top: 72px;
}

.empty-state {
  padding: 42px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.empty-state h2 {
  margin: 0 0 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 5vw, 64px);
}

.empty-state p {
  max-width: 620px;
  margin: 0;
  color: var(--soft);
  line-height: 1.55;
}

.upload-page {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1fr);
  gap: clamp(28px, 7vw, 88px);
  align-items: start;
}

.upload-intro {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 14px;
}

.upload-intro h1 {
  font-size: clamp(48px, 8vw, 110px);
}

.article-form {
  display: grid;
  gap: 18px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.035);
}

.article-form label {
  display: grid;
  gap: 8px;
}

.article-form label span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-form input,
.article-form select,
.article-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: rgba(4, 12, 17, 0.72);
}

.article-form textarea {
  resize: vertical;
}

.article-form select option {
  color: #071016;
}

.form-error {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(236, 154, 116, 0.4);
  border-radius: 16px;
  color: #ffd0c0;
  background: rgba(236, 154, 116, 0.09);
}

.article-page {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 160px;
  padding-bottom: 120px;
}

.article-page .back-link {
  display: inline-block;
  margin-bottom: 40px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 180ms ease;
}

.article-page .back-link:hover {
  color: var(--ink);
}

.article-header {
  margin-bottom: 48px;
  max-width: 960px;
}

.article-page .article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.article-page .article-meta .category-tag,
.article-page .article-meta .date-tag {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-page .region-tag {
  padding: 6px 14px;
  border: 1px solid color-mix(in srgb, var(--continent-accent, #7edce2), transparent 72%);
  border-radius: 999px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: color-mix(in srgb, var(--continent-accent, #7edce2), transparent 88%);
}

.article-page h1 {
  margin: 0 0 24px 0;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.15;
  color: var(--ink);
  text-shadow: 0 0 44px color-mix(in srgb, var(--continent-accent, #7edce2), transparent 82%);
}

.article-page .article-summary {
  margin: 0;
  color: var(--soft);
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 24px);
  line-height: 1.7;
}

/* Redesigned Article Body: Spacious, clean, no box enclosing */
.article-body {
  margin-top: 48px;
  max-width: 960px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
}

.article-body p {
  margin: 0 0 28px;
  color: var(--soft);
  font-size: clamp(18px, 1.8vw, 20px);
  line-height: 1.85;
}

.article-body > *:last-child {
  margin-bottom: 0;
}

.article-body h2,
.article-body h3,
.article-body h4 {
  margin: 56px 0 24px;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.25;
}

.article-body h2 {
  font-size: clamp(28px, 3.5vw, 36px);
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

.article-body h3 {
  font-size: clamp(24px, 3vw, 30px);
}

.article-body ul,
.article-body ol {
  margin: 0 0 28px;
  padding-left: 28px;
  color: var(--soft);
  font-size: clamp(18px, 1.8vw, 20px);
  line-height: 1.8;
}

.article-body li {
  margin-bottom: 12px;
}

.article-body li:last-child {
  margin-bottom: 0;
}

.article-body blockquote {
  position: relative;
  margin: 44px 0;
  padding: 24px 32px;
  border-left: 4px solid var(--continent-accent, #7edce2);
  color: color-mix(in srgb, var(--soft), white 20%);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 0 16px 16px 0;
}

.article-body blockquote p {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 22px);
  line-height: 1.65;
}

.article-body a {
  color: var(--continent-accent, #7edce2);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: opacity 180ms ease;
}

.article-body a:hover {
  opacity: 0.8;
}

/* Disable decorative animated underline applied via JS/tsx component */
.text-decoration-animate::after {
  display: none !important;
}

/* Ensure heading links don't show underlines */
.section-heading h2 a,
.article-card h3 a {
  text-decoration: none;
  color: inherit;
}

.article-body hr {
  margin: 48px 0;
  border: 0;
  border-top: 1px solid var(--line);
}

/* --- Read Next Section --- */
.read-next-section {
  grid-column: 1 / -1;
  margin-top: 88px;
  padding-top: 64px;
  border-top: 1px solid var(--line);
}

.read-next-header {
  margin-bottom: 36px;
}

.read-next-header .kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.read-next-header h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--ink);
}

.read-next-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.read-next-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.02);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.read-next-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--continent-accent, #7edce2), transparent 60%);
  background: rgba(255, 255, 255, 0.04);
}

.read-next-card .card-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.read-next-card .card-region {
  color: var(--continent-accent, #7edce2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.read-next-card .card-category {
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.read-next-card h3 {
  margin: 0 0 12px 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(20px, 2.5vw, 26px);
  line-height: 1.25;
  color: var(--ink);
}

.read-next-card h3 a {
  text-decoration: none;
  color: inherit;
}

.read-next-card h3 a:hover {
  color: var(--continent-accent, #7edce2);
}

.read-next-card p {
  margin: 0;
  color: var(--soft);
  font-size: 15px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero-copy {
    max-width: 760px;
  }

  .globe-shell {
    width: min(78vh, 90vw, 700px);
  }

  .article-page {
    padding-top: 130px;
    padding-bottom: 80px;
  }

  .article-body {
    margin-top: 24px;
  }

  .article-grid,
  .visual-grid,
  .newsletter-section {
    grid-template-columns: 1fr;
  }

  .article-card {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .metric-panel {
    border-radius: 30px;
  }

  .upload-page {
    grid-template-columns: 1fr;
  }

  .upload-intro {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 14px 16px;
    gap: 10px;
  }

  .subscribe-link {
    padding: 9px 12px;
    font-size: 11px;
  }

  .header-actions {
    justify-self: center;
    gap: 8px;
  }

  .continent-menu summary {
    min-height: 36px;
    padding-inline: 12px;
    font-size: 10px;
  }

  .continent-menu-panel {
    min-width: 170px;
  }

  .hero {
    padding: 134px 16px 56px;
  }

  .hero-copy h1 {
    font-size: clamp(58px, 22vw, 104px);
  }

  .globe-shell {
    min-width: 0;
    width: min(96vw, 540px);
  }

  .continent-links {
    gap: 10px;
  }

  .continent-link {
    min-height: 48px;
    padding: 0 16px;
  }

  .article-card,
  .metric-panel {
    padding: 22px 4px;
  }

  .article-page {
    padding-top: 134px;
    padding-bottom: 78px;
  }

  .article-page h1 {
    font-size: clamp(30px, 10vw, 46px);
  }

  .article-body {
    padding: 0;
  }

  .metric-panel {
    grid-template-columns: 1fr;
  }

  .metric-panel p {
    grid-column: auto;
  }

  .hint {
    position: static;
    margin-top: 4px;
  }

  .newsletter-form {
    flex-direction: column;
  }
}
