:root {
  --journal: #800000;
  --journal-deep: #560000;
  --journal-bright: #a52a24;
  --ink: #202620;
  --ink-soft: #626c63;
  --paper: #f4f5f2;
  --surface: #ffffff;
  --rule: #dfe3dc;
  --rule-strong: #b9c1b5;
  --nav: #202620;
  --footer: #151a16;
  --measure: 74rem;
  --display: "Newsreader", Georgia, "Times New Roman", serif;
  --body: "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
  --utility: "IBM Plex Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  color-scheme: light;
}

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

html { background: var(--paper); scroll-behavior: smooth; }

body {
  min-width: 18rem;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--journal);
  text-decoration-thickness: .085em;
  text-underline-offset: .16em;
}

a:hover { color: var(--journal-bright); }

::selection { background: var(--journal); color: #fff; }

:focus { outline: 3px solid transparent; }

:focus-visible {
  outline: 3px solid var(--journal-bright);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 4rem), var(--measure));
  margin-inline: auto;
}

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

.skip-link {
  position: absolute;
  z-index: 80;
  top: -5rem;
  left: 1rem;
  padding: .7rem 1rem;
  background: var(--surface);
  color: var(--journal);
  font-weight: 700;
}

.skip-link:focus { top: 1rem; }

.site-header {
  position: relative;
  z-index: 20;
  background: var(--journal);
  color: var(--surface);
}

.masthead {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  min-height: 11.8rem;
  gap: 2.5rem;
  padding-block: 2.25rem 2rem;
}

.brand {
  display: inline-flex;
  max-width: min(100%, 70rem);
  color: var(--surface);
  font-family: var(--display);
  font-size: clamp(2.65rem, 5.7vw, 5rem);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: .94;
  text-decoration: none;
  white-space: nowrap;
}

.brand:hover { color: var(--surface); }

.brand-copy { display: grid; gap: 1rem; }

.brand-title { display: block; }

.brand-subtitle {
  display: block;
  color: rgba(255, 255, 255, .9);
  font-family: var(--utility);
  font-size: clamp(.68rem, 1vw, .82rem);
  font-weight: 600;
  letter-spacing: .17em;
  line-height: 1;
  text-transform: uppercase;
}

.header-meta {
  position: absolute;
  right: 0;
  bottom: 2.2rem;
  flex: 0 0 auto;
}

.language-switcher,
.footer-language-list {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: rgba(255, 255, 255, .7);
  font-family: var(--utility);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .13em;
}

.language-switcher a,
.footer-language-list a {
  display: inline-flex;
  align-items: center;
  min-height: 1.9rem;
  padding: .2rem 0;
  color: var(--surface);
  text-decoration: none;
}

.language-switcher a:hover,
.language-switcher a:focus-visible,
.footer-language-list a:hover,
.footer-language-list a:focus-visible { color: #fff; text-decoration: underline; }

.nav-band {
  border-top: 1px solid rgba(255, 255, 255, .24);
  background: var(--nav);
  box-shadow: 0 1px 0 rgba(0, 0, 0, .22);
}

.nav-wrap { display: flex; align-items: stretch; min-height: 4.15rem; }

.primary-nav { width: 100%; }

.primary-nav ul { margin: 0; padding: 0; list-style: none; }

.primary-nav > ul { display: flex; flex-wrap: wrap; align-items: stretch; }

.primary-nav li { position: relative; }

.primary-nav > ul > li > a {
  display: inline-flex;
  align-items: center;
  min-height: 4.15rem;
  padding: .8rem 1.05rem .7rem;
  border-bottom: 3px solid transparent;
  color: #f7f8f5;
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .01em;
  line-height: 1.2;
  text-decoration: none;
}

.primary-nav > ul > li > a:hover,
.primary-nav > ul > li > a:focus-visible,
.primary-nav > ul > li > a[aria-current="page"],
.primary-nav > ul > .menu-item--current-branch > a {
  border-bottom-color: var(--journal-bright);
  background: rgba(255, 255, 255, .07);
  color: #fff;
}

.primary-nav .submenu {
  z-index: 40;
  min-width: 19rem;
  max-height: min(68vh, 42rem);
  margin: 0;
  padding: .55rem 0;
  overflow: auto;
  background: var(--surface);
  border-top: 4px solid var(--journal);
  box-shadow: 0 1rem 2.1rem rgba(21, 26, 22, .22);
}

.primary-nav .submenu a {
  display: flex;
  align-items: center;
  min-height: 2.65rem;
  padding: .56rem 1.15rem;
  color: var(--ink);
  font-size: .92rem;
  font-weight: 500;
  line-height: 1.34;
  text-decoration: none;
}

.primary-nav .submenu a:hover,
.primary-nav .submenu a:focus-visible,
.primary-nav .submenu a[aria-current="page"] {
  background: rgba(128, 0, 0, .08);
  color: var(--journal);
}

.submenu-toggle { display: none; }

.menu-toggle {
  display: none;
  place-items: center;
  min-width: 2.8rem;
  min-height: 2.8rem;
  margin-block: .65rem;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 2px;
  background: transparent;
  color: var(--surface);
  font: inherit;
}

.menu-icon { font-size: 1.25rem; line-height: 1; }

@media (min-width: 60.0625rem) {
  .primary-nav .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
  }

  .primary-nav > ul > li > .submenu {
    max-height: none;
    overflow: visible;
  }

  .primary-nav li:hover > .submenu,
  .primary-nav li:focus-within > .submenu { display: grid; }

  .primary-nav .submenu .submenu {
    top: -.55rem;
    left: calc(100% - .1rem);
  }
}

