/* ---------- fix: stop .topbar/.subbar clipping open dropdowns ---------- */
.topbar.mega-open,          /* set by js/nav.js — fallback where :has() is unsupported */
.topbar:has(.topbar-menu.open),
.topbar:has(.has-mega:hover),
.topbar:has(.has-mega.is-open),
.topbar:has(.mega-panel:hover) {
  overflow: visible;
}
.subbar:has(.subbar-menu.open) {
  overflow: visible;
}

/* ---------- trigger wrapper ---------- */
.topbar-menu-item.has-mega {
  /* NOT position:relative — the panel below spans the whole header, so it must
     resolve against .topbar (see "panel" further down), not against this
     small trigger. */
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.mega-toggle {
  background: none;
  border: none;
  padding: 4px 4px;
  cursor: pointer;
  line-height: 1;
  color: #000;              /* matches .topbar-menu a color */
  font-size: 12px;
}
.mega-caret {
  display: inline-block;
  transition: transform 0.2s ease;
}
.has-mega.is-open .mega-caret,
.has-mega:hover .mega-caret {
  transform: rotate(180deg);
}

/* ---------- panel: full-width, edge-to-edge under the topbar ---------- */
.mega-panel {
  position: absolute;
  top: 100%;
  /* Pinned to the header's own edges. The previous "left:50% + width:100vw +
     margin-left:-50vw" full-bleed trick centred the panel on the About Us
     trigger instead of the viewport, so it hung off the left edge and cut the
     first column — by a different amount at every window width. Anchoring to
     .topbar (position:relative, below) makes it correct at any size, and
     dropping 100vw also removes the scrollbar-width overflow. */
  left: 0;
  right: 0;
  width: auto;
  margin-left: 0;
  /* Never taller than the space under the header; scroll if the menu grows. */
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  overscroll-behavior: contain;
  background: #fff;
  border: none;
  border-top: 1px solid #e5e5e5;
  border-radius: 0;
  box-shadow: 0 16px 40px rgba(22, 36, 28, 0.10);
  padding: 36px 0 40px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 500;
}

.has-mega:hover .mega-panel,
.has-mega:focus-within .mega-panel,
.has-mega.is-open .mega-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-panel-inner {
  max-width: 1400px;         /* matches .topbar-inner / .subbar-inner so
                                 columns line up with the logo and actions */
  margin-inline: auto;
  padding: 0 24px;
  display: grid;
  /* auto-fit, not a fixed 3: the columns are page categories from the CMS, so
     the count changes — and on a narrow desktop they wrap instead of being
     crushed. */
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

/* Narrow desktops / tablets in landscape: tighten before the accordion kicks in. */
@media (max-width: 1100px) {
  .mega-panel {
    padding: 24px 0 28px;
  }
  .mega-panel-inner {
    padding: 0 16px;
    gap: 22px 26px;
  }
}
.mega-col h4 {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #0c7a43;
  margin: 0 0 12px;
}
.mega-col a {
  display: block;
  font-size: 13.5px;
  color: #16241c;
  text-decoration: none;
  padding: 7px 6px 7px 0;
  border-radius: 6px;
  transition: color 0.15s ease, padding-left 0.15s ease;
}
.mega-col a:hover {
  color: #0c7a43;
  padding-left: 6px;
}

.mega-promo {
  margin-top: 16px;
  max-width: 320px;
  background: #eaf4ee;
  border-radius: 8px;
  padding: 16px;
}
.mega-promo p {
  font-size: 12.5px;
  color: #384a3f;
  margin: 0 0 10px;
  line-height: 1.5;
}
.mega-promo-btn {
  display: inline-block;
  background: #ff5a3c;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
}
.mega-promo-btn:hover { background: #e14b30; }

/* =========================================================
   BURGER → X (close) ANIMATION
   Your .burger CSS already exists — this just adds the
   transform states for the .active class the JS already
   applies when the menu opens. Nothing here overrides your
   .burger base styles (size, spacing, colors).
   ========================================================= */
.burger span {
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   MOBILE: bigger, clearer "About Us" open/close toggle
   4px padding is too small a tap target on a phone, and the
   plain ▾ character is easy to miss as interactive. This gives
   it a visible circular button that fills in when open, on
   top of the caret rotation that was already there.
   ========================================================= */
@media (max-width: 900px) {
  .mega-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f2f2f2;
    font-size: 15px;
  }
  .has-mega.is-open .mega-toggle {
    background: #eaf4ee;
    color: #0c7a43;
  }
}

/* ---------- mobile: accordion instead of hover panel (900px, matches your CSS) ---------- */
@media (max-width: 900px) {
  .mega-panel {
    position: static;
    width: 100%;
    max-width: none;
    /* Undo the desktop viewport cap — the accordion flows with the menu. */
    max-height: none;
    overflow: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-top: 1px solid #e5e5e5;
    border-radius: 0;
    margin-top: 10px;
    padding: 14px 4px 6px;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .mega-panel::before { display: none; }
  .has-mega.is-open .mega-panel { display: block; }
  .mega-panel-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .topbar-menu-item.has-mega {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
}


/* ================= TOP BAR (primary) ================= */
  .topbar {
    /* Containing block for .mega-panel, so the panel spans the header width. */
    position: relative;
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    transition: max-height .35s ease, opacity .35s ease, padding .35s ease;
    overflow: hidden;
    max-height: 80px;
  }
  .topbar.hide {
    max-height: 0;
    opacity: 0;
    border-bottom: none;
  }
  .topbar-inner {
    max-width: 1400px;
    margin-inline: auto;
    padding: 0 24px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .topbar-logo img { height: 62px; }
  .topbar-menu {display: flex;align-items: center;gap: 2rem;font-weight: 500;font-size: 14px;}
  .topbar-actions { display: flex; align-items: center; gap: 1rem; }
 .topbar-menu a{text-decoration:none;color:#000;}
  /* ================= SUB BAR (secondary) ================= */
  .subbar {
    position: relative;     /* sits normally under topbar at page load */
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    z-index: 55;
  }
  .subbar.fixed {
    position: fixed;
    top: 0; left: 0; right: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
    animation: slideDown .35s ease;
  }
  .subbar-actions .icon-link{text-decoration: none;color: #000;}
  .subbar.fixed .subbar-actions{display: block;}
  .subbar.fixed .subbar-logo img{display: block;}
  .subbar-actions{display: none;}
.subbar.fixed .subbar-inner{display: flex;
    align-items: center;
    justify-content: space-between;}

  @keyframes slideDown {
    from { transform: translateY(-12px); opacity: 0; }
    to   { transform: translateY(0);     opacity: 1; }
  }
  .subbar-inner {
    max-width: 1400px;
    margin-inline: auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .subbar-logo {display: flex;align-items: center;gap: .8rem;color: #000;text-decoration: none;}
  .subbar-logo img {height: 36px;display: none;}
  .subbar-title {
    font-weight: 700;
    font-size: .95rem;
    padding-left: .8rem;
    border-left: 1px solid #ddd;
    margin-right: 30px;
  }
  .subbar-menu { display: flex; align-items: center; gap: 1.5rem; font-size: .88rem; font-weight: 600; }
  .subbar-actions { display: none; align-items: center; gap: .9rem; }
.subbar-menu a{text-decoration:none;color:#000;}
  /* ================= BURGER (mobile) ================= */
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
  }
  .burger span { display: block; height: 2px; background: #222; border-radius: 2px; }

  @media (max-width: 900px) {
    .topbar-menu, .subbar-menu {
      display: none;
      position: absolute;
      top: 100%; left: 0; right: 0;
      background: #fff;
      flex-direction: column;
      align-items: flex-start;
      padding: 1rem 24px;
      border-bottom: 1px solid #e5e5e5;
      gap: 1rem;
    }
    .topbar-menu.open, .subbar-menu.open {display: flex;z-index: +9999;}
    .topbar-inner, .subbar-inner { position: relative; }
    .topbar-actions .btn, .subbar-actions .btn { display: none; }
    .burger { display: flex; }
    .subbar-title { display: none; }
  }
  /* ================= SECTION 1: Info Cards ================= */
  
.info-cards{
  background:#f6f7f6;
  padding:70px 24px;
}
.info-cards-wrap{
  max-width:1400px;
  margin-inline:auto;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:22px;
}
.info-card{
  display:flex;
  flex-direction:column;
  background:#fff;
  border-radius:14px;
  overflow:hidden;
  text-decoration:none;
  color:inherit;
  border:1px solid #eaeaea;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.info-card:hover{
  transform:translateY(-6px);
  box-shadow:0 14px 30px -12px rgba(18,169,92,.28);
  border-color:#12a95c;
}
.info-card-img{
  height:150px;
  overflow:hidden;
}
.info-card-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .4s ease;
}
.info-card:hover .info-card-img img{
  transform:scale(1.06);
}
.info-card h3{
  font-size:1.02rem;
  font-weight:800;
  color:#1c2b22;
  margin:18px 20px 8px;
}
.info-card p{
  font-size:.86rem;
  line-height:1.5;
  color:#5b6a61;
  margin:0 20px 22px;
}

@media (max-width:1100px){
  .info-cards-wrap{ grid-template-columns:repeat(3,1fr); }
}
@media (max-width:700px){
  .info-cards-wrap{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:480px){
  .info-cards-wrap{ grid-template-columns:1fr; }
}


/* ================= SECTION 2: Journal Meta ================= */
.journal-meta{
  background:#fffdf6;
  padding:70px 24px;
  border-top:1px solid #eee6cf;
}
.journal-meta-wrap{
  max-width:1400px;
  margin-inline:auto;
  display:grid;
  grid-template-columns:1.3fr 1fr;
  gap:60px;
}
.meta-eyebrow{
  display:block;
  font-size:.74rem;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:#12a95c;
  margin-bottom:16px;
}
.meta-lead{
  font-size:1.15rem;
  line-height:1.6;
  color:#1c2b22;
  margin-bottom:16px;
}
.meta-body{
  font-size:.95rem;
  line-height:1.6;
  color:#5b6a61;
  margin-bottom:26px;
}
.meta-link{
  color:#ff5a3c;
  font-weight:700;
  text-decoration:none;
}
.meta-link:hover{ text-decoration:underline; }
.meta-link-underline{
  display:inline-block;
  margin-top:18px;
  font-size:.9rem;
  color:#12a95c;
}

.btn-special{
  display:inline-block;
  background:#ff5a3c;
  color:#fff;
  font-weight:700;
  font-size:.9rem;
  padding:.85em 1.6em;
  border-radius:9px;
  text-decoration:none;
  transition:background .2s ease;
}
.btn-special:hover{ background:#e14a2d; }

.meta-col-details{
  border-top:1px solid #eee6cf;
  padding-top:26px;
}
.meta-list{ margin:0; }
.meta-row{
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding:11px 0;
  border-bottom:1px solid #f0ebd8;
  font-size:.88rem;
}
.meta-row dt{
  font-weight:700;
  color:#1c2b22;
  text-transform:uppercase;
  font-size:.76rem;
  letter-spacing:.04em;
  white-space:nowrap;
}
.meta-row dd{
  margin:0;
  color:#5b6a61;
  text-align:right;
}

@media (max-width:900px){
  .journal-meta-wrap{ grid-template-columns:1fr; gap:40px; }
  .meta-col-details{ border-top:1px solid #eee6cf; }
}

/* ================= SHARED ================= */
.topics-section, .articles-section, .editors-section{
  background:#f6f7f6;
  padding:60px 24px;
}
.topics-wrap, .articles-wrap, .editors-wrap{
  max-width:1400px;
  margin-inline:auto;
}
.section-head{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:6px;
}
.section-head h2{
  font-size:1.7rem;
  font-weight:800;
  color:#1c2b22;
  display:flex;
  align-items:center;
  gap:14px;
}
.see-all{
  font-size:.85rem;
  font-weight:700;
  color:#12a95c;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  gap:4px;
}
.see-all .arrow{ transition:transform .2s ease; }
.see-all:hover .arrow{ transform:translateX(3px); }

.tab-row{
  display:flex;
  gap:24px;
  margin:22px 0 26px;
  border-bottom:1px solid #e2e2e2;
}
.tab{
  background:none;
  border:none;
  padding:0 0 12px;
  font-size:.92rem;
  font-weight:600;
  color:#8a938c;
  cursor:pointer;
  border-bottom:2px solid transparent;
}
.tab.active{
  color:#1c2b22;
  border-bottom-color:#12a95c;
}

.card-foot{
  display:flex;
  align-items:center;
  gap:6px;
  font-size:.78rem;
  color:#8a938c;
  border-top:1px solid #eee;
  padding-top:14px;
  margin-top:auto;
}
.dot{ color:#c7cdc9; }


/* ================= RESEARCH TOPICS ================= */
.topics-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}
.topic-card{
  background:#fff;
  border-radius:14px;
  overflow:hidden;
  border:1px solid #eaeaea;
  text-decoration:none;
  color:inherit;
  display:flex;
  flex-direction:column;
  transition:transform .25s ease, box-shadow .25s ease;
}
.topic-card:hover{
  transform:translateY(-6px);
  box-shadow:0 14px 30px -12px rgba(18,169,92,.28);
}
.topic-img{
  position:relative;
  height:160px;
}
.topic-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.badge{
  position:absolute;
  top:12px;
  left:12px;
  background:rgba(255,255,255,.92);
  color:#12a95c;
  font-size:.66rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.05em;
  padding:5px 10px;
  border-radius:5px;
}
.topic-card h3{
  font-size:1rem;
  font-weight:700;
  line-height:1.4;
  color:#1c2b22;
  margin:16px 18px 10px;
}
.topic-card .authors{
  font-size:.8rem;
  color:#8a938c;
  margin:0 18px;
  flex-grow:1;
}
.topic-card .card-foot{ margin:14px 18px 18px; padding-top:12px; }


/* ================= ARTICLES ================= */
.articles-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}
.article-card{
  background:#fff;
  border-radius:14px;
  padding:20px;
  border:1px solid #eaeaea;
  text-decoration:none;
  color:inherit;
  display:flex;
  flex-direction:column;
  transition:transform .25s ease, box-shadow .25s ease;
}
.article-card:hover{
  transform:translateY(-6px);
  box-shadow:0 14px 30px -12px rgba(18,169,92,.28);
}
.article-card .tag{
  font-size:.68rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.05em;
  color:#ff5a3c;
}
.article-card .date{
  display:block;
  font-size:.76rem;
  color:#8a938c;
  margin-top:4px;
  margin-bottom:12px;
}
.article-card h3{
  font-size:1rem;
  font-weight:700;
  line-height:1.4;
  color:#1c2b22;
  margin-bottom:12px;
}
.article-card .authors{
  font-size:.78rem;
  color:#8a938c;
  line-height:1.5;
  flex-grow:1;
  margin-bottom:16px;
}
.article-card .card-foot{
  flex-direction:column;
  align-items:flex-start;
  gap:3px;
}
.article-card .journal-name{ font-weight:700; color:#1c2b22; }


/* ================= EDITORS ================= */
.editors-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
  margin-top:24px;
}
.editor-card{
  background:#fff;
  border-radius:14px;
  padding:28px 20px;
  border:1px solid #eaeaea;
  text-align:center;
  transition:transform .25s ease, box-shadow .25s ease;
}
.editor-card:hover{
  transform:translateY(-6px);
  box-shadow:0 14px 30px -12px rgba(18,169,92,.28);
}
.editor-photo{
  width:76px;
  height:76px;
  border-radius:50%;
  overflow:hidden;
  margin:0 auto 16px;
  border:3px solid #f0f5f1;
}
.editor-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.editor-card h3{
  font-size:1rem;
  font-weight:800;
  color:#1c2b22;
  margin-bottom:6px;
}
.editor-org{
  font-size:.83rem;
  color:#5b6a61;
  margin-bottom:2px;
}
.editor-loc{
  font-size:.8rem;
  color:#8a938c;
  margin-bottom:16px;
}
.editor-divider{
  height:1px;
  background:#eee;
  margin-bottom:16px;
}
.editor-role{
  font-size:.8rem;
  color:#1c2b22;
  font-weight:600;
  line-height:1.5;
}


/* ================= RESPONSIVE ================= */
@media (max-width:1100px){
  .topics-grid, .articles-grid, .editors-grid{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:560px){
  .topics-grid, .articles-grid, .editors-grid{ grid-template-columns:1fr; }
  .section-head h2{ font-size:1.4rem; }
}


/* ================= JOURNAL HERO ================= */
.journal-hero{
  position:relative;
  min-height:340px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
}
.hero-bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 30% 30%, rgba(18,169,92,.55), transparent 55%),
    radial-gradient(circle at 75% 60%, rgba(255,90,60,.35), transparent 55%),
    linear-gradient(120deg, #0a2e1f 0%, #12a95c 45%, #0a2e1f 100%);
  background-size:200% 200%;
  animation:heroShift 12s ease-in-out infinite;
}
.hero-bg::after{
  content:"";
  position:absolute;
  inset:0;
  background-image:repeating-linear-gradient(
    90deg,
    rgba(255,255,255,.05) 0px,
    rgba(255,255,255,.05) 1px,
    transparent 1px,
    transparent 6px
  );
  mix-blend-mode:overlay;
}
@keyframes heroShift{
  0%   { background-position:0% 50%; }
  50%  { background-position:100% 50%; }
  100% { background-position:0% 50%; }
}
.hero-content{
  position:relative;
  z-index:2;
  padding:70px 40px 90px;
  max-width:1400px;
  margin-inline:auto;
  width:100%;
}
.hero-content h1{
  color:#fff;
  font-size:2.6rem;
  font-weight:800;
  text-shadow:0 2px 14px rgba(0,0,0,.25);
}

.hero-stats{
  position:relative;
  z-index:2;
  display:flex;
  max-width:1400px;
  margin-inline:auto;
  width:100%;
}
.stat{
  flex:1;
  background:rgba(10,20,15,.55);
  backdrop-filter:blur(6px);
  padding:20px 28px;
  border-right:1px solid rgba(255,255,255,.12);
}
.stat-num{
  display:block;
  color:#fff;
  font-size:1.4rem;
  font-weight:800;
}
.stat-label{
  display:block;
  color:rgba(255,255,255,.75);
  font-size:.8rem;
  margin-top:2px;
}
.stat-cta{
  flex:1;
  background:#ff5a3c;
  color:#fff;
  font-weight:700;
  font-size:1rem;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  text-decoration:none;
  transition:background .2s ease;
}
.stat-cta:hover{ background:#e14a2d; }
.stat-cta .arrow{ transition:transform .2s ease; }
.stat-cta:hover .arrow{ transform:translateX(4px); }

@media (max-width:800px){
  .hero-stats{ flex-wrap:wrap; }
  .stat, .stat-cta{ flex:1 1 50%; }
  .hero-content h1{ font-size:1.9rem; }
}


/* ================= TOPICS COVERED ================= */
.topics-covered{
  background:#fffdf6;
  padding:60px 24px;
  border-top:1px solid #eee6cf;
}
.topics-covered-wrap{
  max-width:1400px;
  margin-inline:auto;
}
.topics-covered h2{
  font-size:1.15rem;
  font-weight:800;
  letter-spacing:.03em;
  text-transform:uppercase;
  color:#1c2b22;
  margin-bottom:24px;
}
.tag-row{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:14px;
}
.topic-tag{
  background:#f3ecc9;
  color:#5b6a20;
  font-size:.88rem;
  font-weight:600;
  padding:.75em 1.3em;
  border-radius:8px;
  white-space:nowrap;
  transition:background .2s ease, transform .2s ease;
  cursor:default;
}
.topic-tag:hover{
  background:#12a95c;
  color:#fff;
  transform:translateY(-2px);
}
.btn-show-more{
  margin-top:12px;
  background:#ff5a3c;
  color:#fff;
  border:none;
  font-weight:700;
  font-size:.9rem;
  padding:.85em 1.8em;
  border-radius:9px;
  cursor:pointer;
  transition:background .2s ease;
}
.btn-show-more:hover{ background:#e14a2d; }

@media (max-width:600px){
  .topic-tag{ font-size:.82rem; padding:.65em 1.1em; }
}

/* ================= EDITOR IN CHIEF ================= */
.eic-section{
  background:#fffdf6;
  padding:60px 24px 30px;
}
.eic-wrap{
  max-width:1400px;
  margin-inline:auto;
}
.eic-section h2{
  font-size:1.1rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.03em;
  color:#1c2b22;
  margin-bottom:22px;
}
.eic-card{
  display:flex;
  align-items:center;
  gap:24px;
  background:linear-gradient(120deg,#12331f,#0e2818);
  border-radius:12px;
  overflow:hidden;
  cursor:pointer;
  padding:20px 30px;
  transition:transform .25s ease, box-shadow .25s ease;
}
.eic-card:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 34px -14px rgba(18,169,92,.4);
}
.eic-photo{
  width:90px;
  height:90px;
  border-radius:10px;
  overflow:hidden;
  flex-shrink:0;
  border:2px solid rgba(255,255,255,.15);
}
.eic-photo img{ width:100%; height:100%; object-fit:cover; }
.eic-info{ flex-grow:1; }
.eic-info h3{
  color:#fff;
  font-size:1.2rem;
  font-weight:800;
  margin-bottom:6px;
}
.eic-info p{
  color:rgba(255,255,255,.72);
  font-size:.85rem;
  line-height:1.5;
}
.eic-icons{
  display:flex;
  gap:12px;
  flex-shrink:0;
}
.ic-orcid, .ic-globe{
  width:32px;
  height:32px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:.8rem;
  font-weight:700;
  color:#fff;
}
.ic-orcid{ background:#a6ce39; }
.ic-globe{ background:rgba(255,255,255,.15); }

/* ---- Modal popup ---- */
.eic-modal{
  position:fixed;
  inset:0;
  z-index:200;
  display:none;
  align-items:center;
  justify-content:center;
}
.eic-modal.open{ display:flex; }
.eic-modal-overlay{
  position:absolute;
  inset:0;
  background:rgba(10,20,15,.6);
  backdrop-filter:blur(3px);
}
.eic-modal-box{
  position:relative;
  background:#fff;
  border-radius:16px;
  max-width:520px;
  width:92%;
  max-height:85vh;
  overflow-y:auto;
  padding:34px;
  animation:modalIn .25s ease;
}
@keyframes modalIn{
  from{ opacity:0; transform:translateY(16px) scale(.97); }
  to{ opacity:1; transform:translateY(0) scale(1); }
}
.eic-modal-close{
  position:absolute;
  top:16px; right:16px;
  background:#f2f2f2;
  border:none;
  width:32px; height:32px;
  border-radius:50%;
  cursor:pointer;
  font-size:.9rem;
  color:#444;
}
.eic-modal-close:hover{ background:#e6e6e6; }
.eic-modal-head{
  display:flex;
  align-items:center;
  gap:18px;
  margin-bottom:22px;
}
.eic-modal-head img{
  width:70px; height:70px;
  border-radius:10px;
  object-fit:cover;
}
.eic-modal-head h3{
  font-size:1.15rem;
  font-weight:800;
  color:#1c2b22;
}
.eic-modal-role{
  font-size:.78rem;
  font-weight:700;
  color:#12a95c;
  text-transform:uppercase;
  letter-spacing:.04em;
}
.eic-modal-body h4{
  font-size:.78rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.04em;
  color:#8a938c;
  margin:18px 0 8px;
}
.eic-modal-body h4:first-child{ margin-top:0; }
.eic-modal-body ul{
  padding-left:18px;
  color:#3f4a44;
  font-size:.9rem;
  line-height:1.6;
}
.eic-modal-body p{
  font-size:.9rem;
  line-height:1.6;
  color:#3f4a44;
}
.eic-modal-links{
  display:flex;
  gap:20px;
  margin-top:20px;
  padding-top:18px;
  border-top:1px solid #eee;
}
.eic-modal-links a{
  font-size:.85rem;
  font-weight:700;
  color:#12a95c;
  text-decoration:none;
}
.eic-modal-links a:hover{ text-decoration:underline; }


/* ================= JOIN US TODAY ================= */
.join-section{
  background:#fffdf6;
  padding:0px;
  background: linear-gradient(120deg, #ff5a3c, #ffc233);
  /* background-size:220% 220%; */
  animation:heroShift 14s ease-in-out infinite;
}
.join-banner{
  max-width: 80%;
  margin-inline:auto;
  position:relative;
  border-radius:0px;
  overflow:hidden;
  align-items:center;
  justify-content:space-between;
  padding: 50px 30px;
}
.join-container-part{display:flex;gap: 20px;justify-content: space-between;}
@keyframes heroShift{
  0%{ background-position:0% 50%; }
  50%{ background-position:100% 50%; }
  100%{ background-position:0% 50%; }
}
.join-banner h2{
  color:#fff;
  font-size:1.9rem;
  font-weight:700;
  font-style:italic;
}
.join-btn{
  background: #12a95c !important;
  color:#fff;
  font-weight:700;
  font-size: 15px;
  padding:.9em 1.8em;
  border-radius:8px;
  text-decoration:none;
  transition:background .2s ease;
  white-space:nowrap;
  box-shadow: 0 8px 20px -8px rgba(18, 169, 92, .6);
}
.join-btn:hover{ background:#e14a2d; }

@media (max-width:600px){
  .join-banner{ flex-direction:column; gap:18px; text-align:center; padding:30px 24px; }
}


/* ================= VOLUMES ================= */
.volumes-section{
  background:#f6f7f6;
  padding:50px 24px 70px;
}
.volumes-wrap{ max-width:1400px; margin-inline:auto; }
.section-head{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:24px;
}
.section-head h2{
  font-size:1.7rem;
  font-weight:800;
  color:#1c2b22;
  display:flex;
  align-items:center;
  gap:14px;
}
.see-all{
  font-size:.85rem;
  font-weight:700;
  color:#12a95c;
  display:inline-flex;
  align-items:center;
  gap:4px;
}
.volumes-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}
.volume-card{
  background:#fff;
  border:1px solid #eaeaea;
  border-radius:12px;
  padding:24px;
  display:flex;
  flex-direction:column;
  gap:14px;
  text-decoration:none;
  color:#1c2b22;
  font-weight:700;
  transition:transform .25s ease, box-shadow .25s ease;
}
.volume-card:hover{
  transform:translateY(-5px);
  box-shadow:0 14px 30px -14px rgba(18,169,92,.3);
}
.vol-arrow{
  color:#12a95c;
  font-size:1.1rem;
  transition:transform .2s ease;
}
.volume-card:hover .vol-arrow{ transform:translateX(4px); }

@media (max-width:900px){
  .volumes-grid{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:480px){
  .volumes-grid{ grid-template-columns:1fr; }
}


/***** single article ******/
.jwr-art-scope {
    --jwr-green: #12a95c;
    --jwr-green-dark: #0c7a43;
    --jwr-coral: #ff5a3c;
    --jwr-ink: #16241c;
    --jwr-slate: #5c6b63;
    --jwr-paper: #fbfaf5;
    --jwr-sage: #eaf4ee;
    --jwr-line: #dbe4dd;
    --jwr-serif: 'Source Serif 4', Georgia, 'Times New Roman', serif;
    --jwr-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    font-family: var(--jwr-sans);
    color: var(--jwr-ink);
    background: var(--jwr-paper);
    padding: 56px 24px 80px;
    box-sizing: border-box;
  }
  .jwr-art-scope *, .jwr-art-scope *::before, .jwr-art-scope *::after { box-sizing: border-box; }
.jwr-art-figures-card h3 {
  display: flex;
  align-items: center;
  gap: 8px;
}
.jwr-art-figicon { font-size: 13px; }

/* the internally scrollable viewport */
.jwr-art-fig-scroll {
  max-height: 340px;
  overflow-y: auto;
  padding-right: 6px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  scroll-behavior: smooth;
}

/* thin, unobtrusive scrollbar */
.jwr-art-fig-scroll::-webkit-scrollbar { width: 5px; }
.jwr-art-fig-scroll::-webkit-scrollbar-track { background: transparent; }
.jwr-art-fig-scroll::-webkit-scrollbar-thumb {
  background: var(--jwr-line);
  border-radius: 10px;
}
.jwr-art-fig-scroll::-webkit-scrollbar-thumb:hover { background: var(--jwr-green); }
.jwr-art-fig-scroll {
  scrollbar-width: thin;
  scrollbar-color: var(--jwr-line) transparent;
}

.jwr-art-fig-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.jwr-art-fig-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--jwr-slate);
}

.jwr-art-fig-thumb {
  border: 1px solid var(--jwr-line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--jwr-sage);
}
.jwr-art-fig-thumb img {
  display: block;
  width: 100%;
  height: auto;
}

.jwr-art-fig-link {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--jwr-green-dark);
  text-decoration: none;
  align-self: flex-start;
}
.jwr-art-fig-link:hover { text-decoration: underline; }
  .jwr-art-wrap {
    max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr) 320px;
  gap: 40px;
  align-items: start;
  }
.jwr-art-sidebar-left {
  position: sticky;
  top: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
/* responsive: stack on smaller screens */
@media (max-width: 1100px) {
  .jwr-art-wrap {
    grid-template-columns: 1fr;
  }
  .jwr-art-sidebar-left,
  .jwr-art-sidebar {
    position: static;
  }
}
  /* ---------- eyebrow / article type strip ---------- */
  .jwr-art-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
  }
  .jwr-art-type {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--jwr-ink);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 3px;
  }
  .jwr-art-type::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--jwr-coral);
    display: inline-block;
  }
  .jwr-art-section-tag {
    font-size: 13px;
    color: var(--jwr-slate);
  }
  .jwr-art-section-tag strong { color: var(--jwr-green-dark); font-weight: 600; }

  /* ---------- title & byline ---------- */
  .jwr-art-title {
    font-family: var(--jwr-serif);
    font-size: clamp(28px, 3.4vw, 42px);
    line-height: 1.18;
    font-weight: 600;
    margin: 0 0 22px;
    max-width: 880px;
  }

  .jwr-art-authors {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 4px;
    margin-bottom: 6px;
    font-size: 15.5px;
  }
  .jwr-art-author {
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
    padding-right: 2px;
  }
  .jwr-art-author a {
    color: var(--jwr-green-dark);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
  }
  .jwr-art-author a:hover { border-bottom-color: var(--jwr-green-dark); }
  .jwr-art-author sup {
    color: var(--jwr-coral);
    font-weight: 700;
    font-size: 10px;
    margin-left: 1px;
  }
  .jwr-art-author:not(:last-child)::after { content: ","; color: var(--jwr-ink); }

  .jwr-art-affils {
    margin: 10px 0 28px;
    padding: 0;
    list-style: none;
    font-size: 13px;
    color: var(--jwr-slate);
    line-height: 1.7;
  }
  .jwr-art-affils li { display: flex; gap: 8px; }
  .jwr-art-affils sup { color: var(--jwr-coral); font-weight: 700; font-size: 10px; min-width: 12px; }

  /* ---------- manuscript timeline (signature element) ---------- */
  .jwr-art-timeline {
    background: var(--jwr-sage);
    border: 1px solid var(--jwr-line);
    border-radius: 10px;
    padding: 22px 26px;
    margin: 30px 0 34px;
  }
  .jwr-art-timeline-label {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--jwr-green-dark);
    font-weight: 700;
    margin-bottom: 16px;
  }
  .jwr-art-track {
    position: relative;
    display: flex;
    justify-content: space-between;
  }
  .jwr-art-track::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 7px;
    right: 7px;
    height: 2px;
    background: var(--jwr-line);
  }
  .jwr-art-track-fill {
    position: absolute;
    top: 7px;
    left: 7px;
    height: 2px;
    background: var(--jwr-green);
    width: 100%;
  }
  .jwr-art-node {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    text-align: center;
  }
  .jwr-art-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--jwr-green);
    border: 3px solid var(--jwr-sage);
    box-shadow: 0 0 0 1px var(--jwr-green);
    z-index: 1;
  }
  .jwr-art-node:last-child .jwr-art-dot { background: var(--jwr-coral); box-shadow: 0 0 0 1px var(--jwr-coral); }
  .jwr-art-node-label { font-size: 11.5px; font-weight: 700; color: var(--jwr-ink); }
  .jwr-art-node-date { font-size: 11.5px; color: var(--jwr-slate); }

  /* ---------- abstract card ---------- */
  .jwr-art-abstract {
    border-top: 3px solid var(--jwr-green);
    background: #fff;
    padding: 30px 32px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(22,36,28,0.06);
    margin-bottom: 30px;
  }
  .jwr-art-abstract h2 {
    font-family: var(--jwr-serif);
    font-size: 20px;
    margin: 0 0 14px;
    color: var(--jwr-green-dark);
  }
  .jwr-art-abstract p {
    font-size: 15.5px;
    line-height: 1.75;
    color: #2b3a32;
    margin: 0 0 12px;
  }
  .jwr-art-abstract p:last-child { margin-bottom: 0; }
  .jwr-art-abstract strong.jwr-lead { color: var(--jwr-ink); }

  /* ---------- keywords ---------- */
  .jwr-art-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 24px 0 34px;
  }
  .jwr-art-keywords span.jwr-kw-label {
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--jwr-slate);
    align-self: center;
    margin-right: 4px;
  }
  .jwr-art-chip {
    font-size: 12.5px;
    padding: 6px 13px;
    border-radius: 20px;
    border: 1px solid var(--jwr-green);
    color: var(--jwr-green-dark);
    background: rgba(18,169,92,0.06);
  }

  /* ---------- info grid: correspondence / copyright / disclaimer ---------- */
  .jwr-art-infogrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
  }
  .jwr-art-infobox {
    padding: 18px 20px;
    background: var(--jwr-sage);
    border-radius: 8px;
    font-size: 13px;
    color: #3a473f;
    line-height: 1.6;
  }
  .jwr-art-infobox h4 {
    margin: 0 0 6px;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--jwr-coral);
    font-weight: 700;
  }
  .jwr-art-disclaimer {
    grid-column: 1 / -1;
    background: #fff;
    border: 1px dashed var(--jwr-line);
  }

  /* =========================== SIDEBAR =========================== */
  .jwr-art-sidebar { position: sticky; top: 24px; display: flex; flex-direction: column; gap: 18px; }

  .jwr-art-card {
    background: #fff;
    border: 1px solid var(--jwr-line);
    border-radius: 10px;
    padding: 20px 22px;
  }
  .jwr-art-card h3 {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--jwr-green-dark);
    margin: 0 0 14px;
    font-weight: 700;
  }

  .jwr-art-outline { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
  .jwr-art-outline a {
    font-size: 13.5px;
    color: var(--jwr-ink);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
  }
  .jwr-art-outline a::before {
    content: "";
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--jwr-line);
  }
  .jwr-art-outline a:hover { color: var(--jwr-green-dark); }
  .jwr-art-outline a:hover::before { background: var(--jwr-coral); }

  .jwr-art-share-row { display: flex; gap: 10px; }
  .jwr-art-share-row a {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid var(--jwr-line);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 700;
    color: var(--jwr-slate);
    text-decoration: none;
  }
  .jwr-art-share-row a:hover { border-color: var(--jwr-green); color: var(--jwr-green-dark); background: var(--jwr-sage); }

  .jwr-art-notify p { font-size: 12.5px; color: var(--jwr-slate); margin: 0 0 12px; line-height: 1.6; }
  .jwr-art-notify-form { display: flex; gap: 8px; }
  .jwr-art-notify-form input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid var(--jwr-line);
    border-radius: 6px;
    font-size: 13px;
    font-family: var(--jwr-sans);
  }
  .jwr-art-notify-form button {
    background: var(--jwr-coral);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0 16px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
  }
  .jwr-art-notify-form button:hover { background: #e14b30; }

  .jwr-art-metrics-btn {
    display: block;
    text-align: center;
    background: var(--jwr-ink);
    color: #fff;
    text-decoration: none;
    padding: 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
  }
  .jwr-art-metrics-btn:hover { background: var(--jwr-green-dark); }

  .jwr-art-cite-box {
    background: var(--jwr-sage);
    border-radius: 8px;
    padding: 20px 22px;
  }
  .jwr-art-cite-box p { font-size: 12px; color: var(--jwr-slate); margin: 0 0 10px; }
  .jwr-art-cite-actions { display: flex; gap: 8px; flex-wrap: wrap; }
  .jwr-art-cite-actions button {
    font-size: 12px;
    padding: 8px 13px;
    border-radius: 20px;
    border: 1px solid var(--jwr-green);
    background: #fff;
    color: var(--jwr-green-dark);
    font-weight: 600;
    cursor: pointer;
  }
  .jwr-art-cite-actions button:hover { background: var(--jwr-green); color: #fff; }

  /* ---------- published-in card ---------- */
  .jwr-art-journal-cover {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 14px;
    background: linear-gradient(135deg, var(--jwr-green-dark), var(--jwr-green) 45%, var(--jwr-coral));
    position: relative;
  }
  .jwr-art-journal-cover::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-radial-gradient(circle at 30% 40%, rgba(255,255,255,0.18) 0, rgba(255,255,255,0.18) 2px, transparent 3px, transparent 14px);
  }
  .jwr-art-journal-name {
    font-family: var(--jwr-serif);
    font-size: 16px;
    font-weight: 600;
    color: var(--jwr-ink);
    margin: 0 0 2px;
  }
  .jwr-art-journal-sub {
    font-size: 12.5px;
    color: var(--jwr-slate);
    margin: 0;
  }

  /* ---------- research topic card ---------- */
  .jwr-art-topic-card h3 { margin-bottom: 10px; }
  .jwr-art-topic-title {
    font-family: var(--jwr-serif);
    font-size: 15.5px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--jwr-ink);
    margin: 0 0 10px;
  }
  .jwr-art-topic-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #fff;
    background: var(--jwr-green);
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 14px;
  }
  .jwr-art-topic-stats {
    display: flex;
    gap: 16px;
    font-size: 12.5px;
    color: var(--jwr-slate);
    border-top: 1px solid var(--jwr-line);
    padding-top: 12px;
  }
  .jwr-art-topic-stats strong { color: var(--jwr-ink); font-weight: 700; }

  /* ---------- reviewers accordion row ---------- */
  .jwr-art-accordion {
    background: #fff;
    border: 1px solid var(--jwr-line);
    border-radius: 10px;
    overflow: hidden;
  }
  .jwr-art-accordion-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    padding: 16px 20px;
    font-family: var(--jwr-sans);
    font-size: 13.5px;
    font-weight: 700;
    color: var(--jwr-ink);
    cursor: pointer;
    text-align: left;
  }
  .jwr-art-accordion-toggle .jwr-art-chevron {
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--jwr-sage);
    color: var(--jwr-green-dark);
    display: flex; align-items: center; justify-content: center;
    font-size: 11px;
    transition: transform 0.2s ease;
    flex: none;
  }
  .jwr-art-accordion[open] .jwr-art-chevron { transform: rotate(90deg); }
  .jwr-art-accordion-body {
    padding: 0 20px 18px;
    font-size: 13px;
    color: var(--jwr-slate);
    line-height: 1.7;
  }
  .jwr-art-accordion-body a { color: var(--jwr-green-dark); text-decoration: none; font-weight: 600; }
  .jwr-art-accordion-body a:hover { text-decoration: underline; }


