:root{
  --navy:#061f3f;
  --navy2:#0a3b70;
  --navy3:#020f24;
  --orange:#ff7a18;
  --orange2:#ff9a3d;
  --white:#ffffff;
  --light:#f7faff;
  --soft:#edf4fb;
  --text:#172033;
  --muted:#66758a;
  --border:#e2eaf3;
  --shadow:0 18px 45px rgba(6,31,63,.10);
  --radius:16px;
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--text);
  background:#fff;
}

a{text-decoration:none}
img{max-width:100%;display:block}

.container{
  max-width:1300px;
  margin:0 auto;
  padding:0 0px;
}

/* TOP BAR */

.top-info-bar{
  background:linear-gradient(90deg,var(--navy3),var(--navy));
  color:#fff;
  font-size:13px;
}

.top-info-flex{
  min-height:32px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
}

.top-info-bar a{
  color:#fff;
  margin-left:15px;
}

.top-info-bar a:hover{color:var(--orange2)}

/* HEADER */

.main-header{
  background:#fff;
  border-bottom:1px solid var(--border);
}

.header-flex{
  min-height:110px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:25px;
}

.brand{
  display:flex;
  align-items:center;
  gap:18px;
  color:var(--navy);
}

.brand img{
  width:95px;
  height:95px;
  object-fit:contain;
  flex-shrink:0;
}

.brand strong{
  display:block;
  font-family:Georgia, 'Times New Roman', serif;
  font-size:58px;
  line-height:.9;
  color:var(--navy);
  letter-spacing:2px;
}

.brand span{
  display:block;
  max-width:620px;
  margin-top:8px;
  color:var(--navy);
  font-size:15px;
  font-weight:900;
  line-height:1.25;
  text-transform:uppercase;
}

.header-info{
  display:grid;
  gap:8px;
}

.header-info-box{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--navy);
  font-weight:800;
  font-size:14px;
}

.header-info-box i{
  width:38px;
  height:38px;
  border-radius:50%;
  background:var(--navy);
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

/* NAV */

.main-nav{
  background:linear-gradient(90deg,var(--navy3),var(--navy));
}

.nav-flex{
  min-height:52px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
}

.nav-links{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
}

.nav-links a{
  color:#fff;
  padding:17px 15px;
  font-size:13px;
  font-weight:900;
  text-transform:uppercase;
}

.nav-links a:hover{
  background:var(--orange);
}

.nav-buttons{
  display:flex;
  align-items:center;
  gap:10px;
}

/* BUTTONS */

.btn{
  background:linear-gradient(135deg,var(--orange),var(--orange2));
  color:#fff!important;
  border:none;
  border-radius:8px;
  padding:12px 22px;
  display:inline-flex;
  justify-content:center;
  align-items:center;
  gap:8px;
  font-weight:900;
  box-shadow:0 8px 18px rgba(255,122,24,.25);
  transition:all .25s ease;
}

.btn:hover{
  transform:translateY(-2px);
}

.btn.dark{
  background:linear-gradient(135deg,var(--navy),var(--navy2));
  box-shadow:0 10px 22px rgba(6,31,63,.18);
}

.btn.outline{
  background:rgba(255,255,255,.72);
  color:var(--navy)!important;
  border:1px solid rgba(6,31,63,.18);
  box-shadow:none;
}

.btn.outline-dark{
  background:#fff;
  color:var(--navy)!important;
  border:1px solid var(--navy);
  box-shadow:none;
}

/* HERO */

.premium-hero{
  height:420px;
  min-height:420px;
  background:
    linear-gradient(90deg,rgba(255,255,255,.97) 0%,rgba(255,255,255,.88) 45%,rgba(255,255,255,.10) 100%),
    url('/assets/images/slider/hero.jpg?v=50') center right/cover no-repeat;
  color:var(--navy);
  position:relative;
}

.hero-overlay{
  height:420px;
  min-height:420px;
  display:flex;
  align-items:center;
}

.premium-hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}

.premium-hero-text{
  max-width:650px;
}

.premium-hero h1{
  margin:0 0 12px;
  color:var(--navy);
  font-size:46px;
  line-height:1.05;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:-.7px;
}

.premium-hero h2{
  margin:0 0 16px;
  color:var(--orange);
  font-size:24px;
  line-height:1.2;
  text-transform:uppercase;
  font-weight:900;
}

.premium-hero p{
  margin:0 0 24px;
  color:#29384d;
  font-size:17px;
  line-height:1.7;
  max-width:590px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

/* FEATURE ROW */

.feature-floating{
  margin-top:-30px;
  position:relative;
  z-index:5;
}

.feature-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  background:#fff;
  border:1px solid var(--border);
  border-radius:15px;
  overflow:hidden;
  box-shadow:var(--shadow);
  transition:all .3s ease;
}

.feature-card{
  min-height:100px;
  padding:20px 12px;
  text-align:center;
  border-right:1px solid var(--border);
}

.feature-card:last-child{border-right:none}

.feature-card i{
  width:48px;
  height:48px;
  border-radius:50%;
  background:var(--navy);
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  margin-bottom:10px;
}

.feature-card h4{
  margin:0;
  color:var(--navy);
  font-size:13px;
  text-transform:uppercase;
  font-weight:900;
}

.feature-card p{
  color:#48576b;
  font-size:12px;
  line-height:1.5;
  margin:7px auto 0;
  max-width:150px;
}

/* STATS */

.premium-stats{
  padding:22px 0 8px;
}

.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  background:linear-gradient(90deg,var(--navy3),var(--navy));
  border-radius:14px;
  overflow:hidden;
  box-shadow:var(--shadow);
  transition:all .3s ease;
}

.stat-card{
  text-align:center;
  padding:32px 20px;
  color:#fff;
  border-right:1px solid rgba(255,255,255,.16);
}

.stat-card:last-child{border-right:none}

.stat-card i{
  color:var(--orange);
  font-size:36px;
  margin-bottom:10px;
}

.stat-card h3{
  margin:0;
  color:var(--orange);
  font-size:42px;
  font-weight:900;
}

.stat-card p{
  margin:5px 0 0;
  font-size:14px;
  font-weight:800;
}

/* COMMON SECTIONS */

.section{
  padding:52px 0;
}

.section-title{
  text-align:center;
  margin-bottom:32px;
}

.section-title h1,
.section-title h2{
  margin:0;
  color:var(--navy);
  font-size:31px;
  font-weight:900;
  text-transform:uppercase;
}

.section-title h1:after,
.section-title h2:after{
  content:"";
  display:block;
  width:66px;
  height:3px;
  background:var(--orange);
  margin:10px auto 0;
}

.section-title p{
  color:var(--muted);
  margin:10px 0 0;
  font-size:14px;
}

.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:24px;
  box-shadow:0 12px 30px rgba(6,31,63,.08);
  transition:all .3s ease;
}

.card h2,
.card h3{
  color:var(--navy);
  margin-top:0;
}

.card p{
  color:var(--muted);
  line-height:1.7;
}

.card a{
  color:var(--navy);
  font-weight:900;
}

/* ARTICLES */

.latest-section{
  padding-top:50px;
}

.article-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.article-card{
  display:block;
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  overflow:hidden;
  padding:0;
  min-height:auto;
  box-shadow:0 12px 30px rgba(6,31,63,.08);
  transition:all .3s ease;
}

.article-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 40px rgba(6,31,63,.12);
}

.article-thumb{
  background:var(--soft);
  height:180px;
  overflow:hidden;
}

.article-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.article-info{
  padding:18px;
}

.article-info span{
  display:inline-block;
  color:#0062cc;
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
  margin-bottom:10px;
}

.article-info h3{
  color:var(--navy);
  font-size:17px;
  line-height:1.4;
  margin:0 0 12px;
  min-height:60px;
}

.article-info p,
.article-info small{
  color:var(--muted);
  font-size:13px;
  margin:0 0 8px;
  display:block;
}

.article-info a{
  color:var(--navy);
  font-size:13px;
  font-weight:900;
  text-transform:uppercase;
}

.center-btn{
  text-align:center;
  margin-top:26px;
}

/* AUTHOR PROCESS */

.author-process{
  padding:70px 0;
}

