/**
 * ============================================================================
 * Zenith Pro - Bootstrap 5 Academic Theme Custom Stylesheet
 * Copyright (c) 2026 Simon Fraser University / John Willinsky
 * ============================================================================
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Default Primary Palette if not overridden by PHP */
  --zenith-primary: #ff6b00;
  --zenith-primary-subtle: rgba(255, 107, 0, 0.15);
  --zenith-primary-gradient: linear-gradient(135deg, #ff6b00 0%, #ff9500 100%);
  
  /* Core Dark & Glass Tokens */
  --zenith-obsidian: #0a0e1a;
  --zenith-slate: #0f172a;
  --zenith-indigo-dark: #1e1b4b;
  --zenith-card-bg: #ffffff;
  --zenith-card-border: rgba(226, 232, 240, 0.8);
  --zenith-text-main: #1e293b;
  --zenith-text-muted: #64748b;
  --zenith-glass-bg: rgba(255, 255, 255, 0.85);
  --zenith-glass-border: rgba(255, 255, 255, 0.2);
  --zenith-shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --zenith-shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --zenith-shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --zenith-shadow-glow: 0 0 25px var(--zenith-primary-subtle);
  --zenith-radius: 16px;
  --zenith-radius-sm: 10px;
  --zenith-radius-lg: 24px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--zenith-text-main);
  background-color: #f8fafc;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .navbar-brand, .hero-title, .nav-pills .nav-link {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* ============================================================================
 * GLASSMORPHIC NAVBAR & HEADER NAVIGATION MENU OVERRIDES
 * ============================================================================ */
