*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,body{
    height: 100vh;
}

.pkp_structure_page {
    background-color: rgba(255, 255, 255, 0.96);
}

.pkp_structure_main {
    width: auto;
    margin-top: 0 !important;
}

.pkp_structure_main:first-child:last-child:before {
    left: 0;
}

.pkp_structure_main:first-child:last-child:after {
    left: auto;
    right: 0;
}
 

h1.pkp_site_name {
    text-align: left !important;
}
.pkp_site_name>a {
    padding-top: 10px;
    padding-bottom: 0px;
    text-decoration: none;
}
h1.pkp_site_name {
    text-align: center;
    font-size: 6rem;
    bottom: 7px;
}

.pkp_navigation_user_wrapper {
    top: 20px;
}

/* Dropdown Menu Container */
.dropdown-menu {
  min-width: 180px;
  padding: 0.5rem 0;
  margin: 0;
  list-style: none;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  z-index: 1050;
  overflow: hidden;
  animation: dropdownFade 0.2s ease-in-out;
}

/* Dropdown Items */
.dropdown-menu li {
  display: block;
  width: 100%;
}

/* Links */
.dropdown-menu li a {
  display: block;
  padding: 12px 18px;
  color: #1f2937; /* neutral dark */
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
  border-left: 3px solid transparent;
}

/* Hover / Active */
.dropdown-menu li a:hover,
.dropdown-menu li a:focus {
  background: #f3f4f6;
  color: #0f766e !important; /* theme accent */
  border-left-color: #0f766e !important;
  padding-left: 22px;
}

/* Optional active state */
.dropdown-menu li.active a {
  background: #ecfdf5;
  color: #0f766e;
  border-left-color: #0f766e;
  font-weight: 600;
}

/* Divider support if needed */
.dropdown-menu .divider {
  height: 1px;
  margin: 0.4rem 0;
  background: rgba(0, 0, 0, 0.06);
}

/* Smooth animation */
@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .dropdown-menu {
    min-width: 100%;
    border-radius: 10px;
  }

  .dropdown-menu li a {
    font-size: 14px;
    padding: 14px 16px;
  }
}

/* ============================================
   IJAA Journal — Modern Header & Hero Styles
   Theme: Deep Forest Green (#3c561e, #688e3c, #8bca42)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;1,600&family=Inter:wght@300;400;500;600&display=swap');
 
/* ── Design tokens ── */
:root {
  /* Cover-exact greens */
  --c-forest-deep:   #1d3e23;
  --c-forest:        #264a2d;
  --c-blueprint:     #2f5436;
  --c-olive:         #475c25;
  --c-olive-mid:     #53672f;
  --c-leaf:          #678d3a;
  --c-accent:        #80a751;   /* logo rim — the brightest pop */
  --c-sage:          #90a569;
 
  /* Neutrals from cover */
  --c-off-white:     #dcdfd6;
  --c-white:         #ffffff;
  --c-stone:         #b2bea0;
 
  /* Typography */
  --c-text-primary:  #dcdfd6;   /* cover title color */
  --c-text-secondary:rgba(220,223,214,.72);
  --c-text-muted:    rgba(220,223,214,.48);
 
  /* Radii */
  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
 
  /* Shadows */
  --shadow-hero: 0 4px 40px rgba(29,62,35,.55),
                 0 1px  6px  rgba(29,62,35,.3);
  --shadow-cover: 0 20px 60px rgba(29,62,35,.7),
                  0  4px 16px rgba(29,62,35,.4);
  --shadow-btn:   0  6px 20px rgba(128,167,81,.35);
}

