/* ============================================================
   JOURNAL THEME — REDESIGN MODERN AKADEMIK
   Palette: Navy Deep + Gold Accent + Warm Off-White
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Source+Sans+3:wght@300;400;600;700&display=swap");

/* ── CSS Variables ───────────────────────────────────────── */
:root {
  --navy-deep: #0a2540;
  --navy-mid: #133a5e;
  --navy-light: #1d5485;
  --navy-muted: #2a6496;
  --gold: #c9973a;
  --gold-light: #e8b84b;
  --gold-pale: #f5e8c8;
  --cream: #faf8f4;
  --cream-dark: #f0ece4;
  --text-dark: #1a1a2e;
  --text-mid: #3a3a4a;
  --text-muted: #6b6b7e;
  --border: rgba(10, 37, 64, 0.12);
  --border-gold: rgba(201, 151, 58, 0.35);
  --shadow-sm: 0 2px 8px rgba(10, 37, 64, 0.08);
  --shadow-md: 0 6px 24px rgba(10, 37, 64, 0.14);
  --shadow-gold: 0 4px 16px rgba(201, 151, 58, 0.25);
  --radius: 4px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Base ────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
html {
  font-family: "Source Sans 3", sans-serif !important;
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--cream);
  background-image: radial-gradient(
      ellipse 80% 50% at 20% -10%,
      rgba(13, 52, 99, 0.08) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 60% 40% at 80% 110%,
      rgba(201, 151, 58, 0.06) 0%,
      transparent 55%
    );
  min-height: 100vh;
}

p {
  text-align: justify;
  line-height: 1.8;
  color: var(--text-mid);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif !important;
  color: var(--navy-deep);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

/* ── Header ──────────────────────────────────────────────── */
#headerNavigationContainer.pkp_structure_head {
  background: none !important;
  border-bottom: none !important;
}

.pkp_structure_main {
  margin-top: 0 !important;
}

.pkp_site_name > a {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  transition: var(--transition);
}

.pkp_site_name > a:hover {
  opacity: 0.88;
}

.pkp_site_name .is_img img {
  max-height: 597px !important;
}

