:root {
  --primary: #175c62;
  --accent: #b45d2c;
  --ink: #1d282c;
  --muted: #66757a;
  --line: #d5dedc;
  --paper: #f7f6f1;
  --panel: #ffffff;
  --soft: #eef4f3;
  --nav: #153f45;
  --notice: #fff8e9;
  --radius: 4px;
  --header-offset: 140px;
  font-family: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f4f7f8;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

button,
input,
textarea,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(29, 40, 44, 0.06);
  backdrop-filter: blur(12px);
}

.submission-ticker {
  color: #fff;
  background: linear-gradient(90deg, #8f3f1f, var(--accent), #0f5c62);
  border-bottom: 1px solid rgba(255,255,255,0.16);
  overflow: hidden;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
}

.site-header,
.submission-ticker,
.utility-bar,
.masthead,
.nav,
#app,
.site-footer {
  max-width: 100vw;
}

.ticker-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  animation: tickerMove 28s linear infinite;
}

.ticker-track span {
  display: inline-block;
  padding: 7px 24px;
  white-space: nowrap;
}

.ticker-track a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@keyframes tickerMove {
  from { transform: translateX(100%); }
  to { transform: translateX(-100%); }
}

.utility-bar {
  color: white;
  background: var(--nav);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
}

.utility-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 6px 0;
}

.masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  padding: 10px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--nav));
  border-radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  box-shadow: 0 10px 26px color-mix(in srgb, var(--primary) 24%, transparent);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 7px;
  background: white;
}

.brand-mark.has-logo {
  width: auto;
  min-width: 62px;
  max-width: 190px;
  height: 64px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.brand-mark.has-logo img {
  width: auto;
  max-width: 100%;
  max-height: 64px;
  height: auto;
  padding: 0;
  background: transparent;
}

.brand strong {
  display: block;
  max-width: 680px;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.9rem;
}

#brandPublisher {
  display: none;
  color: color-mix(in srgb, var(--primary) 72%, var(--ink));
  font-size: 0.84rem;
  font-weight: 700;
}

.header-tools {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 8px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  flex: 0 0 auto;
}

.header-tools a,
.nav a,
.button,
button {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 7px 11px;
  background: var(--panel);
  color: var(--ink);
  cursor: pointer;
}

.header-tools a {
  white-space: nowrap;
}

.header-tools .tool-primary,
.button.primary,
button.primary {
  color: white;
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 8px 18px color-mix(in srgb, var(--accent) 22%, transparent);
}

.nav {
  display: flex;
  gap: 0;
  width: 100%;
  padding-left: max(16px, calc((100vw - 1180px) / 2));
  padding-right: max(16px, calc((100vw - 1180px) / 2));
  margin: 0;
  overflow: visible;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  border-top: 0;
  background: var(--nav);
}

.nav-item {
  position: relative;
  flex: 0 0 auto;
}

.nav a {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 0;
  border-right: 1px solid rgba(255,255,255,0.12);
  border-radius: 0;
  background: transparent;
  color: white;
  white-space: nowrap;
  font-size: 0.9rem;
  font-weight: 700;
}

.nav a:hover {
  color: white;
  background: color-mix(in srgb, var(--primary) 62%, var(--nav));
  text-decoration: none;
}

.nav-item:first-child a {
  border-left: 1px solid rgba(255,255,255,0.12);
}

.nav-caret {
  font-size: 0.72rem;
}

.submenu {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 50;
  display: none;
  min-width: 230px;
  border: 1px solid var(--line);
  background: var(--nav);
  box-shadow: 0 18px 38px rgba(29, 40, 44, 0.14);
}

.submenu a {
  border-right: 0;
  border-bottom: 1px solid var(--line);
  min-height: 40px;
  white-space: normal;
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  display: grid;
}

.journal-cover {
  background:
    linear-gradient(135deg, rgba(255,255,255,.88), rgba(255,255,255,.62)),
    radial-gradient(circle at 18% 0%, color-mix(in srgb, var(--accent) 22%, transparent), transparent 28%),
    linear-gradient(135deg, color-mix(in srgb, var(--primary) 13%, white), var(--paper));
  border-bottom: 1px solid var(--line);
}

.journal-cover-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 285px;
  gap: 30px;
  align-items: end;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0;
}

.journal-cover h1 {
  margin: 0 0 12px;
  font-size: clamp(2.1rem, 5vw, 4.3rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.journal-cover p {
  max-width: 760px;
  margin: 0;
  color: #455459;
  font-size: 1.08rem;
  line-height: 1.7;
}

.journal-cover-panel {
  margin: -24px -24px 24px;
  padding: 34px 30px 26px;
  background:
    linear-gradient(135deg, rgba(7, 39, 52, 0.96), rgba(17, 79, 91, 0.92)),
    linear-gradient(135deg, var(--nav), var(--primary));
  border-bottom: 4px solid var(--accent);
}

.journal-cover-panel h1 {
  max-width: 760px;
  margin: 12px 0 14px;
  font-size: clamp(2rem, 4.2vw, 3.65rem);
  line-height: 1.06;
  letter-spacing: 0;
  color: white;
}

.journal-cover-panel p,
.journal-cover-panel .journal-about-text {
  max-width: 740px;
  margin: 0 0 20px;
  color: rgba(255,255,255,0.86);
  font-size: 1rem;
  line-height: 1.68;
}

.journal-cover-panel .journal-about-text p,
.journal-cover-panel .journal-about-text div {
  margin: 0;
  color: inherit;
}

.journal-kicker,
.journal-metrics,
.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.journal-kicker span {
  padding: 5px 9px;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: var(--radius);
  color: white;
  background: rgba(255,255,255,0.1);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-hero-actions {
  margin-bottom: 18px;
}

.journal-cover-panel .button {
  border-color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.11);
  color: white;
}

.journal-cover-panel .button.primary {
  border-color: var(--accent);
  background: var(--accent);
}

.journal-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 560px;
}

.journal-metrics span {
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.78);
}

.journal-metrics strong {
  display: block;
  color: white;
  font-size: 1.22rem;
}

