:root {
  --ink: #19212a;
  --muted: #667085;
  --line: #d9dee7;
  --bg: #f6f8fb;
  --panel: #ffffff;
  --brand: #195a8f;
  --brand-2: #1f7a6d;
  --warn: #a16207;
  --danger: #b42318;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}

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

a:hover {
  text-decoration: underline;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}

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

.nav {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.hero {
  background: linear-gradient(135deg, #f8fbff 0%, #e8f2f1 100%);
  border-bottom: 1px solid var(--line);
}

.hero-inner {
  min-height: 500px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
  padding: 70px 0 58px;
}

.hero h1 {
  font-size: clamp(40px, 7vw, 76px);
  line-height: 1.02;
  margin: 0 0 22px;
  letter-spacing: 0;
}

.lead {
  font-size: 19px;
  color: #394452;
  max-width: 720px;
}

.hero-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.hero-panel h2 {
  margin-top: 0;
  font-size: 22px;
}

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

.btn,
button,
input[type='submit'] {
  appearance: none;
  border: 1px solid var(--brand);
  background: var(--brand);
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
}

.btn.secondary {
  color: var(--brand);
  background: #fff;
}

.btn.danger {
  border-color: var(--danger);
  background: var(--danger);
}

.section {
  padding: 56px 0;
}

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

.section-title h2 {
  margin: 0;
  font-size: 30px;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.admin-pages-grid {
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.55fr);
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.card h3 {
  margin-top: 0;
  font-size: 20px;
}

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

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 14px;
}

.page-head {
  padding: 46px 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.page-head h1 {
  margin: 0 0 10px;
  font-size: 42px;
}

.layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.form {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 6px;
}

.expert-inline-form {
  grid-template-columns: minmax(160px, 1fr) minmax(160px, 1fr) minmax(120px, 160px) auto;
  align-items: end;
}

.expert-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

label {
  font-weight: 700;
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 12px;
  font: inherit;
  background: #fff;
}

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

.page-editor {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.page-editor__input {
  display: none;
}

.page-editor__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 8px;
  border-bottom: 1px solid var(--line);
  background: #f7f9fc;
}

.page-editor__button {
  min-height: 32px;
  padding: 6px 10px;
  border-color: #c9d3df;
  background: #fff;
  color: #27364a;
  font-size: 13px;
}

.page-editor__button:hover,
.page-editor__button.is-active {
  border-color: var(--brand);
  background: #eaf3fb;
  color: var(--brand);
  text-decoration: none;
}

.page-editor__button--source {
  margin-left: auto;
}

.page-editor__canvas,
.page-editor__source {
  width: 100%;
  min-height: 360px;
  padding: 18px 20px;
  border: 0;
  border-radius: 0;
  outline: none;
  background: #fff;
  color: var(--ink);
}

.page-editor__canvas {
  overflow: auto;
}

.page-editor__canvas:empty::before {
  content: '在这里编辑页面内容';
  color: #98a2b3;
}

.page-editor__canvas h2,
.page-editor__canvas h3 {
  margin: 0 0 12px;
  color: #10233f;
}

.page-editor__canvas p,
.page-editor__canvas ul,
.page-editor__canvas ol {
  margin: 0 0 14px;
}

.page-editor__canvas ul,
.page-editor__canvas ol {
  padding-left: 24px;
}

.page-editor__source {
  display: none;
  resize: vertical;
  font-family: Consolas, 'Courier New', monospace;
  font-size: 13px;
  line-height: 1.6;
}

.page-editor.is-source .page-editor__canvas {
  display: none;
}

.page-editor.is-source .page-editor__source {
  display: block;
}

.page-editor-rich {
  min-height: 620px;
}

.has-rich-editor {
  gap: 10px;
}

.has-rich-editor .tox-tinymce {
  border-color: var(--line);
  border-radius: 8px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
}

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

th {
  background: #f2f5f8;
  font-size: 14px;
}

.badge {
  display: inline-block;
  border-radius: 999px;
  padding: 3px 9px;
  background: #e6f0f7;
  color: var(--brand);
  font-size: 12px;
  white-space: nowrap;
}

.site-footer {
  padding: 24px 0;
  border-top: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  font-size: 14px;
}

.site-footer__inner {
  display: grid;
  justify-items: center;
  gap: 6px;
  text-align: center;
}

.site-footer__brand {
  color: var(--navy-dark);
  font-size: 15px;
}

.site-footer__line {
  color: var(--navy-dark);
  font-size: 15px;
  font-weight: 800;
}

.site-footer__meta {
  color: #667085;
  font-size: 13px;
}

.admin-shell {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  min-height: 100vh;
}

.admin-side {
  background: #102235;
  color: #dbe7f3;
  padding: 22px 16px;
}

.admin-side a {
  color: #dbe7f3;
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  border-left: 3px solid transparent;
  transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease, transform 0.08s ease;
}

.admin-side a:hover {
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
}

.admin-side a:active {
  transform: translateY(1px);
}

.admin-side a.active,
.admin-side a.active:hover {
  background: rgba(204, 166, 89, 0.18);
  border-left-color: #d7b66f;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.admin-review-panel {
  border-left: 4px solid #caa45b;
}

.admin-review-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.admin-review-head h2 {
  margin-bottom: 6px;
}

.admin-review-form {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr) 174px;
  gap: 14px;
  align-items: end;
  margin-top: 18px;
}

.admin-review-form textarea {
  min-height: 96px;
  resize: vertical;
}

.review-action-field {
  grid-column: 1;
}

.review-comment-field {
  grid-column: 2;
}

.review-submit-field {
  grid-column: 3;
}

.review-submit-field button {
  width: 100%;
  min-height: 42px;
  white-space: nowrap;
}

.admin-review-form .field {
  margin: 0;
}

.admin-review-form label {
  margin-bottom: 8px;
}

@media (max-width: 1100px) {
  .admin-review-form {
    grid-template-columns: 1fr;
  }

  .review-action-field,
  .review-comment-field,
  .review-submit-field {
    grid-column: 1;
  }

  .review-submit-field button {
    width: auto;
  }
}

.table-action {
  color: #8a6420;
  font-weight: 700;
  white-space: nowrap;
}

.button-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 6px 12px;
  border: 1px solid #caa45b;
  border-radius: 6px;
  background: #fff8e8;
  cursor: pointer;
}

.button-action:hover {
  background: #f4e4bd;
  color: #5f4212;
  text-decoration: none;
}

.inline-action-form {
  display: inline-flex;
  margin: 0 0 0 6px;
}

.danger-action {
  border-color: #f3b8b3;
  background: #fff1f0;
  color: var(--danger);
}

.danger-action:hover {
  background: #ffe4e2;
  color: #912018;
}

.bulk-action-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0 14px;
  flex-wrap: wrap;
}

.bulk-action-bar button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.admin-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.admin-card-head h2 {
  margin: 0;
}

.admin-card-head p {
  margin: 6px 0 0;
}

.admin-card-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

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

body.admin-modal-open {
  overflow: hidden;
}

.admin-modal[hidden] {
  display: none;
}

.admin-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(16, 34, 53, 0.54);
}

.admin-modal__panel {
  width: min(760px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 24px 70px rgba(16, 34, 53, 0.28);
}

.admin-modal__panel--wide {
  width: min(1180px, 100%);
}

.admin-modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.admin-modal__head h2 {
  margin: 0;
}

.admin-modal__head p {
  margin: 6px 0 0;
}

.admin-modal__close {
  width: 36px;
  min-height: 36px;
  padding: 0;
  flex: 0 0 auto;
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
}

.admin-modal__close:hover {
  background: #f2f5f8;
}

.admin-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.admin-modal-table {
  max-height: 62vh;
  border: 1px solid var(--line);
}

.admin-modal-table table {
  min-width: 980px;
  border: 0;
}

.journal-article-check {
  width: auto;
}

.bulk-review-card {
  padding: 16px 18px;
}

.bulk-review-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.bulk-review-head h2 {
  margin: 0;
  font-size: 20px;
}

.bulk-review-form {
  display: grid;
  grid-template-columns: 220px minmax(280px, 1fr) 136px;
  gap: 12px;
  align-items: end;
}

.bulk-review-form .field {
  gap: 4px;
}

.bulk-review-form label {
  font-size: 13px;
}

.bulk-review-form textarea {
  min-height: 42px;
  max-height: 88px;
  padding-top: 9px;
  padding-bottom: 9px;
}

.bulk-review-form button {
  width: 100%;
  min-height: 42px;
  white-space: nowrap;
}

.bulk-review-form button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.admin-action-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 18px;
  align-items: start;
}

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