/* ── User Navigation ─────────────────────────────────────── */
.pkp_navigation_user_wrapper {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.pkp_navigation_user_wrapper .pkp_navigation_user {
  line-height: 40px !important;
}

.pkp_navigation_user_wrapper .pkp_navigation_user .task_count {
  background: linear-gradient(135deg, #c0392b, #e74c3c);
  border-radius: 10px;
  font-size: 11px;
  font-weight: 700;
}

.pkp_navigation_user_wrapper .pkp_navigation_user > li.profile > a {
  color: var(--text-mid);
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: var(--transition);
}

.pkp_navigation_user_wrapper .pkp_navigation_user > li.profile > a:hover {
  background: rgba(10, 37, 64, 0.07);
  color: var(--navy-deep);
}

.pkp_navigation_user_wrapper .pkp_navigation_user > li.profile > ul {
  border-radius: var(--radius) !important;
  background: #ffffff !important;
  border: 1px solid var(--border) !important;
  box-shadow: var(--shadow-md) !important;
  overflow: hidden;
}

.pkp_navigation_user_wrapper .pkp_nav_list ul li:first-child a {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.pkp_navigation_user_wrapper .pkp_nav_list ul li:last-child a {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.pkp_navigation_user_wrapper .pkp_nav_list ul li a {
  border-left: 3px solid transparent !important;
  color: var(--text-mid) !important;
  font-size: 0.9em;
  transition: var(--transition);
}

.pkp_navigation_user_wrapper .pkp_nav_list ul li a:hover {
  color: var(--navy-deep) !important;
  border-left: 3px solid var(--gold) !important;
  background: var(--gold-pale) !important;
}

.pkp_navigation_user_wrapper .pkp_nav_list ul li a .task_count {
  color: #fff !important;
  background: linear-gradient(135deg, #c0392b, #e74c3c);
}

.pkp_navigation_user > li > a,
.pkp_navigation_user > li.in_focus > a,
.pkp_navigation_user > li > a:hover,
.pkp_navigation_user > li > a:focus {
  border-bottom: none;
}

/* ── Primary Navigation ──────────────────────────────────── */
.pkp_site_nav_menu {
  background: none;
}

.pkp_navigation_primary_wrapper {
  background: linear-gradient(
    135deg,
    var(--navy-deep) 0%,
    var(--navy-mid) 100%
  );
  border-bottom: 2px solid var(--gold);
  box-shadow: var(--shadow-md);
  position: relative;
}

.pkp_navigation_primary_wrapper::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold-light),
    transparent
  );
  opacity: 0.5;
}

.pkp_navigation_primary_wrapper .pkp_navigation_primary > li > ul {
  border-radius: var(--radius) !important;
  background: #ffffff !important;
  border: 1px solid var(--border) !important;
  box-shadow: var(--shadow-md) !important;
  overflow: hidden;
}

.pkp_navigation_primary_wrapper .pkp_nav_list ul li:first-child a {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.pkp_navigation_primary_wrapper .pkp_nav_list ul li:last-child a {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.pkp_navigation_primary_wrapper .pkp_nav_list ul li {
  border-bottom: 1px solid rgba(10, 37, 64, 0.08) !important;
  background: #ffffff;
}

.pkp_navigation_primary_wrapper .pkp_nav_list ul li:last-child {
  border-bottom: none !important;
}

.pkp_navigation_primary_wrapper .pkp_nav_list ul li a {
  background: transparent;
  border: none !important;
  color: var(--text-mid) !important;
  padding: 0 12px 0 16px;
  line-height: 42px;
  font-size: 0.9em;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--transition);
  border-left: 3px solid transparent !important;
}

.pkp_navigation_primary_wrapper .pkp_nav_list ul li a:hover {
  background: var(--gold-pale) !important;
  color: var(--navy-deep) !important;
  border-left: 3px solid var(--gold) !important;
}

/* ── Desktop Styles ──────────────────────────────────────── */
@media (min-width: 992px) {
  .pkp_structure_content {
    padding-top: 0 !important;
    background: #ffffff !important;
  }

  .pkp_navigation_user_wrapper {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .pkp_navigation_user_wrapper .pkp_navigation_user.pkp_nav_list {
    margin-left: 20px;
    margin-right: 20px;
    background: rgba(240, 236, 228, 0.85) !important;
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-gold);
  }

  .pkp_navigation_user > li:last-child > a {
    padding-right: 12px !important;
  }

  .pkp_navigation_primary_wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }

  .pkp_navigation_user a {
    padding-top: 0;
    padding-bottom: 0;
    line-height: 40px;
    font-size: 0.875em;
    font-weight: 600;
  }

  .pkp_navigation_primary {
    font-family: "Source Sans 3" !important;
  }

  .pkp_navigation_primary > li {
    margin-left: -3px;
  }

  .pkp_navigation_primary > li > a {
    color: rgba(255, 255, 255, 0.92);
    padding: 0 20px !important;
    line-height: 52px;
    margin: 0 !important;
    font-size: 0.9em;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    transition: var(--transition);
    position: relative;
  }

  .pkp_navigation_primary > li:first-child > a {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }

  .pkp_navigation_primary > li > a::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 50%;
    height: 2px;
    background: var(--gold);
    transition: left 0.25s ease, right 0.25s ease;
  }

  .pkp_navigation_primary > li > a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08) !important;
    border-bottom: none;
  }

  .pkp_navigation_primary > li > a:hover::after {
    left: 0;
    right: 0;
  }

  .pkp_navigation_primary > li > a {
    border-bottom: none;
  }

  /* Search */
  .pkp_head_wrapper .pkp_search .search_prompt {
    color: rgba(255, 255, 255, 0.9);
    padding: 0 20px;
    line-height: 52px;
    font-weight: 600;
    letter-spacing: 0.04em;
    font-size: 0.85em;
    text-transform: uppercase;
    transition: var(--transition);
  }

  .pkp_search_desktop {
    height: 52px;
  }

  .pkp_head_wrapper .pkp_search .search_prompt:hover,
  .pkp_head_wrapper .pkp_search .search_prompt {
    border-bottom: none;
    padding-bottom: 0;
    background: linear-gradient(135deg, #8b1a1a, #a02020);
  }

  .pkp_head_wrapper .pkp_search .search_prompt:hover {
    background: linear-gradient(135deg, #a02020, #c0392b) !important;
  }

  .pkp_search input[type="text"] {
    line-height: 52px;
    height: 52px;
    border-radius: 0;
    border: none;
    border-bottom: 2px solid var(--gold);
    background: rgba(255, 255, 255, 0.97);
    font-family: "Source Sans 3", sans-serif;
    font-size: 0.95em;
    padding: 0 16px;
    color: var(--text-dark);
  }

  .pkp_search input[type="text"]:focus {
    outline: none;
    border-bottom-color: var(--gold-light);
    background: #ffffff;
  }

  .pkp_search_desktop.is_open input[type="text"] {
    line-height: 52px;
    height: 52px;
  }
}

/* ── Mobile Styles ───────────────────────────────────────── */
@media (max-width: 991px) {
  .pkp_site_nav_toggle {
    background: #ffffff;
    border: 2px solid var(--navy-deep);
    border-radius: var(--radius);
    transition: var(--transition);
  }

  .pkp_site_nav_toggle:hover {
    background: var(--navy-deep);
  }

  .pkp_site_nav_toggle > span {
    color: var(--navy-deep);
    transition: var(--transition);
  }

  .pkp_site_nav_toggle:hover > span {
    color: #ffffff;
  }

  .pkp_structure_content.has_sidebar {
    background: #ffffff;
  }

  .pkp_navigation_primary > li {
    margin-left: 0;
  }

  .pkp_navigation_primary > li > a {
    color: rgba(255, 255, 255, 0.92);
    padding: 0 16px !important;
    line-height: 44px;
    margin: 0 !important;
    border-right: none;
    display: block;
    font-size: 0.9em;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-left: 3px solid transparent;
    transition: var(--transition);
  }

  .pkp_navigation_primary > li:first-child > a {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .pkp_navigation_primary > li > a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1) !important;
    border-left: 3px solid var(--gold);
    border-bottom: none;
  }

  .pkp_navigation_user_wrapper {
    background: var(--cream-dark);
    border-bottom: 1px solid var(--border-gold);
  }

  .pkp_navigation_user_wrapper .pkp_navigation_user {
    line-height: 36px !important;
  }

  .pkp_navigation_user.pkp_navigation_user {
    margin-top: 0;
    padding-top: 0;
  }

  .pkp_navigation_user_wrapper .pkp_navigation_user li a {
    padding: 0 12px;
    font-size: 0.875em;
  }
}

