:root {
  --jcb-accent: #700d0a;
  --jcb-accent-deep: #4f0806;
  --jcb-accent-soft: #f3e1df;
  --jcb-accent-rgb: 112, 13, 10;
  --jcb-accent-deep-rgb: 79, 8, 6;
  --jcb-ink: #2b2222;
  --jcb-muted: #6e5a59;
  --jcb-line: #e5dad8;
  --jcb-bg: #f1eded;
  --jcb-paper: #ffffff;
  --jcb-shadow: 0 18px 40px rgba(46, 19, 52, 0.08);
  --jcb-shell: 1160px;
  --jcb-gutter-desktop: 34px;
  --jcb-gutter-tablet: 24px;
  --jcb-gutter-mobile: 14px;
}

html,
body {
  background: linear-gradient(180deg, #f2efef 0%, #ece7e6 100%);
  color: var(--jcb-ink);
  font-family: Georgia, "Times New Roman", serif;
}

body {
  margin: 0;
}

a {
  color: var(--jcb-accent-deep);
  transition: color 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

a:hover,
a:focus {
  color: #9b221d;
  text-decoration: none;
}

.pkp_structure_page {
  width: 100%;
  max-width: none;
  margin: 0;
  background: transparent;
  box-shadow: none;
}

.pkp_structure_head {
  position: relative;
  background: #fff;
  border: 0;
  box-shadow: 0 10px 28px rgba(35, 19, 39, 0.1);
}

.pkp_structure_head::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 38px;
  background: linear-gradient(90deg, #240403 0%, var(--jcb-accent-deep) 26%, var(--jcb-accent) 76%, #a82620 100%);
}

.pkp_head_wrapper,
.has_site_logo .pkp_head_wrapper {
  width: min(calc(100% - (2 * var(--jcb-gutter-tablet))), var(--jcb-shell));
  margin: 0 auto;
  max-width: none;
  padding-top: 38px;
}

.pkp_site_name_wrapper {
  background: #fff;
  padding: 18px 32px 12px;
  min-height: 0;
}

.pkp_site_name {
  position: static;
  margin: 0;
  overflow: visible;
  text-align: left;
}

.pkp_site_name .is_img img {
  max-height: 58px;
  width: auto;
}

.pkp_site_name .is_text {
  color: var(--jcb-ink);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.25;
}

.pkp_navigation_user_wrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: auto;
  padding: 0 30px;
  display: flex;
  justify-content: flex-end;
  z-index: 3;
}

.pkp_navigation_user_wrapper .pkp_navigation_user {
  margin: 0;
}

.pkp_navigation_user > li > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 10px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
}

