:root {
  --paper: #f0ede6;
  --paper-deep: #e5dfd3;
  --ink: #1c211e;
  --muted: #6f756f;
  --line: rgba(28, 33, 30, 0.18);
  --coffee: #a54a2b;
  --forest: #1f3a31;
  --cream: #eee8dc;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, "PingFang SC", "Hiragino Sans GB", sans-serif;
}

button,
a {
  font: inherit;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--coffee);
  outline-offset: 4px;
}

main {
  min-height: 100vh;
  overflow: hidden;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  padding: 26px 5vw;
  border-bottom: 1px solid var(--line);
}

.site-header p,
.panel-meta,
.profile-topline,
.eyebrow,
.sources > span {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.site-header > p {
  color: var(--muted);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: inherit;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 16px;
  height: 22px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  transform: rotate(22deg);
}

.brand-mark::after {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 7px;
  width: 1px;
  background: currentColor;
  transform: rotate(16deg);
}

.intro {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 8vw;
  align-items: end;
  max-width: 1440px;
  margin: 0 auto;
  padding: 72px 5vw 64px;
}

.eyebrow {
  color: var(--coffee);
  margin-bottom: 22px;
}

.intro h1,
.profile-hero h2 {
  margin: 0;
  font-family: Georgia, "Songti SC", "SimSun", serif;
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.intro h1 {
  max-width: 780px;
  font-size: clamp(50px, 7.1vw, 102px);
}

.intro-copy {
  max-width: 470px;
  margin: 0 0 4px;
  color: #5d625d;
  font-family: Georgia, "Songti SC", serif;
  font-size: 17px;
  line-height: 1.85;
}

.explorer {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(330px, 0.75fr);
  max-width: 1440px;
  min-height: 620px;
  margin: 0 auto 88px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.18);
}

.map-panel,
.country-panel {
  position: relative;
  padding: 24px 28px 26px;
}

.map-panel {
  min-width: 0;
  border-right: 1px solid var(--line);
}

.panel-meta {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
}

.world-map {
  position: relative;
  height: 510px;
  margin: 28px 0 10px;
  overflow: hidden;
  background: #e9e4da;
}

.map-grid {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image: linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 12.5% 25%;
}

.continent {
  position: absolute;
  z-index: 1;
  display: block;
  background: rgba(66, 86, 73, 0.58);
  filter: saturate(0.7);
}

.north-america {
  top: 18%;
  left: 8%;
  width: 29%;
  height: 28%;
  border-radius: 58% 32% 62% 33% / 42% 53% 38% 60%;
  transform: rotate(10deg) skewX(-8deg);
}

.north-america::before {
  content: "";
  position: absolute;
  top: -21%;
  left: 14%;
  width: 44%;
  height: 42%;
  border-radius: 60% 25% 55% 40%;
  background: inherit;
  transform: rotate(-18deg);
}

.north-america::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -11%;
  width: 34%;
  height: 34%;
  border-radius: 50%;
  background: inherit;
  transform: rotate(45deg);
}

.south-america {
  top: 48%;
  left: 30%;
  width: 14%;
  height: 37%;
  border-radius: 48% 50% 72% 32% / 24% 38% 70% 78%;
  transform: rotate(17deg);
}

.europe {
  top: 25%;
  left: 48%;
  width: 16%;
  height: 13%;
  border-radius: 47% 55% 42% 58%;
  transform: rotate(-7deg);
}

.africa {
  top: 39%;
  left: 50%;
  width: 17%;
  height: 32%;
  border-radius: 46% 52% 67% 43% / 35% 30% 72% 67%;
  transform: rotate(-8deg);
}

.asia {
  top: 18%;
  left: 60%;
  width: 34%;
  height: 32%;
  border-radius: 35% 62% 45% 52% / 45% 38% 55% 48%;
  transform: rotate(4deg);
}

.oceania {
  top: 65%;
  left: 82%;
  width: 12%;
  height: 13%;
  border-radius: 45% 58% 42% 67%;
  transform: rotate(-16deg);
}

