:root {
  color-scheme: light;
  --bg: #f6f7f4;
  --panel: #ffffff;
  --ink: #1d2524;
  --muted: #5f6b67;
  --line: #d8ddd6;
  --accent: #145c52;
  --accent-2: #a65328;
  --blue: #315f83;
  --soft: #e9efe9;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 28px;
  border-bottom: 1px solid var(--line);
  background: rgba(246, 247, 244, 0.95);
  backdrop-filter: blur(12px);
}
.brand {
  flex: 0 0 auto;
  color: var(--ink);
  font-weight: 800;
}
nav {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  white-space: nowrap;
}
.nav-link {
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 14px;
}
.nav-link.active, .nav-link:hover {
  background: var(--soft);
  color: var(--ink);
  text-decoration: none;
}
.page {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 26px 0 56px;
}
.hero {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 22px;
  align-items: start;
  margin-bottom: 24px;
}
h1 {
  margin: 0 0 10px;
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1.04;
  letter-spacing: 0;
}
h2 {
  margin: 32px 0 14px;
  font-size: 22px;
  letter-spacing: 0;
}
h3 { margin: 24px 0 10px; }
.lead {
  max-width: 820px;
  color: var(--muted);
  font-size: 17px;
}
.search-box {
  margin-top: 20px;
  display: grid;
  gap: 10px;
}
.search-box input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}
.search-results {
  display: grid;
  gap: 8px;
}
.search-result {
  display: block;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}