.pkp_navigation_user > li > a:hover,
.pkp_navigation_user > li > a:focus {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.pkp_navigation_primary_row {
  background: linear-gradient(180deg, #fff 0%, #fcf8f7 100%);
  border-top: 1px solid var(--jcb-line);
  border-bottom: 1px solid var(--jcb-line);
  padding: 0 30px;
}

.pkp_navigation_primary_wrapper,
.pkp_navigation_search_wrapper {
  width: auto;
}

#navigationPrimary {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

#navigationPrimary > li > a,
.pkp_navigation_search_wrapper a {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 12px;
  color: var(--jcb-ink);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  border: 0;
}

#navigationPrimary > li > a:hover,
#navigationPrimary > li > a:focus,
.pkp_navigation_search_wrapper a:hover,
.pkp_navigation_search_wrapper a:focus {
  color: var(--jcb-accent-deep);
  background: rgba(var(--jcb-accent-rgb), 0.08);
}

.pkp_navigation_search_wrapper {
  margin-left: auto;
}

.pkp_navigation_search_wrapper a {
  min-height: auto;
  margin: 8px 0;
  padding: 12px 18px;
  border: 1px solid #d8d2dd;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(28, 17, 33, 0.09);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pkp_site_nav_menu ul ul {
  background: #fff;
  border: 1px solid var(--jcb-line);
  box-shadow: var(--jcb-shadow);
}

.pkp_site_nav_menu ul ul a {
  color: var(--jcb-ink);
}

.pkp_site_nav_menu ul ul a:hover,
.pkp_site_nav_menu ul ul a:focus {
  background: rgba(var(--jcb-accent-rgb), 0.08);
  color: var(--jcb-accent-deep);
}

.pkp_structure_content {
  width: min(calc(100% - (2 * var(--jcb-gutter-tablet))), var(--jcb-shell));
  max-width: none;
  margin: 0 auto;
  padding: 24px 0 40px;
}

@media (min-width: 992px) {
  .pkp_head_wrapper,
  .has_site_logo .pkp_head_wrapper {
    width: min(calc(100% - (2 * var(--jcb-gutter-desktop))), var(--jcb-shell));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    padding: 38px 0 0;
  }

  .pkp_site_name_wrapper {
    flex: 0 0 auto;
    width: auto;
    padding: 10px 0;
    background: transparent;
    margin-right: 4px;
  }

  .pkp_site_name {
    width: auto;
    display: flex;
    align-items: center;
  }

  .pkp_site_name .is_img {
    display: block;
    line-height: 0;
    margin-left: -18px;
    margin-right: -12px;
    text-decoration: none;
  }

  .pkp_site_name .is_img::after {
    content: none;
    display: none;
  }

  .pkp_site_name .is_img img {
    width: clamp(310px, 34vw, 470px);
    height: auto;
    max-height: none;
    max-width: none;
    object-fit: contain;
    object-position: left center;
    border-radius: 0;
    filter: drop-shadow(0 4px 10px rgba(29, 15, 34, 0.14));
  }

  .pkp_site_nav_menu {
    flex: 1 1 auto;
    position: static;
    width: 100%;
    background: transparent;
    padding: 0;
  }

  .pkp_navigation_primary_row {
    width: 100%;
    padding: 0;
    background: transparent;
    border-top: 0;
    border-bottom: 0;
  }

  .pkp_navigation_primary_wrapper {
    display: flex;
    align-items: center;
    min-height: 72px;
    width: 100%;
  }

  #navigationPrimary {
    gap: 16px;
    margin-left: 4px;
  }

  #navigationPrimary > li > a {
    min-height: 48px;
    padding: 0 6px;
    font-size: 0.95rem;
    font-weight: 500;
  }

  #navigationPrimary > li > a::before {
    display: inline-block;
    margin-right: 9px;
    color: #211321;
    font-family: "FontAwesome";
    font-size: 0.98rem;
    font-weight: 400;
  }

  #navigationPrimary > li > a[href*="/issue/current"]::before {
    content: "\f02d";
  }

  #navigationPrimary > li > a[href*="/issue/archive"]::before {
    content: "\f187";
  }

  #navigationPrimary > li > a[href*="/about"]::before {
    content: "\f129";
  }

  .pkp_navigation_search_wrapper {
    margin-left: auto;
  }

  .pkp_navigation_search_wrapper a {
    min-height: 44px;
    margin: 0;
    padding: 0 18px;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
  }

  .pkp_navigation_search_wrapper .fa {
    margin-right: 9px;
  }

  .pkp_navigation_user_wrapper {
    top: 0;
    left: 0;
    right: 0;
    width: auto;
    height: 38px;
    transform: none;
    padding: 0;
    align-items: center;
  }

  .pkp_navigation_user {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .pkp_navigation_user > li {
    position: relative;
    display: flex;
    align-items: center;
    height: 38px;
    min-height: 38px;
  }

  .pkp_navigation_user > li > a {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    height: 38px;
    min-height: 38px;
    padding: 0;
    font-size: 0.78rem;
    line-height: 1;
  }

  .pkp_navigation_user > li:has(> a[href*="/user/register"]) {
    display: none;
  }

  .pkp_navigation_user > li > a[href*="/login"]::before {
    display: inline-block;
    margin-right: 7px;
    font-family: "FontAwesome";
    content: "\f090";
  }

  .pkp_navigation_user .task_count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    margin-left: 0;
    padding: 0 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1;
    position: static;
    transform: none;
    vertical-align: middle;
    align-self: center;
  }

  .pkp_navigation_user > li > ul,
  .pkp_navigation_user > li > .dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    display: block;
    min-width: 220px;
    margin: 0;
    padding: 10px 0;
    border: 1px solid var(--jcb-line);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--jcb-shadow);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    z-index: 30;
  }

  .pkp_navigation_user > li:hover > ul,
  .pkp_navigation_user > li:hover > .dropdown-menu,
  .pkp_navigation_user > li:focus-within > ul,
  .pkp_navigation_user > li:focus-within > .dropdown-menu,
  .pkp_navigation_user > li.show > ul,
  .pkp_navigation_user > li.show > .dropdown-menu,
  .pkp_navigation_user > li > ul.show,
  .pkp_navigation_user > li > .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .pkp_navigation_user > li > ul li,
  .pkp_navigation_user > li > .dropdown-menu li {
    display: block;
    margin: 0;
  }

  .pkp_navigation_user > li > ul a,
  .pkp_navigation_user > li > .dropdown-menu a {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    color: var(--jcb-ink);
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.35;
    white-space: nowrap;
    text-decoration: none;
  }

  .pkp_navigation_user > li > ul a:hover,
  .pkp_navigation_user > li > ul a:focus,
  .pkp_navigation_user > li > .dropdown-menu a:hover,
  .pkp_navigation_user > li > .dropdown-menu a:focus {
    background: rgba(var(--jcb-accent-rgb), 0.08);
    color: var(--jcb-accent-deep);
  }

  .pkp_structure_content {
    width: min(calc(100% - (2 * var(--jcb-gutter-desktop))), var(--jcb-shell));
  }

  .pkp_structure_content.has_sidebar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(320px, 34%, 420px);
    gap: clamp(24px, 3vw, 40px);
    align-items: start;
  }

  .pkp_structure_content.has_sidebar::before,
  .pkp_structure_content.has_sidebar::after {
    content: none;
    display: none;
  }

  .pkp_structure_main,
  .pkp_structure_sidebar {
    float: none;
    width: auto;
    padding: 0;
    margin: 0;
  }

  .pkp_structure_sidebar::before,
  .pkp_structure_main::before,
  .pkp_structure_main::after {
    display: none;
  }
}

.page_index_journal {
  display: grid;
  gap: 22px;
}

.journal-description,
.homepage_about,
.page_index_journal > .additional_content:first-of-type {
  position: relative;
  overflow: hidden;
  padding: 24px 28px;
  background:
    linear-gradient(135deg, rgba(var(--jcb-accent-rgb), 0.12) 0%, rgba(var(--jcb-accent-rgb), 0.08) 58%, rgba(255, 255, 255, 0.95) 100%);
  border: 1px solid #d7cada;
  box-shadow: var(--jcb-shadow);
}

.journal-description::before,
.homepage_about::before,
.page_index_journal > .additional_content:first-of-type::before {
  content: "";
  position: absolute;
  inset: 0 0 auto auto;
  width: 42%;
  height: 100%;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0) 0 18%, rgba(var(--jcb-accent-deep-rgb), 0.5) 18% 26%, rgba(255, 255, 255, 0) 26% 34%, rgba(var(--jcb-accent-rgb), 0.36) 34% 48%, rgba(255, 255, 255, 0) 48% 60%, rgba(92, 65, 61, 0.7) 60% 100%);
  opacity: 0.95;
  pointer-events: none;
}

.journal-description p:last-child,
.homepage_about p:last-child,
.additional_content p:last-child {
  margin-bottom: 0;
}

.current_issue,
.obj_issue_toc,
.page_issue_archive .issues_archive > li,
.obj_article_details,
.obj_article_summary,
.additional_content {
  background: var(--jcb-paper);
  box-shadow: var(--jcb-shadow);
}

.pkp_block {
  background: var(--jcb-paper);
  border: 1px solid var(--jcb-line);
  box-shadow: var(--jcb-shadow);
}

.current_issue,
.obj_issue_toc,
.additional_content,
.obj_article_details {
  padding: 26px;
}