.page-main { padding: clamp(3rem, 6vw, 6.4rem) 0 clamp(4rem, 8vw, 8rem); }

.reading-column { width: 100%; margin-inline: auto; }

.breadcrumbs {
  margin: 0 0 2rem;
  padding: 0;
  color: var(--ink-soft);
  font-family: var(--utility);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .03em;
}

.breadcrumbs a { color: var(--ink-soft); }

.breadcrumbs a:hover { color: var(--journal); }

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li { overflow-wrap: anywhere; }

.breadcrumb-separator { color: var(--rule-strong); }

.content-card {
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(32, 38, 32, .04);
}

.content-heading {
  padding: clamp(2.2rem, 6vw, 5.5rem) clamp(1.5rem, 7vw, 6.8rem) clamp(2.4rem, 5vw, 4rem);
  border-top: .5rem solid var(--journal);
  border-bottom: 1px solid var(--ink);
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-family: var(--display);
  line-height: 1.15;
  text-wrap: balance;
}

h1 {
  margin: 0;
  font-size: clamp(2.65rem, 7.2vw, 6.15rem);
  font-weight: 600;
  letter-spacing: -.055em;
}

.content-card--category h1 { font-size: clamp(2.4rem, 6.2vw, 5rem); }

h2 {
  margin: 2.8rem 0 1rem;
  font-size: clamp(1.75rem, 3.7vw, 2.75rem);
  letter-spacing: -.03em;
}

h3 {
  margin: 2.2rem 0 .8rem;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  letter-spacing: -.02em;
}

h4 { margin: 1.8rem 0 .7rem; font-size: 1.2rem; }

.content-body {
  min-width: 0;
  padding: clamp(2rem, 6vw, 5.2rem) clamp(1.5rem, 7vw, 6.8rem) clamp(2.8rem, 7vw, 6.2rem);
  overflow-wrap: anywhere;
  font-family: var(--display);
  font-size: clamp(1.08rem, 1.2vw, 1.2rem);
  line-height: 1.66;
}

.content-body > :first-child { margin-top: 0; }

.content-body p { margin: 0 0 1.45rem; }

.content-body li + li { margin-top: .48rem; }

.content-body ul,
.content-body ol { padding-left: 1.45rem; }

.content-body a { text-decoration-thickness: .07em; }

.content-body img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-block: 1.9rem;
}

.content-body figure { max-width: 100%; margin-inline: 0; }

.content-body table {
  width: 100%;
  margin: 2rem 0;
  border-collapse: collapse;
  font-family: var(--body);
  font-size: .94rem;
  line-height: 1.45;
}

.content-body th,
.content-body td {
  border: 1px solid var(--rule);
  padding: .72rem .82rem;
  text-align: left;
  vertical-align: top;
}

.content-body th { background: var(--paper); font-weight: 700; }

.content-body blockquote {
  margin: 2rem 0;
  padding: .35rem 0 .35rem 1.35rem;
  border-left: 4px solid var(--journal);
  color: var(--ink-soft);
}

.content-body hr { margin: 2.7rem 0; border: 0; border-top: 1px solid var(--rule-strong); }

.content-body iframe {
  display: block;
  width: 100%;
  min-height: 20rem;
  margin: 1.8rem 0;
  border: 0;
}

.archive-subcategories {
  display: grid;
  gap: 0;
  margin: 1.9rem 0 2.8rem;
  border-top: 1px solid var(--rule-strong);
}