.pkp_structure_head {
  position: sticky;
  top: 0;
  z-index: 1050;
  background: var(--zenith-glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  padding-top: 0.65rem !important;
  padding-bottom: 0.65rem !important;
}

.pkp_structure_head.navbar-scrolled {
  background: var(--zenith-primary-gradient);
  border-bottom-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.pkp_structure_head.navbar-scrolled .navbar-brand {
  color: #ffffff !important;
}

/* ---- High-Tech Acronym Animation System ---- */
@keyframes zenithLetterDrop {
  0% { transform: translateY(-50px); opacity: 0; }
  60% { transform: translateY(4px); opacity: 1; }
  75% { transform: translateY(-3px); }
  90% { transform: translateY(1px); }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes zenithLetterSpark {
  0% { transform: scaleX(0); opacity: 1; }
  50% { transform: scaleX(1); opacity: 0.8; }
  100% { transform: scaleX(0); opacity: 0; }
}

@keyframes zenithHoloSweep {
  0% { left: -30%; }
  100% { left: 130%; }
}

@keyframes zenithGlowBreath {
  0%, 100% {
    text-shadow:
      0 0 4px rgba(59, 130, 246, 0.3),
      0 0 8px rgba(59, 130, 246, 0.15);
  }
  50% {
    text-shadow:
      0 0 10px rgba(59, 130, 246, 0.7),
      0 0 25px rgba(59, 130, 246, 0.4),
      0 0 50px rgba(59, 130, 246, 0.15);
  }
}

@keyframes zenithDigiFlicker {
  0%, 89%, 91%, 95%, 97%, 100% { opacity: 1; }
  90% { opacity: 0.7; }
  96% { opacity: 0.8; }
}

@keyframes zenithFadeRise {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(-30px); opacity: 0; }
}

.zenith-brand-acronym {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: 'Outfit', 'Inter', sans-serif;
  position: relative;
  padding: 2px 6px;
  border-left: 2px solid rgba(59, 130, 246, 0.4);
  margin-left: 4px;
  display: inline-flex;
  align-items: center;
  overflow: visible;
  min-height: 1.8em;
}

.zenith-brand-acronym .zenith-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(-50px);
  background: linear-gradient(135deg, #3b82f6, #60a5fa, #93c5fd);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

/* Phase: Drop with bounce */
.zenith-brand-acronym .zenith-letter.z-drop {
  animation: zenithLetterDrop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Phase: Landed & idle */
.zenith-brand-acronym .zenith-letter.z-landed {
  opacity: 1;
  transform: translateY(0);
}

/* Phase: Holo scan glow */
.zenith-brand-acronym .zenith-letter.z-holo {
  opacity: 1;
  transform: translateY(0);
  animation: zenithGlowBreath 2s ease-in-out infinite;
}

/* Phase: Digital flicker */
.zenith-brand-acronym .zenith-letter.z-flicker {
  opacity: 1;
  transform: translateY(0);
  animation: zenithDigiFlicker 1.5s ease-in-out infinite;
}

/* Phase: Fade out rising */
.zenith-brand-acronym .zenith-letter.z-fadeout {
  animation: zenithFadeRise 0.5s ease-in forwards;
}

/* Holo sweep line overlay */
.zenith-brand-acronym .zenith-holo-line {
  position: absolute;
  top: 0;
  left: -30%;
  width: 20%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  pointer-events: none;
  opacity: 0;
  z-index: 2;
}

.zenith-brand-acronym .zenith-holo-line.z-sweep {
  opacity: 1;
  animation: zenithHoloSweep 1s ease-in-out forwards;
}

/* Landing spark effect */
.zenith-brand-acronym .zenith-letter .z-spark {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #60a5fa, #3b82f6, #60a5fa, transparent);
  border-radius: 2px;
  transform: scaleX(0);
  opacity: 0;
  pointer-events: none;
}

.zenith-brand-acronym .zenith-letter .z-spark.z-flash {
  animation: zenithLetterSpark 0.4s ease-out forwards;
}

/* Scrolled state — lighter colors for dark bg */
.pkp_structure_head.navbar-scrolled .zenith-brand-acronym {
  border-left-color: rgba(147, 197, 253, 0.5);
}

.pkp_structure_head.navbar-scrolled .zenith-brand-acronym .zenith-letter {
  background: linear-gradient(135deg, #93c5fd, #bfdbfe, #e0f2fe);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pkp_structure_head.navbar-scrolled #main-navigation > li > a,
.pkp_structure_head.navbar-scrolled #navigationUser > li > a,
.pkp_structure_head.navbar-scrolled .navbar-nav > li > a,
.pkp_structure_head.navbar-scrolled .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
}

.pkp_structure_head.navbar-scrolled #main-navigation > li > a:hover,
.pkp_structure_head.navbar-scrolled #navigationUser > li > a:hover,
.pkp_structure_head.navbar-scrolled .navbar-nav > li > a:hover,
.pkp_structure_head.navbar-scrolled .navbar-nav .nav-link:hover {
  color: #ffffff !important;
  background: rgba(0, 0, 0, 0.15) !important;
}

.navbar-brand {
  font-size: 1.55rem;
  font-weight: 800;
  background: var(--zenith-primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.2s ease;
  margin-right: 1.5rem;
}

.navbar-brand:hover {
  transform: scale(1.02);
}

/* OJS Menu Reset & Horizontal Flex Layout */
#main-navigation,
#navigationUser,
.pkp_structure_head ul.navbar-nav {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

@media (min-width: 992px) {
  #main-navigation,
  #navigationUser,
  .pkp_structure_head ul.navbar-nav {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 0.25rem !important;
    flex-wrap: wrap !important;
  }
}

@media (max-width: 991.98px) {
  #main-navigation,
  #navigationUser,
  .pkp_structure_head ul.navbar-nav {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.25rem !important;
    width: 100% !important;
    padding-top: 1rem !important;
  }
}

/* Individual Menu Items (both OJS load_menu structure and Bootstrap .nav-link) */
#main-navigation > li,
#navigationUser > li,
.pkp_structure_head ul.navbar-nav > li {
  list-style: none !important;
  position: relative !important;
  margin: 0 !important;
  padding: 0 !important;
}

#main-navigation > li > a,
#navigationUser > li > a,
.pkp_structure_head ul.navbar-nav > li > a,
.navbar-nav .nav-link {
  display: flex !important;
  align-items: center !important;
  padding: 0.5rem 0.75rem !important;
  font-family: 'Outfit', sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  color: var(--zenith-text-main) !important;
  text-decoration: none !important;
  border-radius: 99px !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  line-height: 1.4 !important;
  position: relative;
}

#main-navigation > li > a:hover,
#navigationUser > li > a:hover,
.pkp_structure_head ul.navbar-nav > li > a:hover,
.navbar-nav .nav-link:hover,
#main-navigation > li.active > a,
#navigationUser > li.active > a,
.pkp_structure_head ul.navbar-nav > li.active > a,
.navbar-nav .nav-link.active {
  color: var(--zenith-primary) !important;
  background: var(--zenith-primary-subtle) !important;
  transform: translateY(-1px);
}

/* Submenu / Dropdown menus generated by OJS load_menu */
#main-navigation > li > ul,
#navigationUser > li > ul,
.pkp_structure_head ul.navbar-nav > li > ul {
  display: none !important;
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  min-width: 220px !important;
  background: #ffffff !important;
  border-radius: 14px !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18) !important;
  padding: 0.5rem 0 !important;
  list-style: none !important;
  z-index: 1100 !important;
  border: 1px solid var(--zenith-card-border) !important;
  flex-direction: column !important;
}

#main-navigation > li:hover > ul,
#main-navigation > li:focus-within > ul,
#navigationUser > li:hover > ul,
#navigationUser > li:focus-within > ul,
.pkp_structure_head ul.navbar-nav > li:hover > ul {
  display: flex !important;
}

@media (max-width: 991.98px) {
  #main-navigation > li > ul,
  #navigationUser > li > ul,
  .pkp_structure_head ul.navbar-nav > li > ul {
    position: static !important;
    box-shadow: none !important;
    border: none !important;
    padding-left: 1rem !important;
    background: transparent !important;
  }
}

#main-navigation > li > ul > li > a,
#navigationUser > li > ul > li > a,
.pkp_structure_head ul.navbar-nav > li > ul > li > a {
  display: block !important;
  padding: 0.6rem 1.3rem !important;
  color: #475569 !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  font-size: 0.9rem !important;
  border-radius: 0 !important;
  transition: all 0.2s ease !important;
  background: transparent !important;
}

#main-navigation > li > ul > li > a:hover,
#navigationUser > li > ul > li > a:hover,
.pkp_structure_head ul.navbar-nav > li > ul > li > a:hover {
  background: #f8fafc !important;
  color: var(--zenith-primary) !important;
  padding-left: 1.5rem !important;
}

/* User Profile & Quick Action Buttons */
.nav-user-pills {
  display: flex !important;
  align-items: center !important;
  gap: 0.65rem !important;
}

.btn-pill-login {
  border-radius: 99px;
  padding: 0.45rem 1.2rem;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1.5px solid var(--zenith-primary);
  color: var(--zenith-primary);
  background: transparent;
  transition: all 0.3s ease;
}

.btn-pill-login:hover {
  background: var(--zenith-primary);
  color: #ffffff;
  box-shadow: 0 4px 15px var(--zenith-primary-subtle);
  transform: translateY(-2px);
}

.btn-pill-register {
  border-radius: 99px;
  padding: 0.45rem 1.3rem;
  font-weight: 600;
  font-size: 0.9rem;
  background: var(--zenith-primary-gradient);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 12px var(--zenith-primary-subtle);
  transition: all 0.3s ease;
}

.btn-pill-register:hover {
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
  transform: translateY(-2px) scale(1.03);
}

/* Responsive Navbar Collapse Container Alignment */
@media (min-width: 992px) {
  .pkp_structure_head .collapse.navbar-collapse,
  .pkp_structure_head .navbar-collapse.show {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-basis: auto !important;
    flex-grow: 1 !important;
  }
}

/* Interactive Search Bar */
.zenith-search-container {
  position: relative;
  display: flex;
  align-items: center;
}

.zenith-search-input {
  border-radius: 99px;
  border: 1.5px solid #cbd5e1;
  padding: 0.4rem 2.6rem 0.4rem 1.1rem;
  font-size: 0.9rem;
  width: 180px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: rgba(255, 255, 255, 0.8);
}

.zenith-search-input:focus {
  width: 260px;
  border-color: var(--zenith-primary);
  box-shadow: 0 0 0 4px var(--zenith-primary-subtle);
  outline: none;
  background: #ffffff;
}

.zenith-search-btn {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--zenith-primary);
  color: #ffffff;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.zenith-search-btn:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 12px var(--zenith-primary);
}

/* ============================================================================
 * HERO BANNER (COSMIC NEBULA & 3D INTERACTIVE COVER)
 * ============================================================================ */
.hero-banner {
  position: relative;
  background: linear-gradient(135deg, var(--zenith-obsidian) 0%, var(--zenith-slate) 50%, var(--zenith-indigo-dark) 100%);
  padding: 5.5rem 0 6.5rem 0;
  overflow: hidden;
  color: #ffffff;
}

/* Ambient Glowing Orbs Background */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.55;
  transition: transform 0.2s ease-out;
}

.hero-orb-1 {
  width: 450px;
  height: 450px;
  background: var(--zenith-primary);
  top: -100px;
  right: 10%;
  animation: floatOrb 12s ease-in-out infinite alternate;
}

.hero-orb-2 {
  width: 500px;
  height: 500px;
  background: #3b82f6;
  bottom: -150px;
  left: 5%;
  animation: floatOrb 16s ease-in-out infinite alternate-reverse;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.1); }
  100% { transform: translate(-20px, 40px) scale(0.95); }
}

/* 3D Floating Cover Card */
.hero-cover-wrapper {
  perspective: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-cover-card {
  position: relative;
  border-radius: var(--zenith-radius);
  background: rgba(255, 255, 255, 0.08);
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 107, 0, 0.2);
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out, box-shadow 0.3s ease;
  cursor: pointer;
  max-width: 320px;
}

.hero-cover-card img {
  border-radius: var(--zenith-radius-sm);
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.hero-cover-badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background: var(--zenith-primary-gradient);
  color: #fff;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.35rem 0.85rem;
  border-radius: 99px;
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.5);
  transform: translateZ(30px);
}

/* Glassmorphic Description Card */
.hero-desc-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
  border-radius: var(--zenith-radius-lg);
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #f1f5f9;
  padding: 0.4rem 1rem;
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.hero-title {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.1rem;
  color: #cbd5e1;
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* Hero Action Buttons */
.btn-hero-primary {
  background: var(--zenith-primary-gradient);
  color: #ffffff;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 99px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.45);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.btn-hero-primary:hover {
  color: #ffffff;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 30px rgba(255, 107, 0, 0.6);
}

.btn-hero-glass {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  padding: 0.8rem 1.8rem;
  border-radius: 99px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-hero-glass:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-3px);
}

/* ============================================================================
 * FLOATING LIVE STATISTICS BAR
 * ============================================================================ */
.stats-bar-container {
  margin-top: -3.5rem;
  position: relative;
  z-index: 10;
  margin-bottom: 4.5rem;
}

.stats-card {
  background: #ffffff;
  border-radius: var(--zenith-radius-lg);
  box-shadow: var(--zenith-shadow-lg);
  border: 1px solid var(--zenith-card-border);
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  align-items: center;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0.5rem 1rem;
  border-right: 1px solid #f1f5f9;
  transition: transform 0.3s ease;
}

.stat-item:last-child {
  border-right: none;
}

.stat-item:hover {
  transform: translateY(-4px);
}

.stat-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  background: var(--zenith-primary-subtle);
  color: var(--zenith-primary);
  flex-shrink: 0;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  color: var(--zenith-text-main);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--zenith-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

/* ============================================================================
 * FEATURED ARTICLES HIGHLIGHT CARDS (G, D, C, B STYLE CAROUSEL/GRID)
 * ============================================================================ */
.section-title-header {
  margin-bottom: 2.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--zenith-text-main);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--zenith-primary-gradient);
  border-radius: 99px;
}