.current_issue > h2,
.page_index_journal .cmp_announcements h2,
.page_issue_archive h1,
.obj_issue_toc .section > h3,
.obj_issue_toc .section > h2 {
  display: inline-block;
  margin: 0 0 18px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--jcb-accent);
  color: var(--jcb-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 700;
}

.page_issue_archive .cmp_breadcrumbs,
.page_issue_archive h1 {
  display: block;
}

.page_issue_archive .issues_archive {
  margin: 0;
  border-top: 0;
}

.page_issue_archive .issues_archive > li {
  padding: 26px;
}

.page_login,
.page_lost_password,
.page_register {
  width: 100%;
  max-width: none;
}

.page_login > p,
.page_lost_password > p,
.page_register > p {
  margin: 0 0 22px;
  color: var(--jcb-muted);
  line-height: 1.75;
}

.page_login .cmp_form.login,
.page_lost_password .cmp_form,
.page_register .cmp_form.register {
  margin-top: 22px;
  padding: 28px 30px;
  width: 100%;
  max-width: none;
  background: var(--jcb-paper);
  box-shadow: var(--jcb-shadow);
  border-left: 4px solid rgba(var(--jcb-accent-rgb), 0.28);
}

.page_login .cmp_form .fields,
.page_lost_password .cmp_form .fields,
.page_register .cmp_form .fields {
  display: grid;
  gap: 18px;
}

.page_login .cmp_form .fields > div,
.page_lost_password .cmp_form .fields > div,
.page_register .cmp_form .fields > div {
  padding-bottom: 0;
}

.page_login .cmp_form .label,
.page_lost_password .cmp_form .label,
.page_register .cmp_form .label {
  margin-bottom: 8px;
  color: var(--jcb-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.98rem;
  font-weight: 700;
}

.page_login .cmp_form input[type="text"],
.page_login .cmp_form input[type="email"],
.page_login .cmp_form input[type="password"],
.page_lost_password .cmp_form input[type="text"],
.page_lost_password .cmp_form input[type="email"],
.page_lost_password .cmp_form input[type="password"],
.page_register .cmp_form input[type="text"],
.page_register .cmp_form input[type="email"],
.page_register .cmp_form input[type="password"],
.page_register .cmp_form select,
.page_register .cmp_form textarea {
  width: 100%;
  max-width: none;
  height: 48px;
  padding: 0 14px;
  border: 1px solid #d8d0dd;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #fbf7f6 100%);
  box-shadow: inset 0 1px 2px rgba(31, 18, 35, 0.04);
}

.page_register .cmp_form textarea {
  min-height: 120px;
  height: auto;
  padding: 12px 14px;
  resize: vertical;
}

.page_register .cmp_form select {
  appearance: none;
}

.page_login .cmp_form input[type="text"]:focus,
.page_login .cmp_form input[type="email"]:focus,
.page_login .cmp_form input[type="password"]:focus,
.page_lost_password .cmp_form input[type="text"]:focus,
.page_lost_password .cmp_form input[type="email"]:focus,
.page_lost_password .cmp_form input[type="password"]:focus,
.page_register .cmp_form input[type="text"]:focus,
.page_register .cmp_form input[type="email"]:focus,
.page_register .cmp_form input[type="password"]:focus,
.page_register .cmp_form select:focus,
.page_register .cmp_form textarea:focus {
  border-color: rgba(var(--jcb-accent-rgb), 0.55);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(var(--jcb-accent-rgb), 0.12);
}

.page_login .cmp_form .password a,
.page_lost_password .cmp_form .description a {
  display: inline-block;
  margin-top: 10px;
  color: var(--jcb-accent-deep);
  font-weight: 700;
  text-decoration: none;
}

.page_login .cmp_form .password a:hover,
.page_login .cmp_form .password a:focus,
.page_lost_password .cmp_form .description a:hover,
.page_lost_password .cmp_form .description a:focus {
  color: #9b221d;
  text-decoration: underline;
}

.page_login .cmp_form .remember label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.page_login .cmp_form .remember input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
}

.page_login .cmp_form .remember .label {
  margin: 0;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 0.98rem;
  font-weight: 400;
}

.page_login .cmp_form .buttons,
.page_lost_password .cmp_form .buttons,
.page_register .cmp_form .buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: flex-start;
  padding-top: 8px;
}

.page_login .cmp_form .buttons button,
.page_lost_password .cmp_form .buttons button,
.page_register .cmp_form .buttons button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--jcb-accent-deep);
  border-radius: 8px;
  background: linear-gradient(180deg, #8c1612 0%, var(--jcb-accent-deep) 100%);
  color: #fff;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 18px rgba(67, 20, 16, 0.12);
}

.page_login .cmp_form .buttons button:hover,
.page_login .cmp_form .buttons button:focus,
.page_lost_password .cmp_form .buttons button:hover,
.page_lost_password .cmp_form .buttons button:focus,
.page_register .cmp_form .buttons button:hover,
.page_register .cmp_form .buttons button:focus {
  border-color: #9b221d;
  background: linear-gradient(180deg, #a7211b 0%, #63100d 100%);
  color: #fff;
}

.page_login .cmp_form .buttons .submit,
.page_lost_password .cmp_form .buttons .submit,
.page_register .cmp_form .buttons .submit {
  order: 2;
}

.page_login .cmp_form .buttons .register,
.page_lost_password .cmp_form .buttons a,
.page_register .cmp_form .buttons a {
  order: 1;
  color: var(--jcb-accent-deep);
  font-weight: 700;
  text-decoration: none;
}

.page_login .cmp_form .buttons .register:hover,
.page_login .cmp_form .buttons .register:focus,
.page_lost_password .cmp_form .buttons a:hover,
.page_lost_password .cmp_form .buttons a:focus,
.page_register .cmp_form .buttons a:hover,
.page_register .cmp_form .buttons a:focus {
  color: #9b221d;
  text-decoration: underline;
}

.page_register .cmp_form fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.page_register .cmp_form fieldset + fieldset {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--jcb-line);
}