/* ── Search Cancel / Loading ─────────────────────────────── */
.pkp_search .search_cancel,
.pkp_search .search_loading {
  top: 15px;
}

/* ── Dropdown Nav Items ──────────────────────────────────── */
.pkp_navigation_primary_wrapper .pkp_nav_list ul li {
  background: #ffffff;
}

.pkp_navigation_primary_wrapper .pkp_nav_list ul li a {
  background: none;
}

/* ── Footer ──────────────────────────────────────────────── */
.pkp_structure_footer_wrapper {
  background: none;
  margin-top: 2rem;
}

.pkp_structure_footer_wrapper .pkp_structure_footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.75);
  border-top: 3px solid var(--gold);
}

.pkp_structure_footer_wrapper .pkp_structure_footer * {
  color: rgba(255, 255, 255, 0.75);
}

.pkp_structure_footer_wrapper .pkp_structure_footer a {
  color: var(--gold-light) !important;
  transition: var(--transition);
}

.pkp_structure_footer_wrapper .pkp_structure_footer a:hover {
  color: #ffffff !important;
  text-decoration: underline;
}

.pkp_brand_footer {
  padding: 12px;
  opacity: 0.55;
  transition: var(--transition);
}

.pkp_brand_footer:hover {
  opacity: 0.85;
}

.pkp_brand_footer a {
  max-width: 50px;
}

/* ── Forms ───────────────────────────────────────────────── */
.cmp_form input[type="text"],
.cmp_form input[type="email"],
.cmp_form input[type="password"],
.cmp_form input[type="url"],
.cmp_form input[type="tel"],
.cmp_form select,
.cmp_form textarea,
.cmp_form .tagit {
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  font-family: "Source Sans 3", sans-serif;
  padding: 8px 12px;
  transition: var(--transition);
  background: #ffffff;
  color: var(--text-dark);
}

.cmp_form input[type="text"]:focus,
.cmp_form input[type="email"]:focus,
.cmp_form input[type="password"]:focus,
.cmp_form textarea:focus {
  outline: none;
  border-color: var(--navy-muted);
  box-shadow: 0 0 0 3px rgba(13, 52, 99, 0.1);
}