.bulk-upload-form .field:nth-last-of-type(-n + 2),
.bulk-upload-form button,
.bulk-upload-form p {
  grid-column: 1 / -1;
}

.bulk-upload-articles,
.bulk-upload-actions {
  grid-column: 1 / -1;
}

.bulk-upload-article {
  padding: 14px;
  margin-top: 12px;
  border: 1px solid #d8e1ea;
  border-radius: 6px;
  background: #f8fbfd;
}

.bulk-upload-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

[data-article-row].is-disabled {
  opacity: 0.58;
  background: #f5f6f8;
}

.admin-file-preview {
  border-left: 4px solid #2f6fa7;
}

.preview-file-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.preview-file-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  gap: 12px;
  width: min(100%, 320px);
  min-height: 116px;
  padding: 12px 14px;
  border: 1px solid #d8e1ea;
  border-radius: 6px;
  background: #f8fbfd;
}

.preview-file-item strong,
.preview-file-item span {
  display: block;
}

.preview-file-item strong {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.preview-file-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  width: 100%;
  flex-shrink: 0;
}

.preview-file-button {
  min-height: 32px;
  padding: 6px 12px;
  border: 1px solid #2f6fa7;
  border-radius: 6px;
  background: #eef6fc;
  color: #16496f;
  font-weight: 700;
  cursor: pointer;
}

.preview-file-button:hover,
.preview-file-button.active {
  background: #2f6fa7;
  color: #fff;
}

.preview-frame-shell {
  position: relative;
  min-height: 620px;
  border: 1px solid #d2dde8;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}

.preview-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 620px;
  color: #5b6b7a;
}

.preview-frame {
  display: none;
  width: 100%;
  height: 620px;
  background: #fff;
}

.admin-top-actions,
.quick-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-dev-tools {
  position: relative;
}

.admin-user-menu {
  position: relative;
}

.admin-dev-tools__toggle {
  min-height: 30px;
  padding: 5px 8px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: #6b7280;
  font-size: 13px;
  cursor: pointer;
  list-style: none;
}

.admin-dev-tools__toggle::-webkit-details-marker {
  display: none;
}

.admin-user-menu__toggle::-webkit-details-marker {
  display: none;
}

.admin-dev-tools__toggle::after {
  content: ">";
  display: inline-block;
  margin-left: 6px;
  color: #98a2b3;
  font-size: 11px;
  transform: rotate(90deg);
}

.admin-dev-tools[open] .admin-dev-tools__toggle {
  border-color: #d8e1ea;
  background: #fff;
  color: #344054;
}

.admin-dev-tools[open] .admin-dev-tools__toggle::after {
  transform: rotate(-90deg);
}

.admin-user-menu__toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 5px 10px;
  border: 1px solid #d8e1ea;
  border-radius: 999px;
  background: #fff;
  color: #344054;
  cursor: pointer;
  list-style: none;
}

.admin-user-menu__toggle::after {
  content: ">";
  display: inline-block;
  color: #98a2b3;
  font-size: 11px;
  transform: rotate(90deg);
}

.admin-user-menu[open] .admin-user-menu__toggle {
  border-color: #c9d6e6;
  box-shadow: 0 6px 18px rgba(15, 35, 55, .08);
}

.admin-user-menu[open] .admin-user-menu__toggle::after {
  transform: rotate(-90deg);
}

.admin-user-menu__name {
  font-weight: 700;
}

.admin-user-menu__role {
  color: #667085;
  font-size: 12px;
}

.admin-dev-tools__menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  z-index: 20;
  width: 230px;
  padding: 12px;
  border: 1px solid #d8e1ea;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 35, 55, .14);
}

.admin-user-menu__panel {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  z-index: 20;
  width: 190px;
  padding: 10px;
  border: 1px solid #d8e1ea;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 35, 55, .14);
}

.admin-user-menu__identity {
  display: grid;
  gap: 2px;
  padding: 6px 8px 10px;
  border-bottom: 1px solid #eef2f6;
  margin-bottom: 6px;
}

.admin-user-menu__identity span {
  color: #667085;
  font-size: 12px;
}

.admin-user-menu__panel a {
  display: block;
  padding: 8px;
  border-radius: 6px;
  color: #344054;
}

.admin-user-menu__panel a:hover {
  background: #f2f5f8;
  text-decoration: none;
}

.admin-clear-cache-form {
  display: grid;
  gap: 6px;
  margin: 0;
}

.admin-clear-cache-form span {
  color: #667085;
  font-size: 12px;
}

.admin-clear-cache-button {
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid #d0d5dd;
  border-radius: 6px;
  background: #fff;
  color: #344054;
  font-weight: 700;
  white-space: nowrap;
}

.admin-clear-cache-button:hover {
  border-color: #b8c0cc;
  background: #f8fafc;
  color: #182230;
}

.lang-toggle {
  min-height: 30px;
  padding: 5px 10px;
  border: 1px solid #caa45b;
  border-radius: 6px;
  background: #fff8e8;
  color: #5f4212;
  font-weight: 700;
  cursor: pointer;
}

.lang-toggle:hover {
  background: #f4e4bd;
}

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

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

.staff-list-row {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 260px;
  gap: 14px;
  align-items: end;
  padding: 14px;
  border: 1px solid #d8e1ea;
  border-radius: 6px;
  background: #f8fbfd;
}

.staff-identity strong,
.staff-identity span {
  display: block;
}

.staff-identity span {
  color: #5b6b7a;
  margin-top: 4px;
}

.staff-row-form,
.staff-password-form {
  display: flex;
  align-items: end;
  gap: 10px;
}

.staff-row-form .field {
  margin: 0;
  min-width: 140px;
}

.staff-password-form input {
  min-width: 150px;
}

@media (max-width: 1200px) {
  .staff-create-form,
  .staff-list-row {
    grid-template-columns: 1fr;
  }

  .staff-row-form,
  .staff-password-form {
    flex-wrap: wrap;
  }
}

.responsive-table {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.content-card {
  min-width: 0;
}

.detail-table {
  width: 100%;
  min-width: 0;
  table-layout: fixed;
}

.detail-table th,
.detail-table td {
  overflow-wrap: anywhere;
  word-break: break-word;
  vertical-align: top;
}

.author-detail-table .detail-table th:nth-child(1),
.author-detail-table .detail-table td:nth-child(1) {
  width: 12%;
}

.author-detail-table .detail-table th:nth-child(2),
.author-detail-table .detail-table td:nth-child(2) {
  width: 16%;
}

.author-detail-table .detail-table th:nth-child(3),
.author-detail-table .detail-table td:nth-child(3) {
  width: 28%;
}

.author-detail-table .detail-table th:nth-child(4),
.author-detail-table .detail-table td:nth-child(4) {
  width: 18%;
}

.author-detail-table .detail-table th:nth-child(5),
.author-detail-table .detail-table td:nth-child(5) {
  width: 18%;
}

.author-detail-table .detail-table th:nth-child(6),
.author-detail-table .detail-table td:nth-child(6) {
  width: 8%;
}

.institution-detail-table .detail-table th:nth-child(1),
.institution-detail-table .detail-table td:nth-child(1),
.institution-detail-table .detail-table th:nth-child(2),
.institution-detail-table .detail-table td:nth-child(2) {
  width: 28%;
}

.admin-main {
  padding: 26px;
}

.admin-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}

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

.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.stat strong {
  display: block;
  font-size: 28px;
}

.pagination {
  margin-top: 16px;
}

.pagination li {
  display: inline-block;
  margin-right: 4px;
}

.pagination a,
.pagination span {
  display: inline-block;
  padding: 6px 10px;
  background: #fff;
  border: 1px solid var(--line);
}

@media (max-width: 900px) {
  .hero-inner,
  .layout,
  .grid.three,
  .grid.two,
  .admin-pages-grid,
  .feature-list,
  .admin-shell,
  .admin-action-grid,
  .bulk-upload-form,
  .expert-inline-form,
  .stats {
    grid-template-columns: 1fr;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .admin-card-head,
  .admin-modal__head,
  .bulk-review-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-modal {
    align-items: flex-start;
    padding: 12px;
  }

  .admin-modal__panel {
    max-height: calc(100vh - 24px);
    padding: 18px;
  }

  .admin-modal-actions {
    justify-content: flex-start;
  }

  .bulk-review-form {
    grid-template-columns: 1fr;
  }
}

/* Academic homepage refresh */
:root {
  --navy: #07193E;
  --navy-dark: #052a4c;
  --gold: #c89b3c;
  --paper: #f7f4ee;
}

body {
  background: #f3f5f7;
}

.topbar {
  background: #f6f8fb;
  border-bottom: 1px solid #e6e9ee;
  color: #5d6672;
  font-size: 13px;
}

.topbar-inner,
.brand-row-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar-inner {
  min-height: 34px;
}

.brand-row {
  background: #fff;
}

.brand-row-inner {
  min-height: 86px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--navy-dark);
}