.issn-box {
  padding: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.issn-box strong,
.block-title {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.smp-layout,
.layout {
  width: min(1180px, calc(100% - 32px));
  margin: 28px auto;
}

.published-issue-layout {
  width: min(1180px, calc(100% - 32px));
  margin-top: 24px;
}

.published-issue-main {
  background: #fff;
  border: 0;
  box-shadow: none;
  padding: 0 34px 52px;
}

.published-issue {
  background: transparent;
  border: 0;
  box-shadow: none;
  margin-bottom: 56px;
  padding: 0;
}

.smp-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 292px;
  gap: 28px;
  align-items: start;
}

.article-layout {
  grid-template-columns: minmax(0, 1fr) 304px;
  gap: 28px;
  justify-content: center;
  width: min(1180px, calc(100% - 32px));
  max-width: min(1180px, calc(100vw - 32px));
  overflow: visible;
}

.article-layout .main-column {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  min-width: 0;
}

.article-layout .side-column {
  justify-self: stretch;
  max-width: 304px;
  min-width: 0;
  position: static;
  width: 100%;
}

.article-layout .side-block {
  border-radius: 6px;
  box-shadow: none;
  min-width: 0;
}

.home-layout {
  margin-top: 0;
  gap: 22px;
}

.home-main {
  overflow: hidden;
}

.main-column,
.section,
.side-block,
.admin-panel,
.admin-nav {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(29, 40, 44, 0.04);
}

.main-column,
.section,
.admin-panel {
  padding: 24px;
}

.side-column {
  display: grid;
  align-content: start;
  gap: 14px;
  position: sticky;
  top: var(--header-offset);
}

.side-block {
  padding: 16px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.home-layout .side-column {
  gap: 12px;
}

.home-layout .side-block {
  box-shadow: none;
  border-color: color-mix(in srgb, var(--line) 82%, white);
  background: #fff;
}

.home-layout .side-block:first-child {
  border-top: 4px solid var(--accent);
}

.block-title {
  color: var(--nav);
}

.side-block ul,
.announcement-list {
  padding-left: 18px;
  margin: 8px 0 0;
}

.side-block li,
.announcement-list li {
  margin: 8px 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 0;
  margin: 0 0 16px;
  counter-reset: step;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  list-style: none;
}

.steps li {
  padding: 12px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.steps li::before {
  counter-increment: step;
  content: counter(step) ". ";
  font-weight: 800;
}

.submissionWizard {
  width: min(1180px, calc(100% - 32px));
  margin: 28px auto;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.submissionWizard__submissionDetails {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.app__breadcrumbsSeparator {
  color: color-mix(in srgb, var(--muted) 55%, white);
}

.submissionWizard__headingRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.app__pageHeading {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.submissionWizard__submissionConfiguration {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--primary);
  background: var(--soft);
}

.submissionWizard__submissionConfiguration span {
  color: var(--muted);
}

.submissionWizard__body {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 14px 34px rgba(29, 40, 44, 0.05);
}

.wizard-steps {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
  margin: 0 0 18px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.wizard-step {
  display: grid;
  gap: 6px;
  min-height: 72px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  text-align: left;
}

.wizard-step span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: #fff;
  border-radius: 50%;
  background: var(--primary);
  font-weight: 900;
}

.wizard-step.current {
  border-color: var(--accent);
  box-shadow: inset 0 -3px 0 var(--accent);
}

.wizard-step.done {
  border-color: color-mix(in srgb, var(--primary) 55%, var(--line));
  background: var(--soft);
}

.wizard-step.done span {
  background: var(--nav);
}

.wizard-panel {
  display: grid;
  gap: 14px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.panel-section-header {
  padding: 18px 18px 0;
}

.panel-section-header h2,
.wizard-panel h2 {
  margin: 0;
}

.panel-section-header p {
  margin: 6px 0 0;
  color: var(--muted);
}

.wizard-panel > :not(.panel-section-header) {
  margin-left: 18px;
  margin-right: 18px;
}

.wizard-panel > :last-child {
  margin-bottom: 18px;
}

.wizard-panel[hidden] {
  display: none;
}

.wizard-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  position: sticky;
  bottom: 0;
  z-index: 5;
  margin-top: 14px;
  padding: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
}

.wizard-save-status {
  margin-right: auto;
  color: var(--muted);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.9rem;
}

.review-summary {
  padding: 14px;
  border-left: 4px solid var(--primary);
  background: var(--soft);
}

.review-list {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
}

.review-list div {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 10px;
}

.review-list dt {
  color: var(--muted);
  font-weight: 800;
}

.review-list dd {
  margin: 0;
}

.workflow-progress {
  display: grid;
  grid-template-columns: repeat(5, minmax(92px, 1fr));
  gap: 4px;
  margin: 10px 0;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.78rem;
}

.workflow-progress span {
  padding: 7px 8px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
}

.workflow-progress span.done {
  color: #fff;
  border-color: var(--primary);
  background: var(--primary);
}

.workflow-progress span.current {
  color: #fff;
  border-color: var(--accent);
  background: var(--accent);
}

.decision-grid {
  display: grid;
  gap: 6px;
  margin-top: 10px;
}

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

.discussion-list article {
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.discussion-list p {
  margin: 5px 0 0;
}

.section {
  margin-bottom: 20px;
}

.section h1,
.section h2,
.section h3,
.main-column h2,
.main-column h3 {
  margin-top: 0;
}

.page-header {
  margin: -24px -24px 24px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, color-mix(in srgb, var(--soft) 44%, white));
}

.page-header span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--primary);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page-header h1 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 1.08;
}

.issue-heading {
  background: #fff;
  margin-bottom: 22px;
}

.ojs-issue-header h1 {
  color: #101820;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.08;
  margin: 0 0 36px;
}

.ojs-issue-header p {
  color: #111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  line-height: 1.45;
  margin: 0 0 36px;
}

.ojs-issue-header dl {
  align-items: baseline;
  display: flex;
  gap: 18px;
  margin: 0 0 90px;
}

.ojs-issue-header dt {
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.ojs-issue-header dd {
  color: #111;
  font-size: 1.05rem;
  margin: 0;
}

.ojs-section-heading {
  color: #6c747c;
  display: inline-block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 800;
  margin: 0;
  padding-bottom: 12px;
  position: relative;
  text-transform: uppercase;
}

.ojs-section-heading::after {
  background: var(--accent);
  bottom: 0;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  width: 120px;
}

.issue-meta,
.meta,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: var(--muted);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.92rem;
}

.toc {
  display: grid;
  gap: 0;
  margin-top: 30px;
}

.toc-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.toc-galley {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 104px;
  height: 42px;
  color: #101820;
  background: #8ee5cc;
  border-radius: 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
}

.toc-galley span {
  display: none;
}

.toc-item h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
}

.ojs-issue-article {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) 116px;
  padding: 30px 0 34px;
  border-bottom: 1px solid #eef1f4;
}

.ojs-issue-article h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.38rem;
  font-weight: 800;
  line-height: 1.32;
  margin: 0 0 10px;
}

