/* ============================================================
   JMP — Journal of Management Prospective
   Main Stylesheet
   ============================================================ */

/* All text uses self-hosted Museo Sans (see @font-face declarations below) */

/* Museo Sans — self-hosted (assets/font/museo-sans/) */
@font-face {
  font-family: 'Museo Sans';
  src: url('../font/museo-sans/MuseoSans-100.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Museo Sans';
  src: url('../font/museo-sans/MuseoSans-100Italic.otf') format('opentype');
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Museo Sans';
  src: url('../font/museo-sans/MuseoSans-300.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Museo Sans';
  src: url('../font/museo-sans/MuseoSans-300Italic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Museo Sans';
  src: url('../font/museo-sans/MuseoSans_500.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Museo Sans';
  src: url('../font/museo-sans/MuseoSans_500_Italic.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Museo Sans';
  src: url('../font/museo-sans/MuseoSans_700.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Museo Sans';
  src: url('../font/museo-sans/MuseoSans-700Italic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Museo Sans';
  src: url('../font/museo-sans/MuseoSans_900.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Museo Sans';
  src: url('../font/museo-sans/MuseoSans-900Italic.otf') format('opentype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

/* ── Reset & Base ──────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #0D2B55;
  --gold: #C8A84B;
  --gold-dark: #A8862E;
  --cream: #F8F6F1;
  --white: #FFFFFF;
  --text-dark: #1A1A2E;
  --text-mid: #4B5563;
  --text-light: #9CA3AF;
  --teal: #0E7490;
  --border: #E5E7EB;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08), 0 1px 2px rgba(0, 0, 0, .06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, .10), 0 2px 6px rgba(0, 0, 0, .07);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, .14), 0 4px 12px rgba(0, 0, 0, .08);
  --nav-h: 72px;
  --nav-h-sm: 56px;
  --container: 1200px;
  --radius: 6px;
}

html {
  scroll-behavior: smooth;
  font-size: 18px;
}

body {
  font-family: 'Museo Sans', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* ── Utilities ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

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

.section-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Museo Sans', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-family: 'Museo Sans', sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.gold-rule {
  position: relative;
  padding-left: 1rem;
}

.gold-rule::before {
  content: '';
  position: absolute;
  left: 0;
  top: .1em;
  bottom: .1em;
  width: 3px;
  background: var(--gold);
  border-radius: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .7rem 1.5rem;
  border-radius: var(--radius);
  font-family: 'Museo Sans', sans-serif;
  font-size: .92rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .15s, box-shadow .2s;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

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

.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

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

.btn-navy:hover {
  background: #0a2044;
  border-color: #0a2044;
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .55);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .85);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-lg {
  padding: .95rem 2.2rem;
  font-size: 1.05rem;
}

/* ── Skip Link ─────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--navy);
  color: var(--white);
  padding: .5rem 1rem;
  border-radius: 0 0 4px 4px;
  font-size: .875rem;
  font-weight: 600;
  z-index: 9999;
  transition: top .2s;
}

.skip-link:focus {
  top: 0;
}

/* ── Header / Navigation ───────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  transition: height .3s ease, box-shadow .3s ease;
}

#site-header.scrolled {
  height: var(--nav-h-sm);
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 100%;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .2s;
}

.nav-logo:hover .logo-icon {
  transform: scale(1.05);
}

.logo-icon svg {
  width: 28px;
  height: 28px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-abbr {
  font-family: 'Museo Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .02em;
}

.logo-full {
  font-size: .65rem;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: .04em;
  text-transform: uppercase;
  max-width: 160px;
  line-height: 1.3;
}

/* Center nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: .15rem;
  margin-left: auto;
}

.nav-links a {
  display: block;
  padding: .45rem .8rem;
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: 4px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--navy);
  background: var(--cream);
}

.nav-links a.active {
  color: var(--navy);
  font-weight: 600;
}

/* Right actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-shrink: 0;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  border-radius: 4px;
}

.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .3s, opacity .3s, width .3s;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile overlay nav */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.nav-overlay.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.nav-overlay a {
  font-family: 'Museo Sans', sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--white);
  opacity: .85;
  transition: opacity .2s, color .2s;
}

.nav-overlay a:hover {
  opacity: 1;
  color: var(--gold);
}

.nav-overlay-actions {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: 1rem;
  align-items: center;
}

.nav-overlay-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: .5rem;
  line-height: 1;
}

/* ── Hero ──────────────────────────────────────────────────── */
#hero {
  background-color: var(--navy);
  background-image:
    linear-gradient(135deg, rgba(200, 168, 75, .07) 0%, transparent 50%),
    repeating-linear-gradient(0deg,
      transparent,
      transparent 39px,
      rgba(255, 255, 255, .03) 39px,
      rgba(255, 255, 255, .03) 40px),
    repeating-linear-gradient(90deg,
      transparent,
      transparent 39px,
      rgba(255, 255, 255, .03) 39px,
      rgba(255, 255, 255, .03) 40px);
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: flex;
  align-items: center;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 3rem;
  padding-block: 3.5rem;
}

.hero-content {
  max-width: 620px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(200, 168, 75, .15);
  border: 1px solid rgba(200, 168, 75, .35);
  color: var(--gold);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .4;
  }
}

.hero-title {
  font-family: 'Museo Sans', sans-serif;
  font-size: clamp(1.75rem, 3.2vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: .85rem;
}

.hero-subtitle {
  font-size: clamp(.9rem, 1.6vw, 1.05rem);
  font-weight: 300;
  color: rgba(255, 255, 255, .72);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.25rem;
  margin-bottom: 1.5rem;
}

.hero-tag {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .65);
}

.hero-tag .icon {
  font-size: .85rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
}

/* Journal cover */
.hero-cover {
  position: relative;
  flex-shrink: 0;
}

.cover-frame {
  width: 240px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5), 0 4px 16px rgba(0, 0, 0, .3);
  position: relative;
}

.cover-frame img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

.cover-placeholder {
  width: 100%;
  height: 340px;
  background: linear-gradient(160deg, #1a3d70 0%, #0a1f3d 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: 1.5rem;
  text-align: center;
}

.cover-placeholder-abbr {
  font-family: 'Museo Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
}

.cover-placeholder-text {
  font-size: .7rem;
  color: rgba(255, 255, 255, .6);
  text-transform: uppercase;
  letter-spacing: .1em;
}

.cover-badge {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: .7rem;
  font-weight: 700;
  padding: .3rem .75rem;
  border-radius: 2rem;
  white-space: nowrap;
}

.cover-decor {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 80px;
  height: 80px;
  border: 2px solid rgba(200, 168, 75, .35);
  border-radius: 50%;
  pointer-events: none;
}

.cover-decor::after {
  content: '';
  position: absolute;
  inset: 10px;
  border: 2px solid rgba(200, 168, 75, .2);
  border-radius: 50%;
}

/* ── Stats Bar ─────────────────────────────────────────────── */
#stats {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: 2.5rem;
}

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

.stat-item {
  text-align: center;
  padding: 1rem 1.5rem;
  position: relative;
}

.stat-item+.stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: var(--border);
}

.stat-number {
  font-family: 'Museo Sans', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: .3rem;
}

.stat-number span {
  color: var(--gold);
}

.stat-label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ── Current Issue ─────────────────────────────────────────── */
#current-issue {
  padding-block: 5rem;
  background: var(--white);
}

.issue-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: start;
}

/* Issue cover column */
.issue-cover-col {
  position: sticky;
  top: calc(var(--nav-h) + 1rem);
}

.issue-cover-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 1.25rem;
}

.issue-cover-img img {
  width: 100%;
  height: auto;
  display: block;
}

.issue-cover-placeholder {
  width: 100%;
  height: auto;
  min-height: 320px;
  background: linear-gradient(160deg, var(--navy) 0%, #1a3d70 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 2rem;
  text-align: center;
}

.issue-cover-placeholder .abbr {
  font-family: 'Museo Sans', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
}

.issue-vol {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-size: .75rem;
  font-weight: 600;
  padding: .4rem 1rem;
  border-radius: var(--radius);
  text-align: center;
}

.issue-year {
  font-size: .7rem;
  color: var(--text-light);
  text-align: center;
  margin-top: .4rem;
}

/* Article list column */
.issue-content-col {}

.issue-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.issue-view-all {
  font-size: .85rem;
  font-weight: 600;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: .3rem;
  white-space: nowrap;
  transition: gap .2s;
}

.issue-view-all:hover {
  gap: .6rem;
}

.article-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.article-card {
  border-bottom: 1px solid var(--border);
  padding-block: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transition: background .2s;
}

.article-card-main {
  flex: 1;
  min-width: 0;
  display: grid;
  gap: .5rem;
}

.article-card-pdf-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  border-radius: var(--radius);
  padding: .5rem 1.1rem;
  transition: background .2s, color .2s;
}

.article-card-pdf-btn:hover {
  background: var(--navy);
  color: var(--white);
}

@media (max-width: 640px) {
  .article-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .article-card-pdf-btn {
    align-self: flex-start;
  }
}

.article-card:first-child {
  border-top: 1px solid var(--border);
}

.article-card:hover {
  background: var(--cream);
  margin-inline: -1rem;
  padding-inline: 1rem;
}

.article-meta-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
}