.process-wrapper{
  background:#fff;
  border:1px solid #e9eef5;
  border-radius:24px;
  padding:35px 25px;
  box-shadow:0 16px 42px rgba(6,31,63,.08);
  transition:all .3s ease;
}

.process-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:0;
  align-items:flex-start;
}

.process-card{
  text-align:center;
  padding:0 15px;
  position:relative;
}

.process-card:not(:last-child)::after{
  content:'';
  position:absolute;
  right:0;
  top:40px;
  width:1px;
  height:185px;
  background:#e8edf4;
}

.process-number{
  display:block;
  color:var(--orange);
  font-weight:900;
  font-size:14px;
  margin-bottom:12px;
}

.process-icon{
  width:68px;
  height:68px;
  margin:0 auto 15px;
  border-radius:50%;
  background:#f7f9fc;
  display:flex;
  align-items:center;
  justify-content:center;
}

.process-icon i{
  font-size:24px;
  color:var(--navy);
}

.process-card h4{
  font-size:16px;
  color:var(--navy);
  margin:0 0 10px;
  min-height:40px;
}

.process-card p{
  font-size:13px;
  line-height:1.6;
  color:#5d6b7a;
  margin:0 auto;
  max-width:155px;
}

/* FOR OTHERS */

.for-others{
  padding:24px 0 56px;
}

.others-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:18px;
}

.other-card{
  text-align:center;
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  padding:24px 18px;
  min-height:220px;
  box-shadow:0 8px 24px rgba(6,31,63,.06);
  transition:all .3s ease;
}

.other-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 40px rgba(6,31,63,.12);
}

.other-card i{
  color:var(--navy);
  font-size:32px;
  margin-bottom:14px;
}

.other-card h4{
  margin:0 0 10px;
  color:var(--navy);
  font-size:13px;
  font-weight:900;
  text-transform:uppercase;
}

.other-card p{
  color:#48576b;
  font-size:12px;
  line-height:1.55;
  margin:8px auto 0;
  min-height:75px;
  max-width:160px;
}

.other-card a{
  color:var(--navy);
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
}

/* SEARCH */

.search-form{
  display:flex;
  gap:15px;
  margin-bottom:30px;
}

.search-form input{
  flex:1;
  padding:14px;
  border:1px solid var(--border);
  border-radius:8px;
  font-size:15px;
}

.search-info{
  margin-bottom:25px;
  font-size:15px;
}

/* PAGE HERO */

.page-hero{
  background:linear-gradient(120deg,var(--navy),var(--navy2));
  color:#fff;
  padding:50px 0;
}

.page-hero h1{
  font-size:38px;
  margin:0 0 10px;
}

.page-hero p{
  font-size:16px;
  margin:0;
  color:#dbe8f6;
}

/* ARCHIVES */

.archive-volume{
  margin-bottom:40px;
}

.archive-volume-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:var(--light);
  border-left:5px solid var(--orange);
  padding:16px 20px;
  margin-bottom:22px;
  border-radius:10px;
}

.archive-volume-header h2{
  margin:0;
  color:var(--navy);
}

.archive-volume-header span{
  background:var(--navy);
  color:#fff;
  padding:8px 14px;
  border-radius:20px;
  font-weight:900;
}

.archive-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.archive-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  padding:24px;
  box-shadow:0 10px 30px rgba(6,36,74,.08);
}

.issue-badge{
  display:inline-block;
  background:var(--orange);
  color:#fff;
  padding:6px 12px;
  border-radius:20px;
  font-size:12px;
  font-weight:900;
  text-transform:capitalize;
  margin-bottom:14px;
}

/* ARTICLE PAGE */

.article-page{
  max-width:900px;
  margin:0 auto;
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:36px;
  box-shadow:var(--shadow);
}

.article-page h1{
  color:var(--navy);
  font-size:32px;
  line-height:1.25;
  margin-top:0;
}

.article-meta{
  background:var(--light);
  border-left:4px solid var(--orange);
  padding:12px 15px;
  margin:10px 0;
  border-radius:8px;
}

.article-box p{
  line-height:1.9;
  color:var(--muted);
}

.article-stats{
  margin-top:20px;
  color:var(--muted);
  display:flex;
  gap:20px;
}

/* FOOTER */

.footer{
  background:linear-gradient(90deg,var(--navy3),var(--navy));
  color:#dbe8f6;
  padding-top:34px;
}

.footer-grid{
  display:grid;
  grid-template-columns:320px 180px 180px 220px 260px;
  gap:25px;
  align-items:flex-start;
}

.footer-brand{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:12px;
}

.footer-brand img{
  width:80px;
  height:80px;
  object-fit:contain;
}

.footer h3,
.footer h4{
  color:#fff;
  margin:0 0 12px;
  font-size:17px;
}

.footer p{
  color:#dbe8f6;
  font-size:12px;
  line-height:1.6;
}

.footer a{
  color:#dbe8f6;
  display:block;
  font-size:12px;
  font-weight:700;
  margin:6px 0;
  line-height:1.4;
}

.footer a:hover{color:var(--orange2)}

.footer-social{
  display:flex;
  gap:9px;
  margin-top:16px;
}

.footer-social a{
  width:30px;
  height:30px;
  border:1px solid rgba(255,255,255,.25);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
}

.footer-contact a{
  display:flex;
  align-items:center;
  gap:8px;
}

.footer-contact i{
  width:15px;
}

.newsletter-form{
  margin-top:15px;
}

.newsletter-form input{
  width:100%;
  height:48px;
  border:none;
  border-radius:10px;
  padding:0 14px;
  margin-bottom:10px;
  font-size:14px;
}

.newsletter-form button{
  width:100%;
  height:48px;
  border:none;
  border-radius:10px;
  background:var(--orange);
  color:#fff;
  font-weight:800;
  font-size:15px;
  cursor:pointer;
}

.newsletter-form button:hover{
  opacity:.9;
}

.copyright{
  margin-top:24px;
  padding:12px;
  border-top:1px solid rgba(255,255,255,.12);
  text-align:center;
  color:#dbe8f6;
  font-size:12px;
}

/* RESPONSIVE */

@media(max-width:1100px){
  .article-grid{grid-template-columns:repeat(2,1fr)}
  .process-grid{grid-template-columns:repeat(3,1fr);gap:25px}
  .process-card:not(:last-child)::after{display:none}
  .others-grid{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:repeat(2,1fr)}
}

@media(max-width:768px){
  .top-info-flex,
  .header-flex,
  .nav-flex{
    flex-direction:column;
    align-items:flex-start;
  }

  .brand img{
    width:70px;
    height:70px;
  }

  .brand strong{
    font-size:38px;
  }

  .premium-hero,
  .hero-overlay{
    height:auto;
    min-height:360px;
  }

  .premium-hero h1{
    font-size:36px;
  }

  .premium-hero h2{
    font-size:20px;
  }

  .premium-hero-grid,
  .feature-grid,
  .stats-grid,
  .article-grid,
  .process-grid,
  .others-grid,
  .grid,
  .archive-grid,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .feature-card,
  .stat-card{
    border-right:none;
    border-bottom:1px solid var(--border);
  }

  .footer-brand img{
    width:60px;
    height:60px;
  }
}

/* HEADER HEIGHT FINAL FIX */

.top-info-flex{
  min-height:24px;
  font-size:14px;
}

.header-flex{
  min-height:76px;
  max-height: 100px;
}

.brand{
  gap:5px;
}

.brand img{
  width:150px;
  height:150px;
}

.brand strong{
  font-size:42px;
  line-height:.85;
}

.brand span{
  font-size:12px;
  line-height:1.15;
  max-width:520px;
}

.header-info{
  gap:4px;
}

.header-info-box{
  font-size:12px;
}

.header-info-box i{
  width:30px;
  height:30px;
  font-size:12px;
}

.nav-flex{
  min-height:42px;
}

.nav-links a{
  padding:13px 13px;
  font-size:12px;
}

.nav-buttons .btn{
  padding:9px 18px;
  font-size:12px;
}
.article-layout{
  display:grid;
  grid-template-columns:1fr 320px;
  gap:30px;
  align-items:start;
}

.article-main{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:35px;
  box-shadow:var(--shadow);
}