/* ── Reset / Base ─────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--off-white);
  color: var(--text-dark);
}
a { text-decoration: none; color: inherit; }

/* ════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════ */
.pkp_structure_head {
    background-color: rgba(255,255,255,0.96);
    border-bottom: 1.5px solid var(--green-pale);
}
.ijaa-header {
  top: 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding-inline: 3rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Logo */
.ijaa-header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.ijaa-header__logo img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: contain;
}
.ijaa-header__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.ijaa-header__logo-text .brand-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--green-dark);
  letter-spacing: -0.3px;
}
.ijaa-header__logo-text .brand-sub {
  font-size: 10.5px;
  font-weight: 500;
  color: var(--green-light);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

/* Nav links */
.ijaa-header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.ijaa-header__nav li a {
  display: block;
  padding: 6px 13px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.ijaa-header__nav li a:hover {
  background: var(--green-pale);
  color: var(--green-dark);
}
.ijaa-header__nav li a.active {
  background: var(--green-pale);
  color: var(--green-dark);
  font-weight: 600;
}

/* Search + CTA */
.ijaa-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.ijaa-header__search {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--off-white);
  border: 1.5px solid var(--green-pale);
  border-radius: 10px;
  padding: 7px 12px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.ijaa-header__search:focus-within {
  border-color: var(--green-accent);
  box-shadow: 0 0 0 3px rgba(139,202,66,.18);
}
.ijaa-header__search input {
  border: none;
  background: transparent;
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  outline: none;
  width: 150px;
}
.ijaa-header__search input::placeholder { color: var(--text-muted); }
.ijaa-header__search-icon {
  color: var(--text-muted);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.ijaa-header__btn {
  padding: 8px 18px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}
.ijaa-header__btn--submit {
  background: var(--green-main);
  color: var(--white);
}
.ijaa-header__btn--submit:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.pkp_head_wrapper {
    padding-top: 0px;
}

.pkp_site_name .is_text {
    color: var(--text-dark);
}

.pkp_navigation_primary>li>a, .pkp_navigation_primary>li>a:hover, .pkp_navigation_primary>li>a:focus {
    color: var(--text-dark);
}

.pkp_head_wrapper .pkp_search .search_prompt {
    color: var(--text-dark);
}


.pkp_navigation_user>li>a, .pkp_navigation_user>li.in_focus>a, .pkp_navigation_user>li>a:hover, .pkp_navigation_user>li>a:focus {
    color: var(--text-dark);
}
/* ════════════════════════════════════════════
   HERO BANNER (3-column: text | image | text)
   ════════════════════════════════════════════ */

.pkp_page_index .additional_content {
      border-top: 0;
    padding: 0;
}   

.pkp_structure_main:before, .pkp_structure_main:after {
    width: 0;
}

.pkp_structure_content {
    background-color: rgba(255,255,255,0.96);
}
/* ===== HERO BASE ===== */
.ijaa-hero {
  margin: 0;
  display: grid;
  grid-template-columns: 1.1fr 0.75fr 1.15fr;
  align-items: center;
  min-height: 360px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-hero);
 
  /* Replicates the cover's two-band gradient:
     olive-khaki header → deep forest body           */
  background:
    linear-gradient(
      170deg,
      var(--c-olive)       0%,
      var(--c-olive-mid)  18%,
      var(--c-blueprint)  38%,
      var(--c-forest)     62%,
      var(--c-forest-deep)100%
    );
 
  font-family: 'Inter', sans-serif;
}
 
/* ── Blueprint dot-grid texture (like cover's grid lines) ── */
.ijaa-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(220,223,214,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(220,223,214,.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}
 
/* ── Radial glow behind center column ── */
.ijaa-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 50% 50%,
      rgba(128,167,81,.12) 0%, transparent 70%),
    radial-gradient(ellipse 30% 60% at 15% 50%,
      rgba(47,84,54,.6)    0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
 
/* ============================================================
   LEFT PANEL
   ============================================================ */
.ijaa-hero__left {
  padding: 48px 28px 48px 44px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
 
/* Vertical rule — echoes the cover's dashed center divider */
.ijaa-hero__left::after {
  content: '';
  position: absolute;
  right: 0;
  top: 16%;
  height: 68%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(128,167,81,.4) 30%,
    rgba(128,167,81,.4) 70%,
    transparent
  );
}
 
.ijaa-hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: clamp(1.65rem, 2.6vw, 2.25rem);
  line-height: 1.18;
  color: var(--c-white);
  letter-spacing: -.3px;
  margin: 0;
}
 
/* "Arts" italic — matches the cover's italic "Arts" treatment */
.ijaa-hero__title em {
  font-style: italic;
  color: var(--c-accent);           /* #80a751 — exact logo rim green */
}
 
.ijaa-hero__desc {
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.78;
  color: var(--c-text-secondary);
  max-width: 36ch;
  margin: 0;
}
 
/* CTA row */
.ijaa-hero__cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
 
.ijaa-hero__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--r-sm);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease,
              background .15s ease, border-color .15s ease;
}
 