.article-type-badge {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--teal);
  background: rgba(14, 116, 144, .08);
  padding: .2rem .6rem;
  border-radius: 3px;
}

.article-pages {
  font-size: .75rem;
  color: var(--text-light);
}

.article-title {
  font-family: 'Museo Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  position: relative;
  padding-left: .85rem;
  transition: color .2s;
}

.article-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: .15em;
  bottom: .15em;
  width: 3px;
  background: var(--gold);
  border-radius: 2px;
}

.article-title a {
  color: inherit;
}

.article-title a:hover {
  color: var(--teal);
}

.article-author {
  font-size: .88rem;
  color: var(--text-mid);
  font-style: italic;
}

/* ── Article / Issue detail pages (OJS-generated) ─────────── */
/* Header clearance is handled by .page-hero above these sections, same as
   every other inner page (About, For Authors, Policies, Contact). */
.article-detail {
  display: grid;
  grid-template-columns: 1fr 280px;
  align-items: start;
  gap: 3rem;
  max-width: 1100px;
  padding-block: 4rem;
}

.issue-detail {
  max-width: 860px;
  padding-block: 4rem;
}

/* Author block: eyebrow label + bold name + affiliation + ORCID badge */
.article-authors {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  margin-bottom: 2rem;
}

.article-author-label {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--text-light);
  margin-bottom: .2rem;
}