.page_register .cmp_form legend {
  margin: 0 0 16px;
  padding: 0;
  color: var(--jcb-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.page_register .cmp_form label {
  display: block;
}

.page_register .cmp_form .optin label,
.page_register .cmp_form .reviewer .optin label {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--jcb-ink);
  line-height: 1.75;
}

.page_register .cmp_form input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  flex: 0 0 auto;
}

.page_register .cmp_form .reviewer_interests {
  margin-top: 14px;
}

.page_register .cmp_form .required {
  color: var(--jcb-accent-deep);
}

.page_search {
  width: 100%;
  max-width: none;
}

.page_search .cmp_form {
  display: grid;
  gap: 20px;
  margin-top: 22px;
  padding: 28px 30px;
  width: 100%;
  max-width: none;
  background: var(--jcb-paper);
  box-shadow: var(--jcb-shadow);
  border-left: 4px solid rgba(var(--jcb-accent-rgb), 0.28);
}

.page_search .search_input {
  display: block;
}

.page_search .search_input .query,
.page_search .search_advanced input[type="text"],
.page_search .search_advanced select {
  width: 100%;
  max-width: none;
  height: 48px;
  padding: 0 14px;
  border: 1px solid #d8d0dd;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #fbf7f6 100%);
  box-shadow: inset 0 1px 2px rgba(31, 18, 35, 0.04);
}

