/* =========================================================
   OJS CSS - SAME STYLE AS UPLOADED FILE (CLEANED VERSION)
   ========================================================= */

/* remove default mess */
*,
*:before,
*:after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 14px;
  line-height: 1.43rem;
  color: rgba(0,0,0,0.87);
  background: #fff;
}

a {
  color: #006798;
  transition: all .25s ease;
}

a:hover,
a:focus {
  color: #008acb;
}

/* =========================================================
   CONTAINER WIDTHS - SAME AS UPLOADED FILE
   ========================================================= */
.pkp_site_name_wrapper,
.pkp_navigation_primary_wrapper,
.pkp_navigation_user,
.pkp_search_mobile,
.pkp_structure_content,
.pkp_structure_footer {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding-left: .714rem;
  padding-right: .714rem;
}

.pkp_site_name_wrapper:before,
.pkp_navigation_primary_wrapper:before,
.pkp_navigation_user:before,
.pkp_search_mobile:before,
.pkp_structure_content:before,
.pkp_structure_footer:before,
.pkp_site_name_wrapper:after,
.pkp_navigation_primary_wrapper:after,
.pkp_navigation_user:after,
.pkp_search_mobile:after,
.pkp_structure_content:after,
.pkp_structure_footer:after {
  content: "";
  display: table;
}

.pkp_site_name_wrapper:after,
.pkp_navigation_primary_wrapper:after,
.pkp_navigation_user:after,
.pkp_search_mobile:after,
.pkp_structure_content:after,
.pkp_structure_footer:after {
  clear: both;
}

@media (min-width: 768px) {
  .pkp_site_name_wrapper,
  .pkp_navigation_primary_wrapper,
  .pkp_navigation_user,
  .pkp_search_mobile,
  .pkp_structure_content,
  .pkp_structure_footer {
    width: 728px;
    padding: 0;
  }
}

@media (min-width: 992px) {
  .pkp_site_name_wrapper,
  .pkp_navigation_primary_wrapper,
  .pkp_navigation_user,
  .pkp_search_mobile,
  .pkp_structure_content,
  .pkp_structure_footer {
    width: 952px;
  }
}

@media (min-width: 1200px) {
  .pkp_site_name_wrapper,
  .pkp_navigation_primary_wrapper,
  .pkp_navigation_user,
  .pkp_search_mobile,
  .pkp_structure_content,
  .pkp_structure_footer {
    width: 1160px;
  }
}

/* =========================================================
   HEADER - SAME LOOK AS FILE
   ========================================================= */
.pkp_structure_head {
  background: #61baca;
  border-bottom: 1px solid #ddd;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.pkp_head_wrapper {
  position: relative;
}

.pkp_site_name_wrapper {
  height: 2.857rem;
}

@media (min-width: 992px) {
  .pkp_site_name_wrapper {
    height: auto;
  }
}

.pkp_site_name {
  position: absolute;
  left: 2.857rem;
  right: 0;
  margin: 0;
  padding-left: .714rem;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #fff;
  font-size: .93rem;
}

.pkp_site_name > a {
  padding-top: .714rem;
  padding-bottom: .714rem;
}

.pkp_site_name .is_text {
  font-size: .93rem;
  font-weight: 700;
  line-height: 2.857rem;
  color: #fff;
  text-decoration: none;
}

.pkp_site_name .is_img {
  display: inline-block;
  margin-top: .357rem;
  margin-bottom: .357rem;
  padding: 0;
}

.pkp_site_name .is_img img {
  display: block;
  max-height: 2.143rem;
  max-width: 100%;
  width: auto;
  height: auto;
  transition: transform .3s ease;
}

.pkp_site_name .is_img img:hover {
  transform: scale(1.03);
}

@media (min-width: 992px) {
  .pkp_head_wrapper {
    padding-top: 4.286rem;
  }

  .has_site_logo .pkp_head_wrapper {
    padding-top: 2.143rem;
  }

  .pkp_site_name {
    position: relative;
    width: 100%;
    left: auto;
    right: auto;
    padding: 0;
    white-space: normal;
    font-size: 2em;
    background: transparent;
    overflow: visible;
  }

  .pkp_site_name .is_text {
    font-size: 1.714rem;
    line-height: 2.143rem;
  }

  .pkp_site_name .is_img img {
    max-height: 160px;
  }
}