.ojs-issue-article h3 a {
  color: #34758d;
  text-decoration: none;
}

.ojs-issue-article h3 a:hover {
  color: var(--accent);
}

.toc-main {
  min-width: 0;
}

.ojs-authors {
  color: #111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  line-height: 1.45;
  margin-bottom: 18px;
}

.toc-pages {
  font-family: Georgia, "Times New Roman", serif;
  padding-top: 35px;
  text-align: right;
  white-space: nowrap;
}

.toc-pages span {
  color: #8a929a;
  display: block;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.toc-pages strong {
  color: #4b5560;
  display: block;
  font-size: 1.1rem;
  font-weight: 500;
}

.toc-actions {
  display: flex;
  justify-content: flex-start;
}

.toc-galley.muted {
  background: var(--muted);
}

.article-tools dl {
  display: grid;
  gap: 9px;
  margin: 14px 0 0;
}

.article-tools div {
  display: grid;
  gap: 3px;
  padding-top: 9px;
  border-top: 1px solid var(--line);
}

.article-tools dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.article-tools dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.article-tools .button {
  justify-content: center;
  margin-top: 9px;
  width: 100%;
}

.article-page .page-header {
  margin-bottom: 18px;
}

.ojs-article-page {
  background: #fff;
  border: 0;
  border-radius: 0;
  padding: 34px 42px 46px;
}

.article-title-block {
  background: #fff;
  border-bottom: 1px solid var(--line);
  margin: 0 0 22px;
  padding: 0 0 24px;
}

.article-title-block h1 {
  color: #111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.05rem, 3.1vw, 2.85rem);
  line-height: 1.16;
  max-width: 760px;
}

.article-title-block .meta {
  color: #111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  margin-top: 12px;
  max-width: 720px;
}

.article-section {
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}

.article-section:last-child {
  border-bottom: 0;
}

.article-section h2 {
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.article-section .rich-content {
  color: #222;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  line-height: 1.86;
  max-width: 740px;
}

.cite-block {
  border-top: 4px solid var(--accent);
}

.citation-card {
  background: #f7fafc;
  border: 1px solid #e7edf3;
  border-radius: 6px;
  margin-top: 12px;
  padding: 13px 14px;
}

.citation-style {
  color: var(--muted);
  display: block;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin: 0 0 7px;
  text-transform: uppercase;
}

.citation-text {
  color: #222;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.68;
  margin: 0;
}

.citation-actions {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.citation-actions a {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: #34758d;
  display: flex;
  font-size: 0.9rem;
  font-weight: 800;
  justify-content: center;
  min-height: 38px;
  text-decoration: none;
}

.citation-actions a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.license-section {
  color: var(--muted);
}

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

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

.article-author-list strong {
  color: #34758d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
}

.article-author-list span,
.article-author-list a {
  font-size: .94rem;
}

.article-summary-table {
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  margin: 18px 0;
  overflow: hidden;
}

.article-summary-table div {
  display: grid;
  grid-template-columns: minmax(130px, 190px) 1fr;
  min-width: 0;
}

.article-summary-table div + div {
  border-top: 1px solid var(--line);
}

.article-summary-table strong,
.article-summary-table span {
  padding: 11px 13px;
}

.article-summary-table strong {
  background: color-mix(in srgb, var(--primary) 7%, #fff);
  color: var(--primary);
}

.article-summary-table span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.article-galleys {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 22px;
}

.toc-item p,
.card p,
.section p {
  color: var(--muted);
  line-height: 1.62;
}

.card-grid,
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.plugin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 12px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 190px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.88)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(29, 40, 44, 0.06);
  transition: transform .16s ease, box-shadow .16s ease;
}

.card:hover,
.side-block:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(29, 40, 44, 0.09);
}

.editorial-board-page .page-header {
  margin-bottom: 18px;
}

.board-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--soft) 72%, white);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.board-intro p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.board-card {
  display: grid;
  gap: 7px;
  align-content: start;
  min-height: 0;
  padding: 15px;
  border: 1px solid color-mix(in srgb, var(--line) 82%, white);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 20px rgba(29, 40, 44, 0.045);
}

.board-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.22;
}

.board-role {
  display: inline-flex;
  width: fit-content;
  padding: 4px 8px;
  border-radius: 4px;
  color: var(--primary);
  background: color-mix(in srgb, var(--primary) 8%, white);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
}

.board-details {
  display: grid;
  gap: 4px;
  margin-top: 2px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.board-details p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.32;
  overflow-wrap: anywhere;
}

.board-details a {
  font-weight: 800;
}

.board-section-title {
  margin: 22px 0 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.editable-card details {
  margin-top: 8px;
}

.editable-card summary {
  cursor: pointer;
  color: var(--primary);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 900;
}

.editable-card details[open] {
  gap: 14px;
}

.editable-card details[open] form {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.checkbox-fieldset {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
}

.checkbox-fieldset legend {
  padding: 0 6px;
  color: var(--muted);
  font-weight: 800;
}

.check-row {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
}

.plugin-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.plugin-card h3,
.plugin-card p {
  margin: 0 0 6px;
}

.tag {
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--soft);
}

.form {
  display: grid;
  gap: 14px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.95rem;
}

.inline-label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.92rem;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 11px 12px;
  background: white;
  color: var(--ink);
}