.archive-subcategory {
  position: relative;
  padding: 1.55rem 0 1.65rem 1.35rem;
  border-bottom: 1px solid var(--rule);
}

.archive-subcategory::before {
  position: absolute;
  top: 1.65rem;
  bottom: 1.65rem;
  left: 0;
  width: 4px;
  background: var(--journal);
  content: "";
}

.archive-subcategory > h3 {
  margin: 0 0 .6rem;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  font-weight: 500;
  letter-spacing: -.012em;
  line-height: 1.3;
}

.archive-subcategory > h3 a { color: inherit; text-decoration: none; }

.archive-subcategory > h3 a:hover,
.archive-subcategory > h3 a:focus-visible { color: var(--journal); text-decoration: underline; }

.archive-subcategory[data-archive-placeholder="true"] > h3 { display: none; }

.archive-subcategory-description > :first-child { margin-top: 0; }

.archive-subcategory-description > :last-child { margin-bottom: 0; }

.archive-subcategory-description h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  letter-spacing: -.03em;
}

.archive-list { display: grid; gap: 0; margin-top: 1.9rem; border-top: 1px solid var(--rule-strong); }

.archive-entry {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: baseline;
  padding: 1.12rem 0;
  border-bottom: 1px solid var(--rule);
}

.archive-entry a:first-of-type { font-size: 1.07rem; font-weight: 600; }

.archive-entry-main { display: grid; min-width: 0; gap: .22rem; }

.archive-author { color: var(--ink-soft); font-family: var(--body); font-size: .84rem; line-height: 1.45; }

.archive-page { color: var(--ink-soft); font-family: var(--utility); font-size: .79rem; font-variant-numeric: tabular-nums; }

.archive-pdf { white-space: nowrap; color: var(--journal); font-family: var(--utility); font-size: .72rem; font-weight: 600; letter-spacing: .06em; }

.site-footer { background: var(--footer); color: rgba(255, 255, 255, .78); }

.footer-grid {
  display: grid;
  grid-template-columns: minmax(15rem, 1.3fr) minmax(12rem, 1fr) minmax(8rem, .7fr);
  gap: 3rem;
  padding-block: 3.4rem 2.8rem;
}

.footer-identity,
.footer-links,
.footer-languages { min-width: 0; }

.footer-brand {
  margin: 0;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1;
  letter-spacing: -.035em;
}

.footer-issn {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, .62);
  font-family: var(--utility);
  font-size: .73rem;
  letter-spacing: .12em;
}

.footer-links nav { display: flex; flex-direction: column; gap: .45rem; }