/* =========================================================
   MOBILE NAV TOGGLE
   ========================================================= */
.pkp_site_nav_toggle {
  position: absolute;
  top: 0;
  left: 0;
  width: 2.857rem;
  height: 2.857rem;
  border: 0;
  background: none;
  box-shadow: 1px 0 0 rgba(255,255,255,0.2), -1px 0 0 rgba(255,255,255,0.2);
  z-index: 999;
}

.pkp_site_nav_toggle > span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 19px;
  border-bottom: 3px solid #fff;
  text-indent: -9999px;
  overflow: hidden;
  transition: all .3s ease;
}

.pkp_site_nav_toggle > span:before,
.pkp_site_nav_toggle > span:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #fff;
  transition: all .3s ease;
}

.pkp_site_nav_toggle > span:before {
  top: 0;
}

.pkp_site_nav_toggle > span:after {
  top: 8px;
}

.pkp_site_nav_toggle--transform > span {
  border-bottom: 0;
  overflow: visible;
}

.pkp_site_nav_toggle--transform > span:before {
  top: 7px;
  transform: rotate(-45deg);
}

.pkp_site_nav_toggle--transform > span:after {
  top: 7px;
  transform: rotate(45deg);
}

@media (min-width: 992px) {
  .pkp_site_nav_toggle {
    display: none;
  }
}

/* =========================================================
   NAVIGATION - VERY CLOSE TO FILE
   ========================================================= */
.pkp_navigation_primary_wrapper {
  padding-left: 0;
  padding-right: 0;
}

.pkp_site_nav_menu {
  display: none;
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  padding: .714rem;
  background: #61baca;
  z-index: 9999;
  animation: navDrop .28s ease;
}

.pkp_site_nav_menu--isOpen {
  display: block;
}

.pkp_site_nav_menu .pkp_nav_list,
.pkp_site_nav_menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pkp_site_nav_menu ul ul {
  padding-left: .5rem;
}

.pkp_site_nav_menu a {
  display: inline-block;
  padding: .125rem 0;
  color: #fff;
  text-decoration: none;
}

.pkp_site_nav_menu a:hover,
.pkp_site_nav_menu a:focus {
  color: #fff;
  text-decoration: underline;
}

