:root {
  --ink: #17211d;
  --muted: #61706b;
  --paper: #f7f8f4;
  --surface: #ffffff;
  --line: #dde6df;
  --green: #174d3b;
  --green-2: #2f8665;
  --cyan: #3bb4c9;
  --red: #7f2739;
  --gold: #c59b4a;
  --shadow: 0 20px 55px rgba(22, 42, 34, 0.13);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(247, 248, 244, 0.96) 420px),
    var(--paper);
  color: var(--ink);
}

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

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

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(23, 77, 59, 0.12);
  background: rgba(247, 248, 244, 0.94);
  backdrop-filter: blur(16px);
}

.header-inner,
main,
.footer-inner {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand span {
  display: grid;
  gap: 4px;
}

.brand strong {
  max-width: 520px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.15;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switch {
  display: grid;
  grid-template-columns: repeat(3, 52px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.language-switch button,
.language-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 750;
}

.language-switch button.is-active,
.language-switch a.is-active {
  background: var(--green);
  color: #fff;
}

.contact-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 8px;
  font-weight: 800;
}

.contact-button {
  border: 1px solid rgba(23, 77, 59, 0.22);
  background: #fff;
  color: var(--green);
}

.nav-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 42px;
  border: 1px solid rgba(23, 77, 59, 0.22);
  border-radius: 8px;
  background: #fff;
  color: var(--green);
  cursor: pointer;
}

.nav-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.nav-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.nav-toggle.is-open span:nth-child(1) {
  transform: rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: rotate(-45deg);
}

.main-nav {
  position: absolute;
  top: calc(100% + 8px);
  right: max(16px, calc((100vw - 1240px) / 2));
  z-index: 70;
  display: none;
  grid-template-columns: 1fr;
  width: min(430px, calc(100vw - 32px));
  gap: 2px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 46px rgba(22, 42, 34, 0.16);
}

.main-nav.is-open {
  display: grid;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 7px;
  color: #46524d;
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
  white-space: nowrap;
}

.main-nav a:hover {
  background: rgba(23, 77, 59, 0.09);
  color: var(--green);
}

main {
  padding-bottom: 62px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 46px;
  align-items: center;
  min-height: calc(100vh - 116px);
  padding: 44px 0 42px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 72px;
  line-height: 0.98;
}

h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  line-height: 1.1;
}

h3 {
  margin-bottom: 8px;
  font-size: 19px;
  line-height: 1.2;
}

.hero-text {
  max-width: 720px;
  color: #485650;
  font-size: 19px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button.primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 14px 34px rgba(23, 77, 59, 0.22);
}

.button.secondary {
  border: 1px solid rgba(23, 77, 59, 0.22);
  background: #fff;
  color: var(--green);
}

.button.ghost {
  border: 1px solid rgba(127, 39, 57, 0.25);
  background: rgba(127, 39, 57, 0.06);
  color: var(--red);
}

.issue-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
  max-width: 780px;
}

.issue-meta span,
.issue-meta a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(23, 77, 59, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #43514b;
  font-size: 13px;
  font-weight: 750;
}

.issue-meta a {
  color: var(--green);
}

.issue-cover {
  position: relative;
  width: min(100%, 360px);
  margin: 0;
  justify-self: center;
}

.issue-cover::before {
  position: absolute;
  inset: 28px -22px -22px 22px;
  z-index: -1;
  content: "";
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(59, 180, 201, 0.28), rgba(23, 77, 59, 0.2));
}

.issue-cover img {
  width: 100%;
  aspect-ratio: 0.72;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.issue-cover figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 11px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 60px;
}

.fact-card,
.editor-card,
.issue-card,
.database-card,
.open-access {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 34px rgba(22, 42, 34, 0.06);
}

.fact-card {
  min-height: 138px;
  padding: 20px;
}

.fact-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  font-weight: 700;
}

.fact-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.42;
}

.section {
  padding: 54px 0;
}

.section-head {
  display: grid;
  gap: 10px;
  max-width: 850px;
  margin-bottom: 24px;
}

.section-head.split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  max-width: none;
}