.article-badge{
  display:inline-block;
  background:var(--orange);
  color:#fff;
  padding:7px 14px;
  border-radius:30px;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  margin-bottom:18px;
}

.article-title{
  color:var(--navy);
  font-size:34px;
  line-height:1.25;
  margin:0 0 15px;
}

.article-authors{
  color:var(--orange);
  font-weight:800;
  margin-bottom:22px;
}

.article-meta-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
  margin:25px 0;
}

.article-meta-grid div{
  background:var(--light);
  border:1px solid var(--border);
  border-radius:12px;
  padding:14px;
}

.article-meta-grid strong{
  display:block;
  color:var(--navy);
  font-size:12px;
  text-transform:uppercase;
  margin-bottom:6px;
}

.article-meta-grid span{
  color:var(--muted);
  font-size:13px;
}

.doi-box{
  background:#fff7ef;
  border-left:4px solid var(--orange);
  padding:14px 16px;
  border-radius:10px;
  margin-bottom:25px;
}

.doi-box a{
  color:var(--navy);
  font-weight:800;
}

.article-section-box{
  margin-top:28px;
}

.article-section-box h2{
  color:var(--navy);
  font-size:22px;
  margin-bottom:12px;
}

.article-section-box p{
  color:#4b5b70;
  line-height:1.9;
}

.keyword-list{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.keyword-list span{
  background:var(--soft);
  color:var(--navy);
  padding:8px 12px;
  border-radius:20px;
  font-size:13px;
  font-weight:700;
}

.article-side-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  padding:22px;
  box-shadow:0 10px 28px rgba(6,31,63,.08);
  margin-bottom:20px;
}

.article-side-card h3{
  color:var(--navy);
  margin-top:0;
}

.article-side-card ul{
  list-style:none;
  padding:0;
  margin:0;
}

.article-side-card li{
  display:flex;
  justify-content:space-between;
  border-bottom:1px solid var(--border);
  padding:10px 0;
  font-size:13px;
}

.article-side-card li:last-child{
  border-bottom:none;
}

.download-btn{
  width:100%;
}

.share-links a{
  display:block;
  color:var(--navy);
  font-weight:800;
  margin:8px 0;
}

@media(max-width:900px){
  .article-layout{
    grid-template-columns:1fr;
  }

  .article-meta-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:600px){
  .article-main{
    padding:24px;
  }

  .article-title{
    font-size:26px;
  }

  .article-meta-grid{
    grid-template-columns:1fr;
  }
}
.issue-layout{
  display:grid;
  grid-template-columns:300px 1fr;
  gap:30px;
  align-items:start;
}

.issue-sidebar{
  display:grid;
  gap:20px;
}

.issue-cover-card,
.issue-info-card,
.issue-header-card,
.issue-article-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  box-shadow:var(--shadow);
}

.issue-cover-card{
  padding:18px;
}

.issue-cover-card img{
  width:100%;
  border-radius:14px;
}

.issue-cover-placeholder{
  min-height:360px;
  border-radius:14px;
  background:linear-gradient(135deg,var(--navy),var(--navy2));
  color:#fff;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:25px;
}

.issue-cover-placeholder strong{
  font-size:38px;
  font-family:Georgia,serif;
}

.issue-cover-placeholder span{
  margin-top:12px;
  font-size:15px;
  line-height:1.5;
}

.issue-info-card{
  padding:22px;
}

.issue-info-card h3{
  color:var(--navy);
  margin-top:0;
}

.issue-info-card ul{
  list-style:none;
  padding:0;
  margin:0;
}

.issue-info-card li{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:10px 0;
  border-bottom:1px solid var(--border);
  font-size:13px;
}

.issue-info-card li:last-child{
  border-bottom:none;
}

.issue-info-card span{
  color:var(--muted);
}

.issue-info-card strong{
  color:var(--navy);
  text-align:right;
}

.issue-header-card{
  padding:28px;
  margin-bottom:24px;
}

.issue-status{
  display:inline-block;
  background:var(--orange);
  color:#fff;
  border-radius:30px;
  padding:7px 14px;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  margin-bottom:14px;
}

.issue-header-card h2{
  color:var(--navy);
  margin:0 0 10px;
  font-size:28px;
}

.issue-header-card p{
  color:var(--muted);
  margin:0;
}

.issue-article-list{
  display:grid;
  gap:18px;
}

.issue-article-card{
  padding:26px;
  transition:all .3s ease;
}

.issue-article-card:hover{
  transform:translateY(-4px);
  box-shadow:0 20px 40px rgba(6,31,63,.12);
}

.issue-article-type{
  color:var(--orange);
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  margin-bottom:10px;
}

.issue-article-card h3{
  margin:0 0 10px;
  font-size:21px;
  line-height:1.35;
}

.issue-article-card h3 a{
  color:var(--navy);
}

.issue-authors{
  color:var(--orange);
  font-weight:800;
  margin:0 0 12px;
}

.issue-abstract{
  color:#4b5b70;
  line-height:1.7;
  margin-bottom:16px;
}

.issue-article-footer{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.issue-article-footer a{
  color:var(--navy);
  font-weight:900;
  font-size:13px;
  text-transform:uppercase;
}

@media(max-width:900px){
  .issue-layout{
    grid-template-columns:1fr;
  }
}

.empty-archive{
    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;
    padding:60px 40px;
    text-align:center;
    box-shadow:var(--shadow);
}

.empty-archive i{
    font-size:60px;
    color:var(--orange);
    margin-bottom:20px;
}

.empty-archive h2{
    color:var(--navy);
    margin-bottom:12px;
}

.empty-archive p{
    max-width:600px;
    margin:0 auto 25px;
    color:var(--muted);
    line-height:1.8;
}
.submission-layout{
  display:grid;
  grid-template-columns:1fr 330px;
  gap:30px;
  align-items:start;
}

.submission-card,
.submission-side-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  box-shadow:var(--shadow);
}

.submission-card{
  padding:34px;
}

.left-title{
  text-align:left;
  margin-bottom:28px;
}

.left-title h2:after{
  margin:10px 0 0;
}

.submission-form h3{
  color:var(--navy);
  font-size:20px;
  margin:30px 0 18px;
  padding-bottom:10px;
  border-bottom:1px solid var(--border);
}

.form-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

.form-group.full{
  grid-column:1 / -1;
}

.form-group label{
  display:block;
  color:var(--navy);
  font-size:13px;
  font-weight:900;
  margin-bottom:8px;
}

.form-group input,
.form-group select,
.form-group textarea{
  width:100%;
  border:1px solid var(--border);
  border-radius:10px;
  padding:13px 14px;
  font-size:14px;
  color:var(--text);
  background:#fff;
  outline:none;
}

.form-group textarea{
  resize:vertical;
}

.form-group small{
  display:block;
  color:var(--muted);
  font-size:12px;
  margin-top:6px;
}

.declaration-box{
  background:var(--light);
  border:1px solid var(--border);
  border-radius:14px;
  padding:18px;
  display:grid;
  gap:12px;
}

.declaration-box label{
  display:flex;
  align-items:flex-start;
  gap:10px;
  color:#3d4b5f;
  font-size:13px;
  line-height:1.6;
}

.declaration-box input{
  margin-top:4px;
}

.submit-full-btn{
  margin-top:24px;
  width:100%;
  height:50px;
  font-size:15px;
}

.submission-sidebar{
  display:grid;
  gap:20px;
}

.submission-side-card{
  padding:24px;
}

.submission-side-card h3{
  color:var(--navy);
  margin-top:0;
}

.submission-side-card ul{
  padding-left:18px;
  margin:0;
}

.submission-side-card li,
.submission-side-card p{
  color:var(--muted);
  font-size:13px;
  line-height:1.7;
}

.highlight-card{
  background:linear-gradient(135deg,var(--navy),var(--navy2));
  color:#fff;
}

.highlight-card h3,
.highlight-card p,
.highlight-card a{
  color:#fff;
}

.alert{
  padding:16px 20px;
  border-radius:12px;
  margin-bottom:25px;
  font-weight:800;
}

.success-alert{
  background:#e8fff1;
  color:#146c43;
  border:1px solid #b7f2cd;
}

.error-alert{
  background:#fff1f1;
  color:#b42318;
  border:1px solid #ffd1d1;
}

