:root {
  --bg: #f5f1eb;
  --navy: #0d1b3d;
  --navy-deep: #071b34;
  --burgundy: #8e3b3b;
  --gold: #c8a96b;
  --grey: #6b7078;
  --stone: #e9e5df;
  --paper: #f3ede3;
  --white: #ffffff;
  --text: #1e2432;
  --line: #ded8cf;
  --shadow: 0 3px 14px rgba(13, 27, 61, 0.035);
  --container: 1200px;
  --reading: 780px;
  --page-side: 48px;
  --nav-height: 88px;
  --section-space: 100px;
  --card-gap: 32px;
  --card-padding: 48px;
  --footer-top: 80px;
  --footer-bottom: 32px;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid rgba(142, 59, 59, 0.72);
  outline-offset: 4px;
}

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

.site-shell {
  min-height: 100vh;
}

.container {
  width: min(calc(100% - (var(--page-side) * 2)), var(--container));
  margin: 0 auto;
}

.site-header {
  border-bottom: 1px solid var(--line);
}

.nav-shell {
  min-height: var(--nav-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 42px;
  width: min(calc(100% - 128px), var(--container));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.brand-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-name {
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.02em;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 44px;
}

.main-nav a,
.nav-actions a {
  font-size: 13px;
  font-weight: 450;
  letter-spacing: -0.005em;
}

.main-nav a {
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.main-nav a.is-active {
  color: var(--burgundy);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.search-link {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  color: var(--navy);
  border-right: 1px solid var(--line);
  padding-right: 18px;
  box-sizing: content-box;
  opacity: 0.8;
}

.search-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.support-button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border-radius: 4px;
  background: var(--burgundy);
  color: var(--white);
  font-weight: 500;
  transition: background-color 160ms ease;
}

.support-button:hover,
.support-button:focus-visible {
  background: var(--navy);
}

.hero {
  --hero-height: clamp(668px, calc(94vh - var(--nav-height)), 790px);
  min-height: var(--hero-height);
  padding: 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  box-shadow: none;
  border: 0;
  isolation: isolate;
}

.hero-grid {
  width: 100%;
  max-width: none;
  min-height: var(--hero-height);
  margin: 0;
  display: block;
  position: relative;
}

.hero-copy {
  width: min(45vw, 650px);
  min-height: var(--hero-height);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 3vw 24px 7.1vw;
  background: transparent;
  position: relative;
  z-index: 3;
}

.hero-copy h1,
.hero-subhead,
.section-heading h2,
.publication-card h3 {
  font-family: var(--serif);
  letter-spacing: 0;
}

.hero-copy h1 {
  margin: 0;
  max-width: 570px;
  color: var(--navy);
  font-size: clamp(54px, 4.3vw, 74px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.headline-line {
  display: block;
  white-space: nowrap;
}

.headline-indent {
  margin-left: 0.08em;
}

.hero-subhead {
  margin: 6px 0 0 0.12vw;
  color: var(--burgundy);
  font-size: clamp(34px, 2.7vw, 48px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.hero-subhead a {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 0.16em;
  color: inherit;
  text-decoration: none;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.12em;
  transition: color 200ms ease;
}

.hero-subhead a:hover,
.hero-subhead a:focus-visible {
  color: #7f3434;
}

.policy-reference::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0.72em;
  bottom: 0.05em;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transition: opacity 200ms ease;
}

.policy-reference span {
  font-family: var(--sans);
  font-size: 0.34em;
  font-weight: 500;
  line-height: 1;
  opacity: 0.42;
  transform: translateY(-0.18em);
  transition: opacity 200ms ease, transform 200ms ease;
}

.policy-reference::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  z-index: 10;
  width: min(280px, 76vw);
  max-width: 280px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(30, 36, 50, 0.52);
  backdrop-filter: none;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.012em;
  white-space: pre-line;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
  box-shadow: none;
}

.policy-reference:hover::before,
.policy-reference:focus-visible::before {
  opacity: 0.34;
}

.policy-reference:hover span,
.policy-reference:focus-visible span {
  opacity: 0.78;
  transform: translate(1px, -0.2em);
}

.policy-reference:hover::after,
.policy-reference:focus-visible::after {
  opacity: 1;
}

.hero-rule {
  display: none;
}

.hero-body {
  max-width: 420px;
  margin: 42px 0 0 0.12vw;
  color: var(--text);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.43;
}

.editorial-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--burgundy);
  font-size: 17px;
  font-weight: 500;
  position: relative;
}

.editorial-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: currentColor;
  opacity: 0.42;
}

.editorial-link-gold {
  color: var(--gold);
}

.hero-visual {
  position: absolute;
  inset: 0 -4vw 0 27vw;
  min-height: var(--hero-height);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-right: 0;
  overflow: visible;
  z-index: 1;
  pointer-events: none;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.hero-image {
  position: relative;
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: var(--hero-height);
  background-image: url("hero-street.jpg?v=20260521");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 52% 55%;
  transform: none;
  filter: contrast(0.99) saturate(0.94) brightness(0.99);
  opacity: 1;
  background-color: transparent;
  border: 0;
  box-shadow: none;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.2) 48px,
    rgba(0, 0, 0, 0.58) 104px,
    rgba(0, 0, 0, 0.9) 148px,
    #000 164px
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.2) 48px,
    rgba(0, 0, 0, 0.58) 104px,
    rgba(0, 0, 0, 0.9) 148px,
    #000 164px
  );
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0.08;
  mix-blend-mode: multiply;
  background-image:
    radial-gradient(rgba(13, 27, 61, 0.22) 0.45px, transparent 0.45px),
    radial-gradient(rgba(13, 27, 61, 0.14) 0.35px, transparent 0.35px);
  background-position: 0 0, 7px 11px;
  background-size: 14px 14px, 18px 18px;
}