.form textarea {
  min-height: 120px;
  resize: vertical;
}

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

.admin-shell {
  display: grid;
  grid-template-columns: 286px minmax(0, 1fr);
  gap: 0;
  align-items: start;
  width: min(1280px, 100%);
  margin-top: 0;
  border-top: 1px solid var(--line);
}

.admin-nav {
  display: grid;
  align-content: start;
  gap: 0;
  position: sticky;
  top: var(--header-offset);
  padding: 0;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  max-height: calc(100vh - var(--header-offset));
  overflow: auto;
  border-top: 0;
  border-left: 0;
  border-bottom: 0;
  border-radius: 0;
  background: #e7ecee;
  box-shadow: none;
}

.admin-nav button {
  text-align: left;
}

.admin-menu-group {
  display: grid;
  gap: 0;
  padding: 0;
  border-bottom: 1px solid #cdd7d9;
}

.admin-menu-heading {
  width: 100%;
  justify-content: flex-start;
  border: 0;
  border-radius: 0;
  padding: 12px 18px 8px;
  min-height: auto;
  background: #dfe7e9;
  color: var(--nav);
  font-weight: 900;
  text-align: left;
  letter-spacing: 0;
  cursor: default;
}

.admin-menu-items {
  display: grid;
  gap: 0;
  padding: 0 0 8px;
}

.admin-menu-items button {
  width: 100%;
  justify-content: flex-start;
  min-height: 36px;
  border: 0;
  border-left: 4px solid transparent;
  border-radius: 0;
  padding: 8px 18px 8px 28px;
  border-color: transparent;
  background: transparent;
  color: var(--ink);
  font-size: 0.96rem;
}

.admin-menu-items button:hover,
.admin-menu-items button.active {
  color: var(--nav);
  border-left-color: var(--accent);
  background: #fff;
  text-decoration: none;
}

.admin-panel {
  min-width: 0;
  border-top: 0;
  border-right: 0;
  border-bottom: 0;
  border-radius: 0;
  box-shadow: none;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.stat {
  padding: 15px;
  background: var(--soft);
  border-radius: 4px;
}

.stat strong {
  display: block;
  font-size: 1.7rem;
}

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

.lane {
  min-height: 160px;
  padding: 12px;
  background: #f8faf9;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.lane h3 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.9rem;
}

.status {
  width: fit-content;
  border-radius: 999px;
  padding: 5px 9px;
  color: white;
  background: var(--primary);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.82rem;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  background: white;
  border: 1px solid var(--line);
}

.table th,
.table td {
  border-bottom: 1px solid var(--line);
  padding: 11px 8px;
  text-align: left;
  vertical-align: top;
}

.table th {
  background: color-mix(in srgb, var(--primary) 9%, white);
  color: var(--ink);
}

pre,
code {
  border-radius: var(--radius);
  background: #111820;
  color: #e8f1f0;
  font-family: "Cascadia Code", Consolas, monospace;
}

pre {
  overflow: auto;
  padding: 18px;
}

.notice {
  padding: 12px 14px;
  border-radius: 4px;
  background: var(--notice);
  border: 1px solid #ead4a7;
}

.policy-list h2 {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.search-form {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.site-footer {
  margin-top: 38px;
  color: #dfe9e7;
  background:
    radial-gradient(circle at 12% 0%, color-mix(in srgb, var(--primary) 36%, transparent), transparent 34%),
    var(--nav);
}

.footer {
  display: grid;
  grid-template-columns: 1.2fr 2fr auto;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0;
  color: #dfe9e7;
  border-top: 0;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.footer p {
  max-width: 460px;
  line-height: 1.55;
}

.footer strong {
  color: white;
}

.footer a {
  color: #dfe9e7;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 18px;
}

.footer-links a,
.footer-links strong {
  display: block;
  margin: 0 0 7px;
}

.footer-badge {
  display: grid;
  align-content: start;
  gap: 8px;
  min-width: 180px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
}

.footer-badge span {
  display: block;
  color: #c8d8d5;
  font-size: 0.9rem;
}

.contact-dock {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(16, 63, 70, 0.16);
  border-radius: 6px;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 18px 38px rgba(29, 40, 44, 0.18);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  backdrop-filter: blur(10px);
}

.contact-dock[hidden] {
  display: none;
}

.contact-dock span {
  padding: 0 4px 0 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.contact-dock a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 4px;
  color: white;
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
}

.contact-dock a.chat {
  background: #16833a;
}

.contact-dock a.telegram {
  background: #2476a8;
}

.contact-dock a.facebook {
  background: #244f9e;
}

.contact-dock a:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(29, 40, 44, 0.16);
}

.scroll-showcase {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 42%);
  gap: 14px;
  overflow-x: auto;
  padding: 0 0 16px;
  margin: 0 0 24px;
  scroll-snap-type: x mandatory;
}

.scroll-showcase article {
  min-height: 230px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, white, color-mix(in srgb, var(--primary) 7%, white));
  scroll-snap-align: start;
}

.showcase-image {
  display: grid;
  place-items: center;
  min-height: 115px;
  margin-bottom: 12px;
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: var(--radius);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 800;
}

.showcase-image img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: var(--radius);
}

.journal-logo-image {
  max-width: 120px;
  max-height: 90px;
  object-fit: contain;
  margin-bottom: 14px;
}

.placement-row {
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
}

.placement-card {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 10%, white), white);
}

.placement-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
}

