/* tidak menampilkan logo PKP */ 
.pkp_brand_footer {
    display: none;
}
  
/* tidak menampilkan judul jurnal */
.pkp_site_name {
    display: none !important;
}

/* menambahkan banner */
.pkp_site_name_wrapper {
  background: url('https://journal.uns.ac.id/public/journals/52/pageHeaderLogoImage_en.png') no-repeat center center;
  background-size: cover;  /* gambar akan tampil penuh sesuai proporsi aslinya */
  background-repeat: no-repeat; 
  background-position: center;

  height: auto;     /* biar menyesuaikan */
  min-height: 200px; /* optional, kasih minimal tinggi */
  margin: 0;
  padding: 0;
  position: relative;
}

/* 🔹 Responsif untuk tablet dan HP */
@media (max-width: 992px) {
  .pkp_site_name_wrapper {
    min-height: 150px;   /* lebih kecil di tablet */
    background-size: contain; /* biar nggak kepotong */
  }
}

@media (max-width: 768px) {
  .pkp_site_name_wrapper {
    min-height: 120px;   /* lebih kecil di HP */
    background-size: contain; 
  }
}

/* 🔹 Pastikan menu di bawah header tetap rapi */
.pkp_navigation_primary {
  margin-top: 0; 
  padding-top: 10px;  /* kasih jarak sedikit biar lega */
}

/* Supaya logo default OJS tidak mengganggu */
.pkp_site_name .is_img {
  display: none !important;
}

/* Judul artikel di detail */
.page_title {
    color: #035594;
}

/* nama penulis pada detail */
.name {
    color: #035594;
}

.pkp_block .title {
    display: block;
    padding: 10px;
    text-align: left;
    background-color: #035594;
    color: white;
    font-weight: bold;
    border-bottom: none !important;   /* 🔹 Hapus garis bawah */
    box-shadow: none !important;      /* 🔹 Jika garis berasal dari shadow */
}


/* rata kiri kanan abstract */
.obj_article_details .abstract {
    text-align: justify;
}

/* untuk daftar artikel */
a {
    color: #035594;
}

a:hover {
    color: #1630d8;
}

.cmp_button_wire,
.obj_galley_link {
    background: #035594;
    border: 1px solid #035594;
    color: #1630d8;
}

.obj_article_summary {
    border: 1px solid #035594;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 3px 3px #035594;
}

/* header */
.pkp_site_name {
    padding-top: 0 !important;
    padding-bottom: 0 !important
}

.pkp_site_name>a {
    padding-top: 0;
    padding-bottom: 0;
}

.pkp_site_name .is_img img {
    max-height: none !important;
}

.pkp_site_name_wrapper {
    padding-left: 0;
    padding-right: 0;
}

.pkp_navigation_user_wrapper {
    position: absolute;
    top: 0;
    right: 0;
    padding-right: 0;
}

/* kurangi jarak atas heading h2 === */
.pkp_structure_content h2,
h2 {
    margin-top: 0 !important;
    margin-bottom: 10px;
}

/* Menu Side Bar  Menu Head*/
.head-menu {
    border-bottom: 3px #1630d8 solid;
    height: 50px;
}

.head-menu a {
    display: block;
    padding: 10px;
    text-align: left;
    background-color: #1630d8;
    color: white;
    font-weight: bold;
}

.menu-sidebar {
    font: bold 12px arial;
}

.menu-sidebar li a {
    text-decoration: none;
    border-top: 1px solid #1630d8;
    border-right: 1px solid #1630d8;
    border-bottom: 1px solid #1630d8;
    border-left: 1px solid #1630d8;
    color: #035594;
    display: block;
    background-color: #1630D8;
    padding: 10px;
    margin-top: -5px;
    transition: 0.3s;
}

.menu-sidebar li a:hover { 
    background-color: #035594;
    box-shadow: blue 2px 2px 2px;
    color: #1630d8; 
    border-right: 5px solid #1630d8;
    border-bottom: 5px solid #1630d8;
}

.menu-sidebar ul {
    list-style: none;
    padding: 0px;
}

.menu-sidebar ul ul {
    position: absolute;
    top: 75px;
    left: 135px;
    visibility: hidden;
}

.menu-sidebar ul li:hover ul {
    visibility: visible;
}

.badan a {
    display: block;
    padding: 10px;
    border-bottom: 1px solid white;
    background: #FFFFF;
    text-align: center;
    transition: 0.5s;
    color: black;
}

.badan {
    margin-top: -15px;
}

.badan a:hover {
    color: black !important;
    font-weight: bold;
    box-shadow: gray 0px 5px 10px 0px;
    display: fixed;
    position: relative;
}

/* most read */
.most_read_article {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #035594;
    background-color: #fFFFF;   
    transition: background-color 0.3s;
}

.most_read_article:hover {
    background-color: #e6e6e6;
}

.most_read_article_title a {
    color: #035594;
    text-decoration: none;   
}

.most_read_article_journal {
    color: #1630d8;
    font-size: 0.9em;
}

.most_read_article_journal .fa-eye {
    margin-right: 5px;
}

h2 {
    color: #035594
}

/* ========= Journal Info Styling ========= */
.journal-info-wrapper {
  display: flex;
  align-items: stretch;
  gap: 20px;
}

.cover-container {
  flex: 0 0 auto;
  display: flex;
  align-items: stretch;
}

.journal-cover {
  height: 100%;
  object-fit: contain;
  max-width: 210px;
  display: block;
  border: 1px solid #ddd;
}

.journal-info-table {
  flex: 1 1 auto;
  background-color: #f0f0f0;
  border-collapse: collapse;
  width: 100%;
}

.journal-info-table td {
  padding: 8px 12px;
  vertical-align: top;
  border-bottom: 1px solid #d9d9d9;
}

.journal-info-table tr:last-child td {
  border-bottom: none;
}

.journal-info-table td:first-child {
  font-weight: bold;
  width: 25%;
}

.journal-info-table a {
  color: #2b8f8f;
  font-weight: bold;
  text-decoration: none;
}

.journal-info-table a:hover {
  text-decoration: underline;
}

/* ========= Aturan Responsif untuk Layar Kecil ========= */
@media (max-width: 768px) {
  .journal-info-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .journal-cover {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: 15px;
  }
}

/* Gambar di Editorial Team */
.editorial-team img {
    width: 120px !important;
    height: 150px !important;
    border-radius: 50%;
    object-fit: cover;  /* biar wajah tetap proporsional */
}

/* Logo kecil (Google Scholar, Sinta, ORCID, Scopus) */
.editorial-team .social-logos img {
    width: auto !important;
    height: 15px !important;
    max-width: none !important;
    display: inline-block;
}