.page_search .search_advanced select {
  appearance: none;
  padding-right: 34px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--jcb-muted) 50%),
    linear-gradient(135deg, var(--jcb-muted) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.page_search .search_input .query:focus,
.page_search .search_advanced input[type="text"]:focus,
.page_search .search_advanced select:focus {
  border-color: rgba(var(--jcb-accent-rgb), 0.55);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(var(--jcb-accent-rgb), 0.12);
}

.page_search .search_advanced {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 20px 22px;
  border: 1px solid var(--jcb-line);
  border-radius: 18px;
  background: linear-gradient(180deg, #fffefe 0%, #faf6f5 100%);
}

.page_search .search_advanced > legend {
  padding: 0 6px;
  color: var(--jcb-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 700;
}

.page_search .date_range {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  float: none;
  width: 100%;
}

.page_search .date_range > div {
  width: 100%;
  min-width: 0;
}

.page_search .date_range > div > fieldset {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 10px 12px;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--jcb-line);
  border-radius: 14px;
  background: #fff;
  width: 100%;
  align-items: end;
}

.page_search .date_range > div > fieldset > * {
  min-width: 0;
}

.page_search .date_range > div > fieldset > legend {
  grid-column: 1 / -1;
  grid-row: 1;
  margin-bottom: 2px;
  padding: 0;
  color: var(--jcb-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.96rem;
  font-weight: 700;
}

.page_search .date_range > div > fieldset > label,
.page_search .search_advanced .author .label {
  display: block;
  margin-bottom: 6px;
  color: var(--jcb-muted);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.page_search .date_range > div > fieldset > label {
  position: static !important;
  left: auto !important;
  clip: auto !important;
  width: auto !important;
  height: auto !important;
  overflow: visible !important;
  white-space: normal !important;
}

.page_search .date_range > div > fieldset > label:nth-of-type(1) {
  grid-column: 1;
  grid-row: 2;
}

.page_search .date_range > div > fieldset > label:nth-of-type(2) {
  grid-column: 2;
  grid-row: 2;
}

.page_search .date_range > div > fieldset > label:nth-of-type(3) {
  grid-column: 3;
  grid-row: 2;
}

.page_search .date_range > div > fieldset > select:nth-of-type(1) {
  grid-column: 1;
  grid-row: 3;
}

.page_search .date_range > div > fieldset > select:nth-of-type(2) {
  grid-column: 2;
  grid-row: 3;
}

.page_search .date_range > div > fieldset > select:nth-of-type(3) {
  grid-column: 3;
  grid-row: 3;
}

.page_search .date_range [name*="Year"],
.page_search .date_range [name*="Month"],
.page_search .date_range [name*="Day"] {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0;
}

.page_search .date_range select + label + select {
  margin-left: 0 !important;
}

.page_search .search_advanced .author {
  display: grid;
  gap: 8px;
}

.page_search .author {
  width: 100%;
  float: none;
}

.page_search .submit {
  display: flex;
  justify-content: flex-start;
  text-align: left;
}

.page_search .submit button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px !important;
  border: 1px solid var(--jcb-accent-deep) !important;
  border-left: 1px solid var(--jcb-accent-deep) !important;
  border-right: 1px solid var(--jcb-accent-deep) !important;
  border-radius: 8px !important;
  background: linear-gradient(180deg, #8c1612 0%, var(--jcb-accent-deep) 100%) !important;
  box-shadow: 0 10px 18px rgba(67, 20, 16, 0.12) !important;
  color: #fff !important;
}

.page_search .submit .submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid var(--jcb-accent-deep);
  border-radius: 8px;
  background: linear-gradient(180deg, #8c1612 0%, var(--jcb-accent-deep) 100%);
  color: #fff;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 18px rgba(67, 20, 16, 0.12);
}

.page_search .submit .submit::after {
  content: none;
}

.page_search .submit button::after {
  display: none !important;
  content: none !important;
}

.page_search .submit .submit:hover,
.page_search .submit .submit:focus {
  border-color: #9b221d;
  background: linear-gradient(180deg, #a7211b 0%, #63100d 100%);
  color: #fff;
}

.page_search .search_results {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.page_search .search_results > li {
  padding: 22px 24px;
  background: var(--jcb-paper);
  box-shadow: var(--jcb-shadow);
  border-left: 4px solid rgba(var(--jcb-accent-rgb), 0.22);
}

.page_search .search_results .obj_article_summary {
  padding: 0;
}

.page_search .search_results .title {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.45;
}

.page_search .search_results .title a {
  color: var(--jcb-accent-deep);
  text-decoration: none;
}

.page_search .search_results .title a:hover,
.page_search .search_results .title a:focus {
  color: #9b221d;
}

.page_search .search_results .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 12px;
}

.page_search .search_results .meta > div {
  color: var(--jcb-muted);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 0.88rem;
  line-height: 1.5;
}

.page_search .search_results .authors {
  color: var(--jcb-ink);
  font-weight: 700;
}

.page_search .search_results .pages::before {
  content: "Pages ";
  font-weight: 700;
}

.page_search .search_results .published::before {
  content: "Published ";
  font-weight: 700;
}

.page_search .cmp_notification.notice {
  margin-top: 28px;
  padding: 18px 20px;
  border: 1px solid var(--jcb-line);
  border-left: 4px solid rgba(var(--jcb-accent-rgb), 0.22);
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #faf6f5 100%);
  color: var(--jcb-muted);
  box-shadow: var(--jcb-shadow);
}

.current_issue_title {
  margin: 0 0 18px;
  color: #5c5063;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.obj_issue_toc {
  padding: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.obj_issue_toc .heading {
  position: relative;
  display: flow-root;
  padding: 0;
  margin-bottom: 24px;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}

.obj_issue_toc .heading::before {
  content: none;
}

.obj_issue_toc .cover,
.obj_issue_summary .cover,
.obj_issue_toc .description,
.obj_issue_toc .published {
  position: relative;
  z-index: 1;
}

.obj_issue_summary {
  background: transparent;
  box-shadow: none;
}

.obj_issue_toc .cover,
.obj_issue_summary .cover {
  display: block;
  float: left;
  width: clamp(190px, 20vw, 280px);
  margin: 4px 30px 18px 0;
  overflow: hidden;
  border-radius: 14px;
  background: #fff; 
}

.obj_issue_toc .cover img,
.obj_issue_summary .cover img {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
  border-radius: 14px;
  box-shadow: none;
  background: linear-gradient(180deg, #fff 0%, #f7f2f1 100%);
  transform: scale(1.16);
  transform-origin: center top;
}

.obj_article_details .cover_image img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid #d6cfdb;
  box-shadow: 0 18px 34px rgba(37, 21, 43, 0.14);
  background: #fff;
}

.page_article .obj_article_details .row {
  margin: 24px 0 0;
  border: 0;
}

.page_article .obj_article_details .main_entry,
.page_article .obj_article_details .entry_details {
  float: none;
  width: auto;
  margin: 0;
}

.page_article .obj_article_details .main_entry {
  border-right: 0;
}

.page_article .obj_article_details .entry_details {
  display: grid;
  grid-template-columns: minmax(170px, 220px) minmax(0, 1fr);
  gap: 18px 26px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--jcb-line);
  border-left: 0;
}

.page_article .obj_article_details .entry_details .item {
  padding: 0;
  border-bottom: 0;
}

.page_article .obj_article_details .entry_details .cover_image {
  grid-row: 1 / span 4;
}

.page_article .obj_article_details .entry_details .galleys,
.page_article .obj_article_details .entry_details .published,
.page_article .obj_article_details .entry_details .issue {
  grid-column: 2;
}

.page_article .obj_article_details .entry_details .cover_image img {
  width: min(100%, 210px);
}

.page_article .obj_article_details .issue .sub_item + .sub_item {
  margin-top: 14px;
}

.obj_issue_toc .description,
.obj_issue_summary .description {
  color: var(--jcb-ink);
  line-height: 1.85;
}

.obj_issue_toc .published {
  clear: both;
  margin-top: 14px;
  color: var(--jcb-muted);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 0.86rem;
}

.obj_issue_toc .sections {
  display: grid;
  gap: 18px;
}

.obj_issue_toc .section {
  margin: 0;
  padding: 0;
}

.obj_issue_toc .section::before {
  content: none;
  display: none;
}

.obj_issue_toc .section > h3,
.obj_issue_toc .section > h2 {
  display: block;
  width: 100%;
  margin: 0 0 22px;
  padding: 0 0 12px;
  background: transparent;
  border-bottom: 3px solid var(--jcb-accent);
  color: var(--jcb-ink);
  left: auto;
  line-height: 1.2;
}

.cmp_article_list {
  display: grid;
  gap: 16px;
}

.cmp_article_list > li {
  margin: 0;
}

.obj_article_summary {
  padding: 18px 20px;
  position: relative;
  overflow: hidden;
  border-left: 4px solid rgba(var(--jcb-accent-rgb), 0.3);
  background:
    linear-gradient(180deg, #ffffff 0%, #fbf7f6 100%);
}

.obj_article_summary .title {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.5;
}

.obj_article_summary .title a {
  color: var(--jcb-accent-deep);
}

.obj_article_summary .title a:hover,
.obj_article_summary .title a:focus {
  color: #9b221d;
}

.obj_article_summary .meta {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--jcb-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.obj_article_summary .authors,
.obj_article_summary .pages {
  display: inline-flex;
  align-items: center;
}

.obj_article_summary .pages::before {
  content: "Pages";
  margin-right: 6px;
  color: #8f6e6b;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.obj_article_summary .galleys_links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.obj_galley_link,
.read_more,
.cmp_button,
.cmp_button_wire {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid #d8d0dd;
  border-radius: 4px;
  background: linear-gradient(180deg, #ffffff 0%, #f8f2f1 100%);
  color: var(--jcb-accent-deep);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.obj_galley_link:hover,
.obj_galley_link:focus,
.read_more:hover,
.read_more:focus,
.cmp_button:hover,
.cmp_button:focus,
.cmp_button_wire:hover,
.cmp_button_wire:focus {
  background: linear-gradient(180deg, #8c1612 0%, var(--jcb-accent-deep) 100%);
  border-color: var(--jcb-accent-deep);
  color: #fff;
}

.pkp_structure_sidebar {
  display: grid;
  width: 100%;
  max-width: 420px;
  justify-self: end;
  gap: clamp(18px, 2vw, 26px);
}

.pkp_structure_sidebar > .pkp_block {
  width: 100%;
}

.pkp_block {
  overflow: hidden;
}

.pkp_block .title {
  display: block;
  margin: 0;
  padding: 14px 18px;
  background: linear-gradient(90deg, var(--jcb-accent-deep) 0%, var(--jcb-accent) 100%);
  border: 0;
  color: #fff;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pkp_block .content {
  padding: 16px 18px 18px;
}

.pkp_block .content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pkp_block .content li + li,
.pkp_block .content p + p {
  margin-top: 10px;
}

.pkp_block img {
  display: block;
  max-width: 100%;
  height: auto;
}

.pkp_block.block_custom a,
.pkp_block.block_web_feed a,
.pkp_block.block_information a {
  color: var(--jcb-accent-deep);
}

.page_index_journal > .additional_content {
  display: none;
}

#customblock-indexed-by {
  background: var(--jcb-paper);
  border: 1px solid var(--jcb-line);
  box-shadow: var(--jcb-shadow);
}

#customblock-indexed-by > .title {
  margin-bottom: 0;
  padding: 14px 18px;
  background:
    linear-gradient(135deg, rgba(var(--jcb-accent-deep-rgb), 0.96) 0%, rgba(var(--jcb-accent-rgb), 0.96) 100%);
  border-radius: 0;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

#customblock-indexed-by > .content {
  padding: 0 !important;
  background: transparent;
  display: grid;
  gap: 0;
}

#customblock-indexed-by > .content > .content {
  padding: 16px 18px 18px !important;
  background: transparent;
  border: 0;
  box-shadow: none;
}

#customblock-indexed-by .content .content {
  padding: 0 !important;
  background: transparent !important;
}

#customblock-indexed-by .sidebar-box:empty,
#customblock-indexed-by #aboutSubmissions:empty,
#customblock-indexed-by .content:empty {
  display: none;
}

#customblock-indexed-by img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 8px;
  border: 1px solid #ebe3ef;
  background: #fff;
}

#customblock-indexed-by a img:hover,
#customblock-indexed-by a img:focus {
  border-color: rgba(var(--jcb-accent-rgb), 0.35);
}

#customblock-indexed-by hr {
  margin: 14px 0;
  border: 0;
  border-top: 1px solid var(--jcb-line);
}

#customblock-indexed-by p,
#customblock-indexed-by ul,
#customblock-indexed-by table,
#customblock-indexed-by div {
  max-width: 100%;
}

#customblock-indexed-by p {
  margin: 0;
}

#customblock-indexed-by p + p,
#customblock-indexed-by ul + p,
#customblock-indexed-by p + ul,
#customblock-indexed-by table + p,
#customblock-indexed-by hr + p {
  margin-top: 12px;
}