.map-point {
  position: absolute;
  z-index: 4;
  top: 52%;
  left: 29%;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.point-ring {
  position: absolute;
  inset: 0;
  border: 1px solid var(--coffee);
  border-radius: 50%;
  animation: pointPulse 2.4s ease-out infinite;
}

.point-dot {
  position: absolute;
  inset: 11px;
  border-radius: 50%;
  background: var(--coffee);
  box-shadow: 0 0 0 4px rgba(240, 237, 230, 0.72);
}

.point-label {
  position: absolute;
  top: 6px;
  left: 42px;
  width: max-content;
  padding: 5px 8px;
  background: var(--ink);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.map-point:hover .point-label,
.map-point.is-selected .point-label {
  background: var(--coffee);
}

@keyframes pointPulse {
  0% {
    opacity: 1;
    transform: scale(0.6);
  }
  80%,
  100% {
    opacity: 0;
    transform: scale(1.25);
  }
}

.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.legend-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #a9aaa4;
}

.legend-dot.active {
  background: var(--coffee);
}

.legend-dot.featured-dot {
  border: 1px solid #b8603f;
  background: transparent;
}

.country-panel {
  display: flex;
  flex-direction: column;
}

.country-list {
  margin-top: 23px;
  border-top: 1px solid var(--line);
}

.country-row {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  width: 100%;
  min-height: 82px;
  padding: 12px 4px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: inherit;
  text-align: left;
}

button.country-row {
  cursor: pointer;
  transition: padding 180ms ease, color 180ms ease, background 180ms ease;
}

button.country-row:hover,
button.country-row.is-selected {
  padding-right: 12px;
  padding-left: 12px;
  background: var(--ink);
  color: white;
}

.country-number,
.country-name small,
.coming-soon {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.country-row.is-featured .country-number {
  color: #a65d43;
}

.country-name {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.country-name b {
  font-family: Georgia, "Songti SC", serif;
  font-size: 20px;
  font-weight: 400;
}

button.country-row:hover .country-number,
button.country-row:hover .country-name small,
button.country-row.is-selected .country-number,
button.country-row.is-selected .country-name small {
  color: #aaa9a2;
}

.country-action {
  font-size: 22px;
  transition: transform 180ms ease;
}

button.country-row:hover .country-action {
  transform: translate(3px, -3px);
}

.country-row.is-locked {
  opacity: 0.56;
}

.panel-note {
  margin: auto 0 0;
  padding-top: 28px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.origin-profile {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  background: var(--forest);
  color: var(--cream);
}

.origin-profile.is-visible {
  position: relative;
  width: auto;
  height: auto;
  padding: 0 max(5vw, calc((100vw - 1440px) / 2));
  overflow: visible;
  opacity: 1;
  animation: profileReveal 500ms ease both;
}

@keyframes profileReveal {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.profile-topline {
  display: flex;
  justify-content: space-between;
  padding: 28px 0;
  border-bottom: 1px solid rgba(238, 232, 220, 0.22);
  color: #aaa99f;
}

.profile-topline button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  letter-spacing: inherit;
}

.profile-topline button:hover {
  color: white;
}

.profile-hero {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 8vw;
  align-items: end;
  padding: 88px 0 82px;
}

.eyebrow.light {
  color: #c78b6e;
}

.profile-hero h2 {
  font-size: clamp(64px, 10vw, 154px);
}

.profile-latin {
  margin: 16px 0 0 6px;
  color: #8f978f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.44em;
}

.profile-summary {
  max-width: 470px;
}

.summary-rule {
  display: block;
  width: 56px;
  height: 1px;
  margin-bottom: 27px;
  background: #b8603f;
}

.profile-summary p,
.flavour-body > p {
  margin: 0;
  color: #c8c9c0;
  font-family: Georgia, "Songti SC", serif;
  font-size: 16px;
  line-height: 1.9;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(238, 232, 220, 0.22);
  border-bottom: 1px solid rgba(238, 232, 220, 0.22);
}

.fact-card {
  min-height: 295px;
  padding: 28px 26px 32px;
  border-right: 1px solid rgba(238, 232, 220, 0.22);
}

.fact-card:last-child {
  border-right: 0;
}

.fact-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #92978f;
}

.fact-heading span {
  font-size: 10px;
  letter-spacing: 0.15em;
}

.fact-heading h3 {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.fact-value {
  min-height: 74px;
  margin: 64px 0 12px;
  font-family: Georgia, "Songti SC", serif;
  font-size: clamp(22px, 2.1vw, 32px);
  line-height: 1.3;
}

.fact-note {
  margin: 0;
  color: #939b93;
  font-size: 11px;
  line-height: 1.8;
}

.flavour-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10vw;
  padding: 92px 0 96px;
  border-bottom: 1px solid rgba(238, 232, 220, 0.22);
}

.flavour-section h3 {
  max-width: 600px;
  margin: 0;
  font-family: Georgia, "Songti SC", serif;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.13;
}

.flavour-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 36px;
}

.flavour-tags span {
  padding: 10px 15px;
  border: 1px solid rgba(238, 232, 220, 0.28);
  border-radius: 100px;
  color: #d5d4cb;
  font-size: 11px;
}

.deep-dive-section,
.region-detail-section,
.reading-section {
  padding: 94px 0 100px;
  border-bottom: 1px solid rgba(238, 232, 220, 0.22);
}

.section-intro {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 7vw;
  align-items: start;
  margin-bottom: 58px;
}

.section-intro h3 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Songti SC", serif;
  font-size: clamp(34px, 4.2vw, 60px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.deep-dive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(238, 232, 220, 0.22);
  border-bottom: 1px solid rgba(238, 232, 220, 0.22);
}

.detail-card {
  min-height: 330px;
  padding: 34px 30px 38px;
  border-right: 1px solid rgba(238, 232, 220, 0.22);
}

.detail-card:last-child {
  border-right: 0;
}

.detail-card > span,
.reading-grid article > span {
  color: #c78b6e;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.detail-card h4,
.reading-grid h4,
.region-detail-card h4 {
  margin: 44px 0 20px;
  font-family: Georgia, "Songti SC", serif;
  font-size: 25px;
  font-weight: 400;
}

.detail-card p,
.reading-grid p,
.region-detail-card p {
  margin: 0;
  color: #aeb3aa;
  font-family: Georgia, "Songti SC", serif;
  font-size: 14px;
  line-height: 1.95;
}

.region-detail-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 7vw;
}

.region-detail-section .section-intro {
  display: block;
  margin: 0;
}

.region-detail-section .section-intro h3 {
  margin-top: 32px;
  font-size: clamp(32px, 3.5vw, 50px);
}

.region-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(238, 232, 220, 0.22);
}

.region-detail-card {
  min-height: 260px;
  padding: 28px 28px 34px 0;
  border-bottom: 1px solid rgba(238, 232, 220, 0.22);
}

.region-detail-card:nth-child(odd) {
  padding-right: 32px;
  border-right: 1px solid rgba(238, 232, 220, 0.22);
}

.region-detail-card:nth-child(even) {
  padding-left: 32px;
}

.region-detail-card > span {
  color: #7f887f;
  font-size: 9px;
  letter-spacing: 0.18em;
}

.region-detail-card h4 {
  margin: 32px 0 16px;
  font-size: 22px;
}

.reading-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 7vw;
}