@media(max-width:900px){
  .submission-layout{
    grid-template-columns:1fr;
  }

  .form-grid{
    grid-template-columns:1fr;
  }
}

.about-page-grid{
  display:grid;
  grid-template-columns:1fr 330px;
  gap:30px;
  align-items:start;
}

.about-premium-card,
.about-mini-card,
.about-side-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  box-shadow:var(--shadow);
}

.about-premium-card{
  padding:36px;
}

.section-label{
  display:inline-block;
  color:var(--orange);
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  margin-bottom:12px;
}

.about-premium-card h2{
  color:var(--navy);
  font-size:30px;
  margin:0 0 18px;
}

.about-content{
  color:#4b5b70;
  font-size:15px;
  line-height:1.9;
}

.about-content p{
  margin-bottom:16px;
}

.about-mission-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
  margin-top:24px;
}

.about-mini-card{
  padding:26px;
}

.about-mini-card i{
  color:var(--orange);
  font-size:32px;
  margin-bottom:14px;
}

.about-mini-card h3{
  color:var(--navy);
  margin:0 0 10px;
}

.about-mini-card p{
  color:var(--muted);
  line-height:1.7;
  margin:0;
}

.about-page-sidebar{
  display:grid;
  gap:22px;
}

.about-side-card{
  padding:24px;
}

.about-side-card h3{
  color:var(--navy);
  margin-top:0;
}

.about-side-card ul{
  list-style:none;
  padding:0;
  margin:0;
}

.about-side-card li{
  color:#4b5b70;
  padding:10px 0;
  border-bottom:1px solid var(--border);
  font-weight:700;
  font-size:13px;
}

.about-side-card li:last-child{
  border-bottom:none;
}

.about-side-card li i{
  color:var(--orange);
  margin-right:8px;
}

.about-side-card.highlight-card{
  background:linear-gradient(135deg,var(--navy),var(--navy2));
  color:#fff;
}

.about-side-card.highlight-card h3,
.about-side-card.highlight-card p{
  color:#fff;
}

@media(max-width:900px){
  .about-page-grid{
    grid-template-columns:1fr;
  }

  .about-mission-grid{
    grid-template-columns:1fr;
  }
}

.board-section{
  margin-bottom:55px;
}

.board-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.board-feature-grid{
  grid-template-columns:repeat(2,1fr);
  max-width:850px;
  margin:0 auto;
}

.board-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  overflow:hidden;
  box-shadow:var(--shadow);
  transition:all .3s ease;
}

.board-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 40px rgba(6,31,63,.12);
}

.board-photo{
  height:230px;
  background:var(--soft);
  overflow:hidden;
}

.board-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.board-photo-placeholder{
  width:100%;
  height:100%;
  background:linear-gradient(135deg,var(--navy),var(--navy2));
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:70px;
  font-weight:900;
  font-family:Georgia, serif;
}

.board-info{
  padding:22px;
  text-align:center;
}

.board-info h3{
  color:var(--navy);
  font-size:19px;
  margin:0 0 8px;
}

.board-designation{
  display:block;
  color:var(--orange);
  font-weight:900;
  font-size:13px;
  margin-bottom:12px;
  text-transform:uppercase;
}

.board-info p{
  color:var(--muted);
  font-size:13px;
  line-height:1.55;
  margin:8px 0;
}

.board-info p i{
  color:var(--orange);
  margin-right:6px;
}

.board-links{
  display:flex;
  justify-content:center;
  gap:10px;
  margin-top:15px;
}

.board-links a{
  width:34px;
  height:34px;
  border-radius:50%;
  background:var(--navy);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
}

.board-links a:hover{
  background:var(--orange);
}

@media(max-width:1000px){
  .board-grid,
  .board-feature-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .board-grid,
  .board-feature-grid{
    grid-template-columns:1fr;
  }
}

.guidelines-layout{
  display:grid;
  grid-template-columns:1fr 330px;
  gap:30px;
  align-items:start;
}

.guideline-card,
.author-checklist-card,
.guideline-side-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  box-shadow:var(--shadow);
}

.guideline-card{
  padding:36px;
}

.guideline-card h2{
  color:var(--navy);
  margin:0 0 20px;
  font-size:30px;
}

.guideline-content{
  color:#4b5b70;
  line-height:1.9;
  font-size:15px;
}

.guideline-content h3{
  color:var(--navy);
  margin-top:28px;
  font-size:22px;
}

.guideline-content ul{
  padding-left:22px;
}

.guideline-content li{
  margin-bottom:8px;
}

.author-checklist-card{
  padding:30px;
  margin-top:24px;
}

.author-checklist-card h2{
  color:var(--navy);
  margin-top:0;
}

.checklist-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}

.checklist-grid div{
  background:var(--light);
  border:1px solid var(--border);
  border-radius:12px;
  padding:14px;
  color:#3d4b5f;
  font-weight:700;
  font-size:13px;
}

.checklist-grid i{
  color:var(--orange);
  margin-right:8px;
}

.guidelines-sidebar{
  display:grid;
  gap:22px;
}

.guideline-side-card{
  padding:24px;
}

.guideline-side-card h3{
  color:var(--navy);
  margin-top:0;
}

.guideline-side-card a{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--navy);
  padding:12px 0;
  border-bottom:1px solid var(--border);
  font-weight:800;
  font-size:13px;
}

.guideline-side-card a:last-child{
  border-bottom:none;
}

.guideline-side-card a i{
  color:var(--orange);
}

.guideline-side-card.highlight-card{
  background:linear-gradient(135deg,var(--navy),var(--navy2));
  color:#fff;
}

.guideline-side-card.highlight-card h3,
.guideline-side-card.highlight-card p{
  color:#fff;
}

.guideline-side-card.highlight-card .btn{
  width:100%;
}

@media(max-width:900px){
  .guidelines-layout{
    grid-template-columns:1fr;
  }

  .checklist-grid{
    grid-template-columns:1fr;
  }
}

.review-layout{
  display:grid;
  grid-template-columns:1fr 330px;
  gap:30px;
  align-items:start;
}

.review-main{
  display:grid;
  gap:24px;
}

.review-card,
.review-side-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  box-shadow:var(--shadow);
}

.review-card{
  padding:34px;
}

.review-card h2{
  color:var(--navy);
  margin:0 0 18px;
  font-size:28px;
}

.review-content{
  color:#4b5b70;
  font-size:15px;
  line-height:1.9;
}

.review-timeline{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

.review-timeline div{
  background:var(--light);
  border:1px solid var(--border);
  border-radius:14px;
  padding:20px;
}

.review-timeline span{
  display:inline-block;
  color:var(--orange);
  font-size:14px;
  font-weight:900;
  margin-bottom:10px;
}

.review-timeline h3{
  color:var(--navy);
  margin:0 0 8px;
}

.review-timeline p{
  color:var(--muted);
  line-height:1.6;
  margin:0;
  font-size:13px;
}

.criteria-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.criteria-grid div{
  background:var(--light);
  border:1px solid var(--border);
  border-radius:14px;
  padding:20px;
}

.criteria-grid i{
  color:var(--orange);
  font-size:28px;
  margin-bottom:12px;
}

.criteria-grid h3{
  color:var(--navy);
  margin:0 0 8px;
}

.criteria-grid p{
  color:var(--muted);
  font-size:13px;
  line-height:1.6;
  margin:0;
}

.review-sidebar{
  display:grid;
  gap:22px;
}

.review-side-card{
  padding:24px;
}

.review-side-card h3{
  color:var(--navy);
  margin-top:0;
}

.review-side-card p,
.review-side-card li{
  color:var(--muted);
  font-size:13px;
  line-height:1.7;
}

.review-side-card ul{
  list-style:none;
  padding:0;
  margin:0;
}

.review-side-card li{
  border-bottom:1px solid var(--border);
  padding:10px 0;
}

.review-side-card li:last-child{
  border-bottom:none;
}

.review-side-card li i{
  color:var(--orange);
  margin-right:8px;
}

.review-side-card.highlight-card{
  background:linear-gradient(135deg,var(--navy),var(--navy2));
}

.review-side-card.highlight-card h3,
.review-side-card.highlight-card p{
  color:#fff;
}

.review-side-card.highlight-card .btn{
  width:100%;
}

@media(max-width:900px){
  .review-layout{
    grid-template-columns:1fr;
  }

  .review-timeline,
  .criteria-grid{
    grid-template-columns:1fr;
  }
}

.policy-layout{
  display:grid;
  grid-template-columns:1fr 330px;
  gap:30px;
  align-items:start;
}

.policy-main{
  display:grid;
  gap:24px;
}

.policy-card,
.policy-side-card,
.ethics-item{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  box-shadow:var(--shadow);
}

.policy-card{
  padding:36px;
}

.policy-card h2{
  color:var(--navy);
  margin:0 0 20px;
  font-size:30px;
}

.policy-content{
  color:#4b5b70;
  font-size:15px;
  line-height:1.9;
}

.policy-content h3{
  color:var(--navy);
  margin-top:28px;
  font-size:22px;
}

.ethics-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.ethics-item{
  padding:26px;
  text-align:center;
}

.ethics-item i{
  color:var(--orange);
  font-size:36px;
  margin-bottom:14px;
}

.ethics-item h3{
  color:var(--navy);
  margin:0 0 10px;
}

.ethics-item p{
  color:var(--muted);
  line-height:1.7;
  margin:0;
}

.policy-sidebar{
  display:grid;
  gap:22px;
}

.policy-side-card{
  padding:24px;
}

.policy-side-card h3{
  color:var(--navy);
  margin-top:0;
}

.policy-side-card a{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--navy);
  padding:12px 0;
  border-bottom:1px solid var(--border);
  font-weight:800;
  font-size:13px;
}