.pkp_navigation_user.pkp_navigation_user {
  margin-left: auto;
  margin-right: auto;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.pkp_navigation_search_wrapper {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

@media (min-width: 992px) {
  .pkp_site_nav_menu {
    display: block;
    position: static;
    top: auto;
    padding: 0;
  }

  .pkp_site_nav_menu ul ul {
    padding-left: 0;
  }

  .pkp_nav_list {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .pkp_nav_list li {
    position: relative;
    display: inline-block;
  }

  .pkp_nav_list a {
    display: inline-block;
    padding-left: .714rem;
    padding-right: .714rem;
    padding-top: .357rem;
    padding-bottom: .357rem;
    text-decoration: none;
    transition: all .25s ease;
  }

  .pkp_nav_list ul {
    position: absolute;
    top: 100%;
    left: -9999px;
    z-index: 1000;
    width: 15em;
    margin: 0;
    padding: 0;
    background: #fff;
    border-radius: 3px;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
    animation: dropdownFade .25s ease;
  }

  .pkp_nav_list ul li {
    display: block;
  }

  .pkp_nav_list ul a {
    display: block;
    padding-left: .357rem;
    border-left: .357rem solid transparent;
    color: #006798;
  }

  .pkp_nav_list ul a:hover,
  .pkp_nav_list ul a:focus {
    outline: 0;
    background: #ddd;
    border-color: #006798;
    color: #006798;
  }

  .pkp_nav_list > li:hover ul {
    left: 0;
  }

  .pkp_navigation_primary {
    text-align: center;
    display: inline-block;
    max-width: 80%;
    text-align: left;
  }

  .pkp_navigation_primary > li > a {
    margin: .357rem .5em 0;
    padding: .357rem .5em calc(.714rem - 2px);
    border-bottom: 2px solid transparent;
    color: #fff;
    text-decoration: none;
    transition: all .25s ease;
  }

  .pkp_navigation_primary > li > a:hover {
    color: #fff;
    outline: 0;
    border-color: #fff;
    transform: translateY(-1px);
  }

  .pkp_navigation_primary > li > a:focus {
    background: #fff;
    color: #61baca;
    outline: 0;
  }

  .pkp_navigation_primary > li:hover ul {
    position: absolute;
    transform: translate3d(7px, 40px, 0);
    top: 0;
    left: 0;
    will-change: transform;
  }

  .pkp_navigation_primary ul a {
    padding-top: .714rem;
    padding-bottom: .714rem;
  }

  .dropdown-menu {
    display: none;
  }

  .dropdown-menu.show {
    display: block;
  }

  [data-toggle="dropdown"]:hover + .dropdown-menu,
  .dropdown-menu:hover {
    display: block;
  }

  .pkp_navigation_user_wrapper {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    padding-left: .714rem;
    padding-right: .714rem;
    text-align: right;
    z-index: 1000;
  }

  .pkp_navigation_user {
    text-align: right;
    font-size: .93rem;
    padding-right: 1.43rem;
  }

  .pkp_navigation_user.pkp_navigation_user {
    margin: 0;
    padding: 0;
    border: none;
  }

  .pkp_navigation_user li {
    text-align: left;
  }

  .pkp_navigation_user a {
    padding-top: .357rem;
    padding-bottom: .357rem;
    line-height: 1.43rem;
  }

  .pkp_navigation_user > li > a:focus {
    outline: 0;
    background: #fff;
    color: #61baca;
  }

  .pkp_navigation_user ul {
    width: 10em;
  }

  .pkp_navigation_user > li:hover ul {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate3d(0, 30px, 0);
    will-change: transform;
  }

  .pkp_navigation_search_wrapper {
    float: right;
    margin: 0;
    padding: 0;
    border: none;
  }

  .pkp_navigation_search_wrapper a {
    margin: .357rem .5em 0;
    padding: .357rem .5em calc(.714rem - 2px);
    border-bottom: 2px solid transparent;
    color: #fff;
    text-decoration: none;
  }

  .pkp_navigation_search_wrapper a:hover {
    color: #fff;
    border-color: #fff;
    text-decoration: none;
  }

  .pkp_navigation_search_wrapper a:focus {
    background: #fff;
    color: #61baca;
    outline: 0;
  }
}

/* =========================================================
   MAIN / SIDEBAR - SAME DIMENSIONS AS FILE
   ========================================================= */
.pkp_structure_main {
  padding: .714rem;
}

@media (min-width: 480px) {
  .pkp_structure_main {
    padding: 1.43rem;
  }
}

@media (min-width: 992px) {
  .pkp_structure_content {
    padding-top: 2.143rem;
  }

  .pkp_structure_sidebar {
    float: right;
    width: 300px;
  }

  .pkp_structure_main {
    float: left;
    width: 652px;
    padding: 0 2.143rem 6.429rem;
  }
}

@media (min-width: 1200px) {
  .pkp_structure_main {
    width: 860px;
  }
}

/* =========================================================
   TYPOGRAPHY - MATCHING FILE
   ========================================================= */
.pkp_structure_main h1 {
  font-size: 1.714rem;
  line-height: 2.143rem;
  font-weight: 700;
}

.pkp_structure_main h2 {
  font-size: 1.285rem;
  line-height: 2.143rem;
  font-weight: 700;
}

.pkp_structure_main h3 {
  font-size: 1.143rem;
  line-height: 1.43rem;
  font-weight: 700;
}

.pkp_structure_main h4 {
  font-size: 1rem;
  line-height: 1.43rem;
  font-weight: 700;
}

.pkp_structure_main h1,
.pkp_structure_main h2,
.pkp_structure_main h3,
.pkp_structure_main h4 {
  margin: 2.857rem 0 1.43rem;
}

.pkp_structure_main p,
.pkp_structure_main ul {
  line-height: 1.785rem;
  margin: 1.43rem 0;
}

/* =========================================================
   BUTTONS - SAME STYLE
   ========================================================= */
.pkp_button,
.pkp_button_primary,
.pkp_button_offset,
.pkp_button_link,
.cmp_button,
.cmp_button_wire,
.obj_galley_link,
.block_make_submission a {
  display: inline-block;
  border-radius: 3px;
  font-size: .93rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .25s ease;
}

.pkp_button,
.cmp_button_wire,
.obj_galley_link {
  padding: 0 1em;
  background: #fff;
  border: 1px solid #006798;
  line-height: calc(2.143rem - 2px);
  color: #006798;
}

.pkp_button:hover,
.cmp_button_wire:hover,
.obj_galley_link:hover {
  background: #006798;
  color: #fff;
}

.pkp_button_primary,
.cmp_button,
.block_make_submission a {
  padding: 0 1em;
  background: #006798;
  border: 1px solid #006798;
  line-height: calc(2.143rem - 2px);
  color: #fff;
  box-shadow: inset 0 -1em 1em rgba(0,0,0,0.08);
}

.pkp_button_primary:hover,
.cmp_button:hover,
.block_make_submission a:hover {
  background: #008acb;
  border-color: #008acb;
}

/* =========================================================
   ARTICLE LIST / CURRENT ISSUE
   ========================================================= */
.cmp_article_list,
.page_issue_archive .issues_archive {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cmp_article_list > li,
.page_issue_archive .issues_archive > li {
  margin-bottom: 2.143rem;
  padding: 1.2rem;
  border: 1px solid #e7eef2;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
  transition: all .25s ease;
}

.cmp_article_list > li:hover,
.page_issue_archive .issues_archive > li:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.obj_article_details .galleys_links,
.obj_article_summary .galleys_links,
.obj_issue_toc .galleys_links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.obj_article_details .galleys_links li {
  margin-inline-end: 1rem;
  display: grid;
  gap: 6px;
}

.pkp_page_index .current_issue .current_issue_title {
  margin: 1.43rem 0;
  font-weight: 700;
}

.pkp_page_index .current_issue .read_more {
  display: inline-block;
  position: relative;
  padding-right: 2.143rem;
  font-size: .93rem;
  font-weight: 700;
  line-height: 2.143rem;
  color: #006798;
  text-decoration: none;
  margin-bottom: 1.43rem;
}

.pkp_page_index .current_issue .read_more:hover,
.pkp_page_index .current_issue .read_more:focus {
  color: #008acb;
}

/* =========================================================
   SIDEBAR BLOCKS
   ========================================================= */
.pkp_block {
  margin-bottom: 1.5rem;
  border: 1px solid #e2e8ee;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.pkp_block .title {
  margin: 0;
  padding: .8rem 1rem;
  background: #f3f8fb;
  border-bottom: 1px solid #e2e8ee;
  color: #006798;
  font-weight: 700;
}

.pkp_block .content {
  padding: 1rem;
}

.pkp_block .content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pkp_block .content ul li {
  padding: .4rem 0;
  border-bottom: 1px solid #eef3f6;
}

.pkp_block .content ul li:last-child {
  border-bottom: none;
}

/* =========================================================
   FORMS / SEARCH
   ========================================================= */
.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,
.page_search .search_input .query {
  padding: 0 .5em;
  width: 100%;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.4);
  border-radius: 3px;
  font-size: .93rem;
  line-height: calc(2.143rem - 2px);
  transition: all .25s ease;
}

.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 {
  height: calc(2.143rem - 2px);
}

.cmp_form textarea {
  height: 8em;
}

.cmp_form input:focus,
.cmp_form select:focus,
.cmp_form textarea:focus {
  outline: none;
  border-color: #61baca;
  box-shadow: 0 0 0 3px rgba(97,186,202,0.15);
}

/* =========================================================
   TABS - ADDED BUT SAME COLOR FAMILY
   ========================================================= */
.ojs-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 1rem 0 1.5rem;
}

.ojs-tabs a {
  display: inline-block;
  padding: .6rem 1rem;
  background: #eef8fa;
  border: 1px solid #cfe6ea;
  color: #006798;
  text-decoration: none;
  font-weight: 700;
  border-radius: 3px;
  transition: all .25s ease;
}

.ojs-tabs a:hover,
.ojs-tabs a:focus,
.ojs-tabs a.active {
  background: #61baca;
  border-color: #61baca;
  color: #fff;
}

.page_catalog_category .subcategories {
  position: relative;
  margin-top: 2rem;
  padding: 1rem 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.page_catalog_category .subcategories ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page_catalog_category .subcategories li {
  display: inline-block;
  padding: .2rem .25rem;
}

.page_catalog_category .subcategories a {
  display: inline-block;
  padding: .5rem .9rem;
  background: #f4fafc;
  border: 1px solid #d8ebef;
  border-radius: 3px;
  color: #006798;
  text-decoration: none;
  transition: all .25s ease;
}

.page_catalog_category .subcategories a:hover,
.page_catalog_category .subcategories a:focus {
  background: #61baca;
  border-color: #61baca;
  color: #fff;
}

/* =========================================================
   SIMPLE ANIMATIONS
   ========================================================= */
@keyframes navDrop {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================================
   IMAGES
   ========================================================= */
img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.pkp_structure_footer_wrapper {
  background: #61BACA;
  color: #ffffff;
  margin-top: 30px;
}

.pkp_structure_footer {
  background: #61BACA;
  padding: 25px 20px;
  border-top: 1px solid rgba(255,255,255,0.25);
}

.pkp_footer_content {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.8;
}

.pkp_footer_content p {
  margin: 0;
  color: #ffffff;
}

.pkp_footer_content strong {
  color: #ffffff;
}

.pkp_footer_content a {
  color: #ffffff;
  text-decoration: underline;
}

.pkp_footer_content a:hover {
  color: #f5f5f5;
}

.pkp_brand_footer {
  margin-top: 15px;
  text-align: center;
}

.pkp_brand_footer a {
  display: inline-block;
}

.pkp_brand_footer img {
  max-height: 45px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
  transition: all 0.3s ease;
}

.pkp_brand_footer img:hover {
  opacity: 1;
  transform: scale(1.05);
}
.indexing-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 20px 0;
}

.logo-item {
  width: 160px;
  height: 90px;
  background: #fff;
  border: 1px solid #d9e7ec;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  box-sizing: border-box;
  text-decoration: none;
  transition: all 0.3s ease;
}

.logo-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  border-color: #61BACA;
}

.logo-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

bottom card
.indexing-bottom-wrap {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
}

.indexing-bottom-title {
  display: block !important;
  width: 100% !important;
  background: #e9eef2 !important;
  color: #005f97 !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  padding: 14px 18px !important;
  margin: 0 0 20px 0 !important;
  letter-spacing: 0.5px !important;
  box-sizing: border-box !important;
}

.indexing-bottom-row {
  width: 100% !important;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  justify-content: flex-start !important;
  align-items: flex-start !important;
  gap: 18px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.indexing-bottom-card {
  width: 180px !important;
  height: 100px !important;
  flex: 0 0 180px !important;
  margin: 0 !important;
  padding: 12px !important;
  background: #fff !important;
  border: 1px solid #cfd9df !important;
  border-radius: 14px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  box-sizing: border-box !important;
  transition: all 0.3s ease !important;
}

.indexing-bottom-card:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08) !important;
  border-color: #61BACA !important;
}

.indexing-bottom-card img {
  max-width: 100% !important;
  max-height: 100% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
}

@media (max-width: 768px) {
  .indexing-bottom-row {
    justify-content: center !important;
  }

  .indexing-bottom-card {
    width: 160px !important;
    height: 90px !important;
    flex: 0 0 160px !important;
  }
}