.article-author-name {
  font-family: 'Museo Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
}

.article-author-affiliation {
  font-size: .88rem;
  color: var(--text-mid);
  margin-top: .15rem;
}

.orcid-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: .4rem;
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-mid);
}

.orcid-badge:hover {
  color: var(--teal);
}

.orcid-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #A6CE39;
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
}

/* Keywords as pill tags */
.article-keywords {
  margin-bottom: 2rem;
}

.article-keywords-label {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--text-light);
  margin-bottom: .6rem;
}

.article-keywords-list {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.keyword-pill {
  font-size: .78rem;
  font-weight: 500;
  color: var(--teal);
  background: rgba(14, 116, 144, .08);
  padding: .3rem .8rem;
  border-radius: 2rem;
}

.article-abstract {
  color: var(--text-mid);
  line-height: 1.7;
}

.article-abstract p {
  margin-bottom: 1rem;
}

.article-abstract p:last-child {
  margin-bottom: 0;
}

.article-doi {
  font-size: .88rem;
  color: var(--text-mid);
  margin-top: 1.5rem;
}

.article-bio {
  padding-top: 1.5rem;
  margin-top: 1rem;
  border-top: 1px solid var(--border);
}

.article-bio-name {
  font-family: 'Museo Sans', sans-serif;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .4rem;
}

.article-bio-text {
  font-size: .92rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* Sidebar: cover, issue link, published date, PDF/OJS actions */
.article-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.article-sidebar-cover img {
  width: 100%;
  height: auto;
  display: block;
}

.article-sidebar-body {
  padding: 1.25rem;
}

.article-sidebar-issue {
  display: block;
  font-family: 'Museo Sans', sans-serif;
  font-size: .92rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

.article-sidebar-issue:hover {
  color: var(--teal);
}

.article-sidebar-date {
  margin-top: 1rem;
}

.article-sidebar-date-label {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--text-mid);
}

.article-sidebar-date-value {
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-top: .15rem;
}

.article-sidebar-actions {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-top: 1.25rem;
}

.article-sidebar-btn {
  text-align: center;
}

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

  .article-sidebar {
    position: static;
    max-width: 320px;
  }
}

/* Issue detail page: cover floats so title/date/description wrap it */
.issue-detail-cover {
  float: left;
  width: 200px;
  margin: 0 2rem 1.5rem 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.issue-date {
  font-size: .85rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.issue-description {
  color: var(--text-mid);
  line-height: 1.7;
}

.issue-description p {
  margin-bottom: 1rem;
}

.issue-description p:last-child {
  margin-bottom: 0;
}

.issue-toc {
  clear: both;
  padding-top: 2rem;
  margin-top: 1rem;
  border-top: 1px solid var(--border);
}

.issue-toc-heading {
  font-family: 'Museo Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
}

@media (max-width: 600px) {
  .issue-detail-cover {
    float: none;
    display: block;
    margin: 0 auto 1.5rem;
  }
}

/* Issues archive gallery — header clearance handled by .page-hero above. */
.issues-archive {
  max-width: 1100px;
  padding-block: 4rem;
}

.issues-archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2.5rem;
}

.issues-archive-card {
  display: block;
  color: inherit;
}

.issues-archive-cover {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 1rem;
  transition: box-shadow .2s, transform .2s;
}

.issues-archive-card:hover .issues-archive-cover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.issues-archive-cover img {
  width: 100%;
  height: auto;
  display: block;
}

.issues-archive-cover-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: linear-gradient(160deg, var(--navy) 0%, #1a3d70 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.issues-archive-cover-placeholder .abbr {
  font-family: 'Museo Sans', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.issues-archive-badge {
  position: absolute;
  top: .6rem;
  right: .6rem;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--white);
  background: var(--gold-dark);
  padding: .25rem .6rem;
  border-radius: 2rem;
}

.issues-archive-label {
  font-family: 'Museo Sans', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

.issues-archive-card:hover .issues-archive-label {
  color: var(--teal);
}

.issues-archive-date {
  font-size: .78rem;
  color: var(--text-mid);
  margin-top: .3rem;
}

/* ── About the Journal ─────────────────────────────────────── */
#about {
  background: var(--cream);
  padding-block: 5rem;
  border-top: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: start;
}

.about-text {}

.about-scope {
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-block: 1.25rem 2rem;
}

.about-read-more {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--teal);
  transition: gap .2s;
}

.about-read-more:hover {
  gap: .6rem;
}

.about-facts {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.about-facts-header {
  background: var(--navy);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .85rem 1.25rem;
}

.fact-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: .85rem 1.25rem;
  border-bottom: 1px solid var(--border);
  font-size: .85rem;
  align-items: start;
}

.fact-row:last-child {
  border-bottom: none;
}

.fact-key {
  font-weight: 600;
  color: var(--text-mid);
  white-space: nowrap;
}

.fact-val {
  color: var(--text-dark);
}

.fact-val a {
  color: var(--teal);
}

.fact-val a:hover {
  text-decoration: underline;
}

/* ── Why Publish ───────────────────────────────────────────── */
#why-publish {
  background: var(--navy);
}