.jwr-about-scope {
    --jwr-green: #12a95c;
    --jwr-green-dark: #0c7a43;
    --jwr-coral: #ff5a3c;
    --jwr-ink: #16241c;
    --jwr-slate: #5c6b63;
    --jwr-paper: #fbfaf5;
    --jwr-sage: #eaf4ee;
    
    --jwr-line: #dbe4dd;
    --jwr-serif: 'Source Serif 4', Georgia, 'Times New Roman', serif;
    --jwr-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    font-family: var(--jwr-sans);
    color: var(--jwr-ink);
    background: var(--jwr-paper);
    padding: 56px 24px 90px;
    box-sizing: border-box;
  }
  .jwr-about-scope *, .jwr-about-scope *::before, .jwr-about-scope *::after { box-sizing: border-box; }

  .jwr-about-wrap {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 56px;
    align-items: start;
  }

  /* ================= LEFT MENU ================= */
  .jwr-about-nav {
    position: sticky;
    top: 24px;
    display: flex;
    flex-direction: column;
    gap: 26px;
  }
  .jwr-about-nav-group-title {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    /* Same green as the header mega-menu category headings, so the About page
       and the CMS pages read as one system. */
    color: var(--jwr-green-dark);
    font-weight: 700;
    margin-bottom: 10px;
  }
  .jwr-about-nav-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
  .jwr-about-nav-list a {
    display: block;
    padding: 8px 12px;
    font-size: 13.5px;
    color: var(--jwr-slate);
    text-decoration: none;
    border-left: 2px solid transparent;
    border-radius: 0 6px 6px 0;
  }
  .jwr-about-nav-list a:hover { background: var(--jwr-sage); color: var(--jwr-green-dark); }
  .jwr-about-nav-list a.is-active {
    color: var(--jwr-green-dark);
    font-weight: 700;
    border-left-color: var(--jwr-green);
    background: var(--jwr-sage);
  }

  /* ================= MAIN ================= */
  .jwr-about-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--jwr-green-dark);
    margin-bottom: 14px;
  }
  .jwr-about-eyebrow::before {
    content: "";
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--jwr-coral);
  }

  .jwr-about-h1 {
    font-family: var(--jwr-serif);
    font-size: clamp(28px, 3.4vw, 40px);
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 18px;
  }

  .jwr-about-lede {
    font-size: 17px;
    line-height: 1.7;
    color: #2b3a32;
    max-width: 760px;
    margin: 0 0 40px;
  }
  .jwr-about-lede strong { color: var(--jwr-ink); }

  .jwr-about-scope h2 {
    font-family: var(--jwr-serif);
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 16px;
  }

  .jwr-about-scope p.jwr-about-body {
    font-size: 15px;
    line-height: 1.75;
    color: #384a3f;
    max-width: 760px;
    margin: 0 0 16px;
  }

  .jwr-about-section { margin-bottom: 52px; }

  /* ---------- values grid ---------- */
  .jwr-about-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
  }
  .jwr-about-value {
    background: #fff;
    border: 1px solid var(--jwr-line);
    border-top: 3px solid var(--jwr-green);
    border-radius: 6px;
    padding: 20px;
  }
  .jwr-about-value-num {
    font-family: var(--jwr-serif);
    font-size: 13px;
    color: var(--jwr-coral);
    font-weight: 700;
    margin-bottom: 8px;
  }
  .jwr-about-value h3 {
    font-size: 15px;
    margin: 0 0 8px;
    font-weight: 700;
  }
  .jwr-about-value p {
    font-size: 13px;
    color: var(--jwr-slate);
    line-height: 1.6;
    margin: 0;
  }

  /* ---------- key facts strip ---------- */
  .jwr-about-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1px;
    background: var(--jwr-line);
    border: 1px solid var(--jwr-line);
    border-radius: 8px;
    overflow: hidden;
  }
  .jwr-about-fact {
    background: var(--jwr-sage);
    padding: 24px 18px;
    text-align: center;
  }
  .jwr-about-fact-num {
    font-family: var(--jwr-serif);
    font-size: 30px;
    font-weight: 700;
    color: var(--jwr-green-dark);
    display: block;
    margin-bottom: 6px;
  }
  .jwr-about-fact-label {
    font-size: 12px;
    color: var(--jwr-slate);
    line-height: 1.4;
  }

  /* ---------- innovations cards ---------- */
  .jwr-about-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
  }
  .jwr-about-card {
    background: #fff;
    border: 1px solid var(--jwr-line);
    border-radius: 8px;
    padding: 22px;
  }
  .jwr-about-card-icon {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: var(--jwr-sage);
    color: var(--jwr-green-dark);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-family: var(--jwr-serif);
    margin-bottom: 14px;
  }
  .jwr-about-card h3 { font-size: 15px; margin: 0 0 8px; font-weight: 700; }
  .jwr-about-card p { font-size: 13px; color: var(--jwr-slate); line-height: 1.6; margin: 0; }

  /* ---------- CTA banner ---------- */
  .jwr-about-cta {
    background: linear-gradient(120deg, var(--jwr-green-dark), var(--jwr-green));
    border-radius: 10px;
    padding: 32px 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    color: #fff;
  }
  .jwr-about-cta h3 { font-family: var(--jwr-serif); font-size: 19px; margin: 0 0 6px; font-weight: 600; }
  .jwr-about-cta p { font-size: 13.5px; margin: 0; opacity: 0.9; max-width: 480px; }
  .jwr-about-cta a {
    background: var(--jwr-coral);
    color: #fff;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 700;
    padding: 12px 22px;
    border-radius: 6px;
    white-space: nowrap;
  }
  .jwr-about-cta a:hover { background: #e14b30; }

  @media (max-width: 860px) {
    .jwr-about-wrap { grid-template-columns: 1fr; }
    .jwr-about-nav { position: static; flex-direction: row; flex-wrap: wrap; gap: 18px; }
  }
/* ---------- breadcrumb strip ---------- */
.jwr-contact-scope {
    --jwr-green: #12a95c;
    --jwr-green-dark: #0c7a43;
    --jwr-coral: #ff5a3c;
    --jwr-ink: #16241c;
    --jwr-slate: #5c6b63;
    --jwr-paper: #fbfaf5;
    --jwr-sage: #eaf4ee;
    --jwr-line: #dbe4dd;
    --jwr-serif: 'Source Serif 4', Georgia, 'Times New Roman', serif;
    --jwr-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    font-family: var(--jwr-sans);
    color: var(--jwr-ink);
    background: var(--jwr-paper);
    box-sizing: border-box;
  }
  .jwr-contact-crumb {
    background: var(--jwr-ink);
    padding: 16px 24px;
  }
  .jwr-contact-crumb-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: rgba(255,255,255,0.65);
  }
  .jwr-contact-crumb-inner a { color: rgba(255,255,255,0.85); text-decoration: none; }
  .jwr-contact-crumb-inner a:hover { color: #fff; }
  .jwr-contact-crumb-inner span.jwr-current { color: var(--jwr-coral); font-weight: 600; }

  /* ---------- heading block ---------- */
  .jwr-contact-hero {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 24px 8px;
    text-align: center;
  }
  .jwr-contact-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--jwr-green-dark);
    margin-bottom: 12px;
  }
  .jwr-contact-eyebrow::before,
  .jwr-contact-eyebrow::after {
    content: "";
    width: 20px; height: 1px;
    background: var(--jwr-coral);
  }
  .jwr-contact-hero h1 {
    font-family: var(--jwr-serif);
    font-size: clamp(28px, 3.6vw, 40px);
    font-weight: 600;
    margin: 0;
  }

  /* ---------- body wrap ---------- */
  .jwr-contact-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 44px 24px 90px;
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 30px;
    align-items: start;
  }

  /* ---------- left info column ---------- */
  .jwr-contact-info { display: flex; flex-direction: column; gap: 16px; }
  .jwr-contact-info-card {
    background: #fff;
    border: 1px solid var(--jwr-line);
    border-radius: 10px;
    padding: 24px;
  }
  .jwr-contact-info-icon {
    width: 42px; height: 42px;
    border-radius: 10px;
    background: var(--jwr-sage);
    color: var(--jwr-green-dark);
    display: flex; align-items: center; justify-content: center;
    font-size: 17px;
    margin-bottom: 14px;
  }
  .jwr-contact-info-card h3 {
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--jwr-slate);
    font-weight: 700;
    margin: 0 0 8px;
  }
  .jwr-contact-info-card p, .jwr-contact-info-card a {
    font-size: 14px;
    line-height: 1.6;
    color: var(--jwr-ink);
    margin: 0;
    text-decoration: none;
  }
  .jwr-contact-info-card a.jwr-contact-link {
    display: inline-block;
    margin-top: 12px;
    color: var(--jwr-green-dark);
    font-weight: 700;
    font-size: 13px;
    border-bottom: 1px solid var(--jwr-green);
  }
  .jwr-contact-info-card a.jwr-contact-link:hover { color: var(--jwr-coral); border-color: var(--jwr-coral); }

  .jwr-contact-hours {
    background: var(--jwr-sage);
    border-radius: 10px;
    padding: 22px 24px;
    font-size: 13px;
    color: var(--jwr-slate);
  }
  .jwr-contact-hours h3 {
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--jwr-coral);
    font-weight: 700;
    margin: 0 0 12px;
  }
  .jwr-contact-hours-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid var(--jwr-line);
  }
  .jwr-contact-hours-row:last-child { border-bottom: none; }
  .jwr-contact-hours-row strong { color: var(--jwr-ink); font-weight: 600; }

  /* ---------- right form column ---------- */
  .jwr-contact-form-card {
    background: #fff;
    border: 1px solid var(--jwr-line);
    border-top: 3px solid var(--jwr-green);
    border-radius: 10px;
    padding: 36px;
  }
  .jwr-contact-form-card h2 {
    font-family: var(--jwr-serif);
    font-size: 21px;
    font-weight: 600;
    margin: 0 0 6px;
  }
  .jwr-contact-form-card > p {
    font-size: 13.5px;
    color: var(--jwr-slate);
    margin: 0 0 26px;
  }

  .jwr-contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .jwr-contact-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
  .jwr-contact-field.jwr-full { grid-column: 1 / -1; }
  .jwr-contact-field label {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--jwr-ink);
  }
  .jwr-contact-field input,
  .jwr-contact-field select,
  .jwr-contact-field textarea {
    font-family: var(--jwr-sans);
    font-size: 14px;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: var(--jwr-paper);
    color: var(--jwr-ink);
  }
  .jwr-contact-field input:focus,
  .jwr-contact-field select:focus,
  .jwr-contact-field textarea:focus {
    outline: none;
    border-color: var(--jwr-green);
    background: #fff;
  }
  .jwr-contact-field textarea { resize: vertical; min-height: 130px; font-family: var(--jwr-sans); }

  .jwr-contact-submit {
    background: var(--jwr-coral);
    color: #fff;
    border: none;
    font-size: 14px;
    font-weight: 700;
    padding: 13px 30px;
    border-radius: 6px;
    cursor: pointer;
  }
  .jwr-contact-submit:hover { background: #e14b30; }

  /* ---------- magazine banner ---------- */
  .jwr-contact-banner {
    grid-column: 1 / -1;
    margin-top: 8px;
    background: linear-gradient(120deg, var(--jwr-green-dark), var(--jwr-green));
    border-radius: 10px;
    padding: 26px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
  }
  .jwr-contact-banner-left { display: flex; align-items: center; gap: 16px; }
  .jwr-contact-banner-logo {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-family: var(--jwr-serif);
    font-weight: 700;
    font-size: 16px;
  }
  .jwr-contact-banner h4 { margin: 0 0 3px; color: #fff; font-size: 15px; font-weight: 700; }
  .jwr-contact-banner p { margin: 0; color: rgba(255,255,255,0.85); font-size: 12.5px; }
  .jwr-contact-banner a {
    background: #fff;
    color: var(--jwr-green-dark);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    padding: 11px 20px;
    border-radius: 6px;
    white-space: nowrap;
  }
  .jwr-contact-banner a:hover { background: var(--jwr-sage); }

  /* ---------- map ---------- */
  .jwr-contact-map {
    grid-column: 1 / -1;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--jwr-line);
    height: 260px;
  }
  .jwr-contact-map iframe { width: 100%; height: 100%; border: 0; display: block; }

  @media (max-width: 860px) {
    .jwr-contact-wrap { grid-template-columns: 1fr; }
    .jwr-contact-form-grid { grid-template-columns: 1fr; }
  }




.jwr-editors-scope {
    --jwr-green: #12a95c;
    --jwr-green-dark: #0c7a43;
    --jwr-coral: #ff5a3c;
    --jwr-ink: #16241c;
    --jwr-slate: #5c6b63;
    --jwr-paper: #fbfaf5;
    --jwr-sage: #eaf4ee;
    --jwr-line: #dbe4dd;
    --jwr-serif: 'Source Serif 4', Georgia, 'Times New Roman', serif;
    --jwr-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    font-family: var(--jwr-sans);
    color: var(--jwr-ink);
    background: var(--jwr-paper);
    padding: 52px 24px 90px;
    box-sizing: border-box;
  }
  .jwr-editors-scope *, .jwr-editors-scope *::before, .jwr-editors-scope *::after { box-sizing: border-box; }

  .jwr-editors-head {
    max-width: 1180px;
    margin: 0 auto 30px;
  }
  .jwr-editors-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--jwr-green-dark);
    margin-bottom: 12px;
  }
  .jwr-editors-eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--jwr-coral); }
  .jwr-editors-head h1 {
    font-family: var(--jwr-serif);
    font-size: clamp(26px, 3.2vw, 36px);
    font-weight: 600;
    margin: 0 0 14px;
  }
  .jwr-editors-head p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--jwr-slate);
    max-width: 720px;
    margin: 0;
  }

  /* ---------- search ---------- */
  .jwr-editors-search {
    max-width: 1180px;
    margin: 24px auto 0;
    position: relative;
  }
  .jwr-editors-search input {
    width: 100%;
    font-family: var(--jwr-sans);
    font-size: 14.5px;
    padding: 14px 16px 14px 44px;
    border: 1px solid var(--jwr-line);
    border-radius: 8px;
    background: #fff;
  }
  .jwr-editors-search input:focus { outline: none; border-color: var(--jwr-green); }
  .jwr-editors-search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--jwr-slate);
    font-size: 14px;
  }

  /* ---------- CTA banner ---------- */
  .jwr-editors-cta {
    max-width: 1180px;
    margin: 22px auto 0;
    background: linear-gradient(120deg, var(--jwr-green-dark), var(--jwr-green));
    border-radius: 10px;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    color: #fff;
  }
  .jwr-editors-cta p { margin: 0; font-size: 14px; font-weight: 600; max-width: 480px; }
  .jwr-editors-cta a {
    background: var(--jwr-coral);
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    padding: 11px 20px;
    border-radius: 6px;
    white-space: nowrap;
  }
  .jwr-editors-cta a:hover { background: #e14b30; }

  /* ---------- layout ---------- */
  .jwr-editors-wrap {
    max-width: 1180px;
    margin: 34px auto 0;
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 40px;
    align-items: start;
  }

  /* ---------- filter sidebar ---------- */
  .jwr-editors-filters {
    position: sticky;
    top: 24px;
    background: #fff;
    border: 1px solid var(--jwr-line);
    border-radius: 10px;
    padding: 22px;
  }
  .jwr-editors-filters-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
  }
  .jwr-editors-filters-head h3 {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0;
    color: var(--jwr-ink);
  }
  .jwr-editors-filters-head button {
    background: none;
    border: none;
    font-size: 12px;
    color: var(--jwr-coral);
    font-weight: 600;
    cursor: pointer;
    padding: 0;
  }
  .jwr-editors-filters-head button:hover { text-decoration: underline; }

  .jwr-editors-filter-group { margin-bottom: 22px; }
  .jwr-editors-filter-group:last-child { margin-bottom: 0; }
  .jwr-editors-filter-group-title {
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--jwr-slate);
    font-weight: 700;
    margin-bottom: 10px;
  }
  .jwr-editors-check {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13.5px;
    color: var(--jwr-ink);
    padding: 5px 0;
  }
  .jwr-editors-check input { accent-color: var(--jwr-green); }

  /* ---------- role group ---------- */
  .jwr-editors-group { margin-bottom: 44px; }
  .jwr-editors-group-title {
    font-family: var(--jwr-serif);
    font-size: 19px;
    font-weight: 600;
    margin: 0 0 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--jwr-sage);
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .jwr-editors-group-title .jwr-editors-count {
    font-family: var(--jwr-sans);
    font-size: 12px;
    font-weight: 700;
    color: var(--jwr-green-dark);
    background: var(--jwr-sage);
    padding: 3px 10px;
    border-radius: 20px;
  }

  .jwr-editors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
  }
  .jwr-editors-card {
    background: #fff;
    border: 1px solid var(--jwr-line);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    gap: 14px;
    text-decoration: none;
    color: inherit;
  }
  .jwr-editors-card:hover { border-color: var(--jwr-green); box-shadow: 0 4px 14px rgba(18,169,92,0.08); }
  .jwr-editors-avatar {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: var(--jwr-sage);
    color: var(--jwr-green-dark);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--jwr-serif);
    font-weight: 700;
    font-size: 15px;
    flex: none;
  }
  .jwr-editors-card-body h4 {
    font-size: 14.5px;
    font-weight: 700;
    margin: 0 0 4px;
    color: var(--jwr-ink);
  }
  .jwr-editors-card-body p.jwr-editors-affil {
    font-size: 12.5px;
    color: var(--jwr-slate);
    margin: 0 0 3px;
    line-height: 1.4;
  }
  .jwr-editors-card-body p.jwr-editors-loc {
    font-size: 11.5px;
    color: var(--jwr-slate);
    margin: 0 0 8px;
  }
  .jwr-editors-tag {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 700;
    color: var(--jwr-coral);
    background: rgba(255,90,60,0.08);
    padding: 3px 9px;
    border-radius: 20px;
  }

  @media (max-width: 860px) {
    .jwr-editors-wrap { grid-template-columns: 1fr; }
    .jwr-editors-filters { position: static; }
  }
  
  
  .jwr-login-scope {
    --jwr-green: #12a95c;
    --jwr-green-dark: #0c7a43;
    --jwr-coral: #ff5a3c;
    --jwr-ink: #16241c;
    --jwr-slate: #5c6b63;
    --jwr-paper: #fbfaf5;
    --jwr-sage: #eaf4ee;
    --jwr-line: #dbe4dd;
    --jwr-serif: 'Source Serif 4', Georgia, 'Times New Roman', serif;
    --jwr-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    font-family: var(--jwr-sans);
    color: var(--jwr-ink);
    background: var(--jwr-paper);
    padding: 56px 24px;
    box-sizing: border-box;
  }
  .jwr-login-scope *, .jwr-login-scope *::before, .jwr-login-scope *::after { box-sizing: border-box; }

  .jwr-login-crumb {
    max-width: 1040px;
    margin: 0 auto 26px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: var(--jwr-slate);
  }
  .jwr-login-crumb a { color: var(--jwr-slate); text-decoration: none; }
  .jwr-login-crumb a:hover { color: var(--jwr-green-dark); }
  .jwr-login-crumb span.jwr-current { color: var(--jwr-coral); font-weight: 600; }

  .jwr-login-shell {
    max-width: 1040px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff;
    border: 1px solid var(--jwr-line);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(22,36,28,0.06);
  }

  /* ================= LEFT BRAND PANEL ================= */
  .jwr-login-brand {
    background: linear-gradient(150deg, var(--jwr-green-dark), var(--jwr-green) 65%, var(--jwr-coral) 140%);
    color: #fff;
    padding: 48px 42px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
  }
  .jwr-login-brand::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-radial-gradient(circle at 80% 20%, rgba(255,255,255,0.10) 0, rgba(255,255,255,0.10) 2px, transparent 3px, transparent 16px);
    pointer-events: none;
  }
  .jwr-login-brand-mark {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: rgba(255,255,255,0.16);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--jwr-serif);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 34px;
    position: relative;
  }
  .jwr-login-brand h2 {
    font-family: var(--jwr-serif);
    font-size: 25px;
    font-weight: 600;
    line-height: 1.35;
    margin: 0 0 14px;
    position: relative;
  }
  .jwr-login-brand p {
    font-size: 13.5px;
    line-height: 1.7;
    color: rgba(255,255,255,0.88);
    max-width: 320px;
    margin: 0;
    position: relative;
  }
  .jwr-login-brand-stats {
    display: flex;
    gap: 28px;
    margin-top: 40px;
    position: relative;
  }
  .jwr-login-brand-stats div strong {
    display: block;
    font-family: var(--jwr-serif);
    font-size: 22px;
    font-weight: 700;
  }
  .jwr-login-brand-stats div span {
    font-size: 11.5px;
    color: rgba(255,255,255,0.8);
  }
  .jwr-login-brand-footer {
    position: relative;
    font-size: 12.5px;
    color: rgba(255,255,255,0.85);
    border-top: 1px solid rgba(255,255,255,0.25);
    padding-top: 20px;
    margin-top: 40px;
  }
  .jwr-login-brand-footer a {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.6);
  }

  /* ================= RIGHT FORM PANEL ================= */
  .jwr-login-form-panel {
    padding: 48px 46px;
  }
  .jwr-login-form-panel h1 {
    font-family: var(--jwr-serif);
    font-size: 26px;
    font-weight: 600;
    margin: 0 0 6px;
  }
  .jwr-login-form-panel > p.jwr-login-sub {
    font-size: 13.5px;
    color: var(--jwr-slate);
    margin: 0 0 28px;
  }
  .jwr-login-form-panel > p.jwr-login-sub a {
    color: var(--jwr-green-dark);
    font-weight: 700;
    text-decoration: none;
  }
  .jwr-login-form-panel > p.jwr-login-sub a:hover { color: var(--jwr-coral); }

  .jwr-login-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
  .jwr-login-field label { font-size: 12.5px; font-weight: 700; color: var(--jwr-ink); }
  .jwr-login-field input {
    font-family: var(--jwr-sans);
    font-size: 14px;
    padding: 12px 14px;
    border: 1px solid var(--jwr-line);
    border-radius: 6px;
    background: var(--jwr-paper);
    color: var(--jwr-ink);
  }
  .jwr-login-field input:focus {
    outline: none;
    border-color: var(--jwr-green);
    background: #fff;
  }

  .jwr-login-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: -6px 0 24px;
    font-size: 12.5px;
  }
  .jwr-login-remember { display: flex; align-items: center; gap: 7px; color: var(--jwr-slate); }
  .jwr-login-remember input { accent-color: var(--jwr-green); }
  .jwr-login-row a { color: var(--jwr-coral); text-decoration: none; font-weight: 600; }
  .jwr-login-row a:hover { text-decoration: underline; }

  .jwr-login-submit {
    width: 100%;
    background: var(--jwr-coral);
    color: #fff;
    border: none;
    font-size: 14.5px;
    font-weight: 700;
    padding: 13px;
    border-radius: 6px;
    cursor: pointer;
    margin-bottom: 22px;
  }
  .jwr-login-submit:hover { background: #e14b30; }

  .jwr-login-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11.5px;
    color: var(--jwr-slate);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 20px;
  }
  .jwr-login-divider::before, .jwr-login-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--jwr-line);
  }

  .jwr-login-social { display: flex; gap: 10px; margin-bottom: 30px; }
  .jwr-login-social button {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    border: 1px solid var(--jwr-line);
    border-radius: 6px;
    background: #fff;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--jwr-ink);
    cursor: pointer;
  }
  .jwr-login-social button:hover { border-color: var(--jwr-green); background: var(--jwr-sage); }

  .jwr-login-signup-card {
    background: var(--jwr-sage);
    border-radius: 8px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
  }
  .jwr-login-signup-card p { font-size: 12.5px; color: #384a3f; margin: 0; max-width: 260px; }
  .jwr-login-signup-card a {
    background: var(--jwr-green);
    color: #fff;
    text-decoration: none;
    font-size: 12.5px;
    font-weight: 700;
    padding: 9px 18px;
    border-radius: 6px;
    white-space: nowrap;
  }
  .jwr-login-signup-card a:hover { background: var(--jwr-green-dark); }

  @media (max-width: 780px) {
    .jwr-login-shell { grid-template-columns: 1fr; }
    .jwr-login-brand { display: none; }
    .jwr-login-form-panel { padding: 38px 26px; }
  }
  
   .jwr-journals-scope {
    --jwr-green: #12a95c;
    --jwr-green-dark: #0c7a43;
    --jwr-coral: #ff5a3c;
    --jwr-ink: #16241c;
    --jwr-slate: #5c6b63;
    --jwr-paper: #fbfaf5;
    --jwr-sage: #eaf4ee;
    --jwr-line: #dbe4dd;
    --jwr-serif: 'Source Serif 4', Georgia, 'Times New Roman', serif;
    --jwr-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    font-family: var(--jwr-sans);
    color: var(--jwr-ink);
    background: var(--jwr-paper);
    padding: 52px 24px 90px;
    box-sizing: border-box;
  }
  
  .jwr-journals-scope *, .jwr-journals-scope *::before, .jwr-journals-scope *::after { box-sizing: border-box; }

  .jwr-journals-head {
    max-width: 1200px;
    margin: 0 auto 22px;
    text-align: center;
  }
  .jwr-journals-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--jwr-green-dark);
    margin-bottom: 12px;
  }
  .jwr-journals-eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--jwr-coral); }
  .jwr-journals-head h1 {
    font-family: var(--jwr-serif);
    font-size: clamp(26px, 3.2vw, 36px);
    font-weight: 600;
    margin: 0 0 10px;
  }
  .jwr-journals-head p {
    font-size: 14.5px;
    color: var(--jwr-slate);
    max-width: 600px;
    margin: 0 auto;
  }

  /* ---------- search ---------- */
  .jwr-journals-search {
    max-width: 640px;
    margin: 26px auto 0;
    position: relative;
  }
  .jwr-journals-search input {
    width: 100%;
    font-family: var(--jwr-sans);
    font-size: 14.5px;
    padding: 14px 16px 14px 44px;
    border: 1px solid var(--jwr-line);
    border-radius: 30px;
    background: #fff;
  }
  .jwr-journals-search input:focus { outline: none; border-color: var(--jwr-green); }
  .jwr-journals-search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--jwr-slate);
    font-size: 14px;
  }

  /* ---------- A–Z filter ---------- */
  .jwr-journals-az {
    max-width: 1200px;
    margin: 26px auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
  }
  .jwr-journals-az button {
    width: 30px; height: 30px;
    border-radius: 50%;
    border: 1px solid var(--jwr-line);
    background: #fff;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--jwr-slate);
    cursor: pointer;
  }
  .jwr-journals-az button.jwr-az-all {
    width: auto;
    padding: 0 14px;
    border-radius: 16px;
  }
  .jwr-journals-az button:hover { border-color: var(--jwr-green); color: var(--jwr-green-dark); }
  .jwr-journals-az button.is-active { background: var(--jwr-green); border-color: var(--jwr-green); color: #fff; }

  /* ---------- count row ---------- */
  .jwr-journals-count {
    max-width: 1200px;
    margin: 34px auto 18px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
  }
  .jwr-journals-count h2 {
    font-family: var(--jwr-serif);
    font-size: 20px;
    font-weight: 600;
    margin: 0;
  }
  .jwr-journals-count span { font-size: 12.5px; color: var(--jwr-slate); }

  /* ---------- layout ---------- */
  .jwr-journals-wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 40px;
    align-items: start;
  }

  /* ---------- journal card ---------- */
  .jwr-journals-list { display: flex; flex-direction: column; gap: 14px; }
  .jwr-journal-card {
    background: #fff;
    border: 1px solid var(--jwr-line);
    border-radius: 10px;
    padding: 22px 24px;
    display: block;
    text-decoration: none;
    color: inherit;
  }
  .jwr-journal-card:hover { border-color: var(--jwr-green); box-shadow: 0 4px 14px rgba(18,169,92,0.08); }

  .jwr-journal-card-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
  }
  .jwr-journal-card h3 {
    font-family: var(--jwr-serif);
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: var(--jwr-ink);
  }
  .jwr-journal-badge-new {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
    background: var(--jwr-coral);
    padding: 3px 9px;
    border-radius: 20px;
  }

  .jwr-journal-desc {
    font-size: 13.5px;
    line-height: 1.6;
    color: #384a3f;
    margin: 0 0 14px;
    max-width: 720px;
  }

  .jwr-journal-editor {
    font-size: 12.5px;
    color: var(--jwr-slate);
    margin: 0 0 14px;
  }
  .jwr-journal-editor strong { color: var(--jwr-ink); font-weight: 600; }
  .jwr-journal-editor-label {
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--jwr-green-dark);
    font-weight: 700;
    display: block;
    margin-bottom: 3px;
  }

  .jwr-journal-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--jwr-line);
  }
  .jwr-journal-stat {
    font-size: 11.5px;
    color: var(--jwr-slate);
    background: var(--jwr-sage);
    padding: 4px 10px;
    border-radius: 20px;
  }
  .jwr-journal-stat strong { color: var(--jwr-green-dark); font-weight: 700; }
  .jwr-journal-stat.jwr-if strong { color: var(--jwr-coral); }

  /* ---------- sidebar: most viewed ---------- */
  .jwr-journals-sidebar { position: sticky; top: 24px; }
  .jwr-journals-sidebar-card {
    background: #fff;
    border: 1px solid var(--jwr-line);
    border-radius: 10px;
    padding: 22px;
  }
  .jwr-journals-sidebar-card h3 {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--jwr-green-dark);
    font-weight: 700;
    margin: 0 0 16px;
  }
  .jwr-mv-item { display: block; text-decoration: none; color: inherit; padding: 12px 0; border-bottom: 1px solid var(--jwr-line); }
  .jwr-mv-item:last-child { border-bottom: none; padding-bottom: 0; }
  .jwr-mv-item:first-child { padding-top: 0; }
  .jwr-mv-title {
    font-size: 13px;
    line-height: 1.45;
    color: var(--jwr-ink);
    font-weight: 600;
    margin: 0 0 6px;
  }
  .jwr-journals-sidebar-card:hover .jwr-mv-title,
  .jwr-mv-item:hover .jwr-mv-title { color: var(--jwr-green-dark); }
  .jwr-mv-meta { font-size: 11px; color: var(--jwr-slate); display: flex; gap: 6px; }
  .jwr-mv-meta strong { color: var(--jwr-coral); }

  .jwr-mv-cta {
    display: block;
    text-align: center;
    margin-top: 16px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--jwr-green-dark);
    text-decoration: none;
    padding: 10px;
    border: 1px solid var(--jwr-green);
    border-radius: 6px;
  }
  .jwr-mv-cta:hover { background: var(--jwr-sage); }

  @media (max-width: 900px) {
    .jwr-journals-wrap { grid-template-columns: 1fr; }
    .jwr-journals-sidebar { position: static; }
  }
  
  .jwr-articles-scope {
    --jwr-green: #12a95c;
    --jwr-green-dark: #0c7a43;
    --jwr-coral: #ff5a3c;
    --jwr-ink: #16241c;
    --jwr-slate: #5c6b63;
    --jwr-paper: #fbfaf5;
    --jwr-sage: #eaf4ee;
    --jwr-line: #dbe4dd;
    --jwr-serif: 'Source Serif 4', Georgia, 'Times New Roman', serif;
    --jwr-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    font-family: var(--jwr-sans);
    color: var(--jwr-ink);
    background: var(--jwr-paper);
    padding: 52px 24px 90px;
    box-sizing: border-box;
  }
  .jwr-articles-scope *, .jwr-articles-scope *::before, .jwr-articles-scope *::after { box-sizing: border-box; }

  .jwr-articles-head {
    max-width: 1220px;
    margin: 0 auto 22px;
    text-align: center;
  }
  .jwr-articles-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--jwr-green-dark);
    margin-bottom: 12px;
  }
  .jwr-articles-eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--jwr-coral); }
  .jwr-articles-head h1 {
    font-family: var(--jwr-serif);
    font-size: clamp(26px, 3.2vw, 36px);
    font-weight: 600;
    margin: 0 0 10px;
  }
  .jwr-articles-head p {
    font-size: 14.5px;
    color: var(--jwr-slate);
    max-width: 600px;
    margin: 0 auto;
  }

  .jwr-articles-search {
    max-width: 640px;
    margin: 26px auto 0;
    position: relative;
  }
  .jwr-articles-search input {
    width: 100%;
    font-family: var(--jwr-sans);
    font-size: 14.5px;
    padding: 14px 16px 14px 44px;
    border: 1px solid var(--jwr-line);
    border-radius: 30px;
    background: #fff;
  }
  .jwr-articles-search input:focus { outline: none; border-color: var(--jwr-green); }
  .jwr-articles-search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--jwr-slate);
    font-size: 14px;
  }

  /* ---------- layout ---------- */
  .jwr-articles-wrap {
    max-width: 1220px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 36px;
    align-items: start;
  }

  /* ---------- filter sidebar ---------- */
  .jwr-articles-filters {
    position: sticky;
    top: 24px;
    background: #fff;
    border: 1px solid var(--jwr-line);
    border-radius: 10px;
    padding: 22px;
  }
  .jwr-articles-filters-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
  }
  .jwr-articles-filters-head h3 {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0;
    color: var(--jwr-ink);
  }
  .jwr-articles-filters-head button {
    background: none;
    border: none;
    font-size: 12px;
    color: var(--jwr-coral);
    font-weight: 600;
    cursor: pointer;
    padding: 0;
  }
  .jwr-articles-filters-head button:hover { text-decoration: underline; }

  .jwr-articles-filter-group {
    margin-bottom: 8px;
    border-bottom: 1px solid var(--jwr-line);
  }
  .jwr-articles-filter-group:last-of-type { border-bottom: none; }
  .jwr-articles-filter-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    padding: 13px 0;
    font-size: 13px;
    font-weight: 700;
    color: var(--jwr-ink);
    cursor: pointer;
  }
  .jwr-articles-filter-toggle .jwr-chev {
    color: var(--jwr-green-dark);
    font-size: 12px;
    transition: transform 0.2s ease;
  }
  .jwr-articles-filter-group[open] .jwr-chev { transform: rotate(90deg); }
  .jwr-articles-filter-body { padding-bottom: 14px; max-height: 190px; overflow-y: auto; }
  .jwr-articles-check {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    color: var(--jwr-ink);
    padding: 5px 2px;
  }
  .jwr-articles-check input { accent-color: var(--jwr-green); }

  .jwr-articles-date-row { display: flex; gap: 8px; padding-bottom: 14px; }
  .jwr-articles-date-row input {
    width: 100%;
    font-size: 12.5px;
    padding: 8px 10px;
    border: 1px solid var(--jwr-line);
    border-radius: 6px;
    font-family: var(--jwr-sans);
  }

  /* ---------- count row ---------- */
  .jwr-articles-count {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 18px;
  }
  .jwr-articles-count h2 {
    font-family: var(--jwr-serif);
    font-size: 20px;
    font-weight: 600;
    margin: 0;
  }
  .jwr-articles-count span { font-size: 12.5px; color: var(--jwr-slate); }

  /* ---------- article card ---------- */
  .jwr-articles-list { display: flex; flex-direction: column; gap: 14px; }
  .jwr-article-row {
    background: #fff;
    border: 1px solid var(--jwr-line);
    border-radius: 10px;
    padding: 20px 22px;
    text-decoration: none;
    color: inherit;
    display: block;
  }
  .jwr-article-row:hover { border-color: var(--jwr-green); box-shadow: 0 4px 14px rgba(18,169,92,0.08); }

  .jwr-article-meta-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
  }
  .jwr-article-type {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    background: var(--jwr-ink);
    padding: 3px 10px;
    border-radius: 20px;
  }
  .jwr-article-date { font-size: 12px; color: var(--jwr-slate); }

  .jwr-article-row h3 {
    font-family: var(--jwr-serif);
    font-size: 16.5px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 8px;
    color: var(--jwr-ink);
  }

  .jwr-article-authors {
    font-size: 12.5px;
    color: var(--jwr-slate);
    margin: 0 0 12px;
    line-height: 1.5;
  }
  .jwr-article-authors strong { color: var(--jwr-ink); font-weight: 600; }

  .jwr-article-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px solid var(--jwr-line);
  }
  .jwr-article-foot-left { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
  .jwr-article-journal {
    font-size: 12px;
    font-weight: 700;
    color: var(--jwr-green-dark);
  }
  .jwr-article-doi { font-size: 11.5px; color: var(--jwr-slate); }
  .jwr-article-views {
    font-size: 11.5px;
    color: var(--jwr-slate);
    background: var(--jwr-sage);
    padding: 4px 10px;
    border-radius: 20px;
  }
  .jwr-article-views strong { color: var(--jwr-coral); font-weight: 700; }

  /* ---------- pagination ---------- */
  .jwr-articles-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
  }
  .jwr-articles-pagination button {
    width: 34px; height: 34px;
    border-radius: 6px;
    border: 1px solid var(--jwr-line);
    background: #fff;
    font-size: 13px;
    color: var(--jwr-slate);
    cursor: pointer;
  }
  .jwr-articles-pagination button.is-active { background: var(--jwr-green); border-color: var(--jwr-green); color: #fff; font-weight: 700; }
  .jwr-articles-pagination button:hover:not(.is-active) { border-color: var(--jwr-green); color: var(--jwr-green-dark); }

  @media (max-width: 880px) {
    .jwr-articles-wrap { grid-template-columns: 1fr; }
    .jwr-articles-filters { position: static; }
  }
  
  /* ---------- responsive ---------- */
  @media (max-width: 960px) {
    .jwr-art-wrap { grid-template-columns: 1fr; }
    .jwr-art-sidebar { position: static; }
    .jwr-art-infogrid { grid-template-columns: 1fr; }
  }
  @media (max-width: 560px) {
    .jwr-art-scope { padding: 36px 16px 56px; }
    .jwr-art-abstract { padding: 22px 20px; }
    .jwr-art-track { flex-wrap: wrap; row-gap: 18px; }
    .jwr-art-track::before, .jwr-art-track-fill { display: none; }
  }