.highlight-card {
  border-radius: var(--zenith-radius);
  overflow: hidden;
  position: relative;
  height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.8rem;
  color: #ffffff !important;
  text-decoration: none !important;
  box-shadow: var(--zenith-shadow-md);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
}

.highlight-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 35px -5px rgba(0, 0, 0, 0.25);
  color: #ffffff !important;
}

/* 4 Gradient Variations */
.highlight-card-1 {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}
.highlight-card-2 {
  background: linear-gradient(135deg, #065f46 0%, #10b981 100%);
}
.highlight-card-3 {
  background: linear-gradient(135deg, #4c1d95 0%, #8b5cf6 100%);
}
.highlight-card-4 {
  background: linear-gradient(135deg, #831843 0%, #f43f5e 100%);
}

.highlight-watermark {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 8rem;
  font-weight: 900;
  font-family: 'Outfit', sans-serif;
  opacity: 0.12;
  line-height: 1;
  pointer-events: none;
  transition: transform 0.4s ease;
}

.highlight-card:hover .highlight-watermark {
  transform: scale(1.15) rotate(-5deg);
}

.highlight-tag {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  padding: 0.3rem 0.8rem;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  align-self: flex-start;
}

.highlight-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.35;
  z-index: 2;
  margin-top: auto;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.highlight-meta {
  font-size: 0.85rem;
  opacity: 0.9;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ============================================================================
 * INTERACTIVE ARTICLE DISCOVERY GRID & NAV-PILLS TABS
 * ============================================================================ */
/* ============================================================================
 * INTERACTIVE ARTICLE DISCOVERY GRID & NAV-PILLS TABS (7 TABS ALL-IN-ONE)
 * ============================================================================ */
.zenith-tabs {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  padding: 0.5rem !important;
  border-radius: 99px !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0.4rem !important;
  align-items: center;
  justify-content: center !important;
  width: 100% !important;
  margin-bottom: 2.5rem !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.zenith-tabs .nav-item {
  flex: 1 1 auto !important;
  display: flex !important;
}

  @media (max-width: 991.98px) {
    .zenith-tabs {
      border-radius: 20px !important;
      padding: 0.5rem !important;
      flex-wrap: nowrap !important;
      overflow-x: auto;
      overflow-y: hidden;
      justify-content: flex-start !important;
      -webkit-overflow-scrolling: touch;
      scroll-snap-type: x mandatory;
    }
    
    .zenith-tabs::-webkit-scrollbar {
      height: 4px;
    }
    
    .zenith-tabs::-webkit-scrollbar-thumb {
      background: rgba(0,0,0,0.1);
      border-radius: 10px;
    }
    
    .zenith-tabs .nav-item {
      flex: 0 0 auto !important;
      scroll-snap-align: start;
    }
    
    .zenith-tabs .nav-link {
      white-space: nowrap;
      padding: 0.6rem 1.25rem !important;
    }
    
    /* Sleek Mobile Menu Card */
    .navbar-collapse {
      background: var(--zenith-card-bg);
      padding: 1.5rem;
      border-radius: var(--zenith-radius);
      box-shadow: var(--zenith-shadow-lg);
      margin-top: 1rem;
      border: 1px solid var(--zenith-card-border);
    }
    
    #main-navigation > li > a,
    #navigationUser > li > a,
    .pkp_structure_head ul.navbar-nav > li > a,
    .navbar-collapse .nav-link,
    .pkp_structure_head.navbar-scrolled #main-navigation > li > a,
    .pkp_structure_head.navbar-scrolled #navigationUser > li > a,
    .pkp_structure_head.navbar-scrolled .navbar-nav > li > a,
    .pkp_structure_head.navbar-scrolled .navbar-collapse .nav-link {
      padding: 0.85rem 1rem !important;
      border-bottom: 1px solid var(--zenith-border) !important;
      border-radius: 0 !important;
      color: var(--zenith-text-main) !important;
      justify-content: flex-start !important;
      width: 100% !important;
    }
    
    #main-navigation > li:last-child > a,
    .pkp_structure_head.navbar-scrolled #main-navigation > li:last-child > a {
      border-bottom: none !important;
    }
    
    #main-navigation > li > a:hover,
    #navigationUser > li > a:hover,
    .pkp_structure_head ul.navbar-nav > li > a:hover,
    .navbar-collapse .nav-link:hover,
    .pkp_structure_head.navbar-scrolled #main-navigation > li > a:hover,
    .pkp_structure_head.navbar-scrolled #navigationUser > li > a:hover,
    .pkp_structure_head.navbar-scrolled .navbar-nav > li > a:hover,
    .pkp_structure_head.navbar-scrolled .navbar-collapse .nav-link:hover {
      background: var(--zenith-bg-subtle) !important;
      color: var(--zenith-primary) !important;
    }
    
    /* Force right action bar to stack */
    .pkp_structure_head .d-flex.align-items-center.ms-auto {
      flex-direction: column !important;
      align-items: stretch !important;
      gap: 1rem !important;
      margin-top: 1.5rem !important;
      width: 100% !important;
    }
    
    .zenith-search-container {
      width: 100% !important;
    }
    
    .nav-user-pills {
      flex-direction: column !important;
      width: 100% !important;
      gap: 0.75rem !important;
    }
    
    .nav-user-pills .btn {
      width: 100% !important;
      justify-content: center !important;
    }
  }

.zenith-tabs .nav-link {
  border-radius: 99px !important;
  padding: 0.6rem 1.1rem !important;
  font-family: 'Outfit', sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.92rem !important;
  color: #475569 !important;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1) !important;
  border: none !important;
  background: transparent;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  gap: 0.45rem !important;
  width: 100% !important;
}

.zenith-tabs .nav-link:hover {
  color: var(--zenith-primary) !important;
  background: var(--zenith-primary-subtle) !important;
  transform: translateY(-1px);
}

.zenith-tabs .nav-link.active {
  background: var(--zenith-primary-gradient) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 15px var(--zenith-primary-subtle) !important;
  transform: translateY(-1px);
}

/* Tab Pane Smooth Transitions & Cards */
.tab-pane {
  transition: opacity 0.3s ease-in-out;
}

.tab-about-card,
.tab-editorial-card {
  background: #ffffff;
  border: 1px solid var(--zenith-card-border);
  border-radius: var(--zenith-radius-lg);
  padding: 2.2rem;
  box-shadow: var(--zenith-shadow-md);
  transition: all 0.3s ease;
}

.tab-about-card:hover,
.tab-editorial-card:hover {
  box-shadow: var(--zenith-shadow-lg);
  border-color: rgba(255, 107, 0, 0.3);
}

/* Modern Article Summary Card */
.article-summary-card {
  background: var(--zenith-card-bg);
  border: 1px solid var(--zenith-card-border);
  border-radius: var(--zenith-radius);
  padding: 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--zenith-shadow-sm);
  position: relative;
}

.article-summary-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--zenith-primary-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: var(--zenith-radius) var(--zenith-radius) 0 0;
}

.article-summary-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--zenith-shadow-lg);
  border-color: rgba(255, 107, 0, 0.3);
  z-index: 10;
}