#customblock-indexed-by p > .title {
  display: block;
  margin: 8px 0 12px;
  padding-bottom: 9px;
  border-bottom: 2px solid #ead6d4;
  color: var(--jcb-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  background: transparent;
}

#customblock-indexed-by [style*="background-color"] {
  margin: 0 !important;
  padding: 12px 14px !important;
  border: 1px solid var(--jcb-line) !important;
  background: linear-gradient(180deg, #ffffff 0%, #faf6f5 100%) !important;
  color: var(--jcb-ink) !important;
  text-align: left !important;
  box-shadow: none !important;
}

#customblock-indexed-by [style*="background-color"] + [style*="background-color"] {
  margin-top: 10px !important;
}

#customblock-indexed-by [style*="background-color"] strong {
  color: var(--jcb-ink) !important;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#customblock-indexed-by [style*="background-color"] a {
  color: var(--jcb-accent-deep) !important;
}

#customblock-indexed-by ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
}

#customblock-indexed-by li {
  list-style: none;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid var(--jcb-line);
  background: #faf7f7;
  color: var(--jcb-ink);
}

#customblock-indexed-by table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
  border: 1px solid var(--jcb-line);
  background: #fcfafc;
}

#customblock-indexed-by td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--jcb-line);
  color: var(--jcb-ink);
  font-size: 0.88rem;
  line-height: 1.6;
}

#customblock-indexed-by tr:last-child td {
  border-bottom: 0;
}

#customblock-indexed-by strong a {
  color: inherit;
}

.block_web_feed .content ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.block_web_feed .content li {
  margin: 0;
}

.block_web_feed .content a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 74px;
  padding: 12px;
  border: 1px solid var(--jcb-line);
  background: linear-gradient(180deg, #ffffff 0%, #faf7f7 100%);
}

.block_information .content ul {
  display: grid;
  gap: 10px;
}