/* Primary — accent green from logo rim */
.ijaa-hero__cta-btn--primary {
  background: var(--c-accent);
  color: var(--c-forest-deep);
}
.ijaa-hero__cta-btn--primary:hover {
  background: #96c262;
  transform: translateY(-2px);
  box-shadow: var(--shadow-btn);
}
 
/* Ghost */
.ijaa-hero__cta-btn--ghost {
  background: rgba(220,223,214,.08);
  color: var(--c-off-white);
  border: 1.5px solid rgba(220,223,214,.28);
}
.ijaa-hero__cta-btn--ghost:hover {
  background: rgba(220,223,214,.15);
  border-color: rgba(220,223,214,.55);
  transform: translateY(-2px);
}
 
/* ============================================================
   CENTER — Cover card
   The cover page is the visual anchor; everything else serves it
   ============================================================ */
.ijaa-hero__center {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
  position: relative;
  z-index: 2;
}
 
.ijaa-hero__cover-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
 
/* Outer ambient ring — olive-green glow */
.ijaa-hero__ring {
  position: absolute;
  border-radius: var(--r-sm);
  border-style: solid;
  pointer-events: none;
}
 
.ijaa-hero__ring--outer {
  inset: -14px;
  border-width: 1px;
  border-color: rgba(128,167,81,.25);
  border-radius: calc(var(--r-sm) + 14px);
  animation: ring-pulse 3.5s ease-in-out infinite;
}
 
.ijaa-hero__ring--inner {
  inset: -7px;
  border-width: 1.5px;
  border-color: rgba(128,167,81,.18);
  border-radius: calc(var(--r-sm) + 7px);
  animation: ring-pulse 3.5s ease-in-out infinite .8s;
}
 
@keyframes ring-pulse {
  0%, 100% { opacity: .5; transform: scale(1); }
  50%       { opacity: 1;  transform: scale(1.02); }
}
 
/* Cover card itself */
.ijaa-hero__cover-card {
  position: relative;
  z-index: 2;
  border-radius: var(--r-sm);
  overflow: hidden;
  box-shadow: var(--shadow-cover);
 
  /* thin accent border matching cover's bright-green rim */
  outline: 2px solid rgba(128,167,81,.45);
  outline-offset: 2px;
}
 
.ijaa-hero__cover-img-wrap {
  display: block;
  line-height: 0;
}
 
.ijaa-hero__cover-img {
  display: block;
  width: 255px;
  height: auto;
  border-radius: var(--r-sm);
}
 
/* ============================================================
   RIGHT PANEL
   ============================================================ */
.ijaa-hero__right {
  padding: 48px 44px 48px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}
 
/* Vertical rule — mirrors left panel's divider */
.ijaa-hero__right::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16%;
  height: 68%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(128,167,81,.4) 30%,
    rgba(128,167,81,.4) 70%,
    transparent
  );
}
 
/* "About the Journal" label */
.ijaa-hero__right-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--c-accent);
  margin: 0;
 
  /* Blueprint-style underline */
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(128,167,81,.3);
  position: relative;
}
.ijaa-hero__right-label::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--c-accent);
  border-radius: 2px;
}
 
.ijaa-hero__right-desc {
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.78;
  color: var(--c-text-secondary);
  margin: 0;
}
 
/* Tag pills — styled like the cover's circular IJRDO badge */
.ijaa-hero__right-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
 
.ijaa-hero__tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .4px;
 
  /* Matches the cover's bottom-bar dark green */
  background: rgba(128,167,81,.15);
  color: var(--c-accent);
  border: 1px solid rgba(128,167,81,.35);
 
  transition: background .14s ease, border-color .14s ease;
}
 
.ijaa-hero__tag:hover {
  background: rgba(128,167,81,.25);
  border-color: rgba(128,167,81,.6);
}
 
/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .ijaa-hero {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .ijaa-hero__center {
    grid-column: 1 / -1;
    order: -1;
    padding: 32px 20px 16px;
  }
  .ijaa-hero__cover-img { width: 130px; }
  .ijaa-hero__left::after,
  .ijaa-hero__right::before { display: none; }
}
 