.footer-links a {
  color: rgba(255, 255, 255, .8);
  font-size: .92rem;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible { color: #fff; text-decoration: underline; }

.footer-language-list { align-items: flex-start; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .75rem 2rem;
  padding-block: 1.2rem 1.7rem;
  border-top: 1px solid rgba(255, 255, 255, .16);
  color: rgba(255, 255, 255, .52);
  font-family: var(--utility);
  font-size: .68rem;
  letter-spacing: .08em;
}

@media (max-width: 60rem) {
  .container { width: min(calc(100% - 2rem), var(--measure)); }

  .masthead { min-height: 9.5rem; }

  .header-meta {
    position: static;
    margin-left: auto;
    padding-bottom: .25rem;
  }

  .menu-toggle { display: inline-grid; }

  .nav-wrap { display: block; min-height: 0; }

  .primary-nav { display: none; padding-bottom: .8rem; }

  .primary-nav[data-open="true"] { display: block; }

  .primary-nav > ul { display: block; border-top: 1px solid rgba(255, 255, 255, .2); }

  .primary-nav li {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 3rem;
    align-items: stretch;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
  }

  .primary-nav li:not(.menu-item--has-children) > a { grid-column: 1 / -1; }

  .primary-nav > ul > li > a,
  .primary-nav .submenu a {
    min-height: 3rem;
    padding: .72rem .15rem;
    border: 0;
    background: transparent;
    color: var(--surface);
    font-size: .93rem;
    letter-spacing: 0;
  }

  .primary-nav > ul > li > a:hover,
  .primary-nav > ul > li > a:focus-visible,
  .primary-nav > ul > li > a[aria-current="page"],
  .primary-nav > ul > .menu-item--current-branch > a { border: 0; background: transparent; color: var(--surface); }

  .submenu-toggle {
    display: grid;
    place-items: center;
    width: 3rem;
    min-height: 3rem;
    border: 0;
    border-left: 1px solid rgba(255, 255, 255, .16);
    border-radius: 0;
    background: transparent;
    color: var(--surface);
    font: inherit;
    font-size: 1.35rem;
  }

  .submenu-toggle > span { transition: transform 160ms ease; }

  .submenu-toggle[aria-expanded="true"] > span { transform: rotate(180deg); }

  .primary-nav .submenu {
    display: none;
    grid-column: 1 / -1;
    min-width: 0;
    max-height: none;
    margin: 0;
    padding: 0;
    overflow: visible;
    background: rgba(0, 0, 0, .17);
    border: 0;
    box-shadow: none;
  }

  .primary-nav .submenu[data-open="true"] { display: block; }

  .primary-nav .submenu li { margin-left: 1rem; border-left: 2px solid rgba(255, 255, 255, .24); }

  .primary-nav .submenu .submenu { margin-left: 1.45rem; }

  .primary-nav .submenu a { padding-left: .8rem; color: rgba(255, 255, 255, .91); }

  .primary-nav .submenu a:hover,
  .primary-nav .submenu a:focus-visible,
  .primary-nav .submenu a[aria-current="page"] { background: rgba(255, 255, 255, .08); color: var(--surface); }

  .page-main { padding-top: 2.5rem; }

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

  .footer-languages { grid-column: 1 / -1; }
}

@media (max-width: 40rem) {
  .container { width: min(calc(100% - 1.5rem), var(--measure)); }

  .masthead { display: block; min-height: 0; padding-block: 1.5rem 1.35rem; }

  .brand { font-size: clamp(2.35rem, 12vw, 3.65rem); }

  .brand { white-space: normal; }

  .header-meta { margin-top: 1.35rem; padding: 0; }

  .language-switcher { width: 100%; justify-content: flex-end; }

  .page-main { padding-bottom: 4rem; }

  .breadcrumbs { margin-bottom: 1.35rem; }

  h1 { font-size: clamp(2.45rem, 14vw, 4rem); }

  .content-heading { padding-inline: 1.35rem; }

  .content-body { padding-inline: 1.35rem; }

  .archive-entry { grid-template-columns: 3rem minmax(0, 1fr); gap: .7rem; }

  .archive-pdf { grid-column: 2; }

  .content-body table { display: block; overflow-x: auto; white-space: nowrap; }

  .footer-grid { display: flex; flex-direction: column; gap: 2rem; }

  .footer-languages { order: 3; }
}

/* Full design2 composition ------------------------------------------------ */
.utility-bar {
  background: var(--footer);
  color: #d8ddd7;
  font-family: var(--utility);
  font-size: .68rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.utility-inner {
  display: flex;
  min-height: 2.25rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: .35rem;
}

.utility-identity {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.utility-languages {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: .2rem;
}

.utility-languages a,
.utility-languages .language-current {
  display: inline-flex;
  min-width: 2rem;
  min-height: 1.55rem;
  align-items: center;
  justify-content: center;
  padding: .2rem .5rem;
  border-radius: 2px;
  color: #d8ddd7;
  text-decoration: none;
}

.utility-languages .language-current {
  background: var(--journal);
  color: #fff;
}

.utility-languages a:hover,
.utility-languages a:focus-visible {
  background: rgba(255, 255, 255, .14);
  color: #fff;
}

.language-separator { color: rgba(255, 255, 255, .4); }

.site-header {
  background: var(--journal);
  overflow: visible;
}

.site-header::before {
  position: absolute;
  inset: 0 0 auto;
  height: 11rem;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, .055) 0 1px, transparent 1px 13px);
  content: "";
  pointer-events: none;
}

.site-header::after {
  position: absolute;
  top: -12rem;
  right: -9rem;
  width: 35rem;
  height: 35rem;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, .11), transparent 62%);
  content: "";
  pointer-events: none;
}

.masthead {
  position: relative;
  z-index: 1;
  min-height: 11.6rem;
  align-items: center;
  padding-block: 2.25rem 2.1rem;
}

.brand {
  display: flex;
  width: 100%;
  max-width: none;
  align-items: center;
  gap: 2rem;
  color: #fff;
  font-size: clamp(2.15rem, 5.2vw, 4rem);
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: .96;
  white-space: normal;
}

.brand-crest {
  width: 6.5rem;
  height: auto;
  flex: 0 0 auto;
  opacity: .95;
}

.brand-copy { display: block; min-width: 0; }

.brand-title { display: block; }