.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.stat {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}
.stat strong {
  display: block;
  font-size: 30px;
  line-height: 1.1;
}
.stat span {
  color: var(--muted);
  font-size: 13px;
}
.toolbar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin: 14px 0 20px;
}
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: #fff;
  font-size: 14px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.record-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  min-height: 126px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  overflow: hidden;
}
.record-media {
  display: grid;
  place-items: center;
  background: #dfe6df;
  color: var(--muted);
  min-height: 126px;
}
.record-media::before {
  content: "DOC";
  font-weight: 800;
  color: #6b756f;
}
.record-media:has(img)::before { content: ""; }
.thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.record-body {
  padding: 12px;
  min-width: 0;
}
.record-title {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--ink);
  font-weight: 750;
  line-height: 1.25;
}
.record-meta {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 10px;
}
.tag-row span {
  padding: 3px 6px;
  border-radius: 5px;
  background: var(--soft);
  color: #53615d;
  font-size: 12px;
}
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 860px;
}
th, td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 14px;
}
th {
  background: #eef2ec;
  color: #43504c;
  font-weight: 750;
}
.detail {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 22px;
}
.preview {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}
.preview img, .preview video {
  display: block;
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  background: #111;
}
.meta-list {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.meta-list dt, .meta-list dd {
  margin: 0;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
}
.meta-list dt {
  color: var(--muted);
  background: #f0f3ef;
}
.meta-list dd {
  overflow-wrap: anywhere;
}
.actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 18px 0;
}
.button {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 12px;
  border-radius: 6px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
}
.button.secondary {
  background: #fff;
  color: var(--accent);
  border: 1px solid var(--line);
}
.snippet {
  max-height: 360px;
  overflow: auto;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  white-space: pre-wrap;
  color: #33413d;
}
.timeline-year {
  border-left: 4px solid var(--accent-2);
  padding-left: 14px;
}
.note {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  background: #fff;
}
.article-prose {
  max-width: 980px;
}
.article-prose h1 {
  max-width: 860px;
}
.article-prose p {
  max-width: 860px;
}
.article-prose ul {
  max-width: 900px;
  padding-left: 22px;
}
.article-prose li {
  margin: 6px 0;
}
.article-prose table {
  min-width: 0;
}
.wiki-skin {
  --wiki-blue: #0645ad;
  --wiki-border: #a2a9b1;
  --wiki-light-border: #c8ccd1;
  --wiki-bg: #f8f9fa;
  --wiki-tab: #eaecf0;
  background: #fff;
  color: #202122;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  line-height: 1.6;
}
.wiki-skin a {
  color: var(--wiki-blue);
  text-decoration: none;
}
.wiki-skin a:hover {
  text-decoration: underline;
}
.wiki-layout {
  display: grid;
  grid-template-columns: 176px minmax(0, 1fr);
  min-height: 100vh;
  background: linear-gradient(90deg, var(--wiki-bg) 0 176px, #fff 176px);
}
.wiki-sidebar {
  padding: 20px 18px 40px;
  border-right: 1px solid var(--wiki-light-border);
}
.wiki-wordmark {
  display: block;
  color: #202122;
  text-align: center;
  text-decoration: none;
  margin-bottom: 24px;
}
.wiki-wordmark span {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  letter-spacing: 0;
  line-height: 1;
}
.wiki-wordmark strong {
  display: block;
  margin-top: 2px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
}
.wiki-side-nav {
  display: block;
  white-space: normal;
}
.wiki-side-nav a {
  display: block;
  padding: 3px 0;
  font-size: 13px;
}
.wiki-side-heading {
  margin: 16px 0 5px;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--wiki-light-border);
  color: #54595d;
  font-size: 12px;
}
.wiki-main {
  min-width: 0;
  padding: 0 28px 48px;
}
.wiki-userbar {
  height: 30px;
  color: #54595d;
  font-size: 12px;
  text-align: right;
  padding-top: 6px;
}
.wiki-tabs {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--wiki-border);
  margin-bottom: 20px;
}
.wiki-tab-left,
.wiki-tab-right {
  display: flex;
  gap: 0;
}
.wiki-tabs a,
.wiki-tabs span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-left: 1px solid var(--wiki-light-border);
  background: linear-gradient(#fff, var(--wiki-tab));
  font-size: 13px;
}
.wiki-tabs a.active {
  background: #fff;
  border-top: 1px solid var(--wiki-border);
  border-left: 1px solid var(--wiki-border);
  border-right: 1px solid var(--wiki-border);
  border-bottom: 1px solid #fff;
  color: #202122;
  margin-bottom: -1px;
}
.wiki-article {
  max-width: 1120px;
  padding-bottom: 32px;
}
.wiki-article h1 {
  margin: 0 0 4px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--wiki-border);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.25;
}
.wiki-article h2 {
  margin: 26px 0 10px;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--wiki-border);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
}
.wiki-article p {
  max-width: 860px;
  margin: 0.45em 0 0.9em;
}
.wiki-article ul,
.wiki-article ol {
  max-width: 900px;
  margin: 0.4em 0 1em 1.6em;
  padding: 0;
}
.wiki-article li {
  margin: 0.25em 0;
}
.wiki-article table {
  width: auto;
  min-width: 460px;
  margin: 10px 0 18px;
  border: 1px solid var(--wiki-border);
  border-collapse: collapse;
  background: #fff;
}
.wiki-article td,
.wiki-article th {
  border: 1px solid var(--wiki-border);
  padding: 6px 8px;
  font-size: 13px;
}
.wiki-article tr:first-child td {
  background: var(--wiki-bg);
  font-weight: 700;
}
.wiki-subtitle {
  color: #54595d;
  font-size: 13px;
  margin: 6px 0 14px;
}
.wiki-notice {
  max-width: 920px;
  margin: 10px 0 16px;
  padding: 9px 12px;
  border: 1px solid var(--wiki-border);
  background: var(--wiki-bg);
}
.wiki-toc {
  display: inline-block;
  min-width: 220px;
  margin: 8px 0 18px;
  padding: 8px 14px 10px;
  border: 1px solid var(--wiki-border);
  background: var(--wiki-bg);
  font-size: 13px;
}
.wiki-toc-title {
  text-align: center;
  font-weight: 700;
}
.wiki-toc ol {
  margin: 6px 0 0 22px;
  padding: 0;
}
.wiki-mainpage {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 1060px;
  margin: 14px 0 22px;
}
.wiki-mainbox {
  border: 1px solid var(--wiki-border);
  background: #fff;
  padding: 10px 14px 12px;
}
.wiki-mainbox h2 {
  margin: -10px -14px 10px;
  padding: 6px 10px;
  border-bottom: 1px solid var(--wiki-border);
  background: #eaf3ff;
  font-family: sans-serif;
  font-size: 16px;
  font-weight: 700;
}
.wiki-filter-row {
  display: flex;
  gap: 10px;
  align-items: center;
  max-width: 680px;
  margin: 10px 0;
}
.wiki-filter-row input {
  flex: 1;
  min-height: 34px;
  border: 1px solid var(--wiki-border);
  padding: 5px 8px;
  font: inherit;
}
.wiki-filter-row button,
.wiki-workbench-search button {
  min-height: 34px;
  padding: 5px 12px;
  border: 1px solid var(--wiki-border);
  background: var(--wiki-bg);
  color: #202122;
  font: inherit;
  cursor: pointer;
}
.wiki-filter-row button:hover,
.wiki-workbench-search button:hover {
  background: #fff;
}
.wiki-workbench {
  max-width: 1120px;
  margin: 14px 0 18px;
  border: 1px solid var(--wiki-border);
  background: #fff;
}
.wiki-workbench-search,
.wiki-filter-row {
  padding: 10px 12px;
  border-bottom: 1px solid var(--wiki-light-border);
  background: var(--wiki-bg);
}
.wiki-workbench-search label,
.wiki-filter-row label {
  font-weight: 700;
}
.wiki-workbench-status,
.wiki-workbench-error,
.wiki-empty-state,
.wiki-workbench-empty {
  margin: 0;
  padding: 8px 12px;
  color: #54595d;
  font-size: 13px;
}
.wiki-workbench-error {
  border-top: 1px solid var(--wiki-light-border);
  background: #fff4f4;
  color: #a00;
}
.wiki-workbench-active {
  border-top: 1px solid var(--wiki-light-border);
  padding: 8px 12px;
  background: #eef6ff;
  color: #202122;
  font-size: 13px;
}
.wiki-workbench-grid,
.wiki-workbench-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  border-top: 1px solid var(--wiki-light-border);
}
.wiki-filter-panel,
.wiki-workbench-filters {
  min-width: 0;
  padding: 12px;
  border-right: 1px solid var(--wiki-light-border);
  background: var(--wiki-bg);
}
.wiki-filter-panel h2,
.wiki-workbench-filters h2,
.wiki-results-panel h2,
.wiki-workbench-results h2 {
  margin: 0 0 10px;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--wiki-border);
  font-family: sans-serif;
  font-size: 15px;
  font-weight: 700;
}
.wiki-filter-group,
.wiki-workbench-filter-group {
  margin: 0 0 12px;
  padding: 8px 10px 10px;
  border: 1px solid var(--wiki-light-border);
  background: #fff;
}
.wiki-filter-group legend,
.wiki-workbench-filter-group legend {
  padding: 0 4px;
  color: #202122;
  font-weight: 700;
}
.wiki-workbench-filter {
  display: block;
  margin: 5px 0;
  padding: 3px 4px;
  color: #202122;
  font-size: 13px;
}
.wiki-workbench-filter.is-active {
  background: #eaf3ff;
  font-weight: 700;
}
.wiki-workbench-filter input {
  margin-right: 4px;
}
.wiki-results-panel,
.wiki-workbench-results {
  min-width: 0;
  display: grid;
  gap: 14px;
  padding: 12px;
}
.wiki-result-count,
.wiki-workbench-results h2 span {
  color: #54595d;
  font-size: 13px;
  font-weight: 400;
}
.wiki-result-section {
  min-width: 0;
}
.wiki-result-list,
#workbench-article-results,
#workbench-source-results {
  display: grid;
  gap: 8px;
}
.wiki-result-card,
.wiki-workbench-card {
  padding: 9px 11px;
  border: 1px solid var(--wiki-light-border);
  background: #fff;
}
.wiki-result-card:hover,
.wiki-workbench-card:hover {
  border-color: var(--wiki-border);
}
.wiki-result-title,
.wiki-workbench-title {
  display: inline-block;
  font-weight: 700;
  line-height: 1.35;
}
.wiki-result-meta,
.wiki-workbench-meta {
  margin-top: 3px;
  color: #54595d;
  font-size: 12px;
  overflow-wrap: anywhere;
}
.wiki-workbench-snippet {
  max-width: 900px;
  margin: 6px 0 0;
  color: #202122;
  font-size: 13px;
}
.wiki-result-tags,
.wiki-workbench-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 7px;
}
.wiki-result-tags span,
.wiki-workbench-tag {
  display: inline-block;
  padding: 1px 5px;
  border: 1px solid var(--wiki-light-border);
  background: var(--wiki-bg);
  color: #54595d;
  font-size: 12px;
  line-height: 1.5;
}
.wiki-map-view {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(310px, .55fr);
  border: 1px solid var(--wiki-light-border);
  background: #fff;
}
.wiki-map-main {
  min-width: 0;
  padding: 12px;
  border-right: 1px solid var(--wiki-light-border);
}
.wiki-map-stage {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--wiki-light-border);
  background: #edf4fa;
}
.wiki-map-stage-heading {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 10px;
  border-bottom: 1px solid var(--wiki-light-border);
  background: #f8f9fa;
  color: #202122;
  font-size: 12px;
}
.wiki-map-stage-heading span {
  color: #54595d;
}
.wiki-map-svg {
  display: block;
  width: 100%;
  height: 500px;
}
.wiki-map-ocean {
  fill: #edf4fa;
}
.wiki-map-graticule path {
  fill: none;
  stroke: rgba(84, 89, 93, .28);
  stroke-width: 1;
}
.wiki-map-graticule text {
  fill: #72777d;
  font-family: sans-serif;
  font-size: 12px;
}
.wiki-map-land {
  fill: #d9e4ec;
  stroke: #a2a9b1;
  stroke-width: 1.2;
}
.wiki-map-cluster {
  stroke-width: 2;
}
.wiki-map-cluster-centcom {
  fill: rgba(51, 102, 204, .16);
  stroke: #36c;
}
.wiki-map-cluster-indopacom {
  fill: rgba(0, 128, 102, .15);
  stroke: #008066;
}
.wiki-map-cluster-europe {
  fill: rgba(114, 50, 173, .13);
  stroke: #6b4ba1;
}
.wiki-map-cluster-north-america {
  fill: rgba(169, 97, 26, .14);
  stroke: #a05a2c;
}
.wiki-map-cluster-label {
  fill: #202122;
  font-family: sans-serif;
  font-size: 13px;
  font-weight: 700;
}
.wiki-map-marker {
  position: absolute;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 2px solid #fff;
  border-radius: 50%;
  background: rgba(255, 255, 255, .95);
  color: #202122;
  font: 12px/1.2 sans-serif;
  text-align: left;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
  cursor: pointer;
}
.wiki-map-marker:hover,
.wiki-map-marker:focus-visible {
  z-index: 4;
  border-color: #0645ad;
}
.wiki-map-marker-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #36c;
  color: #fff;
  font-weight: 700;
}
.wiki-map-marker-name {
  position: absolute;
  left: 50%;
  top: calc(100% + 5px);
  display: none;
  min-width: max-content;
  max-width: 150px;
  transform: translateX(-50%);
  padding: 3px 6px;
  border: 1px solid var(--wiki-light-border);
  background: rgba(255, 255, 255, .96);
  color: #202122;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .12);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.wiki-map-marker-medium .wiki-map-marker-count {
  width: 32px;
  height: 32px;
}
.wiki-map-marker-high .wiki-map-marker-count {
  width: 36px;
  height: 36px;
}
.wiki-map-marker-medium {
  width: 36px;
  height: 36px;
}
.wiki-map-marker-high {
  width: 40px;
  height: 40px;
}
.wiki-map-marker-indopacom {
  border-color: #008066;
}
.wiki-map-marker-indopacom .wiki-map-marker-count {
  background: #008066;
}
.wiki-map-marker-europe {
  border-color: #6b4ba1;
}
.wiki-map-marker-europe .wiki-map-marker-count {
  background: #6b4ba1;
}
.wiki-map-marker-north-america {
  border-color: #a05a2c;
}
.wiki-map-marker-north-america .wiki-map-marker-count {
  background: #a05a2c;
}
.wiki-map-marker.is-active {
  z-index: 5;
  border-width: 2px;
  border-color: #202122;
  background: #fff4d6;
  box-shadow: 0 0 0 4px rgba(51, 102, 204, .2);
}
.wiki-map-marker:hover .wiki-map-marker-name,
.wiki-map-marker:focus-visible .wiki-map-marker-name,
.wiki-map-marker.is-active .wiki-map-marker-name {
  display: block;
}
.wiki-map-legend {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  padding: 8px 10px;
  border: 1px solid var(--wiki-light-border);
  background: rgba(255, 255, 255, .94);
  color: #202122;
  font-size: 12px;
}
.wiki-map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.wiki-map-key {
  display: inline-block;
  width: 14px;
  height: 10px;
  border: 1px solid currentColor;
}
.wiki-map-key-centcom {
  color: #36c;
  background: rgba(51, 102, 204, .16);
}
.wiki-map-key-indopacom {
  color: #008066;
  background: rgba(0, 128, 102, .15);
}
.wiki-map-key-europe {
  color: #6b4ba1;
  background: rgba(114, 50, 173, .13);
}
.wiki-map-key-north-america {
  color: #a05a2c;
  background: rgba(169, 97, 26, .14);
}
.wiki-map-panel {
  min-width: 0;
  padding: 16px;
  background: var(--wiki-bg);
}
.wiki-map-group-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}
.wiki-map-group-card {
  padding: 8px 9px;
  border: 1px solid var(--wiki-light-border);
  background: #fff;
}
.wiki-map-group-card strong,
.wiki-map-group-card span,
.wiki-map-group-card em {
  display: block;
}
.wiki-map-group-card strong {
  font-size: 13px;
}
.wiki-map-group-card span {
  margin-top: 3px;
  color: #54595d;
  font-size: 12px;
}
.wiki-map-group-card em {
  margin-top: 5px;
  color: #54595d;
  font-size: 12px;
  font-style: normal;
  line-height: 1.35;
}
.wiki-map-group-card-centcom {
  border-top: 3px solid #36c;
}
.wiki-map-group-card-indopacom {
  border-top: 3px solid #008066;
}
.wiki-map-group-card-europe {
  border-top: 3px solid #6b4ba1;
}
.wiki-map-group-card-north-america {
  border-top: 3px solid #a05a2c;
}
.wiki-map-panel-kicker {
  display: inline-block;
  margin-bottom: 8px;
  padding: 2px 6px;
  border: 1px solid var(--wiki-light-border);
  background: #fff;
  color: #54595d;
  font-size: 12px;
  font-weight: 700;
}
.wiki-map-panel-kicker-centcom {
  border-color: #36c;
}
.wiki-map-panel-kicker-indopacom {
  border-color: #008066;
}
.wiki-map-panel-kicker-europe {
  border-color: #6b4ba1;
}
.wiki-map-panel-kicker-north-america {
  border-color: #a05a2c;
}
.wiki-map-panel h2 {
  margin-top: 0;
}
.wiki-map-panel-note {
  color: #54595d;
  font-size: 13px;
}
.wiki-map-context {
  padding: 9px 10px;
  border: 1px solid var(--wiki-light-border);
  background: #fff;
  color: #202122;
  font-size: 13px;
  line-height: 1.55;
}
.wiki-map-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 12px 0;
}
.wiki-map-stat {
  padding: 8px;
  border: 1px solid var(--wiki-light-border);
  background: #fff;
  text-align: center;
}
.wiki-map-stat strong,
.wiki-map-stat span {
  display: block;
}
.wiki-map-link-list {
  margin: 0 0 12px 18px;
  padding: 0;
}
.wiki-map-link-list li {
  margin: 0 0 6px;
}
.wiki-map-link-list span {
  display: block;
  color: #54595d;
  font-size: 12px;
}
.wiki-map-empty {
  color: #54595d;
  font-size: 13px;
}
.wiki-map-more {
  display: inline-block;
  margin-top: 8px;
}
.wiki-map-fallback {
  margin-top: 16px;
}
.wiki-map-index-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 13px;
}
.wiki-map-index-table th,
.wiki-map-index-table td {
  border: 1px solid var(--wiki-light-border);
  padding: 7px 8px;
  vertical-align: top;
}
.wiki-map-index-table th {
  background: var(--wiki-bg);
  text-align: left;
}
.wiki-map-index-jump {
  border: 0;
  background: transparent;
  color: #0645ad;
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}
.wiki-map-index-jump.is-active {
  color: #202122;
  text-decoration: underline;
}
.wiki-citation-block,
.wiki-related-sources {
  max-width: 920px;
  margin: 14px 0 18px;
  padding: 10px 12px;
  border: 1px solid var(--wiki-border);
  background: var(--wiki-bg);
}
.wiki-citation-block h2,
.wiki-related-sources h2,
.wiki-related-group h3 {
  margin-top: 0;
  font-family: sans-serif;
}
.wiki-related-group {
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid var(--wiki-light-border);
}
.wiki-related-group:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.wiki-index-table {
  width: 100%;
  max-width: 1120px;
  border: 1px solid var(--wiki-border);
  border-collapse: collapse;
  background: #fff;
}
.wiki-index-table th {
  background: var(--wiki-bg);
}
.wiki-index-table th,
.wiki-index-table td {
  border: 1px solid var(--wiki-border);
  padding: 7px 8px;
  font-size: 13px;
}
.wiki-source-panel {
  float: right;
  width: min(360px, 42vw);
  margin: 0 0 16px 24px;
  border: 1px solid var(--wiki-border);
  background: var(--wiki-bg);
}
.wiki-source-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 7px 9px;
  border-bottom: 1px solid var(--wiki-border);
  font-size: 12px;
}
.wiki-source-media {
  display: grid;
  place-items: center;
  min-height: 160px;
  background: #fff;
}
.wiki-source-media img,
.wiki-source-media video {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  background: #000;
}
.wiki-source-media iframe {
  display: block;
  width: 100%;
  height: 460px;
  border: 0;
  background: #fff;
}
.wiki-source-empty {
  padding: 42px 14px;
  color: #54595d;
}
.wiki-footer {
  border-top: 1px solid var(--wiki-light-border);
  color: #54595d;
  font-size: 12px;
  padding: 14px 0;
}
code {
  padding: 2px 5px;
  border-radius: 4px;
  background: var(--soft);
}
@media (max-width: 900px) {
  .topbar { align-items: flex-start; flex-direction: column; gap: 8px; padding: 12px 16px; }
  .page { width: min(100vw - 24px, 760px); padding-top: 18px; }
  .hero, .detail { grid-template-columns: 1fr; }
  .grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .record-card { grid-template-columns: 96px minmax(0, 1fr); }
  .meta-list { grid-template-columns: 120px minmax(0, 1fr); }
  .wiki-layout { display: block; background: #fff; }
  .wiki-sidebar { border-right: 0; border-bottom: 1px solid var(--wiki-light-border); padding: 12px 16px; }
  .wiki-wordmark { text-align: left; margin-bottom: 10px; }
  .wiki-side-nav { display: flex; gap: 10px; overflow-x: auto; white-space: nowrap; }
  .wiki-side-heading { display: none; }
  .wiki-main { padding: 0 14px 36px; }
  .wiki-tabs { overflow-x: auto; }
  .wiki-tab-right { display: none; }
  .wiki-article h1 { font-size: 28px; }
  .wiki-mainpage { grid-template-columns: 1fr; }
  .wiki-source-panel { float: none; width: 100%; margin: 10px 0 16px; }
  .wiki-article table, .wiki-index-table { min-width: 0; width: 100%; }
  .wiki-filter-row, .wiki-workbench-search { display: grid; grid-template-columns: 1fr; gap: 7px; }
  .wiki-filter-row input, .wiki-workbench-search input { width: 100%; margin-top: 0; }
  .wiki-filter-row button, .wiki-workbench-search button { width: 100%; }
  .wiki-workbench-grid, .wiki-workbench-layout { grid-template-columns: 1fr; }
  .wiki-filter-panel, .wiki-workbench-filters { border-right: 0; border-bottom: 1px solid var(--wiki-light-border); }
  .wiki-map-view { grid-template-columns: 1fr; }
  .wiki-map-main { border-right: 0; border-bottom: 1px solid var(--wiki-light-border); }
  .wiki-map-stage { min-height: 430px; }
  .wiki-map-stage-heading { display: block; }
  .wiki-map-svg { height: 360px; }
  .wiki-map-marker-name { max-width: 100px; }
  .wiki-map-legend { position: static; margin: 0 8px 8px; }
  .wiki-map-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .wiki-map-group-summary { grid-template-columns: 1fr; }
  .wiki-map-index-table { display: block; overflow-x: auto; white-space: nowrap; }
}