﻿/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   GLOBAL TOKENS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
:root{
  --navy:#002147;
  --navy-dark:#001630;
  --navy-mid:#003070;
  --gold:#D4AF37;
  --gold-light:#F0D078;
  --gold-pale:#FAF3D3;
  --gold-dark:#A8880F;
  --off-white:#F8F6F0;
  --light-grey:#F2F0EA;
  --border:#E4DFC8;
  --text-dark:#1A1A1A;
  --text-mid:#555;
  --text-light:#888;
  --white:#fff;
  --serif:'Cormorant Garamond',Georgia,serif;
  --sans:'DM Sans',system-ui,sans-serif;
}
*{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
body{font-family:var(--sans);background:var(--off-white);color:var(--text-dark);font-size:15px;line-height:1.7;}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   UTILITY
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.container{max-width:1160px;margin:0 auto;padding:0 28px;}
.section-pad{padding:56px 0;}
.serif{font-family:var(--serif);}
.gold{color:var(--gold);}
.navy{color:var(--navy);}
.hidden{display:none!important;}
.page{display:none;}
.page.active{display:block;}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ANNOUNCEMENT STRIP
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.announce-strip{
  background:var(--navy);
  padding:7px 28px;
  display:flex;align-items:center;justify-content:space-between;gap:16px;
  font-size:12px;
}
.announce-strip .msg{color:rgba(255,255,255,0.7);display:flex;align-items:center;gap:10px;}
.announce-strip .badge{
  background:var(--gold);color:var(--navy);
  font-size:9px;font-weight:500;letter-spacing:1px;text-transform:uppercase;
  padding:2px 8px;border-radius:2px;flex-shrink:0;
}
.announce-strip .dismiss{color:rgba(255,255,255,0.4);cursor:pointer;font-size:16px;line-height:1;}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ALL ISSUES SECTION â€” CLEAN SIDEBAR LAYOUT
   (matches reference: left list + right panel)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.all-issues-section{
  background:var(--off-white);
  padding:0;
  border-bottom:.5px solid var(--border);
}
.all-issues-inner{
  display:grid;
  grid-template-columns:300px 1fr;
  min-height:520px;
  max-width:1160px;        /* ADD */
  margin:0 auto;           /* ADD â€” centers the whole block */
  padding:0 20px;          /* ADD â€” matches .container side padding */
  gap:0;
}

/* LEFT SIDEBAR */
/* LEFT SIDEBAR */
.ai-sidebar{
  background:var(--white);
  border-right:.5px solid var(--border);
  border-left:.5px solid var(--border);  /* ADD */
  border-top:.5px solid var(--border);   /* ADD */
  border-bottom:.5px solid var(--border);/* ADD */
  padding:0;
  margin-top:32px;         /* ADD â€” top breathing room */
  margin-bottom:32px;      /* ADD â€” bottom breathing room */
  border-radius:6px 0 0 6px; /* ADD */
  overflow:hidden;           /* ADD */
}
.ai-sidebar-head{
  padding:20px 24px 14px;
  border-bottom:2px solid var(--gold);
}
.ai-sidebar-head h2{
  font-family:var(--serif);font-size:18px;font-weight:700;
  color:var(--navy);letter-spacing:.2px;
}
.vol-list{
  list-style:none;padding:0;margin:0;
}
.vol-item{}
.vol-trigger{
  display:flex;align-items:center;justify-content:space-between;
  padding:13px 24px;
  cursor:pointer;
  border-bottom:.5px solid var(--border);
  transition:background .15s,color .15s;
  background:none;width:100%;text-align:left;
  font-family:var(--sans);
}
.vol-trigger:hover{background:var(--light-grey);}
.vol-trigger.active{
  background:var(--gold-pale);
  border-left:3px solid var(--gold);
  padding-left:21px;
}
.vol-trigger-label{
  font-size:14px;font-weight:600;color:var(--navy);
}
.vol-trigger.active .vol-trigger-label{color:var(--navy);}
.vol-arrow{
  font-size:11px;color:var(--text-light);
  transition:transform .2s;flex-shrink:0;
}
.vol-trigger.active .vol-arrow{
  transform:rotate(90deg);
  color:var(--gold-dark);
}

/* Issue sub-items inside expanded volume */
.vol-issues{
  display:none;
  background:var(--light-grey);
  border-bottom:.5px solid var(--border);
}
.vol-issues.open{display:block;}
.issue-trigger{
  display:flex;align-items:center;justify-content:space-between;
  padding:10px 24px 10px 36px;
  cursor:pointer;border-bottom:.5px solid rgba(228,223,200,.6);
  background:none;width:100%;text-align:left;font-family:var(--sans);
  transition:background .15s;
}
.issue-trigger:last-child{border-bottom:none;}
.issue-trigger:hover{background:rgba(212,175,55,.08);}
.issue-trigger.active{
  background:var(--gold-pale);
  font-weight:600;
}
.issue-trigger-label{
  font-size:13px;color:var(--navy);
}
.issue-trigger.active .issue-trigger-label{color:var(--navy);font-weight:600;}
.issue-trigger-year{
  font-size:11px;color:var(--text-light);
}

/* RIGHT PANEL */
.ai-panel{
  background:var(--white);
  padding:36px 40px;
  display:flex;
  flex-direction:column;
  margin-top:32px;           /* ADD â€” matches sidebar */
  margin-bottom:32px;        /* RIGHT PANEL */
  border-left:none;                /* ADD â€” shared border with sidebar */
  border-radius:0 6px 6px 0;      /* ADD */
}
.ai-panel-empty{
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  height:100%;text-align:center;color:var(--navy);
  flex:1;
}
.ai-panel-empty svg{opacity:.25;margin-bottom:16px;}
.ai-panel-empty p{font-size:14px;line-height:1.7;}

/* Issue detail panel content */
.issue-detail-head{
  display:flex;align-items:flex-start;gap:28px;
  padding-bottom:24px;border-bottom:.5px solid var(--border);
  margin-bottom:24px;
  margin-left:22px;
}
.issue-detail-cover{
  width:100px;flex-shrink:0;
  background:var(--navy);border-radius:6px;
  box-shadow:0 4px 16px rgba(0,33,71,.15);
  overflow:hidden;
  border:2px solid var(--gold);
}
.issue-detail-cover-top{
  background:var(--gold);padding:10px 12px;text-align:center;
}
.issue-detail-cover-top span{
  font-family:var(--serif);font-size:16px;font-weight:700;color:var(--navy);display:block;
}
.issue-detail-cover-body{
  padding:10px;text-align:center;
}
.issue-detail-cover-body img{
  width:64px;height:auto;object-fit:contain;
}
.issue-detail-cover-foot{
  background:linear-gradient(135deg,var(--gold),var(--gold-dark));
  padding:6px 10px;text-align:center;
  border-top:1px solid var(--gold);
}
.issue-detail-cover-foot span{
  font-size:9px;color:var(--navy);letter-spacing:1px;text-transform:uppercase;font-weight:600;
}
.issue-detail-meta{}
.issue-detail-tag{
  display:inline-block;font-size:9px;font-weight:500;letter-spacing:1.2px;
  text-transform:uppercase;color:var(--gold-dark);background:var(--gold-pale);
  border:.5px solid rgba(168,136,15,.2);padding:3px 10px;border-radius:2px;
  margin-bottom:10px;
}
.issue-detail-title{
  font-family:var(--serif);font-size:22px;font-weight:700;
  color:var(--navy);margin-bottom:6px;line-height:1.3;
}
.issue-detail-date{
  font-size:13px;color:var(--text-mid);margin-bottom:10px;
}
.issue-detail-stats{
  display:flex;gap:18px;flex-wrap:wrap;margin-bottom:14px;
}
.issue-detail-stat{
  font-size:12px;color:var(--text-light);
  display:flex;align-items:center;gap:5px;
}
.issue-detail-stat strong{color:var(--navy);font-size:14px;}
.issue-detail-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:4px;}
.btn-primary{
  background:var(--gold);color:var(--navy);border:none;border-radius:4px;
  padding:12px 24px;font-family:var(--sans);font-size:12px;font-weight:600;
  letter-spacing:.8px;text-transform:uppercase;cursor:pointer;
  transition:all .3s ease;
  box-shadow:0 2px 8px rgba(212,175,55,.25);
}
.btn-primary:hover{
  background:var(--gold-light);
  transform:translateY(-2px);
  box-shadow:0 4px 12px rgba(212,175,55,.35);
}
.btn-outline{
  background:transparent;color:var(--navy);border:.5px solid var(--border);
  border-radius:3px;padding:10px 20px;font-family:var(--sans);font-size:11.5px;
  font-weight:500;letter-spacing:.8px;text-transform:uppercase;cursor:pointer;
  transition:all .2s;
}
.btn-outline:hover{background:var(--light-grey);}