.section-head.split div {
  max-width: 800px;
}

.section-head a {
  width: fit-content;
  color: var(--green);
  font-weight: 850;
}

.section-head p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.55;
}

.editor-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.article-filters,
.issue-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -6px 0 18px;
}

.article-filters button,
.issue-filters button {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(23, 77, 59, 0.18);
  border-radius: 999px;
  background: #fff;
  color: #47544f;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.article-filters button.is-active,
.issue-filters button.is-active {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.article-list {
  display: grid;
  gap: 10px;
}

.article-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 34px rgba(22, 42, 34, 0.06);
}

.article-category {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.article-row h3 {
  margin-bottom: 7px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.article-row p {
  max-width: 860px;
  margin-bottom: 12px;
  color: var(--muted);
  line-height: 1.48;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: #54625d;
  font-size: 13px;
}

.article-meta strong,
.article-meta span,
.article-meta a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
}

.article-meta a {
  color: var(--green);
  font-weight: 850;
}

.article-pdf {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  font-weight: 850;
}

.empty-state {
  margin: 0;
  padding: 22px;
  border: 1px dashed rgba(23, 77, 59, 0.3);
  border-radius: 8px;
  color: var(--muted);
}

.editor-card {
  overflow: hidden;
}

.editor-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.editor-card div {
  padding: 16px;
}

.editor-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.editor-card small {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-weight: 850;
}

.issue-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.issue-card {
  display: grid;
  gap: 12px;
  padding: 14px;
}

.issue-card img {
  width: 100%;
  aspect-ratio: 0.72;
  object-fit: cover;
  border-radius: 6px;
  background: #e8ece7;
}

.issue-card strong {
  display: block;
  margin-bottom: 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.issue-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.issue-card p {
  min-height: 42px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.42;
}

.issue-card a {
  color: var(--green);
  font-weight: 850;
}

.geography {
  padding-top: 70px;
}

.map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 18px;
  align-items: stretch;
}

.map-panel,
.map-aside {
  overflow: hidden;
  border: 1px solid rgba(59, 180, 201, 0.22);
  border-radius: 8px;
  background: #fdfefe;
  box-shadow: var(--shadow);
}

.map-panel img {
  width: 100%;
  min-height: 360px;
  object-fit: contain;
}

.map-aside {
  display: grid;
  gap: 20px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.92);
}

.map-stats {
  display: grid;
  gap: 10px;
}

.map-stats div {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.map-stats strong {
  display: block;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
}

.map-stats span,
.country-list span {
  color: var(--muted);
}

.country-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.country-list span {
  display: inline-flex;
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
  font-weight: 750;
}

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

.database-card {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 118px;
  padding: 16px;
}

.database-card img {
  width: 86px;
  max-height: 68px;
  object-fit: contain;
}

.database-card a {
  color: var(--green);
  font-weight: 850;
  line-height: 1.35;
}

.open-access {
  display: grid;
  gap: 10px;
  margin: 42px 0 0;
  padding: 24px;
  border-left: 6px solid var(--green);
}

.open-access p {
  margin: 0;
  color: #46534f;
  line-height: 1.6;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 12px;
  border-top: 1px solid var(--line);
}

.trust-grid a {
  display: grid;
  gap: 4px;
  padding: 16px 18px 2px 0;
}

.trust-grid strong {
  color: var(--green);
  font-size: 15px;
}

.trust-grid span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.42;
}

.page-main {
  padding-bottom: 24px;
}

.page-hero {
  padding: 44px 0 26px;
  border-bottom: 1px solid rgba(23, 77, 59, 0.12);
}

.breadcrumb {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
}

.page-hero h1 {
  max-width: 980px;
  font-size: 54px;
  line-height: 1.04;
}

.page-lede {
  max-width: 820px;
  margin: 0;
  color: #485650;
  font-size: 19px;
  line-height: 1.58;
}

.page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 34px;
  align-items: start;
  padding: 34px 0 20px;
}

.page-content {
  display: grid;
  gap: 28px;
}

.page-sidebar {
  position: sticky;
  top: 132px;
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 34px rgba(22, 42, 34, 0.06);
}