.article-summary-card:hover::before {
  opacity: 1;
}

.article-header-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--zenith-primary-subtle);
  color: var(--zenith-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.article-category-badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--zenith-primary);
  background: var(--zenith-primary-subtle);
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
  align-self: flex-start;
  margin-bottom: 0.8rem;
}

.article-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.8rem;
}

.article-card-title a {
  color: var(--zenith-text-main);
  text-decoration: none;
  transition: color 0.2s ease;
}

.article-card-title a:hover {
  color: var(--zenith-primary);
}

.article-card-authors {
  font-size: 0.88rem;
  color: var(--zenith-text-muted);
  font-weight: 500;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.article-card-abstract {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card-footer {
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.article-date-views {
  font-size: 0.8rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.btn-galley-pdf {
  background: var(--zenith-primary-subtle);
  color: var(--zenith-primary);
  border: 1px solid transparent;
  padding: 0.4rem 1rem;
  border-radius: 99px;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none !important;
}

.btn-galley-pdf:hover {
  background: var(--zenith-primary);
  color: #ffffff !important;
  transform: scale(1.05);
  box-shadow: 0 4px 12px var(--zenith-primary-subtle);
}

.btn-galley-view {
  background: #f1f5f9;
  color: var(--zenith-text-main);
  padding: 0.4rem 1rem;
  border-radius: 99px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.25s ease;
  text-decoration: none !important;
}

.btn-galley-view:hover {
  background: #e2e8f0;
  color: var(--zenith-text-main);
}

/* ============================================================================
 * INDEXED & ABSTRACTED IN (ACCREDITATION BADGES)
 * ============================================================================ */
.indexing-section {
  padding: 5rem 0;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  margin: 5rem 0;
}

.indexing-badge-item {
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: 99px;
  padding: 0.6rem 1.6rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: #334155;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

.indexing-badge-item:hover {
  border-color: var(--zenith-primary);
  background: #ffffff;
  color: var(--zenith-primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px var(--zenith-primary-subtle);
}

.indexing-badge-icon {
  color: var(--zenith-primary);
  font-size: 1.1rem;
}

/* ============================================================================
 * QUICK LINKS FOR AUTHORS & RESEARCHERS (6 CARDS GRID)
 * ============================================================================ */
.quick-link-card {
  background: #ffffff;
  border-radius: var(--zenith-radius);
  border: 1px solid var(--zenith-card-border);
  padding: 2rem;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--zenith-shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  text-decoration: none !important;
  color: var(--zenith-text-main);
}

.quick-link-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--zenith-shadow-lg);
  border-color: var(--zenith-primary);
  color: var(--zenith-text-main);
}

.quick-link-icon {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  background: var(--zenith-primary-subtle);
  color: var(--zenith-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.3rem;
  transition: transform 0.3s ease, background 0.3s ease;
}

.quick-link-card:hover .quick-link-icon {
  background: var(--zenith-primary-gradient);
  color: #ffffff;
  transform: scale(1.1) rotate(6deg);
}

.quick-link-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.quick-link-desc {
  font-size: 0.9rem;
  color: var(--zenith-text-muted);
  line-height: 1.5;
}

/* ============================================================================
 * SCROLL REVEAL MICRO-ANIMATIONS (Animate on Scroll)
 * ============================================================================ */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================================
 * SLEEK BRANDED FOOTER
 * ============================================================================ */
.zenith-footer {
  background: var(--zenith-slate);
  color: #cbd5e1;
  padding-top: 5rem;
  padding-bottom: 2.5rem;
  border-top: 4px solid var(--zenith-primary);
  font-size: 0.95rem;
}

.zenith-footer-title {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 1.4rem;
}

.zenith-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.zenith-footer-links li {
  margin-bottom: 0.75rem;
}

.zenith-footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
}

.zenith-footer-links a::before {
  content: "\F285";
  font-family: "bootstrap-icons";
  color: var(--zenith-primary);
  margin-right: 0.35rem;
  font-weight: 700;
  display: inline-block;
  vertical-align: middle;
}

.zenith-footer-links a:hover {
  color: #ffffff;
  padding-left: 6px;
}

.social-icons-bar {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  color: #94a3b8;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-icon-btn:hover {
  background: var(--zenith-primary);
  color: #ffffff;
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3.5rem;
  padding-top: 2rem;
  text-align: center;
  color: #64748b;
  font-size: 0.88rem;
}

/* ============================================================================
 * RESPONSIVE OVERRIDES
 * ============================================================================ */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-cover-wrapper {
    margin-bottom: 2.5rem;
  }
  .stats-card {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 1rem;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1.8rem;
  }
  .stats-card {
    grid-template-columns: 1fr;
  }
}

/* ============================================================================
 * ABOUT JOURNAL & ANNOUNCEMENTS SPLIT SECTION (HOMEPAGE)
 * ============================================================================ */
.about-journal-card,
.announcements-feed-card {
  background: var(--zenith-card-bg);
  border: 1px solid var(--zenith-card-border) !important;
  box-shadow: var(--zenith-shadow-md);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.about-journal-card:hover,
.announcements-feed-card:hover {
  box-shadow: var(--zenith-shadow-lg);
  transform: translateY(-3px);
  border-color: rgba(255, 107, 0, 0.3) !important;
}

.about-card-glow-bg {
  position: absolute;
  top: -40%;
  right: -20%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.announcement-pulse-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--zenith-primary-subtle);
  color: var(--zenith-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.15);
}

.announcements-list-wrapper {
  max-height: 480px;
  overflow-y: auto;
  padding-right: 0.3rem;
}

.announcements-list-wrapper::-webkit-scrollbar {
  width: 5px;
}

.announcements-list-wrapper::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 99px;
}

.announcement-item-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.8) !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.announcement-item-card:hover {
  background: #f8fafc;
  border-color: var(--zenith-primary) !important;
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.announcement-item-card h4 {
  transition: color 0.2s ease;
}

.announcement-item-card:hover h4 {
  color: var(--zenith-primary) !important;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Additional Home Content Beautification */
.additional-home-content {
	color: #4b5563;
}
.additional-home-content h2.section-title {
	font-family: 'Outfit', sans-serif;
	font-weight: 700;
	color: #111827;
	text-align: center;
	margin-bottom: 0.5rem;
}
.additional-home-content h2.section-title a {
	color: var(--zenith-primary);
	text-decoration: none;
}
.additional-home-content .text-muted.h1 {
	font-size: 1.15rem;
	line-height: 1.7;
	margin-bottom: 2rem;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}
.additional-home-content .card {
	border: 1px solid #e9ecef !important;
	border-radius: 12px;
	box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,.075);
	height: 100%;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	background: #f8f9fa;
}
.additional-home-content .card:hover {
	transform: translateY(-5px);
	box-shadow: 0 0.5rem 1rem rgba(0,0,0,.15);
}
.additional-home-content .card-block {
	padding: 1.5rem;
}
.additional-home-content .card-title {
	font-family: 'Outfit', sans-serif;
	font-weight: 700;
	font-size: 1.25rem;
	color: #111827;
	border-bottom: 2px solid var(--zenith-primary);
	padding-bottom: 0.5rem;
	margin-bottom: 1rem;
}
.additional-home-content .card-text {
	font-size: 0.95rem;
	color: #4b5563;
	margin-bottom: 1.5rem;
}
.additional-home-content .read-more {
	color: var(--zenith-primary);
	font-weight: 600;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
}
.additional-home-content .read-more:hover {
	color: #008f6a;
}
/* Flex layout for indexing images */
.additional-home-content > p {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 1.5rem;
	margin-top: 2rem;
}
.additional-home-content > p > a {
	display: flex;
	align-items: center;
	justify-content: center;
}
.additional-home-content > p > a > img {
	max-height: 50px;
	width: auto;
	mix-blend-mode: multiply;
	filter: grayscale(20%);
	transition: all 0.3s ease;
}
.additional-home-content > p > a:hover > img {
	filter: grayscale(0%);
	transform: scale(1.05);
}

/* ==========================================================================
   UNIVERSAL PAGE WRAPPER & PROSE
   ========================================================================== */

.zenith-page-wrapper {
  background: var(--zenith-card-bg);
  border: 1px solid var(--zenith-card-border);
  border-radius: var(--zenith-radius);
  padding: 3rem 4rem;
  box-shadow: var(--zenith-shadow-sm);
  margin-top: -3rem; /* Overlaps with the hero banner */
  position: relative;
  z-index: 5;
  margin-bottom: 4rem;
}

@media (max-width: 768px) {
  .zenith-page-wrapper {
    padding: 2rem 1.5rem;
    margin-top: -2rem;
  }
}

/* Beautiful prose styling for user-generated content (TinyMCE) */
.zenith-prose {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--zenith-text);
}

.zenith-prose h1, .zenith-prose h2, .zenith-prose h3, .zenith-prose h4 {
  color: var(--zenith-text-dark);
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.zenith-prose h1 { font-size: 2.25rem; }
.zenith-prose h2 { font-size: 1.75rem; border-bottom: 2px solid var(--zenith-border); padding-bottom: 0.5rem; }
.zenith-prose h3 { font-size: 1.5rem; }

.zenith-prose p {
  margin-bottom: 1.25rem;
}

.zenith-prose a {
  color: var(--zenith-primary);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px dashed var(--zenith-primary);
  transition: all 0.2s ease;
}

.zenith-prose a:hover {
  color: #ff6b00; /* Orange highlight */
  border-bottom-color: #ff6b00;
  border-bottom-style: solid;
}

.zenith-prose ul, .zenith-prose ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.zenith-prose li {
  margin-bottom: 0.5rem;
}

.zenith-prose table {
  width: 100%;
  margin-bottom: 2rem;
  border-collapse: collapse;
}

.zenith-prose table th, .zenith-prose table td {
  padding: 1rem;
  border: 1px solid var(--zenith-border);
  text-align: left;
}

.zenith-prose table th {
  background: var(--zenith-bg-subtle);
  font-weight: 600;
  color: var(--zenith-text-dark);
}

.zenith-prose blockquote {
  border-left: 4px solid var(--zenith-primary);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: rgba(16, 185, 129, 0.05);
  font-style: italic;
  border-radius: 0 8px 8px 0;
}

/* Hide Redundant OJS Core Elements */
.pkp_structure_main .cmp_breadcrumbs { display: none !important; }
.pkp_structure_main .page > h1:first-of-type { display: none !important; }

/* ============================================================================
 * CUSTOM SOCIAL MEDIA SHARE STYLING & ANIMATIONS
 * ============================================================================ */

/* Brand Colors variables */
:root {
  --color-whatsapp: #25d366;
  --color-facebook: #1877f2;
  --color-twitter: #000000;
  --color-linkedin: #0077b5;
  --color-telegram: #24a1de;
  --color-copy: #64748b;
}

/* 1. Floating Share Bar (Desktop Only) */
.zenith-floating-share-bar {
  position: fixed;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1040;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.zenith-floating-share-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--zenith-card-bg);
  border: 1px solid var(--zenith-card-border);
  padding: 1rem 0.65rem;
  border-radius: var(--zenith-radius-lg);
  box-shadow: var(--zenith-shadow-md);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.zenith-floating-share-inner:hover {
  box-shadow: var(--zenith-shadow-lg);
  border-color: rgba(59, 130, 246, 0.2);
}

.zenith-floating-share-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--zenith-text-muted);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  margin-bottom: 0.5rem;
  user-select: none;
  opacity: 0.7;
}