.policy-side-card a:last-child{
  border-bottom:none;
}

.policy-side-card a i{
  color:var(--orange);
}

.policy-side-card.highlight-card{
  background:linear-gradient(135deg,var(--navy),var(--navy2));
}

.policy-side-card.highlight-card h3,
.policy-side-card.highlight-card p{
  color:#fff;
}

.policy-side-card.highlight-card .btn{
  width:100%;
}

@media(max-width:900px){
  .policy-layout{
    grid-template-columns:1fr;
  }

  .ethics-grid{
    grid-template-columns:1fr;
  }
}

.contact-layout{
  display:grid;
  grid-template-columns:1fr 330px;
  gap:30px;
  align-items:start;
}

.contact-main{
  display:grid;
  gap:24px;
}

.contact-card,
.contact-side-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  box-shadow:var(--shadow);
}

.contact-card{
  padding:36px;
}

.contact-card h2{
  color:var(--navy);
  margin:0 0 20px;
  font-size:30px;
}

.contact-intro,
.contact-content{
  color:#4b5b70;
  line-height:1.8;
  margin-bottom:24px;
}

.contact-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.contact-item{
  background:var(--light);
  border:1px solid var(--border);
  border-radius:14px;
  padding:20px;
}

.contact-item i{
  color:var(--orange);
  font-size:28px;
  margin-bottom:12px;
}

.contact-item h4{
  color:var(--navy);
  margin:0 0 8px;
  font-size:15px;
}

.contact-item a{
  color:#4b5b70;
  font-size:13px;
  font-weight:800;
  word-break:break-word;
}

.contact-form .form-group label{
  display:block;
  color:var(--navy);
  font-size:13px;
  font-weight:900;
  margin-bottom:8px;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  border:1px solid var(--border);
  border-radius:10px;
  padding:13px 14px;
  font-size:14px;
  outline:none;
}

.contact-form textarea{
  resize:vertical;
}

.contact-sidebar{
  display:grid;
  gap:22px;
}

.contact-side-card{
  padding:24px;
}

.contact-side-card h3{
  color:var(--navy);
  margin-top:0;
}

.contact-side-card ul{
  list-style:none;
  padding:0;
  margin:0;
}

.contact-side-card li{
  display:flex;
  justify-content:space-between;
  gap:15px;
  padding:10px 0;
  border-bottom:1px solid var(--border);
  font-size:13px;
}

.contact-side-card li:last-child{
  border-bottom:none;
}

.contact-side-card span{
  color:var(--muted);
}

.contact-side-card strong{
  color:var(--navy);
  text-align:right;
}

.contact-side-card a{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--navy);
  padding:12px 0;
  border-bottom:1px solid var(--border);
  font-weight:800;
  font-size:13px;
}

.contact-side-card a:last-child{
  border-bottom:none;
}

.contact-side-card a i{
  color:var(--orange);
}

.contact-side-card.highlight-card{
  background:linear-gradient(135deg,var(--navy),var(--navy2));
}

.contact-side-card.highlight-card h3,
.contact-side-card.highlight-card p{
  color:#fff;
}

.contact-side-card.highlight-card .btn{
  width:100%;
}

@media(max-width:1000px){
  .contact-layout{
    grid-template-columns:1fr;
  }

  .contact-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .contact-grid{
    grid-template-columns:1fr;
  }
}

.scope-layout{
  display:grid;
  grid-template-columns:1fr 330px;
  gap:30px;
  align-items:start;
}

.scope-main{
  display:grid;
  gap:24px;
}

.scope-card,
.scope-side-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  box-shadow:var(--shadow);
}

.scope-card{
  padding:36px;
}

.scope-card h2{
  color:var(--navy);
  margin:0 0 20px;
  font-size:30px;
}

.scope-content{
  color:#4b5b70;
  font-size:15px;
  line-height:1.9;
}

.scope-content h3{
  color:var(--navy);
  margin-top:28px;
  font-size:22px;
}

.scope-content ul{
  padding-left:22px;
}

.scope-content li{
  margin-bottom:8px;
}

.scope-area-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.scope-area-grid div{
  background:var(--light);
  border:1px solid var(--border);
  border-radius:14px;
  padding:22px;
}

.scope-area-grid i{
  color:var(--orange);
  font-size:30px;
  margin-bottom:12px;
}

.scope-area-grid h3{
  color:var(--navy);
  margin:0 0 8px;
  font-size:17px;
}

.scope-area-grid p{
  color:var(--muted);
  line-height:1.65;
  margin:0;
  font-size:13px;
}

.scope-sidebar{
  display:grid;
  gap:22px;
}

.scope-side-card{
  padding:24px;
}

.scope-side-card h3{
  color:var(--navy);
  margin-top:0;
}

.scope-side-card ul{
  list-style:none;
  padding:0;
  margin:0;
}

.scope-side-card li{
  color:#4b5b70;
  padding:10px 0;
  border-bottom:1px solid var(--border);
  font-weight:700;
  font-size:13px;
}

.scope-side-card li:last-child{
  border-bottom:none;
}

.scope-side-card li i{
  color:var(--orange);
  margin-right:8px;
}

.scope-side-card a{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--navy);
  padding:12px 0;
  border-bottom:1px solid var(--border);
  font-weight:800;
  font-size:13px;
}

.scope-side-card a:last-child{
  border-bottom:none;
}

.scope-side-card a i{
  color:var(--orange);
}

.scope-side-card.highlight-card{
  background:linear-gradient(135deg,var(--navy),var(--navy2));
}

.scope-side-card.highlight-card h3,
.scope-side-card.highlight-card p{
  color:#fff;
}

.scope-side-card.highlight-card .btn{
  width:100%;
}

@media(max-width:1000px){
  .scope-layout{
    grid-template-columns:1fr;
  }

  .scope-area-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .scope-area-grid{
    grid-template-columns:1fr;
  }
}

.nav-item{
  position:relative;
}

.nav-item > a{
  color:#fff;
  padding:16px 14px;
  font-size:13px;
  font-weight:900;
  text-transform:uppercase;
  display:flex;
  align-items:center;
  gap:6px;
}

.nav-item > a:hover{
  background:var(--orange);
}

.dropdown-menu{
  position:absolute;
  top:100%;
  left:0;
  min-width:240px;
  background:#fff;
  border:1px solid var(--border);
  box-shadow:0 18px 40px rgba(6,31,63,.18);
  border-radius:0 0 14px 14px;
  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:.25s ease;
  z-index:9999;
  overflow:hidden;
}