/* ── Buttons ─────────────────────────────────────────────── */
.cmp_button,
.cmp_form .buttons button,
.pkp_search button[type="submit"],
.page_lost_password .buttons button,
.page_search .submit button,
.block_make_submission a {
  border-radius: var(--radius);
  font-family: "Source Sans 3", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85em;
  transition: var(--transition);
  cursor: pointer;
}

.cmp_button,
.cmp_form .buttons button {
  background: var(--navy-deep);
  color: #ffffff;
  border: 2px solid var(--navy-deep);
  padding: 8px 20px;
}

.cmp_button:hover,
.cmp_form .buttons button:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

/* ── Sidebar Blocks ──────────────────────────────────────── */
.pkp_structure_sidebar .pkp_block .title {
  font-family: "Playfair Display", serif !important;
}

.pkp_block.block_custom > .content > .title,
.pkp_block > .title {
  padding: 0 14px;
  line-height: 44px;
  background: linear-gradient(
    135deg,
    var(--navy-deep) 0%,
    var(--navy-mid) 100%
  );
  color: #ffffff;
  font-size: 0.9em;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0;
  border-bottom: 2px solid var(--gold);
  position: relative;
}

.pkp_block.block_custom > .content > .title::after {
  content: "";
  display: block;
  position: absolute;
  left: 14px;
  bottom: -4px;
  width: 30px;
  height: 2px;
  background: var(--gold-light);
}

.pkp_block.block_custom {
  padding: 0 !important;
}

.pkp_block.block_custom > .content {
  padding: 0 12px !important;
}

.pkp_block:not(.block_custom) .content,
.pkp_block.block_custom > .content > .content {
  padding: 14px 20px;
  border: 1px solid var(--border);
  border-top: none;
  background: #ffffff;
}

.pkp_block.block_make_submission .content {
  border: none;
  padding: 0 !important;
  text-align: center !important;
}

.pkp_block {
  margin: 12px 0 !important;
  padding: 0 !important;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border-radius: var(--radius);
  transition: box-shadow 0.25s ease;
}

.pkp_block:hover {
  box-shadow: var(--shadow-md);
}

/* ── Make Submission Block ───────────────────────────────── */
.pkp_block.block_make_submission .content a {
  background: linear-gradient(135deg, var(--gold) 0%, #d4a034 100%);
  line-height: 48px;
  font-family: "Playfair Display", serif !important;
  font-style: italic;
  font-size: 1em;
  color: var(--navy-deep);
  font-weight: 600;
  letter-spacing: 0.02em;
  display: block;
  text-align: center;
  transition: var(--transition);
}

.pkp_block.block_make_submission .content a:hover {
  background: linear-gradient(
    135deg,
    var(--gold-light) 0%,
    var(--gold) 100%
  ) !important;
  color: var(--navy-deep);
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

/* ── Sidebar Custom Menu ─────────────────────────────────── */
#customblock-sidebarmenu.pkp_block.block_custom > .content {
  padding: 0 !important;
}

#customblock-sidebarmenu.pkp_block {
  margin: 0 !important;
  padding: 0 !important;
}

#customblock-sidebarmenu.pkp_block ul,
#customblock-sidebarmenu.pkp_block ul li {
  margin: 0 !important;
  padding: 0 !important;
}

#customblock-sidebarmenu.pkp_block ul li {
  background: #4a5568 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

#customblock-sidebarmenu.pkp_block ul li:last-child {
  border-bottom: none;
}

#customblock-sidebarmenu.pkp_block ul li a {
  background: transparent !important;
  display: block;
  line-height: 42px;
  padding: 0 12px 0 20px;
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 0.9em;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-left: 3px solid transparent;
  transition: var(--transition);
}

#customblock-sidebarmenu.pkp_block ul li a:hover {
  background: rgba(0, 0, 0, 0.2) !important;
  color: #ffffff !important;
  border-left: 3px solid var(--gold) !important;
}

/* ── Article Summary ─────────────────────────────────────── */
.obj_article_summary .title {
  font-family: "Playfair Display", serif;
  font-size: 1.05em;
  line-height: 1.45;
  color: var(--navy-deep);
  transition: color 0.2s ease;
}

.obj_article_summary .title a:hover {
  color: var(--navy-muted);
}