.hero::before,
.hero::after,
.hero-visual::before,
.hero-visual::after {
  display: none;
  content: none;
}

.hero .editorial-link {
  margin-top: 28px;
  padding: 11px 30px;
  border: 1px solid var(--navy);
  border-radius: 2px;
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
  font-weight: 550;
  line-height: 1.1;
}

.hero .editorial-link span {
  font-size: 18px;
  font-weight: 400;
  line-height: 0;
  transform: translateY(-1px);
}

.hero .editorial-link:hover,
.hero .editorial-link:focus-visible {
  border-color: var(--burgundy);
  background: var(--burgundy);
  color: var(--white);
}

.hero .editorial-link::after {
  display: none;
}

.publications {
  padding: 22px 0 84px;
  border-top: 1px solid rgba(13, 27, 61, 0.08);
}

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

.section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: 44px;
  font-weight: 650;
  line-height: 1.02;
  letter-spacing: -0.018em;
}

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

.publication-stack {
  display: contents;
}

.publication-card {
  position: relative;
  min-height: 338px;
  padding: 36px;
  border: 1px solid rgba(13, 27, 61, 0.11);
  border-radius: 6px;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.publication-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.publication-card-featured {
  background: var(--paper);
  background-image:
    radial-gradient(rgba(13, 27, 61, 0.045) 0.45px, transparent 0.45px);
  background-size: 12px 12px;
}

.publication-card-research {
  background: var(--navy-deep);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(7, 27, 52, 0.1);
}

.publication-card-correspondence {
  background: var(--stone);
}

.publication-card-featured .card-label {
  margin-bottom: 14px;
}

.publication-card-featured p:not(.card-label) {
  max-width: 292px;
}

.publication-card-correspondence h3 {
  max-width: 320px;
}

.publication-card-correspondence p:not(.card-label) {
  max-width: 292px;
}

.card-label {
  position: relative;
  z-index: 2;
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.035em;
  opacity: 0.82;
}

.card-label::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin-top: 8px;
  background: currentColor;
  opacity: 0.86;
}

.card-label-burgundy {
  color: var(--burgundy);
}

.publication-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 12px;
  max-width: 300px;
  color: inherit;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.publication-card-featured h3 {
  max-width: 305px;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.08;
}

.publication-card p:not(.card-label) {
  position: relative;
  z-index: 2;
  max-width: 292px;
  margin: 0 0 20px;
  color: inherit;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -0.01em;
  opacity: 0.9;
  flex: 0 0 auto;
}

.publication-card-featured p:not(.card-label),
.publication-card-correspondence p:not(.card-label) {
  color: var(--navy);
}

.publication-card-research p:not(.card-label) {
  color: rgba(255, 255, 255, 0.9);
}

.publication-card-research h3 {
  font-weight: 600;
}

.publication-stack .publication-card h3 {
  max-width: 320px;
}

.publication-stack .publication-card p:not(.card-label) {
  max-width: 310px;
}