/* Articles list in panel */
.issue-articles-head{
  font-family:var(--serif);font-size:16px;font-weight:600;
  color:var(--navy);margin-bottom:14px;
  display:flex;align-items:center;justify-content:space-between;
}
.article-row{
  display:flex;align-items:flex-start;gap:14px;
  padding:14px 0;border-bottom:.5px solid var(--border);
}
.article-row:last-child{border-bottom:none;}
.article-row-num{
  width:28px;height:28px;border-radius:50%;background:var(--gold-pale);
  display:flex;align-items:center;justify-content:center;
  font-size:11px;font-weight:600;color:var(--gold-dark);flex-shrink:0;margin-top:2px;
}
.article-row-body{flex:1;}
.article-row-type{
  font-size:9.5px;font-weight:500;letter-spacing:1px;text-transform:uppercase;
  color:var(--gold-dark);margin-bottom:3px;
}
.article-row-title{
  font-family:var(--serif);font-size:14px;font-weight:600;
  color:var(--navy);margin-bottom:3px;line-height:1.4;
}
.article-row-author{font-size:12px;color:var(--text-mid);}
.article-row-doi{font-size:11px;color:var(--text-light);}
.article-row-actions{display:flex;gap:6px;margin-top:6px;}
.btn-sm{
  padding:4px 12px;font-size:10.5px;font-weight:500;border-radius:2px;
  cursor:pointer;font-family:var(--sans);letter-spacing:.4px;
}
.btn-sm-gold{background:var(--gold);color:var(--navy);border:none;}
.btn-sm-gold:hover{background:var(--gold-light);}
.btn-sm-outline{background:transparent;color:var(--navy);border:.5px solid var(--border);}
.btn-sm-outline:hover{background:var(--light-grey);}