.brand:hover {
  text-decoration: none;
}

.brand-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px rgba(255,255,255,.24);
}

.brand strong {
  display: block;
  font-size: 28px;
  letter-spacing: 0;
}

.brand em {
  display: block;
  color: #7a8490;
  font-size: 14px;
  font-style: normal;
  margin-top: 2px;
}

.quick-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.main-nav {
  background: var(--navy);
  box-shadow: 0 8px 18px rgba(7, 25, 62, .22);
}

.main-nav .nav-links {
  min-height: 48px;
  justify-content: center;
  gap: 0;
}

.main-nav .nav-links a {
  color: #fff;
  padding: 15px 22px;
  border-left: 1px solid rgba(255,255,255,.12);
  font-weight: 600;
}

.main-nav .nav-links a:last-child {
  border-right: 1px solid rgba(255,255,255,.12);
}

.main-nav .nav-links a:hover {
  background: rgba(255,255,255,.1);
  text-decoration: none;
}

.hero-campus {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-bottom: 0;
  background: #0d2944;
}

.hero-visual {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(5,42,76,.92) 0%, rgba(5,42,76,.62) 42%, rgba(5,42,76,.12) 100%),
    linear-gradient(25deg, rgba(200,155,60,.3), rgba(255,255,255,0) 36%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 760'%3E%3Cdefs%3E%3ClinearGradient id='sky' x1='0' x2='1' y1='0' y2='1'%3E%3Cstop stop-color='%23cfdce8'/%3E%3Cstop offset='1' stop-color='%23eef2f4'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect fill='url(%23sky)' width='1600' height='760'/%3E%3Cpath fill='%23d6dde4' d='M0 512h1600v248H0z'/%3E%3Cpath fill='%23a9b6c2' d='M1040 220l400 160v38H650v-38l390-160z'/%3E%3Cpath fill='%23f7f3eb' d='M690 410h720v230H690z'/%3E%3Cpath fill='%23d3b16a' d='M650 380h800v40H650z'/%3E%3Cpath fill='%237b8792' d='M790 445h60v195h-60zm140 0h60v195h-60zm140 0h60v195h-60zm140 0h60v195h-60z'/%3E%3Cpath fill='%23073763' d='M0 650h1600v110H0z'/%3E%3Ccircle cx='250' cy='610' r='130' fill='%23829a71'/%3E%3Ccircle cx='380' cy='610' r='90' fill='%2397aa80'/%3E%3C/svg%3E") center/cover no-repeat;
  transform: scale(1.01);
}

.hero-shade {
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(5,42,76,0), rgba(5,42,76,.4));
}

.hero-content {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
}

.hero-copy {
  max-width: 760px;
  color: #fff;
  padding: 56px 0 72px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #f1cf7a;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-copy h1 {
  margin: 0 0 22px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.06;
  letter-spacing: 0;
}

.hero-copy .lead {
  color: rgba(255,255,255,.9);
  font-size: 20px;
}

.btn.gold {
  background: var(--gold);
  border-color: var(--gold);
  color: #1d2630;
  font-weight: 700;
}

.btn.light {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.7);
  color: #fff;
}

.section-tight {
  padding: 44px 0 36px;
}

.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  align-items: stretch;
}

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

.section-heading span {
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
}

.section-heading h2 {
  flex: 1;
  margin: 0;
  color: var(--navy-dark);
  font-size: 32px;
}

.section-heading.centered {
  display: block;
  text-align: center;
}

.section-heading.centered h2 {
  margin-top: 6px;
}

.news-main,
.notice-panel,
.process-card,
.download-list article {
  background: #fff;
  border: 1px solid #e1e5ea;
}

.news-main {
  padding: 28px;
}

.news-list {
  display: grid;
  gap: 0;
}

.news-item {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 22px;
  padding: 18px 0;
  border-top: 1px solid #e7ebef;
}

.news-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.news-item time {
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
}

.news-item h3 {
  margin: 0 0 6px;
  font-size: 20px;
  color: var(--navy-dark);
}

.news-item p {
  grid-column: 2;
  margin: -8px 0 0;
  color: #65707c;
}

.notice-panel {
  padding: 30px;
  background: var(--navy);
  color: #fff;
}

.notice-panel h2 {
  margin: 0 0 14px;
  font-size: 28px;
}

.notice-panel p {
  color: rgba(255,255,255,.82);
}

.notice-panel a {
  display: block;
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.45);
  color: #fff;
}

.notice-panel a:hover {
  background: rgba(255,255,255,.1);
  text-decoration: none;
}

.publishing-band {
  background: var(--paper);
}

.area-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.area-tile {
  min-height: 300px;
  display: flex;
  align-items: end;
  padding: 26px;
  color: #fff;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.area-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,55,99,.1), rgba(7,55,99,.9));
}

.area-tile::after {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  right: -40px;
  top: -40px;
  border: 32px solid rgba(255,255,255,.12);
  border-radius: 50%;
}

.area-tile > div {
  position: relative;
}

.area-tile span {
  color: #f1cf7a;
  font-weight: 700;
}

.area-tile h3 {
  margin: 8px 0 12px;
  font-size: 24px;
}

.area-tile p {
  color: rgba(255,255,255,.86);
}