.publication-card .editorial-link {
  position: relative;
  left: auto;
  bottom: auto;
  z-index: 2;
  margin-top: auto;
  padding-top: 20px;
  font-size: 15px;
  font-weight: 600;
  align-self: flex-start;
  opacity: 0.82;
  transition: opacity 200ms ease, color 200ms ease;
}

.publication-card .editorial-link:hover,
.publication-card .editorial-link:focus-visible {
  opacity: 1;
}

.card-watermark {
  position: absolute;
  inset: auto 0 0 auto;
  pointer-events: none;
}

.parliament-mark {
  right: -74px;
  bottom: -24px;
  width: 88%;
  height: 86%;
  color: var(--gold);
  opacity: 0.11;
}

.research-mark {
  right: -58px;
  top: 28px;
  bottom: auto;
  width: 210px;
  height: 146px;
  border: 0;
  border-radius: 0;
  opacity: 0.34;
}

.research-mark::before,
.research-mark::after {
  content: "";
  position: absolute;
}

.research-mark::before {
  right: 0;
  top: 0;
  width: 100px;
  height: 100px;
  border: 2px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 44%, rgba(255, 255, 255, 0.16) 45%, rgba(255, 255, 255, 0.16) 47%, transparent 48%),
    repeating-linear-gradient(to right, transparent 0, transparent 23px, rgba(255, 255, 255, 0.055) 24px, transparent 25px),
    repeating-linear-gradient(to bottom, transparent 0, transparent 23px, rgba(255, 255, 255, 0.045) 24px, transparent 25px);
}

.research-mark::after {
  right: 98px;
  top: 98px;
  width: 72px;
  height: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  transform: rotate(-45deg);
  transform-origin: right center;
}

.research-chart {
  position: absolute;
  right: 34px;
  bottom: 52px;
  left: auto;
  width: 9px;
  height: 26px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow:
    -22px -12px 0 rgba(255, 255, 255, 0.16),
    -44px -28px 0 rgba(255, 255, 255, 0.14),
    -66px -6px 0 rgba(255, 255, 255, 0.1);
}

.research-chart::before,
.research-chart::after {
  content: "";
  position: absolute;
  left: -18px;
  right: -18px;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.research-chart::before {
  bottom: 0;
}

.research-chart::after {
  top: 0;
}

.paper-mark {
  right: -34px;
  bottom: 26px;
  width: 188px;
  height: 124px;
  opacity: 0.2;
}

.paper-mark::before,
.paper-mark::after {
  content: "";
  position: absolute;
  border: 2px solid rgba(13, 27, 61, 0.13);
  border-radius: 2px;
  background:
    linear-gradient(rgba(13, 27, 61, 0.08), rgba(13, 27, 61, 0.08)) 18px 30px / 58px 2px no-repeat,
    linear-gradient(rgba(13, 27, 61, 0.055), rgba(13, 27, 61, 0.055)) 18px 48px / 48px 2px no-repeat,
    linear-gradient(rgba(13, 27, 61, 0.055), rgba(13, 27, 61, 0.055)) 18px 66px / 62px 2px no-repeat,
    rgba(255, 255, 255, 0.22);
}

.paper-mark::before {
  top: 28px;
  right: 18px;
  width: 108px;
  height: 62px;
  transform: rotate(-8deg);
}

.paper-mark::after {
  top: 44px;
  left: 22px;
  width: 104px;
  height: 60px;
  transform: rotate(7deg);
}

.site-footer {
  padding: 44px 0 30px;
  background: #0A192F;
  color: #B0B8C6;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-shell {
  width: min(calc(100% - 48px), 860px);
  max-width: 860px;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  text-align: center;
}

.footer-identity {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(32px, 6vw, 72px);
  margin: 0 auto;
  padding: 0 0 24px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 0;
  color: #ffffff;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-align: left;
}

.footer-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex: 0 0 auto;
}

.footer-registration {
  display: grid;
  justify-items: start;
  margin-top: 0;
  text-align: left;
}

.footer-registration p {
  margin: 0;
  color: #B0B8C6;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.004em;
}

.social-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 22px;
  margin-top: 0;
  padding-bottom: 0;
}

.social-links a {
  width: 15px;
  height: 15px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 0;
  color: var(--white);
  font-weight: 500;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 180ms ease;
}

.social-links svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links a:hover,
.social-links a:focus-visible {
  opacity: 1;
}

.footer-bottom {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin: 0 auto;
  padding: 18px 0 0;
  border-top: 0;
}