.brand-subtitle {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .6rem;
  margin-top: 1rem;
  color: rgba(255, 255, 255, .82);
  font-family: var(--utility);
  font-size: clamp(.62rem, 1vw, .75rem);
  font-weight: 500;
  letter-spacing: .14em;
  line-height: 1.35;
}

.nav-band {
  position: sticky;
  top: 0;
  z-index: 60;
  border-top: 0;
  background: var(--nav);
  box-shadow: 0 1px 0 rgba(0, 0, 0, .25);
}

.nav-wrap { min-height: 3.25rem; gap: 2px; }

.primary-nav > ul { gap: 2px; }

.primary-nav > ul > li > a {
  min-height: 3.25rem;
  padding: 1rem .95rem .85rem;
  border-bottom-width: 3px;
  color: #e9ece8;
  font-size: .82rem;
  font-weight: 600;
}

.primary-nav > ul > li > a:hover,
.primary-nav > ul > li > a:focus-visible,
.primary-nav > ul > li > a[aria-current="page"],
.primary-nav > ul > .menu-item--current-branch > a {
  border-bottom-color: var(--journal-bright);
  background: rgba(255, 255, 255, .05);
}

.home-news {
  border-bottom: 1px solid var(--rule);
  background: var(--surface);
}

.home-news-inner { padding-block: 0; }

.home-news-rule {
  padding: 1.65rem 0 1.65rem 1.5rem;
  border-left: 4px solid var(--journal);
}

.home-news-label,
.sidebar-label,
.footer-label {
  color: var(--journal);
  font-family: var(--utility);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.home-news h2 {
  max-width: 40ch;
  margin: .55rem 0 0;
  color: var(--ink);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 500;
  letter-spacing: -.01em;
}

.home-news p {
  margin: .55rem 0 0;
  color: var(--ink-soft);
  font-size: 1rem;
}

.home-main { padding: 3.25rem 0 5.5rem; }

.home-layout {
  display: flex;
  align-items: flex-start;
  gap: 3.5rem;
}

.home-primary {
  flex: 1 1 0;
  min-width: 0;
}

.home-primary h1 {
  margin: .85rem 0 0;
  color: var(--ink);
  font-size: clamp(2.8rem, 6vw, 4.65rem);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: .98;
}

.home-content-body {
  margin-top: 2rem;
  color: #23281f;
  font-family: var(--display);
  font-size: 1.21rem;
  line-height: 1.66;
}

.home-content-body > p {
  margin: 0 0 1.35rem;
}

.home-content-body > h3:first-child {
  display: flex;
  min-height: 4.4rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin: 0 0 2.25rem;
  padding: 1.2rem 1.45rem;
  border-radius: 2px;
  background: var(--journal);
  text-align: left !important;
}

.home-content-body > h3:first-child a {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.3;
  text-decoration: none;
}

.home-content-body > h3:first-child a:hover,
.home-content-body > h3:first-child a:focus-visible {
  color: #fff;
  text-decoration: underline;
}

html[lang^="hu"] .home-content-body > p:nth-of-type(2),
html:not([lang^="hu"]) .home-content-body > p:first-of-type {
  margin-bottom: 1.65rem;
  font-size: 1.43rem;
  line-height: 1.5;
}

.home-content-body a { text-decoration: none; border-bottom: 1px solid rgba(128, 0, 0, .45); }

.home-content-body a:hover,
.home-content-body a:focus-visible { border-bottom-color: var(--journal); }

.home-sidebar {
  position: sticky;
  top: 4.7rem;
  display: flex;
  width: min(100%, 21.25rem);
  flex: 0 1 21.25rem;
  min-width: 0;
  flex-direction: column;
  gap: 1.6rem;
}

.sidebar-card {
  background: var(--surface);
  border: 1px solid var(--rule);
}

.cover-card { padding: 1rem; }

.cover-card img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--rule);
}

.latest-card { border-top: 3px solid var(--journal); }

.sidebar-card-heading { padding: 1.2rem 1.35rem 1rem; border-bottom: 1px solid var(--rule); }

.sidebar-issues { display: flex; flex-direction: column; }

.sidebar-issue {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: .75rem;
  padding: .95rem 1.35rem;
  border-bottom: 1px solid var(--rule);
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.02rem;
  line-height: 1.3;
  text-decoration: none;
}