.reading-section .section-intro {
  display: block;
  margin: 0;
}

.reading-section .section-intro h3 {
  margin-top: 32px;
  font-size: clamp(32px, 3.5vw, 50px);
}

.reading-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(238, 232, 220, 0.22);
}

.reading-grid article {
  padding: 30px 30px 16px 0;
}

.reading-grid article + article {
  padding-right: 0;
  padding-left: 32px;
  border-left: 1px solid rgba(238, 232, 220, 0.22);
}

.reading-grid h4 {
  margin: 36px 0 18px;
  font-size: 23px;
}

.sources {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  gap: 28px;
  align-items: start;
  padding: 30px 0 42px;
  color: #8f978f;
  font-size: 10px;
  line-height: 1.7;
}

.sources p {
  margin: 0;
}

.sources div {
  display: flex;
  gap: 18px;
}

.sources a {
  color: #b9bab1;
  text-underline-offset: 4px;
}

footer {
  display: flex;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  padding: 34px 5vw 46px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.1em;
}

footer p {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

@media (max-width: 900px) {
  .intro,
  .profile-hero,
  .flavour-section,
  .section-intro,
  .region-detail-section,
  .reading-section {
    grid-template-columns: 1fr;
  }

  .intro {
    gap: 34px;
    padding-top: 54px;
  }

  .explorer {
    grid-template-columns: 1fr;
    margin-right: 4vw;
    margin-left: 4vw;
  }

  .map-panel {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .world-map {
    height: 440px;
  }

  .country-panel {
    min-height: 500px;
  }

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

  .fact-card:nth-child(2) {
    border-right: 0;
  }

  .fact-card:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(238, 232, 220, 0.22);
  }

  .profile-hero,
  .flavour-section {
    gap: 52px;
  }

  .deep-dive-grid {
    grid-template-columns: 1fr;
  }

  .detail-card {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(238, 232, 220, 0.22);
  }

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

  .region-detail-section,
  .reading-section {
    gap: 54px;
  }
}

@media (max-width: 600px) {
  .site-header {
    padding: 20px 5vw;
  }

  .site-header > p {
    display: none;
  }

  .intro {
    padding-bottom: 44px;
  }

  .intro-copy {
    font-size: 15px;
  }

  .explorer {
    margin-bottom: 54px;
  }

  .map-panel,
  .country-panel {
    padding: 20px 18px;
  }

  .world-map {
    height: 300px;
  }

  .point-label {
    top: 30px;
    left: -14px;
  }

  .country-panel {
    min-height: 465px;
  }

  .profile-topline span {
    display: none;
  }

  .profile-hero {
    padding: 62px 0 58px;
  }

  .facts-grid {
    grid-template-columns: 1fr;
  }

  .fact-card,
  .fact-card:nth-child(2) {
    min-height: 230px;
    border-right: 0;
    border-bottom: 1px solid rgba(238, 232, 220, 0.22);
  }

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

  .fact-value {
    min-height: 0;
    margin-top: 42px;
  }

  .flavour-section {
    padding: 70px 0;
  }

  .deep-dive-section,
  .region-detail-section,
  .reading-section {
    padding: 70px 0;
  }

  .section-intro {
    gap: 28px;
    margin-bottom: 42px;
  }

  .detail-card {
    padding: 28px 0 34px;
  }

  .detail-card h4 {
    margin-top: 32px;
  }

  .region-detail-grid,
  .reading-grid {
    grid-template-columns: 1fr;
  }

  .region-detail-card,
  .region-detail-card:nth-child(odd),
  .region-detail-card:nth-child(even) {
    min-height: 0;
    padding: 26px 0 30px;
    border-right: 0;
    border-bottom: 1px solid rgba(238, 232, 220, 0.22);
  }

  .reading-grid article,
  .reading-grid article + article {
    padding: 28px 0 32px;
    border-left: 0;
    border-bottom: 1px solid rgba(238, 232, 220, 0.22);
  }

  .sources {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .sources div {
    flex-direction: column;
    gap: 9px;
  }

  footer {
    flex-direction: column;
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Expanded world-origin index */
.intro-side {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.coverage-stats {
  display: flex;
  gap: 34px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.coverage-stats span {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.coverage-stats b {
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.explorer-expanded {
  min-height: 720px;
}

.explorer-expanded .world-map {
  height: 600px;
}

.map-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.map-source {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.legend-dot.africa-dot {
  background: #b27a3e;
}

.legend-dot.asia-dot {
  background: #5d756b;
}

.map-point-small {
  width: 26px;
  height: 26px;
  transform: translate(-50%, -50%);
}

.map-point-small .point-dot {
  inset: 8px;
  background: var(--coffee);
  box-shadow: 0 0 0 3px rgba(240, 237, 230, 0.78);
  transition: transform 160ms ease, background 160ms ease;
}

.map-point-small.region-africa .point-dot {
  background: #9b682f;
}

.map-point-small.region-asia .point-dot {
  background: #49675b;
}

.map-point-small.is-featured .point-dot,
.map-point-small.is-featured.region-africa .point-dot,
.map-point-small.is-featured.region-asia .point-dot {
  inset: 6px;
  border: 2px solid #b8603f;
  background: var(--cream);
}

.map-point-small::before {
  content: "";
  position: absolute;
  inset: 2px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.55);
  transition: opacity 160ms ease, transform 160ms ease;
}

.map-point-small:hover::before,
.map-point-small.is-selected::before {
  opacity: 0.75;
  transform: scale(1);
}

.map-point-small:hover .point-dot,
.map-point-small.is-selected .point-dot {
  transform: scale(1.35);
}

.map-point-small .point-label {
  top: 20px;
  left: 18px;
  z-index: 8;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-3px);
  transition: opacity 140ms ease, transform 140ms ease;
}

.map-point-small:hover .point-label,
.map-point-small:focus-visible .point-label,
.map-point-small.is-selected .point-label {
  opacity: 1;
  transform: translateY(0);
}

.search-box {
  position: relative;
  display: block;
  margin-top: 22px;
}

.search-box input {
  width: 100%;
  height: 44px;
  padding: 0 42px 0 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: rgba(255, 255, 255, 0.25);
  color: var(--ink);
  font-size: 12px;
}

.search-box input:focus {
  border-color: var(--coffee);
}

.search-box > span:last-child {
  position: absolute;
  top: 11px;
  right: 14px;
  color: var(--muted);
  font-size: 18px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.region-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 12px 0 0;
}

.filter-button {
  padding: 7px 10px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.filter-button:hover,
.filter-button.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}

.country-list-scroll {
  max-height: 475px;
  overflow-y: auto;
  scrollbar-color: rgba(28, 33, 30, 0.25) transparent;
  scrollbar-width: thin;
}

.country-list-scroll .country-row {
  min-height: 70px;
}

.country-list-scroll .country-name b {
  font-size: 18px;
}

.empty-state {
  margin: 0;
  padding: 36px 4px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-family: Georgia, "Songti SC", serif;
  font-size: 14px;
}

.rank-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  color: #8f978f;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.fact-value.fact-regions {
  font-size: 22px;
}

@media (max-width: 900px) {
  .explorer-expanded .world-map {
    height: 500px;
  }

  .country-list-scroll {
    max-height: 520px;
  }
}

@media (max-width: 600px) {
  .coverage-stats {
    gap: 20px;
  }

  .coverage-stats b {
    font-size: 20px;
  }

  .explorer-expanded .world-map {
    height: 320px;
  }

  .map-source {
    display: none;
  }

  .map-legend {
    gap: 12px;
  }

  .map-point-small {
    width: 22px;
    height: 22px;
  }

  .map-point-small .point-dot {
    inset: 7px;
  }

  .rank-line {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