.dropdown:hover .dropdown-menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.dropdown-menu a{
  display:block;
  color:var(--navy);
  padding:13px 16px;
  font-size:13px;
  font-weight:800;
  border-bottom:1px solid var(--border);
  background:#fff;
}

.dropdown-menu a:last-child{
  border-bottom:none;
}

.dropdown-menu a:hover{
  background:var(--light);
  color:var(--orange);
}

@media(max-width:768px){
  .nav-links{
    flex-direction:column;
    align-items:stretch;
    width:100%;
  }

  .nav-item{
    width:100%;
  }

  .nav-item > a{
    width:100%;
    justify-content:space-between;
  }

  .dropdown-menu{
    position:static;
    opacity:1;
    visibility:visible;
    transform:none;
    box-shadow:none;
    border-radius:0;
    display:none;
  }

  .dropdown:hover .dropdown-menu{
    display:block;
  }
}

.template-hero-card{
  background:linear-gradient(135deg,var(--navy),var(--navy2));
  color:#fff;
  border-radius:24px;
  padding:38px;
  display:grid;
  grid-template-columns:1fr 260px;
  gap:30px;
  align-items:center;
  box-shadow:var(--shadow);
  margin-bottom:30px;
}

.template-hero-card h2{
  color:#fff;
  font-size:32px;
  margin:0 0 14px;
}

.template-hero-card p{
  color:#dbe8f6;
  line-height:1.75;
  margin:0;
  max-width:780px;
}

.template-download-box{
  background:#fff;
  border-radius:18px;
  padding:28px;
  text-align:center;
}

.template-download-box i{
  display:block;
  color:var(--orange);
  font-size:56px;
  margin-bottom:18px;
}

.template-download-box .btn{
  width:100%;
}

.template-download-box button[disabled]{
  opacity:.75;
  cursor:not-allowed;
}

.template-premium-grid{
  display:grid;
  grid-template-columns:1fr 330px;
  gap:30px;
  align-items:start;
}

.template-main-content{
  display:grid;
  gap:24px;
}

.template-section-card,
.template-side-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  box-shadow:var(--shadow);
}

.template-section-card{
  padding:34px;
}

.template-section-card h2{
  color:var(--navy);
  font-size:28px;
  margin:0 0 22px;
}

.template-content{
  color:#4b5b70;
  line-height:1.85;
  margin-bottom:22px;
}

.template-format-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

.template-format-grid div{
  background:var(--light);
  border:1px solid var(--border);
  border-radius:14px;
  padding:20px;
}

.template-format-grid span{
  display:inline-block;
  color:var(--orange);
  font-size:13px;
  font-weight:900;
  margin-bottom:10px;
}

.template-format-grid h3{
  color:var(--navy);
  margin:0 0 8px;
  font-size:18px;
}

.template-format-grid p{
  color:var(--muted);
  line-height:1.65;
  margin:0;
  font-size:13px;
}

.paper-structure{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}

.paper-structure div{
  background:#fff7ef;
  border:1px solid #ffe0c2;
  border-radius:12px;
  padding:14px;
  color:var(--navy);
  font-weight:800;
  font-size:13px;
}

.paper-structure i{
  color:var(--orange);
  margin-right:8px;
}

.template-side-panel{
  display:grid;
  gap:22px;
}

.template-side-card{
  padding:24px;
}

.template-side-card h3{
  color:var(--navy);
  margin-top:0;
}

.template-side-card ul{
  list-style:none;
  padding:0;
  margin:0;
}

.template-side-card li{
  color:#4b5b70;
  padding:10px 0;
  border-bottom:1px solid var(--border);
  font-size:13px;
  font-weight:700;
}

.template-side-card li:last-child{
  border-bottom:none;
}

.template-side-card li i{
  color:var(--orange);
  margin-right:8px;
}

.file-type-list{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.file-type-list span{
  background:var(--light);
  border:1px solid var(--border);
  color:var(--navy);
  border-radius:30px;
  padding:9px 14px;
  font-weight:900;
  font-size:13px;
}

.template-side-card a{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--navy);
  padding:12px 0;
  border-bottom:1px solid var(--border);
  font-weight:800;
  font-size:13px;
}

.template-side-card a:last-child{
  border-bottom:none;
}

.template-side-card a i{
  color:var(--orange);
}

.template-side-card.highlight-card{
  background:linear-gradient(135deg,var(--navy),var(--navy2));
}

.template-side-card.highlight-card h3,
.template-side-card.highlight-card p{
  color:#fff;
}

.template-side-card.highlight-card .btn{
  width:100%;
}

@media(max-width:1000px){
  .template-hero-card,
  .template-premium-grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:600px){
  .template-format-grid,
  .paper-structure{
    grid-template-columns:1fr;
  }
}

.fee-layout{
  display:grid;
  grid-template-columns:1fr 330px;
  gap:30px;
  align-items:start;
}

.fee-main{
  display:grid;
  gap:24px;
}

.fee-card,
.fee-box,
.fee-side-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  box-shadow:var(--shadow);
}

.fee-card{
  padding:36px;
}

.fee-card h2{
  color:var(--navy);
  margin:0 0 20px;
  font-size:30px;
}

.fee-content{
  color:#4b5b70;
  font-size:15px;
  line-height:1.9;
}

.fee-content h3{
  color:var(--navy);
  margin-top:26px;
  font-size:22px;
}

.fee-content ul{
  padding-left:22px;
}

.fee-content li{
  margin-bottom:8px;
}

.fee-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.fee-box{
  padding:28px;
  text-align:center;
}

.fee-box i{
  color:var(--orange);
  font-size:38px;
  margin-bottom:14px;
}

.fee-box h3{
  color:var(--navy);
  margin:0 0 10px;
}

.fee-box strong{
  display:block;
  color:var(--orange);
  font-size:20px;
  margin-bottom:10px;
}

.fee-box p{
  color:var(--muted);
  line-height:1.7;
  margin:0;
  font-size:13px;
}

.fee-sidebar{
  display:grid;
  gap:22px;
}

.fee-side-card{
  padding:24px;
}

.fee-side-card h3{
  color:var(--navy);
  margin-top:0;
}

.fee-side-card ul{
  list-style:none;
  padding:0;
  margin:0;
}

.fee-side-card li{
  display:flex;
  justify-content:space-between;
  gap:15px;
  padding:10px 0;
  border-bottom:1px solid var(--border);
  font-size:13px;
}

.fee-side-card li:last-child{
  border-bottom:none;
}

.fee-side-card span{
  color:var(--muted);
}

.fee-side-card strong{
  color:var(--navy);
  text-align:right;
}

.fee-side-card a{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--navy);
  padding:12px 0;
  border-bottom:1px solid var(--border);
  font-weight:800;
  font-size:13px;
}

.fee-side-card a:last-child{
  border-bottom:none;
}

.fee-side-card a i{
  color:var(--orange);
}

.fee-side-card.highlight-card{
  background:linear-gradient(135deg,var(--navy),var(--navy2));
}

.fee-side-card.highlight-card h3,
.fee-side-card.highlight-card p{
  color:#fff;
}

.fee-side-card.highlight-card .btn{
  width:100%;
}

@media(max-width:1000px){
  .fee-layout{
    grid-template-columns:1fr;
  }

  .fee-grid{
    grid-template-columns:1fr;
  }
}

.faq-layout{
  display:grid;
  grid-template-columns:1fr 330px;
  gap:30px;
  align-items:start;
}

.faq-main{
  display:grid;
  gap:24px;
}

.faq-card,
.faq-group,
.faq-side-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  box-shadow:var(--shadow);
}

.faq-card,
.faq-group{
  padding:34px;
}

.faq-card h2,
.faq-group h2{
  color:var(--navy);
  margin:0 0 20px;
  font-size:28px;
}

.faq-intro,
.faq-content{
  color:#4b5b70;
  line-height:1.8;
}

.faq-item{
  border-bottom:1px solid var(--border);
  padding:18px 0;
}

.faq-item:last-child{
  border-bottom:none;
  padding-bottom:0;
}

.faq-item h3{
  color:var(--navy);
  margin:0 0 8px;
  font-size:18px;
}

.faq-item p{
  color:var(--muted);
  line-height:1.7;
  margin:0;
}

.faq-sidebar{
  display:grid;
  gap:22px;
}

