.pkp_site_name .is_img img {
    display: inline-block;
    max-height: 200px;
    max-width: 100%;
    width: auto;
    height: auto;
}
.pkp_site_name {
  margin-top: -5px !important;
  margin-bottom: -5px !important;
}

.pkp_structure_page {
  margin-top: 0px ;
  margin-bottom: 0px;
}
.pkp_site_name_wrapper, .pkp_navigation_primary_row {
  padding-left: 0px;
  padding-right: 0px;
}
.pkp_nav_list li{
 
  margin-left: 8px;
padding-left: 0.3em;
}

body {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen-Sans", "Ubuntu", "Cantarell", "Helvetica Neue", sans-serif;
  background: #e6e6e6;
  font-size:14px;  
}
 
body p {
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen-Sans", "Ubuntu", "Cantarell", "Helvetica Neue", sans-serif;
    font-size: 14px;
}
.pkp_site_name {
	padding-top: 0;
	padding-bottom: 0;
}
.pkp_site_name > a {
    padding-top: 0;
    padding-bottom: 0;
}
.obj_article_details .abstract {
    text-align: justify;
    font:"Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen-Sans", "Ubuntu", "Cantarell", "Helvetica Neue", sans-serif;
}
.pkp_brand_footer{
    display: none;
}

.jis-menu {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .jis-menu a {
      text-decoration: none;
      color: #2f2a18;
      font-weight: 600;
      text-align: center;
      padding: 14px 18px;
      border-radius: 40px;

      /* Metallic gold effect */
      background: linear-gradient(
        135deg,
        #f1e6b8 0%,
        #d4bd6a 30%,
        #f6edc6 50%,
        #c9ae57 70%,
        #eadc9a 100%
      );

      box-shadow:
        inset 0 1px 2px rgba(255,255,255,0.6),
        0 5px 12px rgba(0,0,0,0.18);

      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    /* soft metallic shine */
    .jis-menu a::before {
      content: "";
      position: absolute;
      top: -50%;
      left: -100%;
      width: 60%;
      height: 200%;
      background: linear-gradient(
        120deg,
        rgba(255,255,255,0.0),
        rgba(255,255,255,0.35),
        rgba(255,255,255,0.0)
      );
      transform: rotate(25deg);
      transition: left 0.6s ease;
    }

    .jis-menu a:hover::before {
      left: 140%;
    }

    .jis-menu a:hover {
      transform: translateY(-2px);
      background: linear-gradient(
        135deg,
        #e6d488 0%,
        #c6aa4f 35%,
        #f2e6b5 55%,
        #bfa24a 75%,
        #dcc676 100%
      );
      box-shadow:
        inset 0 1px 2px rgba(255,255,255,0.7),
        0 8px 18px rgba(0,0,0,0.28);
    }