.zenith-share-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  color: var(--zenith-text-muted);
  background: #f8fafc;
  border: 1px solid rgba(226, 232, 240, 0.8);
  font-size: 1.2rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.zenith-share-icon:hover {
  transform: scale(1.15) translateY(-2px);
  color: #ffffff !important;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Share colors & glow effects on hover */
.zenith-share-icon.wa:hover { background: var(--color-whatsapp); border-color: var(--color-whatsapp); box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4); }
.zenith-share-icon.fb:hover { background: var(--color-facebook); border-color: var(--color-facebook); box-shadow: 0 8px 20px rgba(24, 119, 242, 0.4); }
.zenith-share-icon.tw:hover { background: var(--color-twitter); border-color: var(--color-twitter); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); }
.zenith-share-icon.ln:hover { background: var(--color-linkedin); border-color: var(--color-linkedin); box-shadow: 0 8px 20px rgba(0, 119, 181, 0.4); }
.zenith-share-icon.tg:hover { background: var(--color-telegram); border-color: var(--color-telegram); box-shadow: 0 8px 20px rgba(36, 161, 222, 0.4); }
.zenith-share-icon.copy:hover { background: var(--color-copy); border-color: var(--color-copy); box-shadow: 0 8px 20px rgba(100, 116, 139, 0.4); }