.placement-preview {
  width: 100%;
  max-height: 160px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.file-list {
  display: grid;
  gap: 8px;
  margin: 10px 0;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.file-list a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.file-list strong {
  min-width: 64px;
  color: var(--primary);
}

.article-file-manager {
  display: grid;
  gap: 8px;
  margin: 12px 0;
}

.file-manage-row {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  display: grid;
  gap: 10px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  padding: 10px 12px;
}

.file-manage-row input {
  width: 18px;
  height: 18px;
}

.file-manage-row span {
  min-width: 0;
}

.file-manage-row small {
  color: var(--muted);
  display: block;
  overflow-wrap: anywhere;
}

.file-manager {
  display: grid;
  gap: 10px;
  min-width: 320px;
}

.file-stage {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f9fbfa;
}

.file-stage > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
}

.file-stage > div:first-child strong {
  color: var(--ink);
}

.contributor-manager {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8faf9;
}

.contributor-title,
.contributor-card-head,
.option-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.contributor-title small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-weight: 500;
}

.contributor-list {
  display: grid;
  gap: 12px;
}

.contributor-card {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.contributor-card-head {
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.contributor-card-head strong {
  color: var(--nav);
}

.option-row {
  justify-content: flex-start;
  flex-wrap: wrap;
  color: var(--muted);
}

.option-row label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: auto;
  margin: 0;
}

.contributor-details {
  display: grid;
  gap: 10px;
  margin: 14px 0 20px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.contributor-details article {
  display: grid;
  gap: 3px;
  padding: 12px;
  border-left: 4px solid var(--primary);
  background: var(--soft);
}

.contributor-details span,
.contributor-details small {
  color: var(--muted);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.media-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.media-card img {
  width: 92px;
  height: 72px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.media-card h3 {
  margin: 0 0 4px;
}

.media-card small {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.rich-content {
  line-height: 1.68;
}

.rich-content a {
  font-weight: 700;
  text-decoration: underline;
}

.rich-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.rich-content th,
.rich-content td {
  border: 1px solid var(--line);
  padding: 10px;
  text-align: left;
}

.rich-content th {
  background: color-mix(in srgb, var(--primary) 10%, white);
}

.abstract-preview {
  max-height: 8.5rem;
  overflow: hidden;
}

.content-blocks {
  display: grid;
  gap: 16px;
  margin-bottom: 22px;
}

.preview-box {
  min-height: 90px;
  padding: 16px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.rich-editor {
  min-height: 150px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  outline: none;
  box-shadow: inset 0 1px 2px rgba(29, 40, 44, 0.04);
}

.rich-editor:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 12%, transparent);
}

.rich-editor table {
  width: 100%;
  border-collapse: collapse;
}

.rich-editor th,
.rich-editor td {
  border: 1px solid var(--line);
  padding: 8px;
}

.editor-toolbar,
.editor-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.editor-tabs {
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f9faf8;
}

.editor-tab-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.editor-tab-row span {
  min-width: 58px;
  color: var(--muted);
  font-weight: 800;
}

.editor-toolbar button,
.editor-tabs button {
  min-height: 32px;
  padding: 6px 10px;
}

.admin-actions,
.row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.admin-actions {
  justify-content: flex-end;
  margin: 8px 0;
}

.order-list {
  display: grid;
  gap: 12px;
}

.order-input {
  max-width: 100px;
}

.smp-suite-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.suite-panel {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.suite-panel h2 {
  margin: 0;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.workflow-map {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
  margin: 16px 0;
}

.workflow-step {
  position: relative;
  padding: 18px 18px 18px 54px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 26px rgba(29, 40, 44, 0.05);
}

.workflow-step > span {
  position: absolute;
  left: 14px;
  top: 16px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #fff;
  border-radius: 50%;
  background: var(--primary);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 900;
}

.workflow-step h2 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.workflow-step ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.mini-list span {
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft);
  color: var(--muted);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
}

.code-editor {
  min-height: 220px;
  font-family: "Cascadia Code", Consolas, monospace;
}

.permission-table input {
  width: 18px;
  height: 18px;
}

.health-ok {
  border-color: #a7d6bd;
}

.health-bad {
  border-color: #d69a8c;
  background: #fff7f4;
}

.install-page {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(23, 92, 98, 0.08), rgba(201, 111, 50, 0.08)),
    #f6f3ee;
}

.install-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0;
}

.install-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: end;
  padding: 34px;
  color: #fff;
  background: linear-gradient(135deg, #123f44, #175c62 58%, #8e4e2a);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.install-hero h1 {
  margin: 8px 0 10px;
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: 0;
}

.install-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
  line-height: 1.6;
}

.install-status {
  min-width: 160px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  text-align: center;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.12);
}

.install-status[data-ready="ready"] {
  background: rgba(198, 238, 215, 0.2);
}

.install-status[data-ready="installed"] {
  background: rgba(255, 225, 174, 0.22);
}

.install-grid {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 22px;
  margin-top: 22px;
  align-items: start;
}

.install-panel,
.install-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.install-panel {
  padding: 24px;
  position: sticky;
  top: 16px;
}

.install-card {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.check-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.check-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 4px 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f9faf8;
}

.check-item strong {
  grid-row: span 2;
  color: #18633e;
}

.check-item.bad strong {
  color: #9a2f1f;
}

.check-item small {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.install-note {
  margin-top: 18px;
  padding: 12px;
  border-left: 4px solid var(--accent);
  color: var(--muted);
  background: #fff8f1;
  line-height: 1.55;
}

.form-section {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-top: 6px;
  border-top: 1px solid var(--line);
}

.form-section:first-child {
  border-top: 0;
  padding-top: 0;
}

.form-section h2,
.install-panel h2 {
  margin: 0 0 4px;
  letter-spacing: 0;
}

.form-section p {
  margin: 0;
  color: var(--muted);
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
  background: var(--primary);
  flex: 0 0 auto;
}

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

.form-grid.compact {
  grid-template-columns: repeat(2, 180px);
}

.reinstall-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid #ebd5c1;
  border-radius: var(--radius);
  background: #fffaf4;
  font-weight: 800;
}

.reinstall-row input {
  width: 18px;
  height: 18px;
}

.install-message {
  padding: 13px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #f6f7f8;
  font-weight: 800;
}

.install-message[data-type="success"] {
  border-color: #99caaa;
  background: #effaf2;
  color: #17633a;
}

.install-message[data-type="error"] {
  border-color: #dc9c91;
  background: #fff3f1;
  color: #8d2a1d;
}

/* Public presentation polish */
body {
  background:
    linear-gradient(180deg, #f7f9fa 0%, #eef4f3 420px, #f7f9fa 100%);
}

a {
  text-underline-offset: 3px;
}

.site-header {
  box-shadow: 0 12px 34px rgba(21, 63, 69, 0.08);
}

.masthead {
  min-height: 82px;
}

.brand strong {
  color: #102f34;
}

.header-tools a,
.button,
button {
  align-items: center;
  display: inline-flex;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 800;
  justify-content: center;
  transition: background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.header-tools a:hover,
.button:hover,
button:hover {
  border-color: color-mix(in srgb, var(--primary) 42%, var(--line));
  box-shadow: 0 8px 20px rgba(21, 63, 69, 0.08);
  text-decoration: none;
  transform: translateY(-1px);
}

.header-tools .tool-primary:hover,
.button.primary:hover,
button.primary:hover {
  background: color-mix(in srgb, var(--accent) 88%, #111);
  color: #fff;
}

.nav {
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.nav a {
  min-height: 42px;
  padding-inline: 14px;
}

.submenu {
  border-radius: 0 0 6px 6px;
  overflow: hidden;
}

.smp-layout,
.layout {
  margin-top: 32px;
  margin-bottom: 40px;
}

.home-layout {
  gap: 28px;
}

.main-column,
.section,
.side-block {
  border-color: #e2e9e8;
  box-shadow: 0 14px 38px rgba(21, 63, 69, 0.06);
}

.home-main {
  border-radius: 6px;
}

.journal-cover-panel {
  border-radius: 6px 6px 0 0;
  margin: -24px -24px 30px;
  padding: 42px 38px 32px;
}

.journal-cover-panel h1 {
  letter-spacing: 0;
  max-width: 840px;
}

.journal-cover-panel .journal-about-text {
  max-width: 820px;
}

.journal-metrics span {
  border-radius: 6px;
}

.issue-heading {
  align-items: flex-start;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin: 8px 0 10px;
  padding: 0 0 22px;
}

.issue-heading h2 {
  color: #102f34;
  font-size: clamp(1.7rem, 2.4vw, 2.35rem);
  line-height: 1.15;
  margin: 0 0 14px;
}

.published-issue-main {
  border: 1px solid #e2e9e8;
  border-radius: 6px;
  box-shadow: 0 16px 42px rgba(21, 63, 69, 0.06);
  padding: 36px 46px 58px;
}

.ojs-issue-header h1 {
  color: #102f34;
  font-size: clamp(2.05rem, 3.4vw, 3.2rem);
  line-height: 1.12;
}

.ojs-issue-header p {
  color: #24383d;
}

.ojs-issue-header dl {
  margin-bottom: 64px;
}

.toc {
  margin-top: 28px;
}

.ojs-issue-article {
  border-bottom: 1px solid #e8eeee;
  padding: 32px 0 36px;
}

.ojs-issue-article h3 {
  max-width: 900px;
}

.ojs-issue-article h3 a {
  color: #2f7088;
}

.toc-galley {
  background: #92e2cc;
  border: 1px solid #74d1b9;
  box-shadow: none;
  color: #102f34;
}

.toc-galley:hover {
  background: #7bd7be;
  text-decoration: none;
}

.toc-pages {
  background: #f8fbfb;
  border-left: 3px solid #e1e9e8;
  padding: 18px 12px 0;
}

.article-layout {
  align-items: start;
}

.ojs-article-page {
  border: 1px solid #e2e9e8;
  border-radius: 6px;
  box-shadow: 0 16px 42px rgba(21, 63, 69, 0.06);
  padding: 42px 48px 52px;
}

.article-title-block {
  border-bottom-color: #dfe8e7;
  padding-bottom: 28px;
}

.article-title-block > span {
  color: var(--accent);
  display: inline-block;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.article-title-block h1 {
  color: #102f34;
  max-width: 820px;
}

.article-title-block .meta {
  color: #263b40;
  line-height: 1.5;
}

.article-section h2 {
  color: #697a7f;
  font-size: 1.16rem;
  letter-spacing: 0.02em;
}

.article-section .rich-content {
  max-width: 780px;
}

.article-author-list {
  gap: 12px;
}

.article-author-list article {
  border-left: 3px solid #dfe8e7;
  padding-left: 14px;
}

.article-layout .side-block {
  border-color: #e2e9e8;
  padding: 18px;
}

.article-layout .block-title {
  color: #102f34;
}

.article-tools dl {
  gap: 0;
}

.article-tools div {
  padding-bottom: 9px;
}

.citation-card {
  background: #f8fbfb;
}

.citation-actions a {
  background: #fbfdfd;
}

.card {
  border-color: #e2e9e8;
  border-radius: 6px;
  box-shadow: 0 12px 30px rgba(21, 63, 69, 0.05);
}

.card h3 {
  color: #102f34;
}

.table {
  border-color: #e2e9e8;
  border-radius: 6px;
  overflow: hidden;
}

.table th {
  background: #eef5f4;
  color: #102f34;
}

.site-footer {
  background: #102f34;
  color: rgba(255,255,255,0.82);
  margin-top: 56px;
}

.footer {
  border-top: 0;
}

.footer a,
.site-footer strong {
  color: #fff;
}

/* Article landing final layout */
.article-layout {
  grid-template-columns: minmax(0, 1fr) 304px;
  gap: 28px;
  width: min(1180px, calc(100% - 32px));
  max-width: min(1180px, calc(100vw - 32px));
  overflow: visible;
}

.article-layout .side-column {
  gap: 16px;
  justify-self: stretch;
  max-width: 304px;
  min-width: 0;
  position: sticky;
  top: calc(var(--header-offset) + 16px);
  width: 100%;
}

.ojs-article-page {
  overflow: hidden;
  padding: 0;
  min-width: 0;
}

.article-title-block {
  background: linear-gradient(180deg, #ffffff 0%, #f9fcfc 100%);
  margin: 0;
  padding: 38px 40px 30px;
}

.article-title-block h1 {
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 1.18;
  margin-bottom: 14px;
  max-width: 100%;
}

.article-title-block .meta {
  color: #22383d;
  display: block;
  font-size: 1.12rem;
  margin-top: 10px;
  max-width: 100%;
}

.article-landing-meta {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 28px 0 0;
  border: 1px solid #e2e9e8;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}

.article-landing-meta div {
  min-width: 0;
  padding: 13px 14px;
  border-right: 1px solid #e2e9e8;
}

.article-landing-meta div:last-child {
  border-right: 0;
}

.article-landing-meta dt {
  color: #6b7b80;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.article-landing-meta dd {
  color: #102f34;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.35;
  margin: 0;
  overflow-wrap: anywhere;
}

.article-section {
  margin: 0 40px;
  padding: 30px 0;
}

.article-section h2 {
  align-items: center;
  display: flex;
  gap: 10px;
}

.article-section h2::after {
  background: #e6eeee;
  content: "";
  flex: 1;
  height: 1px;
}

.article-section .rich-content {
  color: #213438;
  max-width: 100%;
}

.article-section .rich-content p:first-child {
  margin-top: 0;
}

.article-section .rich-content p:last-child {
  margin-bottom: 0;
}

.article-author-list {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.article-author-list article {
  background: #f9fcfc;
  border: 1px solid #e4eceb;
  border-left: 4px solid var(--accent);
  border-radius: 6px;
  padding: 14px 16px;
}

.tag-list .tag,
.tag {
  background: #eef5f4;
  border: 1px solid #dce8e6;
  border-radius: 999px;
  color: #24484e;
  display: inline-flex;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 6px 10px;
}

.article-layout .side-block {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 12px 30px rgba(21, 63, 69, 0.05);
}

.article-tools .button.primary {
  min-height: 46px;
  font-size: 1rem;
}

.article-tools dd a,
.citation-text a {
  overflow-wrap: anywhere;
}

.license-section {
  background: #fbfdfd;
  border-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  padding-left: 40px;
  padding-right: 40px;
}

@media (max-width: 1180px) {
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-layout .side-column {
    max-width: none;
    position: static;
  }
}

@media (max-width: 860px) {
  :root {
    --header-offset: 0px;
  }

  .site-header {
    position: static;
  }

  .utility-inner {
    flex-direction: column;
    gap: 4px;
    width: min(100% - 20px, 1180px);
  }

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

  .masthead {
    width: min(100% - 20px, 1180px);
    min-height: auto;
    gap: 12px;
    padding: 12px 0;
  }

  .brand {
    width: 100%;
    gap: 10px;
  }

  .brand-mark {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
  }

  .brand-mark.has-logo {
    flex: 0 1 auto;
    max-width: min(170px, 48vw);
    height: 54px;
  }

  .brand-mark.has-logo img {
    max-height: 54px;
  }

  .brand strong {
    font-size: clamp(1.2rem, 7vw, 1.75rem);
    line-height: 1.12;
  }

  .header-tools {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .header-tools a,
  .nav a,
  .button,
  button {
    min-height: 40px;
    padding: 9px 11px;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-left: 10px;
    padding-right: 10px;
    border-bottom: 1px solid var(--line);
    -webkit-overflow-scrolling: touch;
  }

  .nav a {
    font-size: 0.88rem;
  }

  .submenu {
    position: static;
    min-width: 100%;
    box-shadow: none;
  }

  .journal-cover-inner,
  .smp-layout,
  .admin-shell,
  .footer,
  .two-col,
  .search-form,
  .steps,
  .workflow,
  .stats {
    grid-template-columns: 1fr;
  }

  .smp-layout,
  .layout,
  .submissionWizard {
    width: min(100% - 20px, 1180px);
    margin: 16px auto;
  }

  .submissionWizard__headingRow,
  .submissionWizard__submissionConfiguration {
    align-items: flex-start;
    flex-direction: column;
  }

  .submissionWizard__body {
    padding: 12px;
  }

  .admin-shell {
    width: 100%;
    margin-top: 0;
    border-top: 1px solid var(--line);
  }

  .admin-nav {
    position: static;
    max-height: none;
    overflow: visible;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .side-column {
    position: static;
  }

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

  .admin-menu-items button {
    padding: 9px 10px 9px 16px;
    font-size: 0.9rem;
  }

  .admin-panel,
  .main-column,
  .section {
    padding: 18px;
  }

  .article-layout {
    gap: 16px;
    width: min(100% - 20px, 1180px);
  }

  .article-layout .side-column {
    position: static;
  }

  .ojs-article-page {
    padding: 0;
  }

  .article-title-block {
    margin: 0 0 18px;
    padding: 0 0 18px;
  }

  .article-title-block h1 {
    font-size: clamp(1.65rem, 8vw, 2.15rem);
  }

  .article-landing-meta {
    grid-template-columns: 1fr;
  }

  .article-landing-meta div {
    border-right: 0;
    border-bottom: 1px solid #e2e9e8;
  }

  .article-landing-meta div:last-child {
    border-bottom: 0;
  }

  .article-section {
    padding: 22px 0;
  }

  .page-header {
    margin: -18px -18px 18px;
    padding: 18px;
  }

  .article-page .article-title-block {
    margin: 0 0 18px;
    padding: 24px 18px 20px;
  }

  .article-section {
    margin: 0 18px;
  }

  .license-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .journal-cover-panel {
    margin: -18px -18px 18px;
    padding: 28px 18px 22px;
  }

  .issue-heading {
    display: grid;
    gap: 12px;
    padding-bottom: 18px;
  }

  .issue-heading .button {
    width: 100%;
  }

  .published-issue-main {
    padding: 22px 18px 34px;
  }

  .ojs-issue-header h1 {
    font-size: clamp(1.85rem, 9vw, 2.35rem);
  }

  .ojs-issue-header dl {
    margin-bottom: 38px;
  }

  .ojs-issue-article {
    padding: 24px 0 28px;
  }

  .toc-pages {
    border-left: 0;
    border-top: 3px solid #e1e9e8;
    padding: 10px 0 0;
  }

  .journal-metrics {
    grid-template-columns: 1fr;
  }

  .wizard-steps,
  .workflow-progress {
    grid-template-columns: 1fr;
  }

  .wizard-step {
    min-height: auto;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
  }

  .wizard-footer,
  .review-list div {
    display: grid;
    grid-template-columns: 1fr;
  }

  .wizard-save-status {
    margin-right: 0;
  }

  .contributor-title,
  .contributor-card-head,
  .option-row {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  .board-intro {
    align-items: stretch;
    flex-direction: column;
  }

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

  .contact-dock {
    left: 10px;
    right: 10px;
    bottom: 10px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .contact-dock span {
    flex: 1 0 100%;
    text-align: center;
  }

  .contact-dock a {
    flex: 1 1 96px;
    justify-content: center;
  }

  .toc-item {
    grid-template-columns: 1fr;
  }

  .ojs-issue-article {
    grid-template-columns: 1fr;
  }

  .toc-pages {
    padding-top: 0;
    text-align: left;
  }

  .ojs-issue-header dl {
    margin-bottom: 48px;
  }

  .placement-card {
    grid-template-columns: 1fr;
  }

  .install-hero,
  .install-grid,
  .form-grid,
  .form-grid.compact {
    grid-template-columns: 1fr;
  }

  .install-panel {
    position: static;
  }
}

/* Final site alignment and public look reset */
:root {
  --site-container: 1180px;
  --site-gutter: 32px;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

body {
  background: #f4f8f8;
}

#app,
.site-header,
.site-footer {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

.utility-inner,
.masthead,
.footer,
.smp-layout,
.layout,
.journal-cover-inner,
.published-issue-layout,
.article-layout {
  width: min(var(--site-container), calc(100vw - var(--site-gutter))) !important;
  max-width: min(var(--site-container), calc(100vw - var(--site-gutter))) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.masthead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.brand {
  min-width: 0;
}

.brand strong,
.brand small {
  overflow-wrap: anywhere;
}

.header-tools {
  min-width: 0;
}

.header-tools a {
  min-height: 44px;
  padding: 10px 18px;
}

.nav {
  justify-content: flex-start;
  padding-left: max(16px, calc((100vw - var(--site-container)) / 2));
  padding-right: max(16px, calc((100vw - var(--site-container)) / 2));
}

.nav a {
  min-height: 46px;
  padding: 11px 18px;
}

.home-layout,
.article-layout {
  grid-template-columns: minmax(0, 1fr) 280px !important;
  gap: 24px !important;
}

.home-layout > *,
.article-layout > *,
.smp-layout > *,
.layout > * {
  min-width: 0;
}

.home-layout .side-column,
.article-layout .side-column {
  max-width: 280px;
  min-width: 0;
  width: 100%;
}

.main-column,
.section,
.side-block,
.published-issue-main,
.ojs-article-page {
  border: 1px solid #e0e9e8;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(16, 47, 52, 0.07);
}

.journal-cover-panel {
  border-radius: 8px 8px 0 0;
  background:
    linear-gradient(135deg, rgba(12, 58, 64, 0.97), rgba(20, 93, 99, 0.94)),
    linear-gradient(135deg, var(--nav), var(--primary));
}

.issue-heading {
  gap: 20px;
}

.published-issue-main,
.ojs-article-page {
  background: #fff;
}

.article-layout {
  align-items: start;
}

.article-layout .side-column {
  justify-self: end;
}

.article-title-block h1 {
  overflow-wrap: anywhere;
}

.article-landing-meta {
  grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
}

.citation-text,
.article-tools dd,
.article-landing-meta dd {
  word-break: break-word;
}

.contact-dock {
  max-width: calc(100vw - 28px);
}

@media (max-width: 980px) {
  :root {
    --site-gutter: 24px;
  }

  .home-layout,
  .article-layout {
    grid-template-columns: 1fr !important;
  }

  .home-layout .side-column,
  .article-layout .side-column {
    justify-self: stretch;
    max-width: none;
    position: static;
  }
}

@media (max-width: 760px) {
  :root {
    --site-gutter: 20px;
  }

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

  .header-tools {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .journal-cover-panel,
  .article-title-block,
  .published-issue-main {
    padding-left: 18px;
    padding-right: 18px;
  }

  .article-section {
    margin-left: 18px;
    margin-right: 18px;
  }

  .nav {
    justify-content: flex-start;
  }
}

/* Final published article typography */
.article-title-block h1 {
  color: #102f34;
  font-size: clamp(1.55rem, 2.15vw, 2.2rem) !important;
  font-weight: 800;
  line-height: 1.22;
  margin-bottom: 12px;
}

.article-title-block .meta {
  color: #34565d;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.98rem !important;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.55;
  text-transform: uppercase;
}

.article-title-block > span {
  font-size: 0.72rem !important;
  letter-spacing: 0.08em;
}

.article-section h2 {
  color: #60747a;
  font-size: 1rem !important;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.article-section .rich-content {
  font-size: 1rem !important;
  line-height: 1.78;
}

.article-author-list strong {
  font-size: 0.98rem !important;
}

.article-author-list span,
.article-author-list a {
  font-size: 0.88rem !important;
}

.ojs-issue-article h3 {
  font-size: clamp(1.08rem, 1.45vw, 1.35rem) !important;
  line-height: 1.34;
}

.ojs-authors {
  font-size: 0.98rem !important;
  line-height: 1.45;
}

.ojs-issue-header h1 {
  font-size: clamp(1.75rem, 2.5vw, 2.45rem) !important;
}

@media (max-width: 760px) {
  .article-title-block h1 {
    font-size: clamp(1.35rem, 6vw, 1.75rem) !important;
  }

  .article-title-block .meta {
    font-size: 0.88rem !important;
  }
}