.faq-side-card{
  padding:24px;
}

.faq-side-card h3{
  color:var(--navy);
  margin-top:0;
}

.faq-side-card a{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--navy);
  padding:12px 0;
  border-bottom:1px solid var(--border);
  font-weight:800;
  font-size:13px;
}

.faq-side-card a:last-child{
  border-bottom:none;
}

.faq-side-card a i{
  color:var(--orange);
}

.faq-side-card.highlight-card{
  background:linear-gradient(135deg,var(--navy),var(--navy2));
}

.faq-side-card.highlight-card h3,
.faq-side-card.highlight-card p{
  color:#fff;
}

.faq-side-card.highlight-card .btn{
  width:100%;
}

@media(max-width:1000px){
  .faq-layout{
    grid-template-columns:1fr;
  }
}

.announcement-layout{
  display:grid;
  grid-template-columns:1fr 330px;
  gap:30px;
  align-items:start;
}

.announcement-main{
  display:grid;
  gap:22px;
}

.announcement-card,
.announcement-side-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  box-shadow:var(--shadow);
}

.announcement-card{
  padding:30px;
}

.announcement-date{
  display:inline-block;
  background:#fff7ef;
  color:var(--orange);
  padding:7px 14px;
  border-radius:30px;
  font-size:12px;
  font-weight:900;
  margin-bottom:14px;
}

.announcement-card h2{
  color:var(--navy);
  margin:0 0 12px;
  font-size:24px;
}

.announcement-card p{
  color:var(--muted);
  line-height:1.8;
}

.announcement-link{
  color:var(--navy);
  font-weight:900;
}

.announcement-sidebar{
  display:grid;
  gap:22px;
}

.announcement-side-card{
  padding:24px;
}

.announcement-side-card h3{
  color:var(--navy);
  margin-top:0;
}

.announcement-side-card a{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--navy);
  padding:12px 0;
  border-bottom:1px solid var(--border);
  font-weight:800;
  font-size:13px;
}

.announcement-side-card a:last-child{
  border-bottom:none;
}

.announcement-side-card a i{
  color:var(--orange);
}

.announcement-side-card.highlight-card{
  background:linear-gradient(135deg,var(--navy),var(--navy2));
}

.announcement-side-card.highlight-card h3,
.announcement-side-card.highlight-card p{
  color:#fff;
}

.announcement-side-card.highlight-card .btn{
  width:100%;
}

@media(max-width:1000px){
  .announcement-layout{
    grid-template-columns:1fr;
  }
}

.announcement-layout{
  display:grid;
  grid-template-columns:1fr 330px;
  gap:30px;
  align-items:start;
}

.announcement-main{
  display:grid;
  gap:24px;
}

.announcement-card,
.announcement-side-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  box-shadow:var(--shadow);
}

.announcement-card{
  overflow:hidden;
  padding:0;
}

.announcement-image{
  height:300px;
  overflow:hidden;
  background:var(--soft);
}

.announcement-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.announcement-content{
  padding:30px;
}

.announcement-meta{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:15px;
  margin-bottom:16px;
  flex-wrap:wrap;
}

.announcement-badge{
  background:var(--orange);
  color:#fff;
  padding:8px 14px;
  border-radius:50px;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
}

.announcement-date{
  color:var(--orange);
  font-size:12px;
  font-weight:900;
}

.announcement-card h2{
  color:var(--navy);
  margin:0 0 14px;
  font-size:26px;
  line-height:1.35;
}

.announcement-summary{
  font-size:16px;
  color:#1e293b;
  font-weight:700;
  line-height:1.7;
  margin:0 0 15px;
}

.announcement-excerpt{
  color:var(--muted);
  line-height:1.8;
  font-size:14px;
}

.announcement-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-top:22px;
  color:var(--navy);
  font-weight:900;
}

.announcement-btn:hover{
  color:var(--orange);
}

.announcement-sidebar{
  display:grid;
  gap:22px;
}

.announcement-side-card{
  padding:24px;
}

.announcement-side-card h3{
  color:var(--navy);
  margin-top:0;
}

.announcement-side-card a{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--navy);
  padding:12px 0;
  border-bottom:1px solid var(--border);
  font-weight:800;
  font-size:13px;
}

.announcement-side-card a:last-child{
  border-bottom:none;
}

.announcement-side-card a i{
  color:var(--orange);
}

.announcement-side-card.highlight-card{
  background:linear-gradient(135deg,var(--navy),var(--navy2));
}

.announcement-side-card.highlight-card h3,
.announcement-side-card.highlight-card p{
  color:#fff;
}

.announcement-side-card.highlight-card .btn{
  width:100%;
}

@media(max-width:1000px){
  .announcement-layout{
    grid-template-columns:1fr;
  }
}

@media(max-width:600px){
  .announcement-image{
    height:210px;
  }

  .announcement-content{
    padding:22px;
  }

  .announcement-card h2{
    font-size:22px;
  }
}

.single-announcement-layout{
  display:grid;
  grid-template-columns:1fr 330px;
  gap:30px;
  align-items:start;
}

.single-announcement-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:20px;
  overflow:hidden;
  box-shadow:var(--shadow);
}

.single-announcement-image{
    background:#fff;
    padding:0;
    overflow:hidden;
}

.single-announcement-image img{
    width:100%;
    height:auto;
    display:block;
    object-fit:contain;
}

.single-announcement-content{
  padding:38px;
}

.single-announcement-content h2{
  color:var(--navy);
  font-size:34px;
  line-height:1.3;
  margin:0 0 16px;
}

.single-announcement-summary{
  color:#1e293b;
  font-size:17px;
  font-weight:700;
  line-height:1.75;
  padding:18px 20px;
  background:var(--light);
  border-left:4px solid var(--orange);
  border-radius:12px;
  margin:0 0 24px;
}

.single-announcement-body{
  color:#4b5b70;
  font-size:15px;
  line-height:1.9;
}

.single-announcement-body h3{
  color:var(--navy);
  font-size:23px;
  margin-top:30px;
}

.single-announcement-body ul{
  padding-left:22px;
}

.single-announcement-body li{
  margin-bottom:8px;
}

.single-announcement-sidebar{
  display:grid;
  gap:22px;
}

.announcement-info-list{
  list-style:none;
  padding:0;
  margin:0;
}

.announcement-info-list li{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:10px 0;
  border-bottom:1px solid var(--border);
  font-size:13px;
}

.announcement-info-list li:last-child{
  border-bottom:none;
}

.announcement-info-list span{
  color:var(--muted);
}

.announcement-info-list strong{
  color:var(--navy);
  text-align:right;
}

@media(max-width:1000px){
  .single-announcement-layout{
    grid-template-columns:1fr;
  }

  .single-announcement-image{
    height:300px;
  }
}

@media(max-width:600px){
  .single-announcement-content{
    padding:24px;
  }

  .single-announcement-content h2{
    font-size:24px;
  }

  .single-announcement-image{
    height:220px;
  }
}
.single-announcement-body{
    max-width:850px;
    margin:auto;
    font-size:16px;
    line-height:1.9;
}
.single-announcement-content{
    padding:50px;
}
.single-announcement-content h2{
    font-size:32px;
    margin-bottom:15px;
}

.reviewer-layout{
  display:grid;
  grid-template-columns:1fr 330px;
  gap:30px;
  align-items:start;
}

.reviewer-main{
  display:grid;
  gap:24px;
}

.reviewer-card,
.reviewer-side-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  box-shadow:var(--shadow);
}

.reviewer-card{
  padding:36px;
}

.reviewer-card h2{
  color:var(--navy);
  margin:0 0 20px;
  font-size:30px;
}

.reviewer-content{
  color:#4b5b70;
  font-size:15px;
  line-height:1.9;
}

.reviewer-content h3{
  color:var(--navy);
  margin-top:28px;
  font-size:22px;
}

.reviewer-content ul{
  padding-left:22px;
}

.reviewer-content li{
  margin-bottom:8px;
}

.reviewer-criteria-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.reviewer-criteria-grid div,
.reviewer-timeline div{
  background:var(--light);
  border:1px solid var(--border);
  border-radius:14px;
  padding:20px;
}

.reviewer-criteria-grid i{
  color:var(--orange);
  font-size:30px;
  margin-bottom:12px;
}