.tile-1 { background: linear-gradient(135deg, #073763, #2e5f87); }
.tile-2 { background: linear-gradient(135deg, #274f63, #7a6a43); }
.tile-3 { background: linear-gradient(135deg, #11574f, #073763); }

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: start;
}

.service-intro {
  max-width: 720px;
  font-size: 18px;
  color: #4f5b68;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.service-list li {
  padding: 16px 18px;
  background: #fff;
  border-left: 4px solid var(--gold);
  box-shadow: 0 8px 18px rgba(24,33,42,.06);
}

.process-card {
  padding: 28px;
  border-top: 5px solid var(--gold);
}

.process-card h3 {
  margin-top: 0;
  color: var(--navy-dark);
  font-size: 24px;
}

.process-card ol {
  padding-left: 20px;
  color: #4f5b68;
}

.download-strip {
  padding-top: 0;
}

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

.download-list article {
  padding: 22px;
}

.download-list h3 {
  margin-top: 0;
  color: var(--navy-dark);
}

@media (max-width: 900px) {
  .topbar-inner,
  .brand-row-inner,
  .footer-inner,
  .news-layout,
  .area-showcase,
  .service-layout,
  .service-list,
  .download-list,
  .news-item {
    grid-template-columns: 1fr;
  }

  .topbar-inner,
  .brand-row-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 10px 0;
  }

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

  .main-nav .nav-links a {
    padding: 12px 14px;
    border: 0;
  }

  .hero-campus,
  .hero-content {
    min-height: 520px;
  }

  .news-item p {
    grid-column: auto;
    margin-top: 0;
  }
}
/* Visual polish v2 */
.hero-copy {
  max-width: 680px;
}

.hero-copy h1 {
  font-size: clamp(36px, 4.7vw, 58px);
  max-width: 760px;
}

.hero-campus,
.hero-content {
  min-height: 500px;
}

.hero-copy .lead {
  max-width: 620px;
}

.home-news {
  background: #f3f5f7;
}

.news-main,
.notice-panel,
.process-card,
.download-list article {
  box-shadow: 0 10px 26px rgba(15, 35, 55, .06);
}

.notice-panel {
  min-height: 100%;
}

@media (max-width: 900px) {
  .hero-copy h1 {
    font-size: 38px;
  }
}

/* Home academic final inline */
:root { --navy: #07193E; --navy-dark: #052a4c; --gold: #c89b3c; --paper: #f7f4ee; }
.site-header { position: sticky; top: 0; z-index: 20; background: #fff; border-bottom: 0; }
.topbar { background: #f6f8fb; border-bottom: 1px solid #e6e9ee; color: #5d6672; font-size: 13px; }
.topbar-inner, .brand-row-inner, .footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar-inner { min-height: 34px; }
.brand-row { background: #fff; }
.brand-row-inner { min-height: 86px; }
.brand { display: inline-flex; align-items: center; gap: 14px; color: var(--navy-dark); font-size: 18px; }
.brand:hover { text-decoration: none; }
.brand-mark { width: 54px; height: 54px; display: grid; place-items: center; background: var(--navy); color: #fff; font-size: 28px; font-weight: 700; border-radius: 50%; box-shadow: inset 0 0 0 3px rgba(255,255,255,.24); }
.brand strong { display: block; font-size: 28px; line-height: 1.1; letter-spacing: 0; }
.brand em { display: block; color: #7a8490; font-size: 14px; font-style: normal; margin-top: 2px; }
.quick-links { display: flex; gap: 18px; font-size: 14px; }
.main-nav { background: var(--navy); box-shadow: 0 8px 18px rgba(7,25,62,.22); }
.main-nav .nav-links { min-height: 48px; display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.main-nav .nav-links a { color: #fff; padding: 15px 22px; border-left: 1px solid rgba(255,255,255,.12); font-weight: 600; }
.main-nav .nav-links a:last-child { border-right: 1px solid rgba(255,255,255,.12); }
.main-nav .nav-links a:hover { background: rgba(255,255,255,.1); text-decoration: none; }
.hero-campus { position: relative; min-height: 500px; overflow: hidden; border-bottom: 0; background: #0d2944; }
.hero-visual { position: absolute; inset: 0; background: linear-gradient(110deg, rgba(5,42,76,.92) 0%, rgba(5,42,76,.62) 45%, rgba(5,42,76,.18) 100%), linear-gradient(25deg, rgba(200,155,60,.3), rgba(255,255,255,0) 36%), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 760'%3E%3Cdefs%3E%3ClinearGradient id='sky' x1='0' x2='1' y1='0' y2='1'%3E%3Cstop stop-color='%23cfdce8'/%3E%3Cstop offset='1' stop-color='%23eef2f4'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect fill='url(%23sky)' width='1600' height='760'/%3E%3Cpath fill='%23d6dde4' d='M0 512h1600v248H0z'/%3E%3Cpath fill='%23a9b6c2' d='M1040 220l400 160v38H650v-38l390-160z'/%3E%3Cpath fill='%23f7f3eb' d='M690 410h720v230H690z'/%3E%3Cpath fill='%23d3b16a' d='M650 380h800v40H650z'/%3E%3Cpath fill='%237b8792' d='M790 445h60v195h-60zm140 0h60v195h-60zm140 0h60v195h-60zm140 0h60v195h-60z'/%3E%3Cpath fill='%23073763' d='M0 650h1600v110H0z'/%3E%3Ccircle cx='250' cy='610' r='130' fill='%23829a71'/%3E%3Ccircle cx='380' cy='610' r='90' fill='%2397aa80'/%3E%3C/svg%3E") center/cover no-repeat; }
.hero-shade { position: absolute; inset: auto 0 0; height: 120px; background: linear-gradient(180deg, rgba(5,42,76,0), rgba(5,42,76,.42)); }
.hero-content { position: relative; min-height: 500px; display: flex; align-items: center; }
.hero-copy { max-width: 680px; color: #fff; padding: 54px 0 66px; }
.eyebrow { margin: 0 0 14px; color: #f1cf7a; font-weight: 700; text-transform: uppercase; letter-spacing: 0; }
.hero-copy h1 { margin: 0 0 22px; color: #fff; font-size: clamp(36px, 4.7vw, 58px); line-height: 1.08; letter-spacing: 0; }
.hero-copy .lead { max-width: 620px; color: rgba(255,255,255,.9); font-size: 20px; }
.btn.gold { background: var(--gold); border-color: var(--gold); color: #1d2630; font-weight: 700; }
.btn.light { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.7); color: #fff; }
.section-tight { padding: 44px 0 36px; }
.home-news { background: #f3f5f7; }
.news-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 28px; align-items: stretch; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 18px; margin-bottom: 22px; }
.section-heading span { color: var(--gold); font-weight: 700; text-transform: uppercase; font-size: 13px; }
.section-heading h2 { flex: 1; margin: 0; color: var(--navy-dark); font-size: 32px; }
.section-heading.centered { display: block; text-align: center; }
.section-heading.centered h2 { margin-top: 6px; }
.news-main, .notice-panel, .process-card, .download-list article { background: #fff; border: 1px solid #e1e5ea; box-shadow: 0 10px 26px rgba(15,35,55,.06); }
.news-main { padding: 28px; }
.news-list { display: grid; gap: 0; }
.news-item { display: grid; grid-template-columns: 130px minmax(0, 1fr); gap: 22px; padding: 18px 0; border-top: 1px solid #e7ebef; }
.news-item:first-child { border-top: 0; padding-top: 0; }
.news-item time { color: var(--gold); font-weight: 700; font-size: 14px; }
.news-item h3 { margin: 0 0 6px; font-size: 20px; color: var(--navy-dark); }
.news-item p { grid-column: 2; margin: -8px 0 0; color: #65707c; }
.notice-panel { padding: 30px; background: var(--navy); color: #fff; }
.notice-panel h2 { margin: 0 0 14px; font-size: 28px; }
.notice-panel p { color: rgba(255,255,255,.82); }
.notice-panel a { display: block; margin-top: 14px; padding: 12px 14px; border: 1px solid rgba(255,255,255,.45); color: #fff; }
.notice-panel a:hover { background: rgba(255,255,255,.1); text-decoration: none; }
.publishing-band { background: var(--paper); }
.area-showcase { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 26px; }
.area-tile { min-height: 300px; display: flex; align-items: end; padding: 26px; color: #fff; background: var(--navy); position: relative; overflow: hidden; }
.area-tile::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,55,99,.1), rgba(7,55,99,.9)); }
.area-tile::after { content: ''; position: absolute; width: 180px; height: 180px; right: -40px; top: -40px; border: 32px solid rgba(255,255,255,.12); border-radius: 50%; }
.area-tile > div { position: relative; }
.area-tile span { color: #f1cf7a; font-weight: 700; }
.area-tile h3 { margin: 8px 0 12px; font-size: 24px; }
.area-tile p { color: rgba(255,255,255,.86); }
.tile-1 { background: linear-gradient(135deg, #073763, #2e5f87); }
.tile-2 { background: linear-gradient(135deg, #274f63, #7a6a43); }
.tile-3 { background: linear-gradient(135deg, #11574f, #073763); }
.service-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 42px; align-items: start; }
.service-intro { max-width: 720px; font-size: 18px; color: #4f5b68; }
.service-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; padding: 0; margin: 24px 0 0; list-style: none; }
.service-list li { padding: 16px 18px; background: #fff; border-left: 4px solid var(--gold); box-shadow: 0 8px 18px rgba(24,33,42,.06); }
.process-card { padding: 28px; border-top: 5px solid var(--gold); }
.process-card h3 { margin-top: 0; color: var(--navy-dark); font-size: 24px; }
.process-card ol { padding-left: 20px; color: #4f5b68; }
.download-strip { padding-top: 0; }
.download-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.download-list article { padding: 22px; }
.download-list h3 { margin-top: 0; color: var(--navy-dark); }
@media (max-width: 900px) { .topbar-inner, .brand-row-inner, .footer-inner, .news-layout, .area-showcase, .service-layout, .service-list, .download-list, .news-item { grid-template-columns: 1fr; } .topbar-inner, .brand-row-inner, .footer-inner { align-items: flex-start; flex-direction: column; padding: 10px 0; } .main-nav .nav-links { justify-content: flex-start; } .main-nav .nav-links a { padding: 12px 14px; border: 0; } .hero-campus, .hero-content { min-height: 520px; } .hero-copy h1 { font-size: 38px; } .news-item p { grid-column: auto; margin-top: 0; } }
/* Homepage cleanup v4 */
.hero-campus,
.hero-content {
  min-height: 460px;
}

.hero-visual {
  background:
    linear-gradient(105deg, rgba(5,42,76,.95) 0%, rgba(5,42,76,.72) 48%, rgba(5,42,76,.28) 100%),
    radial-gradient(circle at 82% 28%, rgba(255,255,255,.2), rgba(255,255,255,0) 28%),
    linear-gradient(135deg, #7891a6 0%, #b7c6d0 58%, #e8ecef 100%);
}

.hero-visual::before {
  content: '';
  position: absolute;
  right: 8%;
  bottom: 0;
  width: 44%;
  height: 58%;
  background: rgba(255,255,255,.16);
  clip-path: polygon(8% 42%, 50% 0, 94% 42%, 94% 100%, 8% 100%);
}

.hero-visual::after {
  content: '';
  position: absolute;
  right: 14%;
  bottom: 0;
  width: 32%;
  height: 34%;
  background: repeating-linear-gradient(90deg, rgba(7,55,99,.45) 0 38px, rgba(255,255,255,.1) 38px 72px);
  opacity: .55;
}

.hero-copy {
  padding: 46px 0 56px;
}

.hero-copy h1 {
  font-size: clamp(34px, 4.2vw, 54px);
}

.news-main {
  padding: 24px 28px;
}

/* Hide deprecated topbar */
.topbar { display: none !important; }

/* Homepage simplified layout v20260626 */
.home-brief {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.home-brief > div {
  max-width: 820px;
}

.home-brief h2 {
  margin: 8px 0 14px;
  color: var(--navy-dark);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.16;
}

.home-brief p {
  margin: 0;
  color: #53606d;
  font-size: 17px;
}

.home-publication-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}

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

.home-area-showcase .area-tile {
  min-height: 220px;
}

.home-area-showcase .area-tile h3 {
  font-size: 22px;
}

.home-journal-panel {
  padding: 26px;
  border: 1px solid #e1e5ea;
  background: #fff;
  box-shadow: 0 10px 26px rgba(15,35,55,.06);
}

.home-journal-panel h2 {
  margin: 8px 0 18px;
  color: var(--navy-dark);
  font-size: 28px;
}

.home-journal-list {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.home-journal-list a {
  padding: 11px 13px;
  border: 1px solid #e2e6eb;
  background: #f8fafc;
  color: var(--navy);
  font-weight: 700;
}

.home-journal-list a:hover {
  border-color: #c89b3c;
  text-decoration: none;
}

@media (max-width: 980px) {
  .home-brief {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-publication-grid,
  .home-area-showcase {
    grid-template-columns: 1fr;
  }
}

/* Content completion and mainstream layout v20260621 */
.page-hero {
  background: linear-gradient(115deg, #073763 0%, #174f7a 55%, #8aa2b4 100%);
  color: #fff;
  padding: 72px 0;
}

.compact-page-hero h1 {
  max-width: 920px;
  margin: 8px 0 16px;
  color: #fff;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.08;
}

.compact-page-hero p {
  max-width: 820px;
  margin: 0;
  color: rgba(255,255,255,.88);
  font-size: 19px;
}

.journals-hero {
  padding: 28px 0 26px;
  border-bottom: 1px solid #e1e6ee;
  background: #f8fafc;
  color: #052a4c;
}

.journals-hero h1 {
  margin: 0 0 8px;
  color: #052a4c;
  font-size: 34px;
  line-height: 1.12;
}

.journals-hero p {
  max-width: 900px;
  color: #53606d;
  font-size: 16px;
}

.journals-hero p strong {
  color: #8a6420;
}

.section-kicker {
  display: inline-block;
  color: #c89b3c;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-note {
  max-width: 660px;
  color: rgba(255,255,255,.82);
  font-size: 17px;
  margin: 12px 0 0;
}

.intro-panel-section,
.content-section,
.white-section {
  background: #fff;
}

.intro-grid,
.content-grid,
.overview-grid,
.contact-grid,
.archive-layout,
.split-feature,
.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: start;
}

.intro-copy h2,
.content-card h2,
.archive-layout h2,
.split-feature h2,
.cta-band h2 {
  margin: 8px 0 16px;
  color: #052a4c;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.16;
}

.intro-copy p,
.content-card p,
.archive-layout p,
.split-feature p,
.cta-band p {
  color: #53606d;
  font-size: 17px;
}

.strength-panel,
.content-card,
.content-side-card,
.submission-card,
.contact-card,
.news-archive-item {
  background: #fff;
  border: 1px solid #e1e5ea;
  box-shadow: 0 12px 30px rgba(15,35,55,.06);
}

.strength-panel,
.content-side-card,
.submission-card,
.contact-card {
  padding: 28px;
}

.strength-panel h3,
.content-side-card h3 {
  margin: 0 0 14px;
  color: #052a4c;
  font-size: 24px;
}

.strength-panel ul,
.clean-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.strength-panel li,
.clean-list li {
  padding-left: 18px;
  border-left: 3px solid #c89b3c;
  color: #53606d;
}

.about-email-box {
  display: grid;
  gap: 6px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid #e1e5ea;
}

.about-email-box strong {
  color: #052a4c;
  font-size: 14px;
}

.about-email-box a {
  color: #0b4a7a;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.about-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(105deg, rgba(7, 25, 62, .96) 0%, rgba(7, 25, 62, .78) 52%, rgba(7, 25, 62, .42) 100%),
    url("/static/img/banner2.jpg") center/cover no-repeat;
  color: #fff;
}

.about-hero__inner {
  min-height: 420px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 42px;
  align-items: end;
  padding: 72px 0 58px;
}

.about-hero h1 {
  max-width: 900px;
  margin: 10px 0 16px;
  color: #fff;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
}

.about-hero p {
  max-width: 740px;
  margin: 0;
  color: rgba(255, 255, 255, .88);
  font-size: 19px;
}

.about-hero__marks {
  display: grid;
  gap: 10px;
}

.about-hero__marks span {
  padding: 12px 14px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-weight: 800;
}

.about-overview {
  background: #f6f8fb;
}

.about-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 30px;
  align-items: start;
}

.about-story {
  display: grid;
  gap: 16px;
}

.about-story-block,
.about-side-panel,
.about-values-grid article {
  border: 1px solid #e1e6ee;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 35, 55, .06);
}

.about-story-block {
  padding: 28px 30px;
  border-left: 4px solid var(--gold);
}

.about-story-block p {
  margin: 10px 0 0;
  color: #475467;
  font-size: 17px;
}

.about-side-panel {
  position: sticky;
  top: 108px;
  padding: 26px;
}

.about-wordmark {
  margin: -26px -26px 24px;
  padding: 26px;
  background: var(--navy);
  color: #fff;
}

.about-wordmark strong {
  display: block;
  font-size: 32px;
  line-height: 1;
}

.about-wordmark span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, .76);
  font-size: 13px;
  font-weight: 800;
}

.about-side-panel h2 {
  margin: 0 0 16px;
  color: #052a4c;
  font-size: 24px;
}

.about-values-band {
  padding: 34px 0;
  background: var(--navy);
}

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

.about-values-grid article {
  padding: 24px;
}

.about-values-grid span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.about-values-grid strong {
  display: block;
  margin: 8px 0 10px;
  color: #052a4c;
  font-size: 20px;
}

.about-values-grid p {
  margin: 0;
  color: #53606d;
}

.about-philosophy {
  background: #f7f4ee;
}

.managed-page-head {
  background: #f8fafc;
}

.managed-page-head h1 {
  color: #052a4c;
}

.managed-page-section {
  background: #f6f8fb;
}

.managed-page-card {
  max-width: 980px;
  margin: 0 auto;
  padding: 34px;
  border: 1px solid #e1e6ee;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 35, 55, .07);
}

.managed-page-card section + section {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #e5eaf0;
}

.managed-page-card h2 {
  margin: 0 0 12px;
  color: #052a4c;
  font-size: 26px;
}

.managed-page-card p {
  color: #475467;
  font-size: 17px;
}

.managed-page-card ul,
.managed-page-card ol {
  display: grid;
  gap: 9px;
  margin: 16px 0 0;
  padding-left: 22px;
  color: #53606d;
}

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

.managed-page-card .reviewer-journal-card {
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid #dfe6ee;
  border-left: 4px solid var(--gold);
  background: #f8fafc;
}

.managed-page-card .reviewer-journal-card h3 {
  margin: 0;
  color: #052a4c;
  font-size: 20px;
}

.reviewer-journal-card dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.reviewer-journal-card dt {
  color: #8a6420;
  font-weight: 900;
}

.reviewer-journal-card dd {
  margin: 0 0 6px;
  color: #475467;
}

@media (max-width: 980px) {
  .about-hero__inner,
  .about-overview-grid,
  .about-values-grid,
  .reviewer-board-grid {
    grid-template-columns: 1fr;
  }

  .about-hero__inner {
    min-height: auto;
    padding: 56px 0 44px;
  }

  .about-side-panel {
    position: static;
  }
}

.content-card {
  padding: 32px;
}

.feature-content {
  min-height: 100%;
}

.philosophy-band {
  background: #f7f4ee;
}

.value-grid,
.method-grid,
.archive-methods,
.contact-list,
.service-grid-large,
.journal-grid {
  display: grid;
  gap: 16px;
}

.value-grid,
.method-grid,
.archive-methods,
.contact-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.value-grid article,
.method-grid article,
.archive-methods article,
.contact-list article,
.service-grid-large article,
.journal-grid article {
  background: #fff;
  border: 1px solid #e2e6eb;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(15,35,55,.04);
}

.value-grid strong,
.method-grid strong,
.archive-methods strong,
.contact-list strong,
.service-grid-large h3,
.journal-grid h3 {
  display: block;
  color: #052a4c;
  margin: 0 0 8px;
}

.value-grid span,
.method-grid span,
.archive-methods span,
.contact-list span,
.service-grid-large p {
  color: #65707c;
}

.modern-area-showcase .area-tile a {
  color: #f1cf7a;
  font-weight: 700;
}

.publication-detail-grid .area-tile {
  min-height: 360px;
}

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

.journal-grid a {
  color: #0b4a7a;
  font-weight: 700;
}

.dark-card {
  background: #073763;
  color: #fff;
}

.dark-card h2 {
  margin-top: 0;
  color: #fff;
}

.dark-card p {
  color: rgba(255,255,255,.84);
}

.vertical-actions {
  flex-direction: column;
  align-items: stretch;
}

.compact-actions {
  margin-top: 22px;
}

.timeline-list {
  display: grid;
  gap: 14px;
}

.timeline-list article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 8px 16px;
  background: #fff;
  border: 1px solid #e2e6eb;
  padding: 18px;
}

.timeline-list span {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: #073763;
  color: #fff;
  border-radius: 50%;
  font-weight: 800;
}

.timeline-list strong {
  color: #052a4c;
}

.timeline-list p {
  margin: 0;
  color: #65707c;
}

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

.primary-contact-card h2 {
  font-size: clamp(28px, 4vw, 44px);
  color: #052a4c;
  word-break: break-word;
}

.news-archive-list {
  display: grid;
  gap: 16px;
}

.news-archive-item {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 24px;
  padding: 24px;
}

.news-archive-item time {
  color: #c89b3c;
  font-weight: 800;
}

.news-archive-item h2 {
  margin: 0 0 8px;
  color: #052a4c;
  font-size: 24px;
}

.news-archive-item p {
  margin: 0;
  color: #65707c;
}

.resource-list article {
  min-height: 220px;
}

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

@media (max-width: 980px) {
  .intro-grid,
  .content-grid,
  .overview-grid,
  .contact-grid,
  .archive-layout,
  .split-feature,
  .cta-band,
  .value-grid,
  .method-grid,
  .archive-methods,
  .contact-list,
  .service-grid-large,
  .journal-grid,
  .news-archive-item {
    grid-template-columns: 1fr;
  }

  .compact-page-hero h1 {
    font-size: 36px;
  }
}
/* Archive search and submission type workflow v20260621 */
.archive-search-layout,
.submission-create-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 30px;
  align-items: start;
}

.submission-create-layout {
  grid-template-columns: 320px minmax(0, 1fr);
}

.archive-search-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
  padding: 22px;
  background: #f6f8fb;
  border: 1px solid #e1e5ea;
}

.archive-search-form button {
  align-self: end;
}

.archive-results {
  margin-top: 28px;
}

.archive-result-item {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 20px 0;
  border-top: 1px solid #e1e5ea;
}

.archive-result-item h4 {
  margin: 0 0 8px;
  color: #052a4c;
  font-size: 21px;
}

.archive-result-item p {
  margin: 0 0 12px;
  color: #5f6b78;
}

.archive-result-item dl {
  display: grid;
  grid-template-columns: repeat(5, max-content minmax(0, 1fr));
  gap: 4px 10px;
  margin: 0;
  font-size: 13px;
}

.archive-result-item dt {
  color: #8a6a22;
  font-weight: 800;
}

.archive-result-item dd {
  margin: 0;
  color: #53606d;
}

.notice-box {
  margin-top: 18px;
  padding: 14px 16px;
  border-left: 4px solid #c89b3c;
  background: #fff7e5;
  color: #664b10;
}

.submission-path-list {
  padding-left: 20px;
  color: rgba(255,255,255,.86);
}

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

.template-mini-list a {
  display: block;
  padding: 12px 14px;
  background: #f6f8fb;
  border: 1px solid #e1e5ea;
  color: #073763;
  font-weight: 700;
}

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

.choice-card {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 140px;
  padding: 18px 18px 18px 46px;
  border: 1px solid #d7dde5;
  background: #fff;
  cursor: pointer;
}

.choice-card input {
  position: absolute;
  left: 18px;
  top: 21px;
  width: auto;
}

.choice-card strong {
  color: #052a4c;
  font-size: 18px;
}

.choice-card span,
.field-help {
  color: #65707c;
  font-size: 14px;
}

.choice-card:has(input:checked) {
  border-color: #c89b3c;
  box-shadow: 0 0 0 3px rgba(200,155,60,.14);
}

@supports not selector(:has(*)) {
  .choice-card {
    border-left: 4px solid #c89b3c;
  }
}

@media (max-width: 980px) {
  .archive-search-layout,
  .submission-create-layout,
  .archive-search-form,
  .choice-grid,
  .archive-result-item,
  .archive-result-item dl {
    grid-template-columns: 1fr;
  }

  .archive-result-item {
    display: block;
  }
}

/* Login modal feedback v20260621 */
.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(8, 23, 42, .48);
}

.auth-modal__panel {
  position: relative;
  width: min(420px, 100%);
  padding: 30px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(8, 23, 42, .28);
  text-align: center;
}

.auth-modal__panel h2 {
  margin: 0 0 10px;
  font-size: 24px;
  color: var(--navy);
}

.auth-modal__panel p {
  margin: 0 0 22px;
  color: #536070;
}

.auth-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: #687386;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

/* Call for Papers and submission portal v20260621 */
.cfp-hero,
.submission-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #052a4c, #073763 58%, #195a8f);
  color: #fff;
}

.cfp-hero::after,
.submission-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 6px;
  background: linear-gradient(90deg, var(--gold), rgba(255,255,255,.25), transparent);
}

.cfp-hero__inner,
.submission-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 34px;
  align-items: center;
  min-height: 430px;
  padding: 64px 0;
}

.cfp-hero h1,
.submission-hero h1 {
  max-width: 820px;
  margin: 10px 0 18px;
  color: #fff;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.05;
}

.cfp-hero p,
.submission-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255,255,255,.86);
  font-size: 18px;
}

.cfp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.cfp-login-card,
.submission-hero__meta {
  padding: 28px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 8px;
  background: rgba(255,255,255,.12);
  box-shadow: 0 18px 50px rgba(0,0,0,.2);
}

.cfp-login-card h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 24px;
}

.cfp-login-card p {
  margin-bottom: 20px;
  font-size: 15px;
}

.cfp-login-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: 10px;
}

.submission-hero__meta {
  display: grid;
  gap: 6px;
}

.submission-hero__meta strong {
  color: #fff;
  font-size: 18px;
}

.submission-hero__meta span {
  color: rgba(255,255,255,.82);
}

.cfp-overview-section,
.cfp-guidelines-section {
  background: #f5f7fb;
}

.cfp-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}

.cfp-panel,
.cfp-side-panel,
.cfp-template-panel,
.submission-workbench,
.submission-aside .content-side-card {
  border: 1px solid #dfe5ee;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15,35,55,.07);
}

.cfp-panel {
  padding: 34px;
}

.cfp-panel h2 {
  margin: 8px 0 14px;
  color: var(--navy-dark);
  font-size: 32px;
  line-height: 1.18;
}

.cfp-copy > p,
.cfp-panel > p {
  color: #5f6b78;
}

.cfp-notice-grid,
.cfp-track-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.cfp-notice-grid div,
.cfp-track-grid article {
  padding: 18px;
  border: 1px solid #e1e6ee;
  border-radius: 8px;
  background: #fbfcfe;
}

.cfp-notice-grid strong,
.cfp-notice-grid span {
  display: block;
}

.cfp-notice-grid strong,
.cfp-track-grid h3 {
  color: var(--navy-dark);
}

.cfp-notice-grid span,
.cfp-track-grid p {
  margin: 6px 0 0;
  color: #626d7a;
}

.cfp-side-panel,
.cfp-template-panel {
  padding: 28px;
  position: sticky;
  top: 94px;
}

.cfp-side-panel {
  background: var(--navy);
  color: #fff;
}

.cfp-side-panel h2,
.cfp-template-panel h2 {
  margin: 0 0 18px;
  font-size: 24px;
}

.cfp-step-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cfp-step-list li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 4px 12px;
  align-items: start;
}

.cfp-step-list span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: #1d2630;
  font-weight: 800;
}

.cfp-step-list strong {
  color: #fff;
}

.cfp-step-list em {
  color: rgba(255,255,255,.76);
  font-style: normal;
}

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

.cfp-track-grid article {
  min-height: 220px;
  border-top: 4px solid var(--gold);
}

.cfp-track-grid span {
  color: var(--gold);
  font-weight: 800;
}

.cfp-track-grid h3 {
  margin: 12px 0 8px;
  font-size: 22px;
}

.cfp-guideline-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.cfp-guideline-list article {
  padding: 18px 20px;
  border-left: 4px solid var(--gold);
  background: #f8fafc;
}

.cfp-guideline-list strong {
  color: var(--navy-dark);
}

.cfp-guideline-list p,
.cfp-template-panel p {
  margin: 6px 0 0;
  color: #5f6b78;
}

.cfp-template-panel .btn {
  width: 100%;
  justify-content: center;
  margin-top: 20px;
}

.cfp-search-card {
  padding: 28px;
}

.submission-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

.submission-workbench {
  overflow: hidden;
}

.submission-progress {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid #dfe5ee;
  background: #f8fafc;
}

.submission-progress span {
  position: relative;
  padding: 16px 14px;
  color: #687386;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.submission-progress span.active {
  color: var(--navy-dark);
}

.submission-progress span.active::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 0;
  height: 3px;
  background: var(--gold);
}

.submission-form {
  padding: 0;
}

.submission-form-section {
  padding: 30px;
  border-bottom: 1px solid #e2e7ef;
}

.form-section-head {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin-bottom: 22px;
}

.form-section-head > span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
}

.form-section-head h2 {
  margin: 0;
  color: var(--navy-dark);
  font-size: 24px;
}

.form-section-head p {
  margin: 4px 0 0;
  color: #647182;
}

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

.submission-type-grid .choice-card {
  min-height: 128px;
}

.submission-submit-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 30px;
  background: #f8fafc;
}

.submission-submit-bar p {
  margin: 0;
  color: #647182;
}

.submission-aside {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 94px;
}

.submission-checklist ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: #5f6b78;
}

.submission-checklist li + li {
  margin-top: 8px;
}

@media (max-width: 980px) {
  .cfp-hero__inner,
  .submission-hero__inner,
  .cfp-main-grid,
  .cfp-track-grid,
  .submission-page-grid {
    grid-template-columns: 1fr;
  }

  .cfp-side-panel,
  .cfp-template-panel,
  .submission-aside {
    position: static;
  }
}

@media (max-width: 720px) {
  .cfp-hero__inner,
  .submission-hero__inner {
    min-height: auto;
    padding: 46px 0;
  }

  .cfp-notice-grid,
  .form-grid.two-columns,
  .submission-progress {
    grid-template-columns: 1fr;
  }

  .cfp-panel,
  .cfp-side-panel,
  .cfp-template-panel,
  .submission-form-section,
  .submission-submit-bar {
    padding: 22px;
  }

  .submission-submit-bar {
    align-items: stretch;
    flex-direction: column;
  }
}

/* Author center and submission wizard v20260621 */
.author-console-hero {
  background: linear-gradient(90deg, #052a4c, #073763 60%, #195a8f);
  color: #fff;
}

.author-console-hero .container {
  padding: 42px 0;
}

.author-console-hero h1 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 34px;
}

.author-console-hero p {
  max-width: 820px;
  margin: 0;
  color: rgba(255,255,255,.82);
}

.author-console-section {
  background: #f5f7fb;
}

.author-console {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.author-menu {
  position: sticky;
  top: 94px;
  overflow: hidden;
  border: 1px solid #dfe5ee;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15,35,55,.07);
}

.author-menu a {
  display: block;
  padding: 15px 18px;
  border-bottom: 1px solid #eef2f6;
  color: #354052;
  font-weight: 700;
}

.author-menu a:last-child {
  border-bottom: 0;
}

.author-menu a.active,
.author-menu a:hover {
  background: var(--navy);
  color: #fff;
  text-decoration: none;
}

.author-main {
  min-width: 0;
  display: grid;
  gap: 18px;
}

.author-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 24px;
  border: 1px solid #dfe5ee;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15,35,55,.07);
}

.author-toolbar h2 {
  margin: 4px 0 0;
  color: var(--navy-dark);
}

.author-card,
.wizard-subcard,
.submission-success-card {
  padding: 26px;
  border: 1px solid #dfe5ee;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15,35,55,.07);
}

.author-card h2,
.author-card h3,
.wizard-subcard h3,
.submission-success-card h2 {
  margin-top: 0;
  color: var(--navy-dark);
}

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

.author-template-list a {
  padding: 12px 14px;
  border: 1px solid #dfe5ee;
  border-radius: 6px;
  background: #f8fafc;
  color: var(--navy);
  font-weight: 700;
}

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

.author-stats article {
  padding: 22px;
  border: 1px solid #dfe5ee;
  border-radius: 8px;
  background: #fff;
}

.author-stats span {
  display: block;
  color: #647182;
}

.author-stats strong {
  display: block;
  margin-top: 8px;
  color: var(--navy-dark);
  font-size: 26px;
}

.policy-list {
  display: grid;
  gap: 14px;
}

.policy-list article {
  padding: 18px;
  border-left: 4px solid var(--gold);
  background: #f8fafc;
}

.policy-list p {
  margin: 6px 0 0;
  color: #647182;
}

.copy-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px;
  gap: 12px;
}

.copy-line input {
  min-width: 0;
}

.wizard-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-bottom: 18px;
  overflow: hidden;
  border: 1px solid #dfe5ee;
  border-radius: 8px;
  background: #fff;
}

.wizard-steps span {
  padding: 15px 12px;
  border-right: 1px solid #eef2f6;
  color: #687386;
  font-weight: 800;
  text-align: center;
}

.wizard-steps span:last-child {
  border-right: 0;
}

.wizard-steps span.active {
  background: var(--navy);
  color: #fff;
}

.wizard-panel {
  display: none;
}

.wizard-panel.active {
  display: block;
}

.agreement-line {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 14px 0;
  padding: 14px 16px;
  border: 1px solid #dfe5ee;
  border-radius: 8px;
  background: #f8fafc;
  color: #344054;
  font-weight: 700;
}

.agreement-line.compact {
  display: inline-flex;
  padding: 8px 10px;
}

.agreement-line input {
  width: auto;
  margin-top: 3px;
}

.wizard-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 22px;
}

.secondary-button,
.link-button {
  border: 1px solid #cfd7e3;
  background: #fff;
  color: var(--navy);
}

.link-button {
  padding: 0;
  border: 0;
  color: #b42318;
  font-weight: 700;
}

.wizard-two-column,
.wizard-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.wizard-list-grid {
  margin-top: 22px;
}

.submission-preview dl {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 10px 16px;
  margin: 0;
}

.submission-preview dt {
  color: var(--navy-dark);
  font-weight: 800;
}

.submission-preview dd {
  margin: 0;
  color: #4f5b68;
}

.submission-success-card {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.submission-success-card .actions {
  justify-content: center;
}

.author-top-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.author-top-avatar {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
}

.author-top-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-avatar-row {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-bottom: 22px;
}

.profile-avatar-preview {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  overflow: hidden;
  border: 1px solid #dfe5ee;
  border-radius: 50%;
  background: #f2f6fb;
  color: var(--navy);
  font-size: 34px;
  font-weight: 800;
}

.profile-avatar-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-flow {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 8px;
  margin: 18px 0 24px;
}

.review-step {
  position: relative;
  min-height: 82px;
  padding: 12px 8px;
  border: 1px solid #dfe5ee;
  border-radius: 8px;
  background: #f8fafc;
  text-align: center;
}

.review-step span {
  display: block;
  width: 20px;
  height: 20px;
  margin: 0 auto 8px;
  border: 3px solid #c9d3e2;
  border-radius: 50%;
  background: #fff;
}

.review-step strong {
  display: block;
  color: #5f6b78;
  font-size: 12px;
  line-height: 1.25;
}

.review-step.done {
  border-color: rgba(30, 122, 109, .35);
  background: #eefaf6;
}

.review-step.done span {
  border-color: #1f7a6d;
  background: #1f7a6d;
}

.review-step.current {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,155,60,.15);
  background: #fff9eb;
}

.review-step.current span {
  border-color: var(--gold);
}

.author-feedback-box {
  margin-top: 8px;
  padding: 14px 16px;
  border: 1px solid #dfe7f2;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: #fffaf0;
  color: #334155;
}

.required-star {
  color: #d92d20;
  font-weight: 900;
}

.optional-note {
  margin-left: 6px;
  color: #98a2b3;
  font-size: 13px;
  font-weight: 400;
}

.manuscript-area-field {
  padding: 20px;
  border: 1px solid #c9d6e6;
  border-radius: 8px;
  background: #f8fbff;
}

.manuscript-area-field label {
  font-size: 18px;
}

.manuscript-area-field select {
  min-height: 56px;
  margin-top: 8px;
  padding: 0 16px;
  border-color: #b8c8dc;
  color: var(--navy-dark);
  font-size: 17px;
  font-weight: 700;
}

@media (max-width: 980px) {
  .author-console,
  .wizard-two-column,
  .wizard-list-grid {
    grid-template-columns: 1fr;
  }

  .author-menu {
    position: static;
  }
}

@media (max-width: 720px) {
  .author-toolbar,
  .profile-avatar-row,
  .wizard-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .wizard-steps,
  .author-template-list,
  .author-stats,
  .profile-avatar-row,
  .copy-line,
  .submission-preview dl {
    grid-template-columns: 1fr;
  }
}

/* Journal issue archive v20260628 */
.journal-grid .journal-card {
  display: grid;
  gap: 14px;
  padding: 0 0 18px;
  overflow: hidden;
  border: 1px solid #e2e6eb;
  background: #fff;
  box-shadow: 0 8px 20px rgba(15,35,55,.04);
  color: #052a4c;
}

.journal-grid .journal-card:hover {
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(15,35,55,.1);
}

.journal-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 10px;
  background: #f3f7fb;
}

.journal-card-text {
  display: grid;
  justify-items: center;
  gap: 5px;
  min-height: 78px;
  padding: 0 18px;
  color: #052a4c;
  line-height: 1.25;
  text-align: center;
}

.journal-card-text strong {
  color: #052a4c;
  font-size: 20px;
  font-weight: 900;
}

.journal-card-text em {
  color: #5b6673;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
}

.journal-issues-page {
  background: #fff;
}

.journal-issues-shell {
  display: grid;
  grid-template-columns: minmax(180px, 240px) minmax(0, 1fr) minmax(240px, 300px);
  gap: 28px;
  align-items: start;
}

.journal-cover-panel {
  display: grid;
  gap: 12px;
}

.journal-cover-panel img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  padding: 10px;
  border: 1px solid #dfe6ee;
  background: #f3f7fb;
}

.journal-cover-panel h1 {
  margin: 0;
  color: #052a4c;
  font-size: 28px;
  line-height: 1.1;
}

.journal-cover-panel p {
  margin: 0;
  color: #5b6673;
  font-weight: 700;
  line-height: 1.35;
}

.journal-cover-panel__actions {
  display: grid;
  gap: 8px;
}

.journal-cover-panel__actions .journal-pdf-button {
  width: 100%;
}

.journal-article-side-meta {
  display: grid;
  gap: 5px;
  margin: 2px 0 0;
  padding-top: 4px;
}

.journal-article-side-meta dt {
  color: #8a6a22;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.journal-article-side-meta dd {
  margin: 0 0 9px;
  color: #052a4c;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
}

.journal-license-box--side {
  padding: 14px;
}

.journal-license-box--side h3 {
  margin: 0 0 8px;
  color: #052a4c;
  font-size: 16px;
}

.journal-license-box--side p {
  color: #53606d;
  font-size: 13px;
  line-height: 1.45;
}

.journal-cover-panel .journal-license-cc {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  aspect-ratio: auto;
  margin: 2px 0 8px;
  padding: 0;
  border: 0;
  background: transparent;
  object-fit: initial;
}

.journal-issues-main {
  min-width: 0;
}

.journal-issues-heading {
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e1e6ee;
}

.journal-issues-heading h2 {
  margin: 4px 0 8px;
  color: #052a4c;
  font-size: 30px;
  line-height: 1.18;
}

.journal-issues-heading p {
  margin: 0;
  color: #53606d;
}

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

.journal-issue-list--archive {
  gap: 10px;
}

.journal-issue-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border: 1px solid #e1e6ee;
  background: #f8fafc;
  color: #052a4c;
}

.journal-issue-list a:hover {
  border-color: #c89b3c;
  background: #fffaf0;
  text-decoration: none;
}

.journal-issue-list strong {
  font-size: 20px;
}

.journal-issue-list span {
  color: #667085;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.journal-sidebar {
  display: grid;
  gap: 18px;
}

.journal-issue-search,
.journal-sidebar-section {
  padding-bottom: 18px;
  border-bottom: 1px solid #e1e6ee;
}

.journal-issue-search label,
.journal-sidebar-section h2 {
  display: block;
  margin: 0 0 10px;
  color: #052a4c;
  font-size: 18px;
  font-weight: 900;
}

.journal-issue-search__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.journal-issue-search__row input {
  min-height: 40px;
}

.journal-issue-search__row button {
  min-width: 78px;
  white-space: nowrap;
}

.journal-info-links {
  display: grid;
  gap: 8px;
}

.journal-info-links a {
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid #eef2f6;
  color: #195a8f;
  font-weight: 800;
}

.journal-info-links a:last-child {
  border-bottom: 0;
}

.journal-info-links a:hover {
  color: #8a6420;
  text-decoration: none;
}

.journal-issn-section p {
  margin: -4px 0 12px;
  color: #667085;
  font-size: 13px;
  font-weight: 700;
}

.journal-issn-section dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.journal-issn-section dt {
  color: #53606d;
  font-size: 13px;
  font-weight: 800;
}

.journal-issn-section dd {
  margin: -6px 0 4px;
  color: #052a4c;
  font-size: 17px;
  font-weight: 900;
}

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

.journal-article-list article {
  padding: 0 0 18px;
  border-bottom: 1px solid #e1e6ee;
}

.journal-article-list article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.journal-article-link {
  display: block;
  color: inherit;
}

.journal-article-link:hover {
  text-decoration: none;
}

.journal-article-link:hover h3 {
  color: #8a6420;
}

.journal-article-list h3 {
  margin: 0 0 8px;
  color: #052a4c;
  font-size: 22px;
}

.journal-article-list p {
  margin: 0 0 12px;
}

.journal-article-list dl {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 4px 10px;
  margin: 0;
  font-size: 13px;
}

.journal-article-list dt {
  color: #8a6a22;
  font-weight: 800;
}

.journal-article-list dd {
  margin: 0;
  color: #53606d;
}

.journal-article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.journal-pdf-button {
  min-height: 34px;
  padding: 7px 14px;
  border-color: #195a8f;
  background: #195a8f;
  color: #fff;
  font-weight: 800;
}

.journal-pdf-button:hover,
.journal-pdf-button.active {
  border-color: #8a6420;
  background: #8a6420;
}

body.journal-pdf-open {
  overflow: hidden;
}

.journal-pdf-modal[hidden] {
  display: none;
}

.journal-pdf-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(3, 12, 30, .78);
}

.journal-pdf-modal__panel {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  width: min(1280px, 100%);
  height: min(92vh, 920px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .38);
}

.journal-pdf-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 52px;
  padding: 10px 14px 10px 18px;
  border-bottom: 1px solid #dfe6ee;
  background: #f8fafc;
}

.journal-pdf-modal__head strong {
  color: #052a4c;
  font-size: 16px;
}

.journal-pdf-modal__close {
  min-height: 34px;
  padding: 6px 12px;
  border-color: #d0d5dd;
  background: #fff;
  color: #344054;
  font-weight: 800;
}

.journal-pdf-modal__close:hover {
  background: #f2f5f8;
}

.journal-pdf-modal iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}

.journal-article-detail {
  display: grid;
  gap: 22px;
}

.journal-article-detail h3 {
  margin: 0 0 10px;
  color: #052a4c;
  font-size: 22px;
}

.journal-article-detail p {
  margin: 0;
  color: #344054;
}

.journal-article-meta {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 10px 14px;
  margin: 0;
  padding: 18px;
  border: 1px solid #e1e6ee;
  background: #f8fafc;
}

.journal-article-meta dt {
  color: #8a6a22;
  font-weight: 900;
}

.journal-article-meta dd {
  margin: 0;
  color: #344054;
}

.journal-license-box {
  padding: 18px;
  border: 1px solid #e1e6ee;
  border-left: 4px solid #c89b3c;
  background: #fffaf0;
}

.journal-license-box h3 {
  margin-bottom: 8px;
}

.journal-license-box p {
  margin: 0 0 8px;
}

.journal-license-box p:last-child {
  margin-bottom: 0;
}

.journal-license-box a {
  font-weight: 800;
}

.journal-back-link {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid #caa45b;
  border-radius: 6px;
  background: #fff8e8;
  color: #5f4212;
  font-weight: 800;
}

.journal-back-link:hover {
  background: #f4e4bd;
  text-decoration: none;
}

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

@media (max-width: 980px) {
  .journal-issues-shell {
    grid-template-columns: 1fr;
  }

  .journal-cover-panel {
    max-width: 260px;
  }

  .journal-issue-list a {
    align-items: flex-start;
    flex-direction: column;
  }

  .journal-article-list dl,
  .journal-article-meta,
  .form-grid.three-columns {
    grid-template-columns: 1fr;
  }

  .journal-pdf-modal {
    padding: 10px;
  }

  .journal-pdf-modal__panel {
    height: 92vh;
  }
}