/* Custom Tooltip using attr */
.zenith-share-icon::after {
  content: attr(title);
  position: absolute;
  left: 3.5rem;
  top: 50%;
  transform: translateY(-50%) translateX(-10px);
  background: var(--zenith-slate);
  color: #ffffff;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.zenith-share-icon::before {
  content: '';
  position: absolute;
  left: 3.2rem;
  top: 50%;
  transform: translateY(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: transparent var(--zenith-slate) transparent transparent;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.2s ease;
}

.zenith-share-icon:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

.zenith-share-icon:hover::before {
  opacity: 1;
  visibility: visible;
}

/* Responsive Hide for Floating Bar */
@media (max-width: 1200px) {
  .zenith-floating-share-bar {
    display: none !important;
  }
}

/* 2. Inline Share Card (Sidebar & Mobile) */
.zenith-inline-share-card {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid var(--zenith-card-border) !important;
  border-radius: var(--zenith-radius) !important;
}

.zenith-inline-share-card:hover {
  box-shadow: var(--zenith-shadow-md) !important;
  border-color: rgba(59, 130, 246, 0.15) !important;
}

.zenith-inline-share-buttons {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
}

.zenith-inline-share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.75rem;
  border-radius: var(--zenith-radius-sm);
  color: var(--zenith-text-muted);
  background: #f8fafc;
  border: 1px solid rgba(226, 232, 240, 0.8);
  font-size: 1.2rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.zenith-inline-share-btn:hover {
  transform: translateY(-3px);
  color: #ffffff !important;
  box-shadow: 0 6px 12px rgba(0,0,0,0.08);
}

.zenith-inline-share-btn.wa:hover { background: var(--color-whatsapp); border-color: var(--color-whatsapp); }
.zenith-inline-share-btn.fb:hover { background: var(--color-facebook); border-color: var(--color-facebook); }
.zenith-inline-share-btn.tw:hover { background: var(--color-twitter); border-color: var(--color-twitter); }
.zenith-inline-share-btn.ln:hover { background: var(--color-linkedin); border-color: var(--color-linkedin); }
.zenith-inline-share-btn.tg:hover { background: var(--color-telegram); border-color: var(--color-telegram); }
.zenith-inline-share-btn.copy:hover { background: var(--color-copy); border-color: var(--color-copy); }

/* 3. Toast Notification Styles */
.zenith-toast {
  position: fixed;
  top: 6.5rem; /* Muncul di bawah sticky navbar */
  left: 50%;
  transform: translateX(-50%) translateY(-15px) scale(0.95);
  background: #ffffff;
  border-left: 4px solid var(--zenith-primary); /* Mengikuti Tema */
  color: var(--zenith-text-main);
  padding: 0.85rem 1.5rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 9999;
  display: flex;
  align-items: center;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.zenith-toast-icon {
  color: var(--zenith-primary); /* Mengikuti Tema */
}

.zenith-toast.show {
  transform: translateX(-50%) translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
}

/* ============================================================================
 * SLEEK AND PROFESSIONAL GALLEY LINK BUTTONS (PDF/HTML/ETC)
 * ============================================================================ */
.obj_galley_link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.8rem;
  border-radius: 99px;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid var(--zenith-primary);
  color: var(--zenith-primary) !important;
  background: transparent;
  line-height: 1.2;
}

.obj_galley_link:hover {
  background: var(--zenith-primary);
  color: #ffffff !important;
  box-shadow: 0 4px 8px var(--zenith-primary-subtle);
  transform: scale(1.05);
}

/* Specific styling for PDF galleys (Red Accent) */
.obj_galley_link.pdf {
  border-color: #ef4444;
  color: #ef4444 !important;
}

.obj_galley_link.pdf:hover {
  background: #ef4444;
  color: #ffffff !important;
  box-shadow: 0 4px 8px rgba(239, 68, 68, 0.2);
}

/* Bootstrap Icons dynamic prefix */
.obj_galley_link::before {
  font-family: "bootstrap-icons" !important;
  font-size: 0.85rem;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
}

.obj_galley_link.pdf::before {
  content: "\f63e"; /* bi-file-earmark-pdf */
}

.obj_galley_link.file::before {
  content: "\f392"; /* bi-file-earmark */
}

/* ============================================================================
 * DARK MODE STYLES & OVERRIDES (Obsidian Deep Dark Theme)
 * ============================================================================ */
body.dark-mode {
  background-color: #0b0f19 !important;
  color: #cbd5e1 !important;
  --zenith-card-bg: #141b2d;
  --zenith-card-border: rgba(255, 255, 255, 0.08);
  --zenith-text-main: #e2e8f0;
  --zenith-text-muted: #94a3b8;
  --zenith-glass-bg: rgba(11, 15, 25, 0.85);
  --zenith-glass-border: rgba(255, 255, 255, 0.1);
  --zenith-shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
  --zenith-shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.3);
  --zenith-shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.3);
}

body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6,
body.dark-mode .text-dark,
body.dark-mode .navbar-brand,
body.dark-mode .page_title,
body.dark-mode .author-badge .name {
  color: #f8fafc !important;
}

body.dark-mode p,
body.dark-mode span,
body.dark-mode .abstract-content,
body.dark-mode .text-secondary {
  color: #cbd5e1 !important;
}

body.dark-mode .nav-link,
body.dark-mode .navbar-nav .nav-link {
  color: #cbd5e1 !important;
}

body.dark-mode .nav-link:hover,
body.dark-mode .navbar-nav .nav-link:hover {
  color: var(--zenith-primary) !important;
}

body.dark-mode .card,
body.dark-mode .article-summary-card,
body.dark-mode .value.bg-white,
body.dark-mode .bg-white,
body.dark-mode .zenith-page-wrapper {
  background-color: var(--zenith-card-bg) !important;
  border-color: var(--zenith-card-border) !important;
}