.footer-bottom::before {
  content: "";
  display: block;
  width: 60%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0 auto 7px;
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

.footer-legal,
.footer-legal a {
  color: rgba(176, 184, 198, 0.78);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.004em;
  transition: color 180ms ease, opacity 180ms ease;
}

.footer-support {
  margin: 0;
  color: rgba(176, 184, 198, 0.58);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.01em;
  text-align: center;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: rgba(176, 184, 198, 0.94);
}

.publications-hero {
  position: relative;
  padding: 54px 0 42px;
  overflow: hidden;
  background: #f3efe8;
  border-bottom: 1px solid rgba(13, 27, 61, 0.055);
  isolation: isolate;
}

.publications-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -18px;
  z-index: 1;
  width: 74vw;
  height: 112%;
  background-color: transparent;
  background-image: url("assets/publications-bg.png?v=5");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 108% auto;
  opacity: 0.68;
  mix-blend-mode: multiply;
  pointer-events: none;
  border: 0;
  box-shadow: none;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.34) 7%, rgba(0, 0, 0, 0.78) 18%, #000 32%);
  mask-image:
    linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.34) 7%, rgba(0, 0, 0, 0.78) 18%, #000 32%);
}

.publications-hero-grid {
  position: relative;
  min-height: 204px;
  display: block;
}

.publications-hero-copy {
  position: relative;
  z-index: 3;
  max-width: 440px;
}

.publications-hero h1 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(58px, 5.4vw, 76px);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.publications-hero .hero-rule {
  display: block;
  width: 62px;
  height: 2px;
  margin: 18px 0 16px;
  background: var(--gold);
}

.publications-hero p {
  max-width: 322px;
  margin: 0;
  color: var(--navy);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.48;
  letter-spacing: -0.01em;
  opacity: 0.88;
}

.publications-hero p + p {
  margin-top: 12px;
}

.publication-categories {
  padding: 74px 0 56px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  align-items: stretch;
}

.category-card {
  position: relative;
  min-height: 282px;
  display: flex;
  flex-direction: column;
  padding: 38px 38px 34px;
  border: 1px solid rgba(13, 27, 61, 0.065);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.28);
  box-shadow: 0 8px 24px rgba(13, 27, 61, 0.025);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.category-card:hover {
  transform: translateY(-3px);
  border-color: rgba(13, 27, 61, 0.11);
  box-shadow: 0 14px 36px rgba(13, 27, 61, 0.055);
}

.category-core {
  background: #fbf5ec;
}

.category-research {
  background: #f4f6f5;
}

.category-correspondence {
  background: #f8f0ee;
}

.category-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 2px;
  background: transparent;
  color: var(--gold);
  opacity: 0.82;
}

.category-research .category-icon {
  background: rgba(13, 27, 61, 0.07);
  color: #5c8ca5;
}

.category-correspondence .category-icon {
  background: rgba(142, 59, 59, 0.1);
  color: var(--burgundy);
}

.category-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.category-card h2 {
  margin: 0 0 18px;
  max-width: 260px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.category-card p {
  max-width: 285px;
  margin: 0 0 30px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.62;
  letter-spacing: -0.01em;
  opacity: 0.78;
}

.category-card .editorial-link {
  width: fit-content;
  margin-top: auto;
  color: var(--burgundy);
  font-size: 14px;
  font-weight: 600;
  opacity: 0.82;
}

.category-card .editorial-link::after {
  background: currentColor;
  opacity: 0.45;
}

.category-card .editorial-link span {
  display: inline-block;
  transition: transform 180ms ease;
}

.category-card .editorial-link:hover,
.category-card .editorial-link:focus-visible {
  opacity: 1;
}

.category-card .editorial-link:hover span,
.category-card .editorial-link:focus-visible span {
  transform: translateX(4px);
}

.publication-directory {
  padding: 30px 0 48px;
}

.directory-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(13, 27, 61, 0.075);
}

.publication-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.publication-tabs button {
  position: relative;
  min-height: 36px;
  padding: 0 10px;
  border: 1px solid rgba(13, 27, 61, 0.065);
  border-radius: 3px;
  background: transparent;
  color: var(--navy);
  font: inherit;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.01em;
  opacity: 0.72;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, opacity 180ms ease;
}

.publication-tabs button::after {
  display: none;
  content: none;
}