.why-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  min-height: 560px;
}

/* Left panel */
.why-panel {
  background: #0a2247;
  padding: 5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, .06);
}

.why-panel .section-label {
  color: var(--gold);
}

.why-panel .section-label::before {
  background: var(--gold);
}

.why-heading {
  font-family: 'Museo Sans', sans-serif;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
}

.why-statement {
  font-size: .95rem;
  font-weight: 300;
  color: rgba(255, 255, 255, .6);
  line-height: 1.75;
}

/* Right: feature grid */
.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 4rem 3.5rem;
  gap: 0;
}

.why-feature {
  display: flex;
  gap: 1.1rem;
  padding: 2rem 2rem 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  position: relative;
}

.why-feature:nth-child(even) {
  padding-left: 2rem;
  border-left: 1px solid rgba(255, 255, 255, .08);
}

.why-feature:nth-child(1),
.why-feature:nth-child(2) {
  border-top: none;
}

.why-num {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--gold);
  padding-top: .18rem;
  flex-shrink: 0;
  min-width: 2rem;
  line-height: 1;
}

.why-feature-body {}

.why-feature-title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .5rem;
  line-height: 1.3;
}

.why-feature-text {
  font-size: .82rem;
  font-weight: 300;
  color: rgba(255, 255, 255, .55);
  line-height: 1.7;
}