.page-sidebar strong {
  color: var(--red);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.page-sidebar nav {
  display: grid;
  gap: 4px;
}

.page-sidebar a {
  padding: 9px 10px;
  border-radius: 7px;
  color: #46524d;
  font-size: 13px;
  font-weight: 800;
}

.page-sidebar a:hover,
.page-sidebar a.is-active,
.main-nav a.is-active {
  background: rgba(23, 77, 59, 0.09);
  color: var(--green);
}

.content-section {
  display: grid;
  gap: 14px;
}

.content-section h2,
.feature-card h2,
.contact-card h2,
.person-card h2,
.publication-card h2,
.release-row h2 {
  font-family: Georgia, "Times New Roman", serif;
}

.prose {
  display: grid;
  gap: 14px;
  max-width: 920px;
}

.prose p {
  margin: 0;
  color: #485650;
  font-size: 16px;
  line-height: 1.7;
}

.page-stats,
.feature-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.page-stats div,
.feature-card,
.contact-card,
.person-card,
.archive-card,
.publication-card,
.release-row {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 34px rgba(22, 42, 34, 0.06);
}

.page-stats div {
  min-height: 118px;
  padding: 18px;
}

.page-stats strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  line-height: 1;
}

.page-stats span {
  color: var(--muted);
  font-weight: 750;
}

.map-aside .page-stats {
  grid-template-columns: 1fr;
}

.map-aside .page-stats div {
  min-height: 0;
  padding: 0 0 12px;
  border: 0;
  border-bottom: 1px solid var(--line);
  box-shadow: none;
}

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

.feature-card {
  padding: 20px;
}

.feature-card h2,
.contact-card h2,
.publication-card h2,
.release-row h2 {
  margin-bottom: 8px;
  font-size: 22px;
}

.feature-card p,
.release-row p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

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

.link-grid a {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid rgba(23, 77, 59, 0.16);
  border-radius: 8px;
  background: #fff;
  color: var(--green);
  font-weight: 850;
}

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

.person-card {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 108px;
  padding: 14px;
}

.person-card.is-detailed {
  grid-template-columns: 96px minmax(0, 1fr);
  align-items: start;
  min-height: 0;
  padding: 16px;
}

.person-photo {
  width: 96px;
  aspect-ratio: 0.8;
  object-fit: cover;
  border-radius: 8px;
  background: #e8ece7;
}

.person-initials {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 50%;
  background: rgba(23, 77, 59, 0.1);
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
}

.person-card h2 {
  margin-bottom: 5px;
  font-size: 18px;
}