.publication-tabs button:hover,
.publication-tabs button:focus-visible {
  border-color: rgba(13, 27, 61, 0.1);
  background: rgba(255, 255, 255, 0.18);
  opacity: 1;
}

.publication-tabs button.is-active {
  border-color: rgba(200, 169, 107, 0.28);
  background: rgba(200, 169, 107, 0.12);
  color: #8b6f3a;
  opacity: 1;
}

.publication-tabs button.is-active::after {
  transform: none;
}

.directory-controls {
  display: flex;
  gap: 10px;
  align-items: center;
}

.search-field,
.sort-select {
  height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(13, 27, 61, 0.075);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.18);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.search-field {
  width: 282px;
  padding: 0 12px;
  gap: 10px;
}

.search-field svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--navy);
  stroke-width: 1.55;
  stroke-linecap: round;
  opacity: 0.64;
}

.search-field input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--navy);
  font: inherit;
  font-size: 13px;
  letter-spacing: -0.01em;
}

.sort-select {
  min-width: 132px;
  padding: 0 10px;
  background: transparent;
}

.sort-select select {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--navy);
  font: inherit;
  font-size: 13px;
  letter-spacing: -0.01em;
  opacity: 0.86;
}

.search-field:focus-within,
.sort-select:focus-within {
  border-color: rgba(13, 27, 61, 0.34);
  background: rgba(255, 255, 255, 0.28);
  box-shadow: 0 0 0 2px rgba(13, 27, 61, 0.035);
}

.publication-list {
  margin-top: 24px;
  min-height: 720px;
  border-top: 1px solid rgba(13, 27, 61, 0.055);
}

.publication-row.is-page-overflow {
  display: none;
}

.publication-row {
  position: relative;
  isolation: isolate;
  z-index: 0;
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr) 126px 146px;
  gap: 30px;
  align-items: center;
  min-height: 118px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(13, 27, 61, 0.065);
  transition: background 220ms ease;
}

.publication-row::before {
  content: "";
  position: absolute;
  inset: 7px -16px;
  z-index: -1;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0);
  transition: background 220ms ease;
}

.publication-row:hover::before {
  background: rgba(255, 255, 255, 0.24);
}

.publication-row:hover,
.publication-row:focus-within {
  z-index: 20;
}

.publication-code {
  min-height: 68px;
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 14px 16px;
  border-left: 3px solid currentColor;
  background: rgba(255, 255, 255, 0.18);
}

.publication-code span {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.075em;
  opacity: 0.86;
}