body.dark-mode .form-control,
body.dark-mode .zenith-search-input {
  background-color: #1e293b !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: #f8fafc !important;
}

body.dark-mode #articlesBySimilarityList,
body.dark-mode #articlesBySameAuthorList,
body.dark-mode .item.citation {
  background-color: var(--zenith-card-bg) !important;
  border-color: var(--zenith-card-border) !important;
}

body.dark-mode #articlesBySimilarityList h3,
body.dark-mode #articlesBySameAuthorList h3,
body.dark-mode .item.citation h2.label {
  color: #f8fafc !important;
  border-bottom-color: rgba(255, 255, 255, 0.1) !important;
}

body.dark-mode #articlesBySimilarityList ul li,
body.dark-mode #articlesBySameAuthorList ul li {
  border-bottom-color: rgba(255, 255, 255, 0.05) !important;
}

body.dark-mode .bg-light,
body.dark-mode .author-badge {
  background-color: #1e293b !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

body.dark-mode .pkp_structure_footer {
  background-color: #060911 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}

body.dark-mode .article-card-title a {
  color: #cbd5e1 !important;
}

body.dark-mode .article-card-title a:hover {
  color: var(--zenith-primary) !important;
}

body.dark-mode .article-card-footer {
  border-top-color: rgba(255, 255, 255, 0.08) !important;
}

body.dark-mode .btn-light {
  background-color: #1e293b !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: #f8fafc !important;
}

body.dark-mode .btn-light:hover {
  background-color: #334155 !important;
}

body.dark-mode .references-section {
  background-color: #141b2d !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

body.dark-mode .references-content,
body.dark-mode .references-content li {
  color: #cbd5e1 !important;
  border-bottom-color: rgba(255, 255, 255, 0.05) !important;
}

body.dark-mode .list-group-item {
  background-color: transparent !important;
  border-bottom-color: rgba(255, 255, 255, 0.08) !important;
  color: #cbd5e1 !important;
}

body.dark-mode #citationOutput {
  background-color: #1e293b !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: #f8fafc !important;
}

body.dark-mode .citation_formats_button {
  background-color: #141b2d !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: #f8fafc !important;
}

body.dark-mode .citation_formats_button:hover {
  background-color: #1e293b !important;
}

body.dark-mode .keywords-list {
  border-top-color: rgba(255, 255, 255, 0.1) !important;
}

body.dark-mode .zenith-share-icon,
body.dark-mode .zenith-inline-share-btn {
  background-color: #1e293b !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

body.dark-mode .zenith-share-icon:hover,
body.dark-mode .zenith-inline-share-btn:hover {
  background-color: var(--zenith-primary) !important;
}

body.dark-mode .zenith-floating-share-inner {
  background-color: var(--zenith-card-bg) !important;
  border-color: var(--zenith-card-border) !important;
}

body.dark-mode .badge {
  background-color: rgba(255, 255, 255, 0.08) !important;
  color: #cbd5e1 !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

body.dark-mode .badge.bg-primary-subtle {
  background-color: var(--zenith-primary-subtle) !important;
  color: var(--zenith-primary) !important;
  border-color: rgba(59, 130, 246, 0.2) !important;
}

body.dark-mode .doi-badge a {
  color: var(--zenith-primary) !important;
}

/* ============================================================================
 * HOMEPAGE DARK MODE OVERRIDES
 * ============================================================================ */
body.dark-mode .stats-card {
  background: var(--zenith-card-bg) !important;
  border-color: var(--zenith-card-border) !important;
  box-shadow: var(--zenith-shadow-md) !important;
}

body.dark-mode .stat-item {
  border-right-color: rgba(255, 255, 255, 0.08) !important;
}

body.dark-mode .stat-number {
  color: #f8fafc !important;
}

body.dark-mode .stat-label {
  color: var(--zenith-text-muted) !important;
}

body.dark-mode .zenith-tabs {
  background: var(--zenith-card-bg) !important;
  border-color: var(--zenith-card-border) !important;
  box-shadow: none !important;
}

body.dark-mode .zenith-tabs .nav-link {
  color: #cbd5e1 !important;
}

body.dark-mode .zenith-tabs .nav-link:hover {
  color: var(--zenith-primary) !important;
  background: var(--zenith-primary-subtle) !important;
}

body.dark-mode .zenith-tabs .nav-link.active {
  color: #ffffff !important;
}

body.dark-mode .indexing-section {
  background: #0d1322 !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

body.dark-mode .indexing-section .section-title {
  color: #f8fafc !important;
}

body.dark-mode .indexing-badge-item {
  background: #141b2d !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: #cbd5e1 !important;
}

body.dark-mode .indexing-badge-item:hover {
  background: #1e293b !important;
  border-color: var(--zenith-primary) !important;
  color: var(--zenith-primary) !important;
}

body.dark-mode .quick-link-card {
  background: var(--zenith-card-bg) !important;
  border-color: var(--zenith-card-border) !important;
  box-shadow: var(--zenith-shadow-sm) !important;
}

body.dark-mode .quick-link-card:hover {
  border-color: var(--zenith-primary) !important;
  box-shadow: var(--zenith-shadow-lg) !important;
}

body.dark-mode .quick-link-title {
  color: #f8fafc !important;
}

body.dark-mode .quick-link-desc {
  color: #cbd5e1 !important;
}

body.dark-mode .quick-link-icon {
  background: rgba(255, 255, 255, 0.05) !important;
  color: var(--zenith-primary) !important;
}

body.dark-mode .quick-link-card:hover .quick-link-icon {
  background: var(--zenith-primary-gradient) !important;
  color: #ffffff !important;
}

/* Fix mobile menu hamburger toggler visibility in Dark Mode */
body.dark-mode .navbar-toggler-icon {
  filter: invert(1) !important;
}

/* Custom wrapper for mobile theme toggle & hamburger button */
@media (max-width: 991.98px) {
  .zenith-mobile-toggles-wrapper {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    margin-left: auto !important;
    gap: 1.1rem !important;
  }
}
@media (min-width: 992px) {
  .zenith-mobile-toggles-wrapper {
    display: none !important;
  }
}

/* ============================================================================
 * LOGIN & REGISTER PAGE DARK MODE OVERRIDES
 * ============================================================================ */
body.dark-mode .page_login,
body.dark-mode .page_register {
  background-color: #0b0f19 !important;
}

body.dark-mode .page_login .text-muted,
body.dark-mode .page_register .text-muted,
body.dark-mode .page_login label,
body.dark-mode .page_register label,
body.dark-mode .page_login .form-check-label,
body.dark-mode .page_register .form-check-label,
body.dark-mode .page_login .text-secondary,
body.dark-mode .page_register .text-secondary {
  color: #cbd5e1 !important;
}

body.dark-mode .page_login h1,
body.dark-mode .page_login h2,
body.dark-mode .page_login h3,
body.dark-mode .page_login h4,
body.dark-mode .page_login h5,
body.dark-mode .page_register h1,
body.dark-mode .page_register h2,
body.dark-mode .page_register h3,
body.dark-mode .page_register h4,
body.dark-mode .page_register h5 {
  color: #f8fafc !important;
}

body.dark-mode .page_login .border-top,
body.dark-mode .page_register .border-top {
  border-color: rgba(255, 255, 255, 0.08) !important;
}

body.dark-mode .form-floating > label {
  color: #94a3b8 !important;
}

body.dark-mode .form-floating > .form-control:focus ~ label,
body.dark-mode .form-floating > .form-control:not(:placeholder-shown) ~ label,
body.dark-mode .form-floating > .form-select ~ label {
  color: var(--zenith-primary) !important;
}

/* Fix country select dropdown color in dark mode */
body.dark-mode .form-select {
  background-color: #1e293b !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: #f8fafc !important;
}

body.dark-mode .form-select option {
  background-color: #141b2d !important;
  color: #f8fafc !important;
}

/* ============================================================================
 * FEES, CONTACT, & ISSUE ARCHIVE PAGES DARK MODE OVERRIDES
 * ============================================================================ */
/* Strip any white inline backgrounds entered by TinyMCE editor */
body.dark-mode .card-body,
body.dark-mode .card-body p,
body.dark-mode .card-body span,
body.dark-mode .card-body div,
body.dark-mode .card-body h1,
body.dark-mode .card-body h2,
body.dark-mode .card-body h3,
body.dark-mode .card-body h4,
body.dark-mode .card-body h5,
body.dark-mode .card-body h6,
body.dark-mode .card-body table,
body.dark-mode .card-body tr,
body.dark-mode .card-body td,
body.dark-mode .card-body th,
body.dark-mode .zenith-prose,
body.dark-mode .zenith-prose p,
body.dark-mode .zenith-prose span,
body.dark-mode .zenith-prose div,
body.dark-mode .zenith-prose h1,
body.dark-mode .zenith-prose h2,
body.dark-mode .zenith-prose h3,
body.dark-mode .zenith-prose h4,
body.dark-mode .zenith-prose h5,
body.dark-mode .zenith-prose h6 {
  background-color: transparent !important;
}

body.dark-mode .card-body h1,
body.dark-mode .card-body h2,
body.dark-mode .card-body h3,
body.dark-mode .card-body h4,
body.dark-mode .card-body h5,
body.dark-mode .card-body h6,
body.dark-mode .zenith-prose h1,
body.dark-mode .zenith-prose h2,
body.dark-mode .zenith-prose h3,
body.dark-mode .zenith-prose h4,
body.dark-mode .zenith-prose h5,
body.dark-mode .zenith-prose h6 {
  color: #f8fafc !important;
}

/* Contact Page Specific */
body.dark-mode .page_contact .card {
  background-color: var(--zenith-card-bg) !important;
  border-color: var(--zenith-card-border) !important;
}

body.dark-mode .page_contact .card-body {
  color: #cbd5e1 !important;
}

body.dark-mode .page_contact a,
body.dark-mode .page_contact span,
body.dark-mode .page_contact strong {
  color: #cbd5e1 !important;
}

body.dark-mode .page_contact a:hover {
  color: var(--zenith-primary) !important;
}

/* Issue Archive Summary Card Specific */
body.dark-mode .issue-summary-card {
  background-color: var(--zenith-card-bg) !important;
  border-color: var(--zenith-card-border) !important;
}

body.dark-mode .issue-summary-card .text-dark {
  color: #f8fafc !important;
}

body.dark-mode .issue-summary-card .text-muted {
  color: #cbd5e1 !important;
}

body.dark-mode .issue-summary-card .border-top {
  border-color: rgba(255, 255, 255, 0.08) !important;
}

/* Global text contrast overrides for dark mode (Mailing Address & Form Labels) */
body.dark-mode .text-muted,
body.dark-mode label,
body.dark-mode legend,
body.dark-mode .form-label {
  color: #cbd5e1 !important;
}

/* Search Page Specific Overrides */
body.dark-mode .page_search .accordion-item,
body.dark-mode .page_search .accordion-button {
  background-color: var(--zenith-card-bg) !important;
  color: #f8fafc !important;
  border-color: var(--zenith-card-border) !important;
}

body.dark-mode .page_search .accordion-button::after {
  filter: invert(1) !important;
}

body.dark-mode .page_search .filter-card {
  background-color: #1e293b !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

body.dark-mode .input-group-text {
  background-color: #1e293b !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: #cbd5e1 !important;
}

/* Article Summary Card View Button Specific */
body.dark-mode .btn-galley-view {
  background-color: var(--zenith-primary-subtle) !important;
  color: var(--zenith-primary) !important;
}

body.dark-mode .btn-galley-view:hover {
  background: var(--zenith-primary-gradient) !important;
  color: #ffffff !important;
}

/* Fix text-dark elements on dark backgrounds */
body.dark-mode .text-dark,
body.dark-mode h1.text-dark,
body.dark-mode h2.text-dark,
body.dark-mode h3.text-dark,
body.dark-mode h4.text-dark,
body.dark-mode h5.text-dark,
body.dark-mode h6.text-dark,
body.dark-mode span.text-dark,
body.dark-mode a.text-dark,
body.dark-mode strong.text-dark {
  color: #f8fafc !important;
}

/* Fix btn-outline-dark buttons on dark backgrounds */
body.dark-mode .btn-outline-dark {
  border-color: rgba(255, 255, 255, 0.25) !important;
  color: #f8fafc !important;
}

body.dark-mode .btn-outline-dark:hover {
  background: var(--zenith-primary-gradient) !important;
  border-color: var(--zenith-primary) !important;
  color: #ffffff !important;
}

/* Fix Tab Content Cards in Homepage to be dark-mode styled */
body.dark-mode .tab-about-card,
body.dark-mode .tab-editorial-card {
  background-color: var(--zenith-card-bg) !important;
  border-color: var(--zenith-card-border) !important;
}

/* Fix Dimensions.ai badge popover text color to be always dark on its white background */
.__dimensions_Badge_Legend,
.__dimensions_Badge_Legend .__dimensions_Badge_stat_text,
.__dimensions_Badge_Legend .__dimensions_Badge_stat_count {
  color: #1e293b !important;
}

/* Align user profile dropdown to the right on desktop to prevent screen clipping */
@media (min-width: 992px) {
  #navigationUser > li > ul {
    right: 0 !important;
    left: auto !important;
  }
}

/* Fix user profile submenu links readability inside dark mobile drawer */
@media (max-width: 991.98px) {
  #navigationUser > li > ul > li > a,
  .pkp_structure_head ul.navbar-nav > li > ul > li > a {
    color: #cbd5e1 !important;
    padding-left: 1.5rem !important;
  }
  
  #navigationUser > li > ul > li > a:hover,
  .pkp_structure_head ul.navbar-nav > li > ul > li > a:hover {
    color: var(--zenith-primary) !important;
    background: rgba(255, 255, 255, 0.05) !important;
  }
}