.sidebar-issue:hover,
.sidebar-issue:focus-visible { background: #f7eeee; color: var(--journal); }

.sidebar-issue small {
  flex: 0 0 auto;
  color: var(--ink-soft);
  font-family: var(--utility);
  font-size: .57rem;
  letter-spacing: .1em;
}

.sidebar-all {
  display: block;
  padding: 1rem 1.35rem;
  color: var(--journal);
  font-family: var(--utility);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-decoration: none;
}

.sidebar-all:hover,
.sidebar-all:focus-visible { background: var(--journal); color: #fff; }

.sidebar-empty { margin: 0; padding: 1.25rem 1.35rem; color: var(--ink-soft); }

.manuscript-card {
  padding: 1.35rem;
  border-color: #e1cece;
  background: #f7eeee;
}

.manuscript-card p {
  margin: .75rem 0 1rem;
  color: #3b2727;
  font-family: var(--display);
  font-size: 1.08rem;
  line-height: 1.5;
}

.sidebar-button {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem .9rem;
  background: var(--journal);
  color: #fff;
  font-family: var(--body);
  font-size: .8rem;
  font-weight: 600;
  text-decoration: none;
}

.sidebar-button:hover,
.sidebar-button:focus-visible { background: var(--journal-deep); color: #fff; }

.footer-branding { display: flex; align-items: flex-start; gap: 1rem; }

.footer-branding img { width: 3.5rem; height: auto; flex: 0 0 auto; opacity: .9; }

.footer-brand { margin: 0; }

.footer-organization {
  margin: .5rem 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: .8rem;
  line-height: 1.6;
}

.footer-issn { margin-top: .9rem; line-height: 1.9; }

.footer-label { color: rgba(255, 255, 255, .55); }

.footer-languages .footer-language-list { display: flex; flex-wrap: wrap; align-items: center; gap: .3rem; margin-top: 1rem; }

.footer-language-list .language-current,
.footer-language-list a {
  display: inline-flex;
  min-width: 2.5rem;
  min-height: 2rem;
  align-items: center;
  justify-content: center;
  padding: .35rem .55rem;
  color: rgba(255, 255, 255, .86);
  font-family: var(--utility);
  font-size: .68rem;
  letter-spacing: .1em;
  text-decoration: none;
}

.footer-language-list .language-current { background: var(--journal); color: #fff; }

.footer-language-list a:hover,
.footer-language-list a:focus-visible { background: rgba(255, 255, 255, .14); color: #fff; }

@media (max-width: 60rem) {
  .home-layout { gap: 2.5rem; }

  .home-sidebar {
    position: static;
    width: 100%;
    max-width: none;
    flex-basis: 18rem;
  }

  .brand-crest { width: 5.5rem; }
}

@media (max-width: 46rem) {
  .utility-identity { max-width: 60%; }

  .masthead { min-height: 0; padding-block: 1.75rem 1.6rem; }

  .brand { gap: 1.25rem; font-size: clamp(2.15rem, 9vw, 3.35rem); }

  .brand-crest { width: 4.5rem; }

  .home-layout { display: block; }

  .home-sidebar { margin-top: 3.25rem; }

  .home-main { padding-top: 2.5rem; }
}

@media (max-width: 34rem) {
  .utility-identity { max-width: 55%; font-size: .57rem; }

  .utility-languages a,
  .utility-languages .language-current { min-width: 1.8rem; padding-inline: .35rem; }

  .brand { align-items: flex-start; }

  .brand-crest { width: 3.8rem; }

  .brand-subtitle { gap: .4rem; font-size: .57rem; letter-spacing: .1em; }

  .home-news-rule { padding-left: 1rem; }

  .home-content-body > h3:first-child { padding: 1rem; }

  .home-content-body > h3:first-child a { font-size: 1.08rem; }
}

@media print {
  html,
  body { background: #fff; color: #000; }

  .utility-bar,
  .site-header,
  .nav-band,
  .site-footer,
  .breadcrumbs,
  .home-news,
  .home-sidebar,
  .skip-link { display: none !important; }

  .container,
  .reading-column { width: 100%; max-width: none; }

  .page-main { padding: 0; }

  .content-card { background: #fff; box-shadow: none; }

  .home-main { padding: 0; }

  .home-content-body { font-size: 12pt; }

  .content-heading,
  .content-body { padding-inline: 0; }

  .content-heading { border-top: 0; }

  .content-body a { color: #000; text-decoration: underline; }

  .content-body a[href^="http"]::after { content: " (" attr(href) ")"; font-size: .8em; overflow-wrap: anywhere; }

  .archive-entry,
  .archive-subcategory { break-inside: avoid; }
}

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