.reviewer-criteria-grid h3,
.reviewer-timeline h3{
  color:var(--navy);
  margin:0 0 8px;
}

.reviewer-criteria-grid p,
.reviewer-timeline p{
  color:var(--muted);
  line-height:1.65;
  margin:0;
  font-size:13px;
}

.reviewer-timeline{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.reviewer-timeline span{
  color:var(--orange);
  font-size:14px;
  font-weight:900;
  display:inline-block;
  margin-bottom:10px;
}

.reviewer-sidebar{
  display:grid;
  gap:22px;
}

.reviewer-side-card{
  padding:24px;
}

.reviewer-side-card h3{
  color:var(--navy);
  margin-top:0;
}

.reviewer-side-card ul{
  list-style:none;
  padding:0;
  margin:0;
}

.reviewer-side-card li{
  color:#4b5b70;
  padding:10px 0;
  border-bottom:1px solid var(--border);
  font-weight:700;
  font-size:13px;
}

.reviewer-side-card li:last-child{
  border-bottom:none;
}

.reviewer-side-card li i{
  color:var(--orange);
  margin-right:8px;
}

.reviewer-side-card a{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--navy);
  padding:12px 0;
  border-bottom:1px solid var(--border);
  font-weight:800;
  font-size:13px;
}

.reviewer-side-card a:last-child{
  border-bottom:none;
}

.reviewer-side-card a i{
  color:var(--orange);
}

.reviewer-side-card.highlight-card{
  background:linear-gradient(135deg,var(--navy),var(--navy2));
}

.reviewer-side-card.highlight-card h3,
.reviewer-side-card.highlight-card p{
  color:#fff;
}

.reviewer-side-card.highlight-card .btn{
  width:100%;
}

@media(max-width:1000px){
  .reviewer-layout{
    grid-template-columns:1fr;
  }

  .reviewer-criteria-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .reviewer-timeline{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .reviewer-criteria-grid,
  .reviewer-timeline{
    grid-template-columns:1fr;
  }
}

.reviewer-apply-layout{
  display:grid;
  grid-template-columns:1fr 330px;
  gap:30px;
  align-items:start;
}

.reviewer-apply-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  box-shadow:var(--shadow);
  padding:36px;
}

.reviewer-apply-card h2{
  color:var(--navy);
  margin:0 0 18px;
  font-size:30px;
}

.reviewer-apply-intro{
  color:var(--muted);
  line-height:1.8;
  margin-bottom:24px;
}

.reviewer-apply-sidebar{
  display:grid;
  gap:22px;
}

.reviewer-apply-form .form-group label{
  display:block;
  color:var(--navy);
  font-size:13px;
  font-weight:900;
  margin-bottom:8px;
}

.reviewer-apply-form input,
.reviewer-apply-form textarea{
  width:100%;
  border:1px solid var(--border);
  border-radius:10px;
  padding:13px 14px;
  font-size:14px;
  outline:none;
}

.reviewer-apply-form textarea{
  resize:vertical;
}

.reviewer-apply-form small{
  display:block;
  color:var(--muted);
  font-size:12px;
  margin-top:6px;
}

@media(max-width:1000px){
  .reviewer-apply-layout{
    grid-template-columns:1fr;
  }
}

.declaration-box label{
    display:flex;
    align-items:flex-start;
    gap:12px;
    line-height:1.8;
    cursor:pointer;
}

.declaration-box input[type="checkbox"]{
    margin-top:4px;
    width:18px;
    height:18px;
    flex-shrink:0;
}

.declaration-box{
  background:var(--light);
  border:1px solid var(--border);
  border-radius:14px;
  padding:18px;
  margin:18px 0 22px;
}

.declaration-box label{
  display:flex;
  align-items:flex-start;
  gap:12px;
  line-height:1.7;
  cursor:pointer;
  color:#4b5b70;
  font-size:13px;
  font-weight:700;
}

.declaration-box input[type="checkbox"]{
  width:18px;
  height:18px;
  margin-top:3px;
  flex-shrink:0;
}

.reviewer-benefit-card ul{
  list-style:none;
  padding:0;
  margin:0;
}

.reviewer-benefit-card li{
  color:#fff;
  padding:10px 0;
  border-bottom:1px solid rgba(255,255,255,.16);
  font-size:13px;
  line-height:1.5;
  display:flex;
  gap:10px;
  align-items:flex-start;
}

.reviewer-benefit-card li:last-child{
  border-bottom:none;
}

.reviewer-benefit-card li i{
  color:var(--orange2);
  margin-top:2px;
}

.reviewer-network-card ul{
  list-style:none;
  padding:0;
  margin:0;
}

.reviewer-network-card li{
  display:flex;
  justify-content:space-between;
  gap:14px;
  padding:11px 0;
  border-bottom:1px solid var(--border);
  font-size:13px;
}

.reviewer-network-card li:last-child{
  border-bottom:none;
}

.reviewer-network-card span{
  color:var(--muted);
}

.reviewer-network-card strong{
  color:var(--navy);
  text-align:right;
}

.process-page-layout{
  display:grid;
  grid-template-columns:1fr 330px;
  gap:30px;
  align-items:start;
}

.process-page-main{
  display:grid;
  gap:24px;
}

.process-page-card,
.editorial-flow-card,
.process-side-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  box-shadow:var(--shadow);
}

.process-page-card,
.editorial-flow-card{
  padding:36px;
}

.process-page-card h2,
.editorial-flow-card h2{
  color:var(--navy);
  margin:0 0 22px;
  font-size:30px;
}

.process-page-content{
  color:#4b5b70;
  line-height:1.9;
  font-size:15px;
}

.editorial-flow{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

.editorial-step{
  position:relative;
  background:var(--light);
  border:1px solid var(--border);
  border-radius:16px;
  padding:22px;
}

.editorial-step span{
  display:inline-block;
  color:var(--orange);
  font-size:14px;
  font-weight:900;
  margin-bottom:10px;
}

.editorial-step i{
  color:var(--navy);
  font-size:30px;
  margin-bottom:12px;
  display:block;
}

.editorial-step h3{
  color:var(--navy);
  margin:0 0 8px;
  font-size:18px;
}

.editorial-step p{
  color:var(--muted);
  line-height:1.65;
  margin:0;
  font-size:13px;
}

.decision-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.decision-grid div{
  background:var(--light);
  border:1px solid var(--border);
  border-radius:14px;
  padding:20px;
  text-align:center;
}

.decision-grid i{
  color:var(--orange);
  font-size:30px;
  margin-bottom:12px;
}

.decision-grid h3{
  color:var(--navy);
  margin:0 0 8px;
}

.decision-grid p{
  color:var(--muted);
  font-size:13px;
  line-height:1.6;
  margin:0;
}

.process-page-sidebar{
  display:grid;
  gap:22px;
}

.process-side-card{
  padding:24px;
}

.process-side-card h3{
  color:var(--navy);
  margin-top:0;
}

.process-side-card ul{
  list-style:none;
  padding:0;
  margin:0;
}

.process-side-card li{
  display:flex;
  justify-content:space-between;
  gap:14px;
  padding:11px 0;
  border-bottom:1px solid var(--border);
  font-size:13px;
}

.process-side-card li:last-child{
  border-bottom:none;
}

.process-side-card span{
  color:var(--muted);
}

.process-side-card strong{
  color:var(--navy);
  text-align:right;
}

.process-side-card a{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--navy);
  padding:12px 0;
  border-bottom:1px solid var(--border);
  font-weight:800;
  font-size:13px;
}

.process-side-card a:last-child{
  border-bottom:none;
}

.process-side-card a i{
  color:var(--orange);
}

.process-side-card.highlight-card{
  background:linear-gradient(135deg,var(--navy),var(--navy2));
}

.process-side-card.highlight-card h3,
.process-side-card.highlight-card p{
  color:#fff;
}

.process-side-card.highlight-card .btn{
  width:100%;
}

@media(max-width:1000px){
  .process-page-layout{
    grid-template-columns:1fr;
  }

  .editorial-flow{
    grid-template-columns:1fr;
  }

  .decision-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .decision-grid{
    grid-template-columns:1fr;
  }
}