.publication-code strong {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.code-core {
  color: #a8842d;
  background: rgba(193, 154, 66, 0.13);
  border-left-color: #a8842d;
}

.code-core span,
.code-core strong {
  color: #a8842d;
}

.code-core strong {
  font-weight: 700;
}

.code-research {
  color: #5f879a;
  background: rgba(95, 135, 154, 0.09);
  border-left-color: #6e98aa;
}

.code-correspondence {
  color: #8e3b3b;
  background: rgba(142, 59, 59, 0.07);
  border-left-color: rgba(142, 59, 59, 0.74);
}

.code-media {
  color: #7c7468;
  background: rgba(124, 116, 104, 0.055);
  border-left-color: rgba(124, 116, 104, 0.46);
}

.code-media span {
  opacity: 0.72;
}

.code-media strong {
  color: #6e665c;
  font-weight: 500;
}

.publication-summary h2 {
  margin: 0 0 8px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.publication-summary h2 a {
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease;
}

.publication-summary h2 a:hover,
.publication-summary h2 a:focus-visible {
  color: var(--burgundy);
}

.publication-summary p {
  max-width: 620px;
  margin: 0;
  color: var(--navy);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.56;
  letter-spacing: -0.01em;
  opacity: 0.66;
}

.publication-date span {
  display: block;
  margin-bottom: 5px;
  color: var(--grey);
  font-size: 11px;
  font-weight: 400;
  opacity: 0.8;
}

.publication-date strong {
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
}

.publication-action {
  position: relative;
  justify-self: end;
}

.publication-action button,
.publication-primary-action,
.external-action {
  min-width: 136px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(142, 59, 59, 0.3);
  border-radius: 2px;
  background: transparent;
  color: rgba(142, 59, 59, 0.92);
  font: inherit;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.01em;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.publication-action button:hover,
.publication-primary-action:hover,
.publication-primary-action:focus-visible,
.external-action:hover,
.external-action:focus-visible {
  border-color: rgba(142, 59, 59, 0.54);
  background: rgba(142, 59, 59, 0.035);
}

.external-action svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.external-action svg path {
  fill: none;
}

.search-field input:focus-visible,
.sort-select select:focus-visible,
.publication-action button:focus-visible,
.publication-primary-action:focus-visible,
.external-action:focus-visible {
  outline: 2px solid rgba(142, 59, 59, 0.72);
  outline-offset: 4px;
}

.document-menu {
  position: absolute;
  right: 0;
  top: 42px;
  z-index: 30;
  width: 170px;
  display: grid;
  gap: 3px;
  padding: 9px;
  border: 1px solid rgba(13, 27, 61, 0.08);
  border-radius: 3px;
  background: #fbf8f3;
  background-clip: padding-box;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.publication-action.has-menu:hover .document-menu,
.publication-action.has-menu:focus-within .document-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.document-menu a {
  padding: 7px 9px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
  text-decoration: none;
}

.document-menu a:hover,
.document-menu a:focus-visible {
  background: rgba(13, 27, 61, 0.045);
}

.archive-count {
  margin: 24px 0 0;
  color: rgba(30, 36, 50, 0.56);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-align: center;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.pagination a,
.pagination button,
.pagination span {
  min-width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  color: var(--navy);
  font-size: 13px;
  font-weight: 500;
}

.pagination a,
.pagination button {
  border: 1px solid transparent;
  border-radius: 2px;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

.pagination a.is-active,
.pagination button.is-active {
  border-color: rgba(13, 27, 61, 0.16);
  background: rgba(13, 27, 61, 0.08);
  color: var(--navy);
}

.pagination a:first-child,
.pagination a:last-child,
.pagination button:first-child,
.pagination button:last-child {
  border-color: rgba(13, 27, 61, 0.1);
  color: var(--grey);
}

.pagination button:disabled {
  cursor: default;
  opacity: 0.42;
}

.no-results {
  margin: 0;
  padding: 42px 0;
  color: rgba(30, 36, 50, 0.62);
  font-size: 15px;
}

.publication-detail {
  padding: 78px 0 96px;
  background: var(--bg);
}

.publication-detail-shell {
  max-width: 940px;
}

.publication-hero-record {
  padding-bottom: 0;
}

.publication-category-label {
  display: inline-block;
  margin: 0 0 20px;
  color: rgba(142, 59, 59, 0.9);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
}

.breadcrumb {
  margin: 0 0 34px;
  color: rgba(30, 36, 50, 0.58);
  font-size: 13px;
}

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

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  color: var(--burgundy);
}

.publication-detail h1 {
  max-width: 880px;
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(46px, 5.4vw, 72px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
}

.publication-deck {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(30, 36, 50, 0.82);
  font-size: 19px;
  line-height: 1.58;
}

.publication-meta-line {
  margin: 22px 0 0;
  color: rgba(30, 36, 50, 0.58);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.015em;
}

.publication-metadata-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 32px;
  padding: 22px 0 24px;
  border-top: 1px solid rgba(13, 27, 61, 0.09);
  border-bottom: 1px solid rgba(13, 27, 61, 0.09);
}

.publication-metadata-item {
  padding-right: 20px;
}

.publication-metadata-item:not(:last-child) {
  border-right: 1px solid rgba(13, 27, 61, 0.07);
}

.publication-metadata-item span {
  display: block;
  margin-bottom: 8px;
  color: rgba(30, 36, 50, 0.48);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.publication-metadata-item strong {
  display: block;
  color: rgba(13, 27, 61, 0.92);
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.4;
}

.publication-primary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.publication-pdf-action,
.publication-secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(13, 27, 61, 0.16);
  border-radius: 2px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.publication-pdf-action {
  border-color: rgba(142, 59, 59, 0.34);
  color: var(--burgundy);
}

.publication-pdf-action:not(.is-disabled):hover,
.publication-pdf-action:not(.is-disabled):focus-visible,
.publication-secondary-link:hover,
.publication-secondary-link:focus-visible {
  border-color: rgba(142, 59, 59, 0.56);
  background: rgba(142, 59, 59, 0.035);
}

.publication-pdf-action.is-disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.publication-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin: 46px 0;
  padding: 24px 0;
  border-top: 1px solid rgba(13, 27, 61, 0.1);
  border-bottom: 1px solid rgba(13, 27, 61, 0.1);
}

.publication-meta span {
  display: block;
  margin-bottom: 6px;
  color: rgba(30, 36, 50, 0.48);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.publication-meta strong {
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.publication-content {
  max-width: 720px;
  padding-top: 50px;
}

.publication-content h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.08;
}

.publication-content h2:not(:first-child) {
  margin-top: 48px;
}

.publication-content p {
  margin: 0 0 22px;
  color: rgba(30, 36, 50, 0.78);
  font-size: 17px;
  line-height: 1.72;
}

.publication-abstract {
  max-width: 700px;
}

.finding-list,
.selected-excerpts {
  display: grid;
  gap: 14px;
  margin: 8px 0 36px;
}

.finding-list:empty,
.selected-excerpts:empty {
  display: none;
}

.finding-item,
.excerpt-block {
  position: relative;
  padding: 18px 22px 18px 24px;
  border: 1px solid rgba(13, 27, 61, 0.075);
  border-left: 3px solid rgba(184, 146, 63, 0.62);
  background: rgba(255, 255, 255, 0.16);
}

.finding-item h3,
.excerpt-block h3 {
  margin: 0 0 9px;
  color: rgba(13, 27, 61, 0.78);
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.finding-item p,
.finding-text p,
.excerpt-block p,
.excerpt-text p {
  margin-bottom: 0;
  color: rgba(30, 36, 50, 0.74);
  font-size: 15.5px;
  line-height: 1.62;
}

.finding-bullets {
  display: grid;
  gap: 8px;
  max-width: 620px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.finding-bullets li {
  position: relative;
  padding-left: 18px;
  color: rgba(30, 36, 50, 0.76);
  font-size: 15.5px;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.finding-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(184, 146, 63, 0.78);
}

.finding-text,
.excerpt-text {
  display: grid;
  gap: 10px;
}

.publication-key-points {
  display: grid;
  gap: 14px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.publication-key-points li {
  position: relative;
  padding-left: 24px;
  color: rgba(30, 36, 50, 0.78);
  font-size: 17px;
  line-height: 1.65;
}

.publication-key-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(184, 146, 63, 0.72);
}

.publication-record-card {
  display: grid;
  gap: 18px;
  margin: 0 0 28px;
  padding: 24px 26px;
  border: 1px solid rgba(13, 27, 61, 0.1);
  background: rgba(255, 255, 255, 0.2);
}

.pdf-authority-note {
  margin-top: 14px;
  color: rgba(30, 36, 50, 0.52);
  font-size: 13px;
  line-height: 1.55;
}

.publication-citation {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(13, 27, 61, 0.075);
}

.citation-text {
  max-width: 560px;
  margin-bottom: 10px;
  color: rgba(30, 36, 50, 0.72);
  font-size: 14.5px;
  line-height: 1.55;
}

.citation-copy-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.citation-copy {
  appearance: none;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(142, 59, 59, 0.24);
  background: transparent;
  color: rgba(142, 59, 59, 0.86);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: color 180ms ease, border-color 180ms ease;
}

.citation-copy:hover,
.citation-copy:focus-visible {
  color: var(--burgundy);
  border-color: rgba(142, 59, 59, 0.68);
}

.citation-copy-status {
  color: rgba(30, 36, 50, 0.52);
  font-size: 12px;
  opacity: 0;
  transition: opacity 180ms ease;
}

.citation-copy-status.is-visible {
  opacity: 1;
}

.publication-record-card p {
  display: grid;
  grid-template-columns: minmax(130px, 0.34fr) minmax(0, 1fr);
  gap: 22px;
  margin: 0;
}

.publication-record-card strong {
  color: rgba(30, 36, 50, 0.54);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.publication-record-card span {
  color: var(--navy);
  font-size: 15px;
  line-height: 1.55;
}

.publication-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin: 18px 0 0;
  padding: 2px 0;
}

.publication-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(13, 27, 61, 0.18);
  color: rgba(13, 27, 61, 0.86);
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.publication-actions .publication-pdf-action {
  min-height: 30px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(142, 59, 59, 0.18);
  background: transparent;
  color: rgba(142, 59, 59, 0.62);
  font-size: 12.5px;
}

.publication-actions > * + *::before {
  content: "/";
  margin: 0 13px;
  color: rgba(30, 36, 50, 0.24);
  font-weight: 400;
}

.publication-actions a:hover,
.publication-actions a:focus-visible {
  border-color: rgba(142, 59, 59, 0.42);
  background: transparent;
  color: var(--burgundy);
}

.related-publications {
  margin-top: 68px;
  padding-top: 30px;
  border-top: 1px solid rgba(13, 27, 61, 0.1);
}

.related-publications h2 {
  margin: 0 0 16px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.1;
}

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

.related-publications a {
  display: grid;
  gap: 2px;
  color: var(--burgundy);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.related-publications a span {
  color: rgba(30, 36, 50, 0.52);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.related-publications a:hover,
.related-publications a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

@media (max-width: 1080px) {
  .nav-shell {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px 0;
  }

  .brand,
  .main-nav,
  .nav-actions {
    justify-content: center;
  }

  .main-nav {
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 72px;
    min-height: auto;
  }

  .hero-grid,
  .publication-grid {
    grid-template-columns: 1fr;
  }

  .publications-hero-grid,
  .category-grid,
  .directory-toolbar,
  .publication-row {
    grid-template-columns: 1fr;
  }

  .directory-toolbar {
    align-items: stretch;
  }

  .directory-controls {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .publication-action {
    justify-self: start;
  }

  .publication-metadata-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 18px;
  }

  .publication-metadata-item {
    border-right: 0;
  }

  .publication-metadata-item:nth-child(odd) {
    border-right: 1px solid rgba(13, 27, 61, 0.07);
  }

  .hero-copy {
    width: 100%;
    min-height: auto;
    padding-right: 0;
    margin-bottom: 40px;
  }

  .hero-visual {
    position: relative;
    inset: auto;
    min-height: 0;
    justify-content: center;
    margin-right: 0;
    pointer-events: auto;
  }

  .hero-image {
    width: 100%;
    height: clamp(360px, 56vw, 520px);
    min-height: 0;
    transform: none;
  }

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

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .main-nav a,
  .nav-actions a,
  .editorial-link {
    font-size: 15px;
  }

  .hero {
    padding: 64px 0 72px;
    min-height: auto;
  }

  .hero-copy h1 {
    font-size: clamp(46px, 14vw, 56px);
  }

  .hero-subhead,
  .section-heading h2 {
    font-size: 34px;
  }

  .hero-body,
  .publication-card p:not(.card-label) {
    font-size: 17px;
  }

  .publication-card,
  .publication-card-featured {
    min-height: auto;
    padding: 28px 24px;
  }

  .publication-card h3,
  .publication-stack .publication-card h3 {
    font-size: 30px;
  }

  .publications-hero h1 {
    font-size: 56px;
  }

  .publications-hero {
    padding: 52px 0 46px;
  }

  .publications-hero::after {
    width: 96vw;
    height: 108%;
    right: -12vw;
    bottom: -10px;
    opacity: 0.48;
    background-size: 116% auto;
  }

  .category-card {
    padding: 28px 24px;
  }

  .publication-tabs {
    flex-wrap: wrap;
    gap: 22px;
  }

  .directory-controls {
    display: grid;
    width: 100%;
  }

  .search-field,
  .sort-select {
    width: 100%;
  }

  .publication-row {
    gap: 18px;
  }

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

  .publication-metadata-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .publication-metadata-item {
    padding-right: 0;
    border-right: 0;
  }

  .publication-metadata-item:nth-child(odd) {
    border-right: 0;
  }

  .publication-record-card p {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .publication-primary-actions,
  .publication-actions {
    align-items: flex-start;
    flex-direction: row;
  }

  .publication-pdf-action,
  .publication-secondary-link,
  .publication-actions a {
    justify-content: flex-start;
  }

  .publication-actions > * + *::before {
    margin: 0 10px;
  }

  .publication-list {
    min-height: 0;
  }

  .publication-card .editorial-link {
    left: auto;
    bottom: auto;
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
  }

  .footer-shell {
    width: 100%;
    padding: 0 24px;
  }

  .footer-identity {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 0 0 22px;
  }

  .footer-brand {
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
    text-align: center;
  }

  .footer-logo {
    width: 58px;
    height: 58px;
  }

  .footer-registration p,
  .footer-legal,
  .footer-legal a {
    font-size: 13px;
  }

  .footer-support {
    font-size: 12.5px;
  }

  .footer-registration {
    justify-items: center;
    text-align: center;
  }

  .footer-support {
    text-align: center;
  }

  .footer-bottom {
    align-items: center;
    text-align: center;
  }

  .footer-bottom::before {
    width: 72%;
  }

  .research-mark,
  .paper-mark {
    width: 140px;
    height: 110px;
  }
}