.obj_article_summary .meta .authors {
  color: var(--text-muted);
  font-size: 0.9em;
  font-weight: 600;
}

.obj_article_summary .meta .authors:before {
  content: "\f0c0";
  font-family: FontAwesome;
  margin-right: 6px;
  color: var(--gold);
}

.obj_article_summary .item.doi .label {
  width: 25px !important;
  height: 24px !important;
  color: transparent;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.obj_article_summary .item.doi .value a {
  text-decoration: none !important;
  color: var(--navy-muted);
  font-weight: 600;
  font-size: 0.875em;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.obj_article_summary .item.doi .value a:hover {
  color: var(--navy-deep);
}

.obj_article_summary .item.stats .abstract,
.obj_article_summary .item.stats .galley {
  position: relative;
  font-size: 0.875em;
  color: var(--text-muted);
}

.obj_article_summary .item.stats .abstract {
  margin-left: 25px;
  margin-right: 12px;
}

.obj_article_summary .item.stats .galley {
  margin-left: 25px;
}

.obj_article_summary .item.stats .abstract:before {
  content: "\f080";
  font-family: FontAwesome;
  left: -22px;
  position: absolute;
  top: 0;
  color: var(--gold);
}

.obj_article_summary .item.stats .galley:before {
  content: "\f1c1";
  font-family: FontAwesome;
  left: -22px;
  position: absolute;
  top: 0;
  color: var(--gold);
}

/* ── Issue TOC ───────────────────────────────────────────── */
.obj_issue_toc .articles > li {
  margin-bottom: 0;
  padding: 16px 18px;
  border-left: 3px solid transparent;
  transition: var(--transition);
}

.obj_issue_toc .articles > li:hover {
  border-left: 3px solid var(--gold);
}

.obj_issue_toc .articles > li:nth-of-type(odd) {
  background: var(--cream);
}

.obj_issue_toc .articles > li:nth-of-type(even) {
  background: #eef4fb;
}

/* ── Utility: Gold Divider ───────────────────────────────── */
.pkp_structure_content hr,
.pkp_block hr {
  border: none;
  border-top: 1px solid var(--border-gold);
  margin: 1.5rem 0;
}

/* ── Link Styles ─────────────────────────────────────────── */
a {
  color: var(--navy-muted);
  transition: color 0.2s ease;
}

a:hover {
  color: var(--navy-deep);
}

/* ── Block Reset & Base ── */
.pkp_block.block_custom {
  border-radius: 10px !important;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(10, 37, 64, 0.08),
    0 4px 16px rgba(10, 37, 64, 0.06) !important;
  transition: box-shadow 0.25s, transform 0.2s !important;
  margin: 0 0 14px !important;
  padding: 0 !important;
}
.pkp_block.block_custom:hover {
  box-shadow: 0 4px 12px rgba(10, 37, 64, 0.13),
    0 8px 28px rgba(10, 37, 64, 0.09) !important;
  transform: translateY(-1px);
}

/* ── Title Bar ── */
.pkp_block.block_custom > .content > .title,
.pkp_block > .title {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 12px 18px !important;
  line-height: 1 !important;
  background: linear-gradient(135deg, #0a2540 0%, #1a4a7a 100%) !important;
  border-left: 4px solid #c9973a;
  margin-bottom: 0 !important;
  font-size: 11px !important;
}

.title__dot {
  width: 6px;
  height: 6px;
  background: #c9973a;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(201, 151, 58, 0.3);
  display: inline-block;
}

.title__text {
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
}

.title__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 151, 58, 0.5), transparent);
  display: block;
}

/* ── Content Padding ── */
.pkp_block.block_custom > .content {
  padding: 0 !important;
}
.pkp_block:not(.block_custom) .content,
.pkp_block.block_custom > .content > .content {
  padding: 14px 16px !important;
  border: none !important;
  background: #ffffff;
}