.person-card p,
.person-description {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.person-role {
  display: block;
  margin-bottom: 6px;
  color: var(--burgundy);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.person-body {
  min-width: 0;
}

.person-description {
  margin-top: 8px;
  line-height: 1.5;
}

.person-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.person-contacts a,
.person-contacts span {
  max-width: 100%;
  padding: 6px 8px;
  border: 1px solid rgba(23, 77, 59, 0.14);
  border-radius: 999px;
  background: rgba(23, 77, 59, 0.06);
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.steps-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
}

.steps-list li {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: #485650;
  line-height: 1.6;
}

.term-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.term-list div {
  padding: 16px;
  border-left: 4px solid var(--green);
  background: rgba(255, 255, 255, 0.9);
}

.term-list dt {
  margin-bottom: 6px;
  color: var(--green);
  font-weight: 850;
}

.term-list dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

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

.contact-card {
  display: grid;
  gap: 8px;
  padding: 20px;
}

.contact-card a {
  color: var(--green);
  font-weight: 850;
  overflow-wrap: anywhere;
}

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

.archive-card {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 14px;
  padding: 14px;
}

.archive-card img {
  width: 118px;
  aspect-ratio: 0.72;
  object-fit: cover;
  border-radius: 6px;
  background: #e8ece7;
}

.archive-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.archive-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.archive-card a,
.publication-card a,
.release-cover a {
  color: var(--green);
  font-weight: 850;
}

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

.archive-year {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
}

.archive-year h3 {
  margin: 0;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
}

.archive-year div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.archive-year a {
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(23, 77, 59, 0.08);
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
}

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

.publication-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
}

.publication-card img {
  width: 96px;
  aspect-ratio: 0.72;
  object-fit: cover;
  border-radius: 6px;
  background: #e8ece7;
}

.publication-card h2 {
  font-size: 18px;
  line-height: 1.25;
}

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

.release-cover {
  position: sticky;
  top: 132px;
  display: grid;
  gap: 14px;
}

.release-cover img {
  width: 100%;
  aspect-ratio: 0.72;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.release-list {
  display: grid;
  gap: 10px;
}

.release-row {
  padding: 18px;
}

.release-row > span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.site-footer {
  margin-top: 68px;
  background: #102b23;
  color: #eef6f1;
}

.footer-inner {
  display: grid;
  gap: 30px;
  padding: 44px 0 38px;
}

.footer-brand {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(238, 246, 241, 0.18);
}

.footer-brand img {
  width: 64px;
}

.footer-brand p {
  max-width: 760px;
  margin-bottom: 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.12;
}

.footer-brand span,
.footer-bottom,
.footer-column address {
  color: rgba(238, 246, 241, 0.74);
}

.footer-links {
  display: grid;
  grid-template-columns: 1.05fr 1.05fr 1.05fr 1.3fr;
  gap: 28px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h3 {
  margin-bottom: 6px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
}

.footer-column a {
  color: rgba(238, 246, 241, 0.82);
  font-weight: 750;
  line-height: 1.35;
}

.footer-column a:hover {
  color: #fff;
}

.footer-column address {
  display: grid;
  gap: 9px;
  font-style: normal;
  line-height: 1.45;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(238, 246, 241, 0.18);
  font-size: 14px;
}

.footer-bottom a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(238, 246, 241, 0.22);
  border-radius: 999px;
  color: #fff;
  font-weight: 850;
}

@media (max-width: 1060px) {
  .hero {
    grid-template-columns: 1fr 300px;
    gap: 34px;
  }

  h1 {
    font-size: 56px;
  }

  .facts,
  .editor-grid,
  .issue-grid,
  .database-grid,
  .trust-grid,
  .page-stats,
  .feature-grid,
  .contact-grid,
  .archive-grid,
  .archive-years,
  .publication-grid,
  .people-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .map-layout {
    grid-template-columns: 1fr;
  }

  .page-layout,
  .release-layout {
    grid-template-columns: 1fr;
  }

  .page-sidebar,
  .release-cover {
    position: static;
  }

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

@media (max-width: 760px) {
  .header-inner {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand strong {
    max-width: none;
    font-size: 16px;
  }

  .header-tools,
  .language-switch {
    width: 100%;
  }

  .header-tools {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
  }

  .language-switch {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-button {
    display: none;
  }

  .main-nav {
    top: calc(100% + 6px);
    right: 16px;
    margin-bottom: 10px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 26px;
    padding-top: 24px;
  }

  .issue-cover {
    justify-self: start;
    width: min(320px, 100%);
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 29px;
  }

  .page-hero {
    padding-top: 26px;
  }

  .page-hero h1 {
    font-size: 38px;
  }

  .page-layout {
    gap: 24px;
    padding-top: 24px;
  }

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

  .section-head.split,
  .article-row {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .section-head.split {
    display: grid;
  }

  .article-pdf {
    width: fit-content;
  }

  .editor-grid,
  .issue-grid,
  .database-grid,
  .database-card,
  .trust-grid,
  .page-stats,
  .feature-grid,
  .contact-grid,
  .archive-grid,
  .archive-years,
  .publication-grid,
  .people-grid,
  .archive-card,
  .publication-card,
  .link-grid {
    grid-template-columns: 1fr;
  }

  .person-card.is-detailed {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .person-photo {
    width: 76px;
  }

  .archive-card img,
  .publication-card img {
    width: min(170px, 100%);
  }

  .map-panel img {
    min-height: 260px;
  }

  .footer-brand,
  .footer-links,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .facts {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .issue-meta span,
  .issue-meta a {
    width: 100%;
    justify-content: center;
  }
}