@media (max-width: 768px) {
  .ijaa-hero {
    grid-template-columns: 1fr;
    border-radius: var(--r-sm);
  }
  .ijaa-hero__left  { padding: 28px 24px 20px; }
  .ijaa-hero__right { padding: 20px 24px 32px; }
  .ijaa-hero__cover-img { width: 120px; }
  .ijaa-hero__title { font-size: 1.55rem; }
}
 
@media (max-width: 480px) {
  .ijaa-hero__left,
  .ijaa-hero__right { padding: 20px 18px; }
  .ijaa-hero__cover-img { width: 108px; }
}

/* ===== FOOTER BASE ===== */

.pkp_structure_footer {
    width: auto;
}

.pkp_footer_content {
    padding: 0;
}

/* ===== MAIN FOOTER ===== */
.ijaa-footer {
  width: 100%;
  font-family: 'Inter', sans-serif;
  background:
    linear-gradient(
      175deg,
      var(--c-forest)      0%,
      var(--c-forest-deep) 55%,
      #122019             100%
    );
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
 
/* Blueprint grid texture — same as hero */
.ijaa-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(220,223,214,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(220,223,214,.03) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}
 
/* Accent green top border — like the cover's logo-rim color */
.ijaa-footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent        0%,
    var(--c-accent)   20%,
    var(--c-leaf)     50%,
    var(--c-accent)   80%,
    transparent      100%
  );
  z-index: 1;
}
 
/* ============================================================
   TOP SECTION — three columns
   ============================================================ */
.ijaa-footer__top {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
  padding: 44px 32px 40px;
}
 
/* ============================================================
   COLUMNS
   ============================================================ */
.ijaa-footer__col {
  flex: 1;
  min-width: 210px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
 
/* Column headings */
.ijaa-footer__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--c-white);
  margin: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(128,167,81,.22);
  position: relative;
  letter-spacing: .01em;
}
 
/* Accent underline dash */
.ijaa-footer__title::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--c-accent);
  border-radius: 2px;
}
 
/* Body copy */
.ijaa-footer__text {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--c-text-secondary);
  margin: 0;
}
 
.ijaa-footer__text strong {
  color: var(--c-off-white);
  font-weight: 500;
}
 
/* ── Links list ── */
.ijaa-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
 
.ijaa-footer__links li {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(220,223,214,.05);
}
 
/* Blueprint chevron bullet */
.ijaa-footer__links li::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right:  1.5px solid var(--c-accent);
  border-bottom: 1.5px solid var(--c-accent);
  transform: rotate(-45deg) translateY(-1px);
  flex-shrink: 0;
  opacity: .8;
}
 
.ijaa-footer__links li a {
  font-size: 13px;
  font-weight: 400;
  color: var(--c-text-secondary);
  text-decoration: none;
  transition: color .14s ease, padding-left .14s ease;
}
 
.ijaa-footer__links li a:hover {
  color: var(--c-accent);
  padding-left: 3px;
}
 
/* ── Contact badge — pill shape echoing the cover's IJRDO badge circle ── */
.ijaa-footer__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--c-accent);
  background: rgba(128,167,81,.1);
  border: 1px solid rgba(128,167,81,.3);
  border-radius: 999px;
  letter-spacing: .02em;
  transition: background .14s ease, border-color .14s ease;
}
 
.ijaa-footer__badge::before {
  content: '✆';
  font-size: 12px;
  opacity: .75;
  line-height: 1;
}
 
.ijaa-footer__badge:hover {
  background: rgba(128,167,81,.18);
  border-color: rgba(128,167,81,.55);
}
 
/* ============================================================
   BOTTOM BAR — matches cover's solid dark-green bottom strip
   ============================================================ */
.ijaa-footer__bottom {
  position: relative;
  z-index: 2;
  background: var(--c-forest-deep);
  border-top: 1px solid rgba(128,167,81,.15);
  text-align: center;
  padding: 13px 20px;
  font-size: 12px;
  font-weight: 400;
  color: var(--c-text-muted);
  letter-spacing: .04em;
}
 
/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .ijaa-footer__top {
    flex-direction: column;
    gap: 28px;
    padding: 36px 24px 32px;
  }
  .ijaa-footer__col { min-width: 100%; }
}
 
@media (max-width: 480px) {
  .ijaa-footer__top { padding: 28px 18px 24px; }
}