/* ── Sidebar Nav ── */
.sidebar__nav {
  display: flex;
  flex-direction: column;
}
.menu__link {
  display: flex;
  align-items: center;
  padding: 10px 18px;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #2d3748;
  text-decoration: none;
  border-bottom: 1px solid rgba(10, 37, 64, 0.05);
  border-left: 3px solid transparent;
  transition: all 0.18s ease;
}
.menu__link:last-child {
  border-bottom: none;
}
.menu__link:hover {
  background: #fdf4e3;
  border-left: 3px solid #c9973a;
  color: #0a2540;
  padding-left: 22px;
}
.menu__arrow {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(10, 37, 64, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  color: #c9973a;
  margin-left: auto;
  flex-shrink: 0;
  transition: all 0.18s;
}
.menu__link:hover .menu__arrow {
  background: #c9973a;
  color: #fff;
}

/* ── Call for Papers ── */
.cfp-box {
  background: #f8f6f2;
}
.cfp-head {
  padding: 16px 20px;
  background: linear-gradient(135deg, #0a2540, #1a4a7a);
  border-left: 4px solid #c9973a;
  text-align: center;
}
.cfp-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}
.cfp-label {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 18px;
  font-weight: 700;
  color: #e8b84b;
  margin: 0;
}
.cfp-body {
  padding: 18px 20px;
}
.cfp-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1.5px solid rgba(201, 151, 58, 0.4);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #7a5a1a;
  margin-bottom: 14px;
}
.cfp-status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4caf50;
  box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.25);
}
.cfp-invite {
  font-size: 12px;
  color: #718096;
  text-align: center;
  margin-bottom: 2px;
}
.cfp-volume {
  font-family: "Playfair Display", serif;
  font-size: 16px;
  font-weight: 700;
  color: #0a2540;
  text-align: center;
  margin: 4px 0 2px;
}
.cfp-year {
  font-size: 12px;
  color: #718096;
  text-align: center;
  margin-bottom: 0;
}
.cfp-sep {
  border: none;
  border-top: 1px dashed rgba(201, 151, 58, 0.35);
  margin: 14px 0;
}
.cfp-dl {
  background: #fff;
  border: 1px solid rgba(10, 37, 64, 0.09);
  border-radius: 8px;
  padding: 12px 16px;
  text-align: center;
  margin-bottom: 14px;
}
.cfp-dl-label {
  font-size: 11px;
  color: #718096;
  margin-bottom: 3px;
}
.cfp-dl-date {
  font-size: 17px;
  font-weight: 700;
  color: #c0392b;
  letter-spacing: 0.03em;
}
.cfp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #0a2540, #1a4a7a);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 2px solid #c9973a;
  transition: all 0.22s;
}
.cfp-btn:hover {
  background: linear-gradient(135deg, #c9973a, #d4a034);
  color: #0a2540;
  border-bottom-color: #0a2540;
  box-shadow: 0 4px 14px rgba(201, 151, 58, 0.35);
}
.cfp-note {
  font-size: 10px;
  color: #bbb;
  text-align: center;
  margin-top: 8px;
  margin-bottom: 0;
}

/* ── Index Grid ── */
.index-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 14px 16px;
  background: #fff;
}
.index-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f6f2;
  border: 1px solid rgba(10, 37, 64, 0.09);
  border-radius: 8px;
  padding: 10px 8px;
  transition: all 0.2s;
  cursor: pointer;
}
.index-card:hover {
  border-color: rgba(201, 151, 58, 0.5);
  box-shadow: 0 2px 10px rgba(201, 151, 58, 0.15);
  transform: translateY(-2px);
}
.index-card img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0.82;
  transition: opacity 0.2s;
}
.index-card:hover img {
  opacity: 1;
}

/* ── Template ── */
.template-card {
  display: block;
  text-decoration: none;
  border: 1.5px solid rgba(10, 37, 64, 0.09);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.25s;
  cursor: pointer;
  margin: 14px 16px;
}
.template-card:hover {
  border-color: #c9973a;
  box-shadow: 0 6px 20px rgba(201, 151, 58, 0.2);
  transform: translateY(-2px);
}
.template-card img {
  width: 100%;
  height: auto;
  display: block;
}
.template-cap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  background: linear-gradient(135deg, #0a2540, #1a4a7a);
  color: #e8b84b;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 13px;
  font-weight: 600;
}

/* ── Support ── */
.support-text {
  font-size: 13px;
  color: #718096;
  line-height: 1.7;
  text-align: center;
  padding: 16px 20px;
}
.support-text a {
  color: #0a2540;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(201, 151, 58, 0.5);
  text-underline-offset: 2px;
  transition: color 0.2s;
}
.support-text a:hover {
  color: #c9973a;
}