/* No articles placeholder */
.no-articles-msg{
  padding:32px 0;text-align:center;color:var(--text-light);font-size:13px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   STATS BAR
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.stats-bar{background:var(--navy);padding:18px 28px;}
.stats-grid{display:flex;gap:0;justify-content:center;}
.stat-item{text-align:center;padding:0 36px;border-right:.5px solid rgba(212,175,55,.2);}
.stat-item:last-child{border-right:none;}
.stat-num{font-family:var(--serif);font-size:28px;font-weight:700;color:var(--gold);line-height:1;}
.stat-lbl{font-size:10.5px;color:rgba(255,255,255,.55);letter-spacing:.8px;text-transform:uppercase;margin-top:4px;}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SECTION HEADERS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.sec-header{text-align:center;margin-bottom:40px;}
.sec-tag{
  display:inline-block;font-size:10px;font-weight:500;letter-spacing:1.5px;
  text-transform:uppercase;color:var(--gold-dark);background:var(--gold-pale);
  border:.5px solid rgba(168,136,15,.2);padding:4px 14px;border-radius:2px;margin-bottom:12px;
}
.sec-title{font-family:var(--serif);font-size:30px;font-weight:700;color:var(--navy);margin-bottom:10px;}
.sec-sub{font-size:15px;color:var(--text-mid);max-width:580px;margin:0 auto;line-height:1.7;}
.gold-rule{width:50px;height:2px;background:var(--gold);margin:14px auto 0;}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HERO SECTION
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.hero-section{
  background:linear-gradient(135deg,var(--navy),var(--navy-dark));
  padding:56px 0 48px;
  position:relative;
  overflow:hidden;
}
.hero-container{
  max-width:1200px;margin:0 auto;padding:0 28px;
}
.hero-content{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:56px;
  align-items:center;
}
.hero-left{
  display:flex;
  justify-content:center;
  align-items:center;
  order:1;
}
.hero-right{
  order:2;
}
.hero-image{
  max-width:80%;
  height:auto;
  max-height:420px;
  border-radius:12px;
  box-shadow:0 20px 40px rgba(0,0,0,0.3);
  transition:transform 0.3s ease;
  object-fit:contain;
  display:block;
}
.hero-image:hover{transform:scale(1.02);}
.hero-right h1,
.hero-right h2{
  font-family:'Cormorant Garamond',serif;
  font-size:38px;font-weight:700;
  color:var(--gold);margin-bottom:20px;
  line-height:1.25;

}
.hero-right p{
  font-size:16px;line-height:1.75;
  color:rgba(255,255,255,0.88);
  margin:0;
}

@media(max-width:768px){
  .hero-section{padding:36px 0 32px;}
  .hero-content{
    grid-template-columns:1fr;
    gap:28px;
    text-align:center;
  }
  .hero-left{
    order:1;        /* image FIRST on mobile */
    width:100%;
  }
  .hero-right{
    order:2;        /* text SECOND on mobile */
  }
  .hero-image{
    max-width:72%;
    max-height:300px;
    margin:0 auto;
  }
  .hero-right h1,
  .hero-right h2{
    font-size:26px;
    margin-bottom:14px;
  }
  .hero-right p{
    font-size:14.5px;
  }
}

@media(max-width:480px){
  .hero-image{max-width:85%;max-height:260px;}
  .hero-right h1,
  .hero-right h2{font-size:22px;}
  .hero-right p{font-size:14px;}
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SCOPE SECTION
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.scope-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:16px;}
.scope-card{
  background:var(--white);border:.5px solid var(--border);border-radius:6px;
  padding:18px 20px;border-top:3px solid var(--gold);transition:transform .2s,box-shadow .2s;
}
.scope-card:hover{transform:translateY(-3px);box-shadow:0 8px 24px rgba(0,33,71,.08);}
.scope-icon{font-size:24px;margin-bottom:10px;}
.scope-name{font-family:var(--serif);font-size:14px;font-weight:600;color:var(--navy);margin-bottom:6px;}
.scope-desc{font-size:12px;color:var(--text-mid);line-height:1.6;}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TWO / THREE COLUMN
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.two-col{display:grid;grid-template-columns:1fr 1fr;gap:32px;align-items:start;}
.three-col{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CONTENT BLOCKS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.content-block{background:var(--white);border:.5px solid var(--border);border-radius:8px;padding:28px 32px;margin-bottom:24px;}
.content-block h3{font-family:var(--serif);font-size:19px;color:var(--navy);margin-bottom:14px;padding-bottom:10px;border-bottom:.5px solid var(--border);}
.content-block h4{font-family:var(--serif);font-size:15px;color:var(--navy);margin:18px 0 8px;}
.content-block p{color:var(--text-mid);line-height:1.8;margin-bottom:12px;}
.content-block ul{margin-left:0;list-style:none;}
.content-block ul li{
  color:var(--text-mid);padding:6px 0 6px 22px;position:relative;
  border-bottom:.5px solid rgba(228,223,200,.5);font-size:14px;line-height:1.7;
}
.content-block ul li:last-child{border-bottom:none;}
.content-block ul li::before{
  content:'';position:absolute;left:0;top:14px;
  width:8px;height:8px;border-radius:50%;background:var(--gold);flex-shrink:0;
}
.content-block ul li strong{color:var(--navy);}
.journal-profile-block .journal-profile-lead{
  color:var(--text-mid);font-size:14px;line-height:1.75;margin-bottom:16px;
}
.journal-profile-block h4{
  margin-top:20px;padding-top:4px;
}
.journal-profile-block .journal-profile-note{
  font-size:13.5px;color:var(--text-mid);line-height:1.65;margin-bottom:8px;
}
.journal-profile-block .pub-cycle-list{
  margin-bottom:16px;
}
.navy-block{background:var(--navy);border-color:var(--navy);}
.navy-block h3,.navy-block h4{color:var(--gold);}
.navy-block p,.navy-block li{color:rgba(255,255,255,.75)!important;}
.navy-block li::before{background:var(--gold)!important;}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   EDITORIAL BOARD
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.board-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:18px;}
.board-card{
  background:var(--white);border:.5px solid var(--border);border-radius:8px;
  padding:22px;text-align:center;transition:transform .2s,box-shadow .2s;
  border-top:3px solid var(--gold);
}
.board-card:hover{transform:translateY(-3px);box-shadow:0 8px 24px rgba(0,33,71,.1);}
.board-avatar{
  width:64px;height:64px;border-radius:50%;background:var(--navy);
  display:flex;align-items:center;justify-content:center;margin:0 auto 14px;
  font-family:var(--serif);font-size:22px;font-weight:700;color:var(--gold);
}
.board-name{font-family:var(--serif);font-size:15px;font-weight:600;color:var(--navy);margin-bottom:4px;}
.board-role{font-size:11px;color:var(--gold-dark);letter-spacing:.5px;text-transform:uppercase;margin-bottom:6px;}
.board-affil{font-size:12px;color:var(--text-mid);font-style:italic;margin-bottom:8px;}
.board-domain{font-size:11.5px;color:var(--text-light);}
.eic-card{
  background:var(--navy);border-top:4px solid var(--gold);
  border-radius:8px;padding:28px 32px;display:flex;align-items:center;gap:24px;
  margin-bottom:28px;
}
.eic-avatar{
  width:80px;height:80px;border-radius:50%;background:var(--gold);
  display:flex;align-items:center;justify-content:center;
  font-family:var(--serif);font-size:28px;font-weight:700;color:var(--navy);flex-shrink:0;
}
.eic-info .title{font-size:11px;letter-spacing:1.2px;text-transform:uppercase;color:rgba(255,255,255,.5);margin-bottom:4px;}
.eic-info .name{font-family:var(--serif);font-size:22px;font-weight:700;color:var(--gold);margin-bottom:4px;}
.eic-info .deg{font-size:13px;color:rgba(255,255,255,.7);margin-bottom:6px;}
.eic-info .spec{font-size:12.5px;color:rgba(255,255,255,.5);font-style:italic;}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PROCESS STEPS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.steps-row{display:flex;gap:0;align-items:flex-start;flex-wrap:wrap;}
.step{flex:1;min-width:140px;text-align:center;padding:20px 16px;position:relative;}
.step:not(:last-child)::after{content:'â†’';position:absolute;right:-12px;top:28px;font-size:20px;color:var(--gold);font-weight:300;}
.step-num{width:48px;height:48px;border-radius:50%;background:var(--gold);display:flex;align-items:center;justify-content:center;margin:0 auto 12px;font-family:var(--serif);font-size:18px;font-weight:700;color:var(--navy);}
.step-title{font-size:12.5px;font-weight:500;color:var(--navy);margin-bottom:6px;}
.step-desc{font-size:11.5px;color:var(--text-light);line-height:1.6;}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TABLE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.styled-table{width:100%;border-collapse:collapse;font-size:13.5px;}
.styled-table thead tr{background:var(--navy);}
.styled-table thead th{color:var(--gold);font-weight:500;letter-spacing:.5px;padding:12px 16px;text-align:left;font-family:var(--sans);}
.styled-table tbody tr{border-bottom:.5px solid var(--border);}
.styled-table tbody tr:hover{background:var(--light-grey);}
.styled-table td{padding:12px 16px;color:var(--text-mid);vertical-align:top;}
.styled-table td:first-child{color:var(--navy);font-weight:500;}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CFP BANNER
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.cfp-banner{
  background:var(--navy);border-radius:8px;padding:36px 40px;
  display:flex;align-items:center;justify-content:space-between;gap:24px;
  border-left:6px solid var(--gold);
}
.cfp-text h3{font-family:var(--serif);font-size:22px;color:var(--gold);margin-bottom:8px;}
.cfp-text p{font-size:14px;color:rgba(255,255,255,.7);max-width:540px;line-height:1.7;}
.deadline-pill{
  background:var(--gold);color:var(--navy);border-radius:4px;
  padding:8px 16px;font-size:12px;font-weight:500;letter-spacing:.6px;
  text-align:center;white-space:nowrap;
}
.deadline-pill .dl-lbl{font-size:9px;letter-spacing:1px;text-transform:uppercase;opacity:.7;display:block;margin-bottom:2px;}
.deadline-pill .dl-date{font-family:var(--serif);font-size:16px;font-weight:700;}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TABS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.tab-bar{display:flex;gap:0;border-bottom:2px solid var(--border);margin-bottom:28px;flex-wrap:wrap;}
.tab-btn{
  padding:10px 20px;font-size:12px;font-weight:500;letter-spacing:.6px;
  text-transform:uppercase;color:var(--text-mid);cursor:pointer;
  border-bottom:2px solid transparent;margin-bottom:-2px;background:none;border-top:none;border-left:none;border-right:none;
  font-family:var(--sans);transition:all .2s;
}
.tab-btn.active{color:var(--navy);border-bottom-color:var(--gold);}
.tab-btn:hover{color:var(--navy);}
.tab-pane{display:none;}
.tab-pane.active{display:block;}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   LICENSES / BADGES
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.license-badge{
  display:inline-flex;align-items:center;gap:8px;
  background:var(--white);border:.5px solid var(--border);border-radius:4px;
  padding:8px 14px;font-size:12px;color:var(--text-mid);
}
.cc-icon{font-size:18px;}
.highlight-box{
  background:var(--gold-pale);border:.5px solid rgba(168,136,15,.2);
  border-radius:6px;border-left:4px solid var(--gold);
  padding:16px 20px;margin:16px 0;
}
.highlight-box p{color:var(--text-dark);font-size:14px;line-height:1.7;margin:0;}
.highlight-box h4{
  font-size:18px;font-weight:700;
  margin:0 0 16px 0;
  font-family:'Cormorant Garamond',serif;
  color:var(--text-dark);
}
.issues-list{
  display:grid;grid-template-columns:1fr 1fr;
  gap:12px;margin-bottom:16px;
}
.issue-item{
  display:flex;align-items:center;
  padding:8px 12px;background:rgba(255,255,255,.5);
  border-radius:4px;font-size:14px;
  color:var(--text-dark);
}
/* Search pill styles moved to navbar.php */

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CONTACT SECTION
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px;}
.contact-card{background:var(--white);border:.5px solid var(--border);border-radius:8px;padding:24px;border-top:3px solid var(--gold);}
.contact-card h4{font-family:var(--serif);font-size:16px;color:var(--navy);margin-bottom:16px;}
.contact-row{display:flex;align-items:flex-start;gap:12px;padding:10px 0;border-bottom:.5px solid var(--border);}
.contact-row:last-child{border-bottom:none;}
.contact-icon{width:32px;height:32px;border-radius:50%;background:var(--gold-pale);display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.contact-label{font-size:11px;color:var(--text-light);letter-spacing:.4px;text-transform:uppercase;margin-bottom:2px;}
.contact-val{font-size:13.5px;color:var(--navy);}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SIDEBAR LAYOUT
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.sidebar-layout{display:grid;grid-template-columns:280px 1fr;gap:28px;align-items:start;}
.sidebar{position:sticky;top:120px;}
.sidebar-menu{background:var(--white);border:.5px solid var(--border);border-radius:8px;overflow:hidden;}
.sidebar-menu-title{background:var(--navy);color:var(--gold);font-size:11px;font-weight:500;letter-spacing:1px;text-transform:uppercase;padding:12px 18px;}
.sidebar-menu-item{
  display:block;padding:11px 18px;font-size:13px;color:var(--text-mid);
  border-bottom:.5px solid var(--border);cursor:pointer;transition:all .15s;
  background:none;text-align:left;width:100%;font-family:var(--sans);
}
.sidebar-menu-item:last-child{border-bottom:none;}
.sidebar-menu-item:hover,.sidebar-menu-item.active{background:var(--gold-pale);color:var(--navy);}
.sidebar-menu-item.active{font-weight:500;border-left:3px solid var(--gold);}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ANNOUNCEMENT CARDS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.announce-card{
  background:var(--white);border:.5px solid var(--border);border-radius:6px;
  padding:18px 22px;display:flex;align-items:flex-start;gap:14px;
  margin-bottom:14px;transition:transform .15s;
}
.announce-card:hover{transform:translateX(3px);}
.announce-dot{width:10px;height:10px;border-radius:50%;background:var(--gold);margin-top:7px;flex-shrink:0;}
.announce-date{font-size:11px;color:var(--text-light);margin-bottom:4px;letter-spacing:.3px;}
.announce-title{font-size:14px;font-weight:500;color:var(--navy);margin-bottom:4px;}
.announce-desc{font-size:12.5px;color:var(--text-mid);line-height:1.6;}

/* Footer styles moved to footer.php */

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   BG HELPERS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.bg-white{background:var(--white);}
.bg-grey{background:var(--light-grey);}
.bg-navy{background:var(--navy);}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ARTICLES GRID (for Browse Articles page)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.articles-grid{display:flex;flex-direction:column;gap:14px;}
.article-card{background:var(--white);border:.5px solid var(--border);border-radius:6px;padding:22px 24px;border-left:3px solid var(--gold);}
.article-type{font-size:9.5px;font-weight:500;letter-spacing:1px;text-transform:uppercase;color:var(--gold-dark);background:var(--gold-pale);padding:3px 8px;border-radius:2px;display:inline-block;margin-bottom:8px;}
.article-title{font-family:var(--serif);font-size:15px;font-weight:600;color:var(--navy);margin-bottom:6px;line-height:1.4;}
.article-authors{font-size:12.5px;color:var(--text-mid);margin-bottom:4px;}
.article-doi{font-size:11.5px;color:var(--text-light);margin-bottom:10px;}
.article-actions{display:flex;gap:8px;}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media(max-width:900px){
 .all-issues-inner{
    grid-template-columns:1fr;
    padding:0 20px;          /* ADD */
  }
  .ai-sidebar{border-right:none;border-bottom:.5px solid var(--border);}
  .two-col,.three-col,.contact-grid{grid-template-columns:1fr;}
  .sidebar-layout{grid-template-columns:1fr;}
  .sidebar{position:static;}
  .cfp-banner{flex-direction:column;}
  .stats-grid{flex-wrap:wrap;}
  .stat-item{border-right:none;padding:12px 20px;}
}
@media(max-width:768px){
  .reviewer-layout{grid-template-columns:1fr;gap:24px;}
  .process-grid{grid-template-columns:1fr;}
  .benefits-grid{grid-template-columns:1fr;}
  .login-container{max-width:100%;margin:0;}
  .stats-grid{grid-template-columns:repeat(2,1fr);padding:12px;}
  .stat-item{border-right:none;padding:12px 20px;}
}
@media(max-width:600px){
  .eic-card{flex-direction:column;text-align:center;}
  .issue-detail-head{flex-direction:column;}
}

/* Issue Page Content Styles */
.issue-page-content {
  padding: 20px;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--border);
  margin-bottom: 20px;
}