/* ── Indexing ──────────────────────────────────────────────── */
#indexing {
  background: var(--cream);
  padding-block: 4rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.indexing-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.index-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
}

.index-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
  transition: border-color .2s, box-shadow .2s, transform .2s;
}

.index-badge:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.index-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── CTA Banner ────────────────────────────────────────────── */
#cta-banner {
  background: var(--gold);
  padding-block: 4rem;
}

.cta-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-title {
  font-family: 'Museo Sans', sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.12rem;
  color: rgba(13, 43, 85, .75);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* ── Footer ────────────────────────────────────────────────── */
#site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, .7);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-brand {}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}

.footer-logo-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, .1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-abbr {
  font-family: 'Museo Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.footer-desc {
  font-size: .82rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.footer-issn {
  font-size: .75rem;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 1rem;
}

.cc-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  padding: .35rem .75rem;
  border-radius: 3px;
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .6);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.footer-col h4 {
  font-family: 'Museo Sans', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

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

.footer-links a {
  font-size: .83rem;
  color: rgba(255, 255, 255, .6);
  transition: color .2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-publisher {}

.pub-name {
  font-size: .9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .25rem;
}

.pub-sub {
  font-size: .78rem;
  color: var(--gold);
  margin-bottom: .85rem;
}

.pub-address {
  font-size: .8rem;
  line-height: 1.6;
  margin-bottom: .85rem;
}

.pub-email a {
  font-size: .82rem;
  color: var(--teal);
  transition: color .2s;
}

.pub-email a:hover {
  color: var(--white);
}

.social-row {
  display: flex;
  gap: .6rem;
  margin-top: 1rem;
}

.social-btn {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: rgba(255, 255, 255, .6);
  transition: background .2s, color .2s, border-color .2s;
  cursor: pointer;
  text-decoration: none;
}

.social-btn:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.25rem;
  font-size: .78rem;
  flex-wrap: wrap;
}

.footer-bottom a {
  color: rgba(255, 255, 255, .5);
  transition: color .2s;
}

.footer-bottom a:hover {
  color: var(--white);
}

.footer-legal {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .why-inner {
    grid-template-columns: 280px 1fr;
  }

  .why-panel {
    padding: 4rem 2.5rem;
  }

  .why-features {
    padding: 3rem 2.5rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 900px) {

  .nav-links,
  .nav-actions {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

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

  .issue-cover-col {
    position: static;
  }

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

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

  .hero-cover {
    order: -1;
    display: flex;
    justify-content: center;
  }

  .cover-frame {
    width: 200px;
  }

  .cover-frame img,
  .cover-placeholder {
    height: 280px;
  }

  .hero-content {
    max-width: 100%;
  }

  .why-inner {
    grid-template-columns: 1fr;
  }

  .why-panel {
    padding: 3.5rem 2rem;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .why-features {
    padding: 2.5rem 2rem;
  }
}

@media (max-width: 640px) {
  :root {
    --nav-h: 60px;
    --nav-h-sm: 52px;
  }

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

  .stat-item:nth-child(3)::before {
    display: none;
  }

  .why-features {
    grid-template-columns: 1fr;
  }

  .why-feature:nth-child(even) {
    padding-left: 0;
    border-left: none;
  }

  .why-feature:nth-child(2) {
    border-top: 1px solid rgba(255, 255, 255, .08);
  }

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

  .hero-inner {
    padding-block: 3rem;
  }

  .cover-frame {
    width: 170px;
  }

  .cover-frame img,
  .cover-placeholder {
    height: 240px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Inner pages */
  .inner-two-col {
    flex-direction: column;
  }

  .inner-col-side {
    min-width: 0;
    width: 100%;
  }

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

  .resource-cards {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   INNER PAGE COMPONENTS
   ============================================================ */

/* ── Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: calc(var(--nav-h) + 2rem) 0 3rem;
  border-bottom: 3px solid var(--gold);
}

.page-hero-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  margin: .5rem 0 .75rem;
  line-height: 1.2;
}

.page-hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, .7);
  max-width: 640px;
  line-height: 1.6;
}

/* ── Breadcrumb ───────────────────────────────────────────── */
.breadcrumb ol {
  display: flex;
  gap: .5rem;
  list-style: none;
  padding: 0;
  margin: 0 0 .75rem;
  font-size: .78rem;
}

.breadcrumb li {
  color: rgba(255, 255, 255, .5);
}

.breadcrumb li::after {
  content: '/';
  margin-left: .5rem;
}

.breadcrumb li:last-child::after {
  display: none;
}

.breadcrumb a {
  color: rgba(255, 255, 255, .65);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb [aria-current="page"] {
  color: rgba(255, 255, 255, .5);
}

/* ── Inner section ────────────────────────────────────────── */
.inner-section {
  padding: 4rem 0;
}

/* ── Two-column layout ────────────────────────────────────── */
.inner-two-col {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}

.inner-col-main {
  flex: 1;
  min-width: 0;
}

.inner-col-side {
  width: 280px;
  min-width: 260px;
  flex-shrink: 0;
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
}

/* ── Prose sections ───────────────────────────────────────── */
.prose-section {
  margin-bottom: 2.5rem;
}

.prose-section h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .75rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--border);
}

.prose-section p {
  margin-bottom: .9rem;
  line-height: 1.75;
  color: var(--text);
}

.prose-section ul {
  margin: .5rem 0 .9rem 1.2rem;
  line-height: 1.75;
  color: var(--text);
}

.prose-section ul li {
  margin-bottom: .35rem;
}

.prose-section a {
  color: var(--teal);
  text-decoration: underline;
}

.prose-section a:hover {
  color: var(--navy);
}

/* ── Data table ───────────────────────────────────────────── */
.data-table-wrap {
  overflow-x: auto;
  margin: 1rem 0;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}

.data-table th {
  background: var(--navy);
  color: var(--white);
  padding: .65rem .85rem;
  text-align: left;
  font-weight: 600;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.data-table td {
  padding: .6rem .85rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.data-table tr:nth-child(even) td {
  background: var(--cream);
}

.table-note {
  font-size: .78rem;
  color: var(--text-light);
  margin-top: .5rem;
  font-style: italic;
}

/* ── Highlight box ────────────────────────────────────────── */
.highlight-box {
  background: var(--navy);
  border-radius: 10px;
  padding: 2rem 2rem;
  margin-top: 2.5rem;
  color: var(--white);
}

.highlight-box h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .5rem;
  color: var(--gold);
}

.highlight-box p {
  color: rgba(255, 255, 255, .75);
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

/* ── Sidebar nav ──────────────────────────────────────────── */
.side-nav {
  background: var(--cream);
  border-radius: 8px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
}

.side-nav-title {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-mid);
  margin-bottom: .85rem;
}

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

.side-nav li {
  border-bottom: 1px solid var(--border);
}

.side-nav li:last-child {
  border: none;
}

.side-nav a {
  display: block;
  padding: .5rem 0;
  font-size: .85rem;
  color: var(--text);
  text-decoration: none;
  transition: color .15s;
}

.side-nav a:hover,
.side-nav a.active {
  color: var(--navy);
  font-weight: 600;
}

/* ── Sidebar card ─────────────────────────────────────────── */
.side-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}

.side-card-title {
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--navy);
  margin-bottom: .75rem;
}

.side-card-text {
  font-size: .84rem;
  color: var(--text-mid);
  line-height: 1.55;
  margin-bottom: .75rem;
}

.side-card-link {
  font-size: .83rem;
  color: var(--teal);
  text-decoration: none;
  font-weight: 600;
  word-break: break-all;
}

.side-card-link:hover {
  color: var(--navy);
  text-decoration: underline;
}

/* ── Sidebar fact list ────────────────────────────────────── */
.side-fact-list {
  list-style: none;
  padding: 0;
}

.side-fact-list li {
  display: flex;
  justify-content: space-between;
  gap: .5rem;
  padding: .45rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .82rem;
}

.side-fact-list li:last-child {
  border: none;
}

.side-fact-list span {
  color: var(--text-mid);
}

.side-fact-list strong {
  color: var(--navy);
  text-align: right;
}

/* ── Submit prompt bar ────────────────────────────────────── */
.submit-prompt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.submit-prompt-text {
  font-size: .95rem;
  color: var(--text);
}

/* ── Steps grid ───────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.75rem;
  position: relative;
}

.step-num {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--gold);
  margin-bottom: .65rem;
}

.step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .6rem;
}

.step-text {
  font-size: .87rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.step-text a {
  color: var(--teal);
}

/* ── Resource cards ───────────────────────────────────────── */
.resource-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.resource-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.75rem 1.5rem;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: box-shadow .2s, border-color .2s;
}

.resource-card:hover {
  box-shadow: 0 4px 20px rgba(13, 43, 85, .1);
  border-color: var(--navy);
}

.resource-icon {
  font-size: 1.4rem;
  margin-bottom: .75rem;
  color: var(--navy);
}

.resource-card-title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .45rem;
}

.resource-card-text {
  font-size: .83rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: .75rem;
}

.resource-link {
  font-size: .8rem;
  font-weight: 600;
  color: var(--teal);
}

/* ── Checklist ────────────────────────────────────────────── */
.checklist {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.checklist li {
  display: flex;
  gap: .75rem;
  padding: .6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .9rem;
  color: var(--text);
  line-height: 1.5;
}

.checklist li:last-child {
  border: none;
}

.checklist li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: .05rem;
}

/* ── Contact page ─────────────────────────────────────────── */
.contact-grid {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}

.contact-main {
  flex: 1;
  min-width: 0;
}

.contact-side {
  width: 280px;
  min-width: 260px;
  flex-shrink: 0;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 1.5rem 0;
}

.contact-info-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem 1.25rem;
}

.contact-icon {
  font-size: 1.5rem;
  margin-bottom: .65rem;
  color: var(--navy);
}

.contact-info-card h3 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
}

.contact-info-card a {
  color: var(--teal);
  text-decoration: none;
  font-size: .88rem;
}

.contact-info-card a:hover {
  text-decoration: underline;
}

.contact-info-card p {
  font-size: .85rem;
  color: var(--text-mid);
  line-height: 1.55;
  margin-top: .4rem;
}

.contact-info-card address {
  font-style: normal;
  font-size: .88rem;
  color: var(--text);
  line-height: 1.7;
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-list {
  margin-top: 1rem;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

.faq-item:last-child {
  border: none;
}

.faq-item h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .4rem;
}

.faq-item p {
  font-size: .88rem;
  color: var(--text);
  line-height: 1.65;
}

.faq-item a {
  color: var(--teal);
}

/* ── Topic grid (Aims & Scope) ────────────────────────────── */
.topic-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 1.25rem 0;
}

.topic-group {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem;
}

.topic-group h3 {
  font-size: .85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .65rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.topic-group ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: .84rem;
  color: var(--text);
  line-height: 1.7;
}

/* ── Editorial Board cards ─────────────────────────────────── */
.board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin: 1.25rem 0;
}

.board-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
}

.board-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--navy) 0%, #1a3d70 100%);
  color: var(--gold);
  font-family: 'Museo Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.board-name {
  font-family: 'Museo Sans', sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
}

.board-role {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--teal);
  margin: .3rem 0 .6rem;
}

.board-affiliation {
  font-size: .85rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.board-country {
  font-size: .78rem;
  color: var(--text-light);
  margin-top: .25rem;
}

.board-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.board-email {
  flex: 1 1 auto;
  min-width: 0;
  font-size: .82rem;
  color: var(--teal);
  overflow-wrap: break-word;
  word-break: break-word;
}

.board-links .orcid-badge {
  flex-shrink: 0;
}

.board-email:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .contact-grid {
    flex-direction: column;
  }

  .contact-side {
    width: 100%;
    min-width: 0;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

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