.block_information .content a {
  display: block;
  padding: 12px 14px;
  border: 1px solid var(--jcb-line);
  background: linear-gradient(180deg, #ffffff 0%, #faf7f7 100%);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pkp_structure_footer_wrapper {
  margin-top: 30px;
  border: 0;
  background:
    radial-gradient(circle at top left, rgba(var(--jcb-accent-rgb), 0.18), transparent 26%),
    linear-gradient(180deg, #2e1f1d 0%, #171111 100%);
}

.pkp_structure_footer {
  width: auto;
  max-width: 1240px;
  margin: 0 auto;
  padding: 32px 24px;
}

.pkp_footer_content,
.pkp_footer_content a,
.pkp_brand_footer a {
  color: rgba(255, 255, 255, 0.82);
}

.pkp_footer_content {
  display: grid;
  gap: 14px;
  line-height: 1.8;
}

.pkp_footer_content p {
  margin: 0;
}

.pkp_footer_content [style*="display: none"],
.pkp_footer_content [style*="visibility: hidden"] {
  display: none !important;
}

.pkp_brand_footer {
  padding: 0;
}

.pkp_brand_footer img {
  max-width: 120px;
  opacity: 0.8;
}

@media (max-width: 991px) {
  .pkp_structure_head::before {
    height: 56px;
    background: linear-gradient(90deg, #240403 0%, var(--jcb-accent-deep) 26%, var(--jcb-accent) 76%, #a82620 100%);
    pointer-events: none;
  }

  .pkp_head_wrapper,
  .has_site_logo .pkp_head_wrapper {
    width: 100%;
    display: block;
    position: relative;
    padding: 56px 0 0;
  }

  .pkp_head_wrapper::before,
  .has_site_logo .pkp_head_wrapper::before {
    content: none;
  }

  .pkp_navigation_user_wrapper {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 4;
    width: 100%;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 14px 0 64px;
    background: transparent;
    box-shadow: none;
    overflow: visible;
    pointer-events: none;
  }

  .pkp_navigation_user,
  .pkp_navigation_user.pkp_navigation_user,
  .pkp_navigation_user_wrapper .pkp_navigation_user.pkp_navigation_user {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    width: 100%;
    min-height: 56px;
    margin: 0;
    padding: 0;
    border-top: 0;
    pointer-events: auto;
  }

  .pkp_navigation_user > li > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    height: 56px;
    min-height: 56px;
    padding: 0 10px;
    color: #fff !important;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .pkp_navigation_user > li {
    display: none;
  }

  .pkp_navigation_user > li:last-child {
    display: flex;
    align-items: center;
    height: 56px;
    margin-left: auto;
    position: relative;
  }

  .pkp_navigation_user > li:last-child > a {
    justify-content: flex-end;
    gap: 8px;
    max-width: calc(100vw - 96px);
    padding: 0 10px 0 12px;
    text-align: right;
  }

  .pkp_navigation_user > li:last-child .task_count {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    margin-left: 0;
    padding: 0 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1;
    position: static;
    transform: none;
    vertical-align: middle;
    align-self: center;
  }

  .pkp_navigation_user > li:last-child:has(ul) > a::after {
    content: "\25be";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    line-height: 1;
    transition: transform 0.18s ease;
  }

  .pkp_navigation_user > li:last-child:focus-within > a::after,
  .pkp_navigation_user > li:last-child:hover > a::after,
  .pkp_navigation_user > li:last-child.show > a::after {
    transform: rotate(180deg);
  }

  .pkp_navigation_user > li:last-child > ul,
  .pkp_navigation_user > li:last-child > .dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    display: block !important;
    min-width: 214px;
    margin: 0;
    padding: 10px 0;
    border: 1px solid var(--jcb-line);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 18px 28px rgba(30, 17, 34, 0.18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    z-index: 15;
  }

  .pkp_navigation_user > li:last-child:focus-within > ul,
  .pkp_navigation_user > li:last-child:focus-within > .dropdown-menu,
  .pkp_navigation_user > li:last-child:hover > ul,
  .pkp_navigation_user > li:last-child:hover > .dropdown-menu,
  .pkp_navigation_user > li:last-child.show > ul,
  .pkp_navigation_user > li:last-child.show > .dropdown-menu,
  .pkp_navigation_user > li:last-child > ul.show,
  .pkp_navigation_user > li:last-child > .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .pkp_navigation_user > li:last-child > ul li,
  .pkp_navigation_user > li:last-child > .dropdown-menu li {
    display: block;
    margin: 0;
  }

  .pkp_navigation_user > li:last-child > ul a,
  .pkp_navigation_user > li:last-child > .dropdown-menu a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 42px;
    padding: 10px 14px;
    color: var(--jcb-ink) !important;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.35;
    white-space: nowrap;
    text-decoration: none;
  }

  .pkp_navigation_user > li:last-child > ul a:hover,
  .pkp_navigation_user > li:last-child > ul a:focus,
  .pkp_navigation_user > li:last-child > .dropdown-menu a:hover,
  .pkp_navigation_user > li:last-child > .dropdown-menu a:focus {
    background: rgba(var(--jcb-accent-rgb), 0.08);
    color: var(--jcb-accent-deep) !important;
  }

  .pkp_navigation_user > li > a[href*="/login"]::before {
    display: inline-flex;
    align-items: center;
    margin-right: 7px;
    font-family: "FontAwesome";
    content: "\f090";
  }

  .pkp_site_name_wrapper {
    position: static;
    width: 100%;
    padding: 10px 16px;
    background: #fff;
    border-bottom: 0;
    box-shadow: none;
  }

  .pkp_site_nav_toggle {
    position: absolute;
    top: 8px;
    left: 12px;
    z-index: 6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 40px;
    padding: 0;
    border: 0;
    border-radius: 10px;
    background: transparent;
    box-shadow: none;
    color: #fff;
    cursor: pointer;
    pointer-events: auto;
  }

  .pkp_site_nav_toggle span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .pkp_site_nav_toggle::before {
    content: "\2630";
    font-size: 1.8rem;
    line-height: 1;
  }

  .pkp_site_nav_toggle.pkp_site_nav_toggle--transform::before {
    content: "\00d7";
    font-size: 2rem;
  }

  .pkp_site_name .is_img::after {
    display: none;
  }

  .pkp_site_name .is_img {
    display: block;
    width: min(100%, 214px);
    height: 40px;
    margin: 0;
    overflow: hidden;
    line-height: 0;
  }

  .pkp_site_name {
    display: flex;
    align-items: center;
    min-height: 40px;
  }

  .pkp_site_name .is_img img {
    width: 328px;
    height: auto;
    max-width: none;
    max-height: none;
    transform: translateX(-12px);
    object-fit: cover;
    object-position: left center;
    filter: none;
  }

  .pkp_site_nav_menu {
    display: block;
    width: 100%;
    position: static;
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
  }

  .pkp_navigation_primary_row {
    display: none;
    padding: 0 16px 18px;
    background: #fff;
    border-top: 0;
    border-bottom: 1px solid var(--jcb-line);
    box-shadow: 0 16px 28px rgba(25, 17, 30, 0.14);
  }

  .pkp_site_nav_menu.pkp_site_nav_menu--isOpen .pkp_navigation_primary_row,
  .pkp_site_nav_menu--isOpen .pkp_navigation_primary_row {
    display: block !important;
  }

  .pkp_navigation_primary_wrapper,
  .pkp_navigation_search_wrapper {
    width: 100%;
  }

  #navigationPrimary {
    display: grid;
    gap: 8px;
    padding: 0;
  }

  #navigationPrimary > li,
  .pkp_navigation_search_wrapper {
    width: 100%;
  }

  #navigationPrimary > li > a[href="#"] {
    position: relative;
    padding-right: 18px;
  }

  #navigationPrimary > li > a[href="#"]::after {
    content: "\25be";
    margin-left: auto;
    font-size: 0.74rem;
    line-height: 1;
    transition: transform 0.18s ease;
  }

  #navigationPrimary > li > ul {
    display: none;
    width: 100%;
    padding: 4px 0 0 18px;
  }

  #navigationPrimary > li:focus-within > ul,
  #navigationPrimary > li:hover > ul {
    display: grid;
    gap: 2px;
  }

  #navigationPrimary > li:focus-within > a[href="#"]::after,
  #navigationPrimary > li:hover > a[href="#"]::after {
    transform: rotate(180deg);
  }

  .pkp_site_nav_menu a {
    color: var(--jcb-ink);
  }

  #navigationPrimary > li > a,
  .pkp_navigation_search_wrapper a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-height: 52px;
    padding: 14px 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    font-size: 1.02rem;
  }

  .pkp_site_nav_menu ul ul a {
    min-height: 42px;
    padding: 8px 0;
    font-size: 0.94rem;
    font-weight: 600;
  }

  .pkp_navigation_search_wrapper {
    margin-top: 12px;
    margin-left: 0;
  }

  .pkp_navigation_search_wrapper a {
    width: fit-content;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid var(--jcb-line);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 10px 18px rgba(31, 19, 36, 0.1);
  }

  .obj_issue_toc .heading {
    grid-template-columns: 1fr;
  }

  .block_web_feed .content ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .pkp_structure_content,
  .pkp_structure_footer {
    width: calc(100% - (2 * var(--jcb-gutter-mobile)));
  }

  .pkp_navigation_user_wrapper {
    min-height: 54px;
    padding: 0 12px 0 58px;
  }

  .pkp_navigation_user,
  .pkp_navigation_user.pkp_navigation_user,
  .pkp_navigation_user_wrapper .pkp_navigation_user.pkp_navigation_user {
    min-height: 54px;
    margin: 0;
    padding: 0;
    border-top: 0;
  }

  .pkp_navigation_user > li:last-child {
    height: 54px;
  }

  .pkp_navigation_user > li > a {
    height: 54px;
    min-height: 54px;
  }

  .pkp_navigation_user > li:last-child > a {
    max-width: calc(100vw - 86px);
  }

  .pkp_site_name_wrapper {
    padding: 9px 14px;
  }

  .pkp_site_name .is_img {
    width: min(100%, 198px);
    height: 36px;
  }

  .pkp_site_name .is_img img {
    width: 300px;
    transform: translateX(-10px);
  }

  .pkp_navigation_primary_row {
    padding: 0 14px 16px;
  }

  .page_login .cmp_form.login,
  .page_lost_password .cmp_form,
  .page_register .cmp_form.register {
    padding: 22px 18px;
  }

  .page_search .cmp_form {
    padding: 22px 18px;
  }

  .page_search .search_advanced {
    padding: 18px 16px;
  }

  .page_search .date_range {
    grid-template-columns: 1fr;
  }

  .page_search .date_range > div > fieldset {
    grid-template-columns: 1fr !important;
    gap: 8px;
    padding: 16px;
  }

  .page_search .date_range > div > fieldset > label:nth-of-type(1),
  .page_search .date_range > div > fieldset > label:nth-of-type(2),
  .page_search .date_range > div > fieldset > label:nth-of-type(3),
  .page_search .date_range > div > fieldset > select:nth-of-type(1),
  .page_search .date_range > div > fieldset > select:nth-of-type(2),
  .page_search .date_range > div > fieldset > select:nth-of-type(3) {
    grid-column: auto;
    grid-row: auto;
  }

  .page_search .search_results > li {
    padding: 18px;
  }

  .page_search .submit .submit {
    width: 100%;
    justify-content: center;
  }

  .page_search .submit button {
    width: 100%;
  }

  .page_login .cmp_form .buttons,
  .page_lost_password .cmp_form .buttons,
  .page_register .cmp_form .buttons {
    flex-wrap: wrap;
  }

  .pkp_structure_content,
  .pkp_structure_footer {
    padding-left: 0;
    padding-right: 0;
  }

  .current_issue,
  .obj_article_details,
  .additional_content,
  .pkp_structure_sidebar .pkp_block {
    padding: 18px;
  }

  .obj_issue_toc .cover,
  .obj_issue_summary .cover {
    float: none;
    width: min(250px, 72vw);
    margin: 0 auto 20px;
  }

  .page_article .obj_article_details .entry_details {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .page_article .obj_article_details .entry_details .cover_image,
  .page_article .obj_article_details .entry_details .galleys,
  .page_article .obj_article_details .entry_details .published,
  .page_article .obj_article_details .entry_details .issue {
    grid-column: auto;
    grid-row: auto;
  }

  .obj_issue_toc .cover img,
  .obj_issue_summary .cover img {
    transform: none;
  }

  #customblock-indexed-by > .title {
    padding: 16px 18px;
    font-size: 1.4rem;
  }

  #customblock-indexed-by > .content > .content,
  .pkp_block .content {
    padding: 16px !important;
  }

  .page_search .cmp_form {
    padding: 20px 16px;
  }

  .page_search .search_advanced {
    padding: 16px 14px;
  }

  .page_search .date_range {
    grid-template-columns: 1fr;
  }

  .page_search .date_range > div > fieldset {
    grid-template-columns: 1fr !important;
    gap: 8px;
    padding: 14px;
  }

  .page_search .date_range > div > fieldset > label:nth-of-type(1),
  .page_search .date_range > div > fieldset > label:nth-of-type(2),
  .page_search .date_range > div > fieldset > label:nth-of-type(3),
  .page_search .date_range > div > fieldset > select:nth-of-type(1),
  .page_search .date_range > div > fieldset > select:nth-of-type(2),
  .page_search .date_range > div > fieldset > select:nth-of-type(3) {
    grid-column: auto;
    grid-row: auto;
  }

  .page_search .search_results > li {
    padding: 16px;
  }

  .page_search .submit .submit {
    width: 100%;
  }

  .page_search .submit button {
    width: 100%;
  }

  .block_web_feed .content ul {
    grid-template-columns: 1fr;
  }
}