.issue-page-content h1,
.issue-page-content h2,
.issue-page-content h3,
.issue-page-content h4,
.issue-page-content h5,
.issue-page-content h6 {
  color: var(--navy);
  margin-bottom: 15px;
  font-family: var(--serif);
}

.issue-page-content h1 { font-size: 28px; }
.issue-page-content h2 { font-size: 24px; }
.issue-page-content h3 { font-size: 20px; }
.issue-page-content h4 { font-size: 18px; }
.issue-page-content h5 { font-size: 16px; }
.issue-page-content h6 { font-size: 14px; }

.issue-page-content p {
  margin-bottom: 15px;
  line-height: 1.7;
  color: var(--text-dark);
}

.issue-page-content a {
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.issue-page-content a:hover {
  border-bottom-color: var(--navy);
}

.issue-page-content ul,
.issue-page-content ol {
  margin-bottom: 15px;
  padding-left: 25px;
}

.issue-page-content li {
  margin-bottom: 8px;
  color: var(--text-dark);
}

.issue-page-content blockquote {
  margin: 20px 0;
  padding: 15px 20px;
  background: var(--gold-pale);
  border-left: 4px solid var(--gold);
  font-style: italic;
  color: var(--text-mid);
}

.issue-page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.issue-page-content th,
.issue-page-content td {
  padding: 12px;
  text-align: left;
  border: 1px solid var(--border);
}

.issue-page-content th {
  background: var(--light-grey);
  font-weight: 600;
  color: var(--navy);
}

.issue-page-content img {
  max-width: 100%;
  height: auto;
  margin: 15px 0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 33, 71, 0.1);
}
