@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css');

.hover {
    width: 100%;
    border-collapse: collapse;
}

.hover th {
    height: 30px;
    background: #ffffff;
    color: #620000;
}

.hover td {
    height: 30px;
    padding-top: 3px;
    vertical-align: middle;
    border-bottom: 1px solid #ffffff;
    text-align: center;
}

.hover td a {
    width: 100%;
    display: block;
}

.hover tr {
    background: #0F2B46;
    color: #ffffff;
}

.hover tr:hover {
    background-color:#0F2B46;
}

.hover tr a {
    color: #000000;
}

.hover a:hover {
    color: #000000;
}

.obj_article_details .abstract {
    text-align: justify;
}

 .obj_article_summary {
      background-color: #ffffff;
      
      /* Efek tekstur serat kayu/kertas horizontal tipis menggunakan CSS murni */
      background-image: 
        repeating-linear-gradient(
          0deg,
          rgba(0, 0, 0, 0.015) 0px,
          rgba(0, 0, 0, 0.015) 1px,
          transparent 1px,
          transparent 8px
        ), 
        linear-gradient(to bottom, #ffffff, #fcfbfa);
      
      /* Bingkai biru tua tipis (Menggunakan warna #0F2B46) */
      border: 1px solid #0F2B46;
      
      /* Sudut asimetris: Kiri-Atas & Kanan-Bawah melengkung, Kanan-Atas & Kiri-Bawah tajam */
      border-radius: 18px 0 18px 0;
      
      /* Bayangan tajam & lembut dengan sentuhan warna biru navy untuk keharmonisan tema */
      box-shadow: 4px 4px 8px rgba(15, 43, 70, 0.25);
      
      /* Transisi yang halus saat di-hover */
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-radius 0.3s ease;
      
      /* Padding tetap agar tidak terjadi pergeseran layout saat hover */
      padding: 16px 20px;
      margin-bottom: 24px;
      position: relative;
    }

    /* Efek interaktif saat kursor diarahkan ke kartu */
    .obj_article_summary:hover {
      transform: translateY(-2px) scale(1.005);
      border-radius: 24px 0 24px 0; /* Lengkungan sedikit melebar saat hover */
      box-shadow: 6px 6px 14px rgba(15, 43, 70, 0.35);
    }

.journal-card {
    background-color: white;
    transition: transform 1s ease, padding 0.1s ease, box-shadow 0.1s ease;
  	border-radius: 10px;
}

.journal-card:hover {
  transform: scale(1.05);
  padding: 12px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}


.pkp_brand_footer {
    display: none;
}

.pkp_structure_footer {
    background-color:#0F2B46;
}

.pkp_structure_footer_wrapper{
    background-color: #0F2B46;
}

.pkp_structure_footer_wrapper strong{
    color: #ffffff;
}

.pkp_structure_footer_wrapper p{
    color: #ffffff;
}

.value {
    text-align: justify;
}

.page_title {
    text-align: justify;
}

section.item.keywords {
    font-style: italic;
    font-weight: bold;
}

.csl-entry {
    font-weight: bold;
}

html{
    background: none;
}

.pkp_navigation_wrapper_primary_wrapper{
    width : 1160px;
    height : 39.94px;
}

.pkp_navigation_primary_row{
    width: auto;
    height: auto;
}

.pkp_site_name_wrapper{
    background-color: #0F2B46;
}

.tableContent{
    width: 399.5px;
    height: 114.5px;
}

/* --- TOMBOL SUBMIT SUNDARA --- */
        .btn-ojs-premium {
			font-family: 'Poppins', sans-serif !important;
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 10px 20px;
			margin-top:10px;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            border-radius: 14px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            border: none;
            outline: none;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            overflow: hidden;
            
        /* Premium Navy Blue */
background: linear-gradient(135deg, #0A1E33 0%, #0F2B46 45%, #1E5B8A 100%);
color: #fff;
box-shadow: 0 10px 25px rgba(15, 43, 70, 0.35);
        }

        /* Efek Shimmer (Kilatan) */
        .btn-ojs-premium::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                120deg,
                transparent,
                rgba(255, 255, 255, 0.4),
                transparent
            );
            transition: all 0.7s;
        }

        /* Hover Effect */
        .btn-ojs-premium:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow:
        0 20px 40px rgba(15, 43, 70, 0.45),
        0 0 20px rgba(30, 91, 138, 0.25);
    filter: brightness(1.08);
}

        .btn-ojs-premium:hover::before {
            left: 100%;
        }

        /* Ikon Panah */
        .icon-anim {
            margin-left: 12px;
            font-size: 20px;
            display: inline-block;
            transition: transform 0.3s ease;
        }

        .btn-ojs-premium:hover .icon-anim {
            transform: translateX(8px);
        }

       /* Animasi Pulse (Denyut) */
@keyframes pulse-blue {
    0% {
        box-shadow: 0 0 0 0 rgba(15, 43, 70, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(15, 43, 70, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(15, 43, 70, 0);
    }
}

        .pulse-effect {
            animation: pulse-blue 2s infinite;
        }
/* --- END TOMBOL SUBMIT SUNDARA --- */

#customblock-submission {
  padding-bottom: 5px !important;
  padding-top: 10px !important;
}

/* --- SIDEBAR MENU SUNDARA --- */
.sidebar-container {
    font-family: 'Poppins', sans-serif !important;
    width: 100%;
    max-width: 300px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 43, 70, 0.08);
    border: 1px solid rgba(15, 43, 70, 0.08);
}

.sidebar-header {
    background: linear-gradient(135deg, #0A1E33 0%, #0F2B46 45%, #1E5B8A 100%);
    color: #ffffff;
    padding: 14px;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 13px;
    box-shadow: 0 4px 12px rgba(15, 43, 70, 0.25);
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    border-bottom: 1px solid #e8eef5;
}

.sidebar-menu li:last-child {
    border-bottom: none;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    padding: 7px 20px;
    text-decoration: none;
    color: #475569;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

/* Efek Hover Menu */
.sidebar-menu a:hover {
    background-color: #EDF5FC;
    color: #0F2B46;
    padding-left: 26px;
}

/* Garis aksen vertikal biru saat hover */
.sidebar-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background-color: #0F2B46;
    transition: width 0.25s ease;
}

.sidebar-menu a:hover::before {
    width: 4px;
}

/* Ikon panah kecil di kanan */
.sidebar-menu a::after {
    content: '→';
    position: absolute;
    right: 18px;
    font-size: 18px;
    color: #1E5B8A;
    opacity: 0;
    transition: all 0.3s ease;
}

.sidebar-menu a:hover::after {
    opacity: 1;
    right: 12px;
}

/* --- END SIDEBAR MENU SUNDARA --- */

p {
			font-family: 'Poppins', sans-serif !important;
}

  /* Logo Template LATEX Sundara*/
 /* Wrapper utama logo (Tanpa kontainer putih) */
        .latexsundara {
            position: relative;
            display: inline-block;
            cursor: pointer;
            overflow: hidden; /* Penting untuk membatasi efek kilauan agar hanya di area logo */
            line-height: 0; /* Menghapus whitespace di bawah gambar */
        }

        /* Styling Gambar Logo */
        .latexsundara img {
            display: block;
            max-width: 100%;
            height: auto;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            /* Bayangan halus bawaan */
            filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
        }

        /* Efek Hover: Logo membesar dan bercahaya */
        .latexsundara:hover img {
            transform: scale(1.08);

        }

        /* Efek Shine (Kilauan) - Murni CSS */
        .latexsundara::after {
            content: "";
            position: absolute;
            top: 0;
            left: -150%;
            width: 60%;
            height: 100%;
            background: linear-gradient(
                to right,
                rgba(255, 255, 255, 0) 0%,
                rgba(255, 255, 255, 0.8) 50%,
                rgba(255, 255, 255, 0) 100%
            );
            transform: skewX(-30deg);
            transition: 0.8s ease-in-out;
            pointer-events: none;
        }

        /* Menjalankan kilauan saat kursor diarahkan */
        .latexsundara:hover::after {
            left: 150%;
        }

        /* Animasi Mengapung (Floating) - Murni CSS */
        @keyframes floating {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-6px); }
            100% { transform: translateY(0px); }
        }

        .floating-anim {
            animation: floating 4s ease-in-out infinite;
        }
  /*END Logo Template LATEX Sundara*/

        /* Wrapper utama logo */
        .logoptsundara {
            position: relative;
            display: inline-block;
            cursor: pointer;
            overflow: hidden;
            line-height: 0;
            transition: all 0.4s ease;
        }

        /* Styling Gambar Logo */
        .logoptsundara img {
            display: block;
            max-width: 80%;
            height: auto;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            /* Bayangan netral yang sangat tipis */
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
        }

        /* Efek Hover: Hanya zoom tanpa tambahan warna glow */
        .logoptsundara:hover img {
            transform: scale(1.05);
            /* Menghapus filter drop-shadow berwarna */
        }

        /* Efek Shine (Kilauan Cahaya Putih) */
        .logoptsundara::after {
            content: "";
            position: absolute;
            top: 0;
            left: -150%;
            width: 50%;
            height: 100%;
            background: linear-gradient(
                to right,
                rgba(255, 255, 255, 0) 0%,
                rgba(255, 255, 255, 0.6) 50%,
                rgba(255, 255, 255, 0) 100%
            );
            transform: skewX(-25deg);
            transition: 0.7s ease-in-out;
            pointer-events: none;
        }

        /* Menjalankan kilauan saat kursor diarahkan */
        .logoptsundara:hover::after {
            left: 150%;
        }

html, body {
           background-image: url('https://drive.pastibisa.app/8_b25f4be7-df09-43d8-bd02-80055ab47561.jpg');
            background-repeat: repeat;
            /* background-size bisa disesuaikan jika gambar terlalu besar/kecil, misal: 200px */
            background-size: 250px; 
            background-attachment: scroll;
}

 .footersundara {
            font-family: 'Inter', sans-serif;
            background-color: #0F2B46;
            color: #ffffff;
            padding: 3rem 1rem 1.5rem 1rem;
            width: 100%;
            line-height: 1.5;
            box-sizing: border-box;
        }

        .footersundara .sundara-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footersundara .sundara-grid {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        @media (min-width: 768px) {
            .footersundara .sundara-grid {
                flex-direction: row;
                align-items: center;
                justify-content: space-between;
            }
        }

        .footersundara .brand-section {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .footersundara .journal-logo {
            width: 100px;
            height: 100px;
            object-fit: contain;
            border-radius: 12px;
            background: #ffffff;
            padding: 2px;
            box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.3);
        }

        .footersundara .journal-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: #ffffff;
            margin: 0 0 0.5rem 0;
            line-height: 1.2;
        }

        .footersundara .issn-badge {
            display: inline-block;
            background-color: rgba(255, 255, 255, 0.15);
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            font-size: 0.75rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 0.5rem;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .footersundara .contact-section {
            font-size: 0.875rem;
        }

        .footersundara .contact-link {
            color: #ffffff;
            text-decoration: none;
            transition: opacity 0.2s;
            font-weight: 500;
            border-bottom: 1px dashed rgba(255, 255, 255, 0.4);
        }

        .footersundara .contact-link:hover {
            opacity: 0.8;
            border-bottom-style: solid;
        }

        .footersundara .footer-bottom {
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            align-items: center;
            text-align: center;
        }

        @media (min-width: 768px) {
            .footersundara .sundara-grid {
                flex-direction: row;
                align-items: center;
                /* Ubah 'space-between' menjadi 'flex-start' agar kolom tidak dipaksa ke ujung.
                   Gunakan 'gap' untuk mengatur jarak spesifik antar kolom.
                */
                justify-content: flex-start; 
                gap: 5rem; /* Ubah nilai ini (misal: 2rem, 4rem, 100px) untuk mengatur jarak */
            }
        }

        .footersundara .license-area {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .footersundara .cc-image {
            height: 32px;
            background: white;
            padding: 2px;
            border-radius: 4px;
        }

        .footersundara .copyright-text {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.7);
        }

.pkp_structure_footer_wrapper,
.pkp_structure_footer,
.pkp_footer_content {
    padding-bottom: 0 !important;
}

        .indexing-card {
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease-in-out;
            cursor: pointer;
        }

        /* Efek Membesar (Scale) */
        .indexing-card:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 15px rgba(0,0,0,0.1) !important;
            border-color: #0F2B46 !important;
        }

        /* Efek Kilauan (Shine) */
        .indexing-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
            transform: skewX(-25deg);
            transition: none;
        }

        .indexing-card:hover::after {
            left: 150%;
            transition: all 0.6s ease-in-out;
        }


/* Reviewer Sundara */
 .peer-rvw-wrapper {
            font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #fff;
            padding: 20px;
            border-radius: 8px;
        }

        .peer-rvw-container {
            max-width: 1100px;
            margin: 0 auto;
        }

        /* Header Halaman */
        .peer-rvw-header {
            background: #fff;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            margin-bottom: 30px;
            border-left: 5px solid #0F2B46;
        }

        .peer-rvw-title {
            margin: 0 0 15px 0;
            color: #0F2B46;
            font-size: 2rem;
            font-weight: 700;
        }

        .peer-rvw-journal-info {
            color: #64748b;
            font-size: 1.05rem;
            margin: 0;
            font-weight: 400;
        }

        .peer-rvw-journal-name {
            color: #0F2B46;
            font-weight: 600;
        }

        /* Tata Letak Grid */
        .peer-rvw-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 20px;
            align-items: start;
        }

        /* Desain Kartu Reviewer */
        .peer-rvw-card {
            background: #fff;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08);
            transition: transform 0.2s, box-shadow 0.2s;
            display: flex;
            flex-direction: column;
            border: 1px solid #e2e8f0;
            text-align: left;
            position: relative;
            box-sizing: border-box;
        }

        .peer-rvw-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px -3px rgba(15, 43, 70, 0.15);
            border-color: #0F2B46;
        }

        .peer-rvw-name {
            font-size: 1.15rem;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 8px;
            line-height: 1.3;
        }

        .peer-rvw-affiliation {
            font-size: 0.9rem;
            color: #475569;
            margin-bottom: 8px;
            display: flex;
            align-items: flex-start;
            font-weight: 400;
        }

        .peer-rvw-country {
            font-size: 0.85rem;
            color: #0F2B46;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .peer-rvw-flag {
            width: 22px;
            height: auto;
            margin-right: 8px;
            border-radius: 2px;
            border: 1px solid #f1f5f9;
            box-shadow: 0 1px 2px rgba(0,0,0,0.1);
        }

        /* Info Links Footer */
        .peer-rvw-footer {
            margin-top: auto;
            padding-top: 15px;
            border-top: 1px dashed #e2e8f0;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .peer-rvw-link {
            color: #0F2B46 !important;
            text-decoration: none;
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            word-break: break-all;
            font-weight: 500;
        }

        .peer-rvw-link:hover {
            text-decoration: underline;
        }

        .peer-rvw-icon {
            width: 18px;
            height: 18px;
            margin-right: 8px;
            flex-shrink: 0;
            fill: #94a3b8;
        }

        .peer-rvw-img-icon {
            width: 18px;
            height: 18px;
            margin-right: 8px;
            object-fit: contain;
            flex-shrink: 0;
        }

        /* Responsivitas */
        @media (max-width: 640px) {
            .peer-rvw-header {
                padding: 20px;
            }
            .peer-rvw-title {
                font-size: 1.5rem;
            }
            .peer-rvw-grid {
                grid-template-columns: 1fr;
            }
        }



/* EDITOR SUNDARA */
       .ed-board-wrapper {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #fff;
            padding: 20px;
            border-radius: 8px;
        }

        .ed-board-container {
            max-width: 1100px;
            margin: 0 auto;
        }

        /* Bahagian Pengepala */
        .ed-board-header {
            background: #fff;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            margin-bottom: 30px;
            border-left: 5px solid #0F2B46;
        }

        .ed-board-title {
            margin: 0 0 15px 0;
            color: #1e293b;
            font-size: 2rem;
            font-weight: bold;
        }

        .ed-board-journal-info {
            color: #64748b;
            font-size: 1.1rem;
            margin: 0;
        }

        .ed-board-journal-name {
            color: #0F2B46;
            font-weight: bold;
        }

        /* Tata Letak Grid */
        .ed-board-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
            gap: 25px;
            align-items: start;
        }

        /* Reka Bentuk Kad Editorial */
        .ed-board-card {
            background: #fff;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            transition: transform 0.2s, box-shadow 0.2s;
            display: flex;
            flex-direction: column;
            border: 1px solid #e2e8f0;
            text-align: left;
            box-sizing: border-box;
            position: relative;
        }

        .ed-board-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px -3px rgba(97, 12, 12, 0.1);
            border-color: #0F2B46;
        }

        /* Bekas Foto Profil */
        .ed-board-avatar-container {
            width: 100px;
            height: 100px;
            margin: 0 auto 15px auto;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid #0F2B46;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
            background-color: #f1f5f9;
        }

        .ed-board-avatar {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center; /* Kedudukan lalai */
        }

        /* Lencana Peranan */
        .ed-board-role {
            display: inline-block;
            background-color: #0F2B46;
            color: #fff;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 50px;
            text-transform: uppercase;
            margin-bottom: 12px;
            align-self: center;
            letter-spacing: 0.5px;
        }

        .ed-board-card:not(:has(.ed-board-avatar-container)) .ed-board-role {
            align-self: flex-start;
        }

        .ed-board-name {
            font-size: 1.15rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 10px;
            line-height: 1.3;
            text-align: center;
        }

        .ed-board-card:not(:has(.ed-board-avatar-container)) .ed-board-name {
            text-align: left;
        }

        .ed-board-affiliation {
            font-size: 0.9rem;
            color: #1e293b;
            font-weight: 600;
            margin-bottom: 5px;
            display: flex;
            align-items: flex-start;
        }

        .ed-board-address {
            font-size: 0.8rem;
            color: #64748b;
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
            line-height: 1.4;
        }

        .ed-board-country {
            font-size: 0.8rem;
            color: #0F2B46;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        /* Gaya Bendera */
        .ed-board-flag {
            width: 20px;
            height: auto;
            margin-right: 8px;
            border-radius: 2px;
            border: 1px solid #f1f5f9;
        }

        /* Maklumat Hubungan & Pautan */
        .ed-board-footer {
            margin-top: 0;
            padding-top: 15px;
            border-top: 1px dashed #e2e8f0;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .ed-board-link {
            color: #0F2B46 !important;
            text-decoration: none;
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            word-break: break-all;
            font-weight: 500;
        }

        .ed-board-link:hover {
            text-decoration: underline;
        }

        /* Ikon SVG & Ikon Imej */
        .ed-board-icon {
            width: 14px;
            height: 14px;
            margin-right: 8px;
            flex-shrink: 0;
            fill: #94a3b8;
        }

        .ed-board-img-icon {
            width: 18px;
            height: 18px;
            margin-right: 8px;
            object-fit: contain;
            flex-shrink: 0;
        }

        /* Responsif */
        @media (max-width: 640px) {
            .ed-board-header {
                padding: 20px;
            }
            .ed-board-title {
                font-size: 1.5rem;
            }
            .ed-board-grid {
                grid-template-columns: 1fr;
            }
        }


  /* ABOUT JOURNAL SHEM */
  .shem-about-container {
    font-family: 'Poppins', sans-serif !important;
    color: #334155;
    background-color: #ffffff;
    line-height: 1.7;
    margin: 10px auto;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
  }

  .shem-about-container * {
    box-sizing: border-box;
    transition: all 0.3s ease;
  }

  /* Typography with #0F2B46 brand coloring */
  .shem-about-container h1, 
  .shem-about-container h2, 
  .shem-about-container h3, 
  .shem-about-container h4 {
    color: #0F2B46;
    font-weight: 700;
    margin-top: 0;
    line-height: 1.3;
  }

  .shem-about-container p {
    color: #475569;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    text-align: justify;
  }

  /* Strict Single Column Main Layout */
  .shem-main-layout {
    display: flex;
    flex-direction: column;
    gap: 35px;
    width: 100%;
  }

  /* Section Heading with Brand Color Accent */
  .shem-section-heading {
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .shem-section-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 4px;
    background: #0F2B46;
    border-radius: 2px;
  }

  /* --- PURE CSS ICONS (Guaranteed safe from OJS HTMLPurifier stripping) --- */
  
  /* 1. Styled "i" Info Badge Icon for Key Info Header */
  .shem-info-badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #0F2B46;
    color: #ffffff;
    font-family: serif;
    font-style: italic;
    font-size: 13px;
    font-weight: bold;
    line-height: 1;
    margin-right: 4px;
  }

  /* 2. CSS Checkmark for Scope List */
  .shem-css-checkmark {
    display: inline-block;
    width: 5px;
    height: 10px;
    border: solid #0F2B46;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
    margin-bottom: 2px;
  }

  /* 3. CSS Double-Blind Icon (Two isolated node circles) */
  .shem-css-double-blind {
    display: inline-flex;
    gap: 4px;
    align-items: center;
    justify-content: center;
    height: 100%;
  }

  .shem-css-double-blind::before,
  .shem-css-double-blind::after {
    content: "";
    width: 10px;
    height: 10px;
    border: 2px solid #0F2B46;
    border-radius: 50%;
    display: inline-block;
  }

  /* 4. CSS Open Lock Icon for Open Access */
  .shem-css-lock-open {
    width: 13px;
    height: 10px;
    border: 2px solid #10b981;
    border-radius: 2px;
    position: relative;
    margin-top: 6px;
    display: inline-block;
  }

  .shem-css-lock-open::before {
    content: "";
    position: absolute;
    bottom: 8px;
    left: 0px;
    width: 9px;
    height: 8px;
    border: 2px solid #10b981;
    border-bottom: none;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    transform: rotate(-30deg);
    transform-origin: bottom left;
  }

  /* Horizontal Grid for Key Information - Spans 100% full width */
  .shem-key-info-section {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 15px;
  }

  .shem-key-info-title {
    font-size: 1.2rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0F2B46;
  }

  .shem-key-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Adapt horizontally if container has enough breathing space */
  @media (min-width: 576px) {
    .shem-key-info-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (min-width: 768px) {
    .shem-key-info-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  .shem-info-block {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .shem-info-label {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 4px;
  }

  .shem-info-value {
    font-size: 0.95rem;
    color: #0F2B46;
    font-weight: 700;
  }

  /* Focus & Scope List styling in single-column flow */
  .shem-scope-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
  }

  .shem-scope-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #f8fafc;
    padding: 16px;
    border-radius: 10px;
    border-left: 4px solid #0F2B46;
  }

  .shem-scope-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(15, 43, 70, 0.08);
    color: #0F2B46;
    margin-top: 2px;
  }

  .shem-scope-text h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
    font-weight: 600;
  }

  .shem-scope-text p {
    font-size: 0.85rem;
    margin-bottom: 0;
    color: #64748b;
    text-align: left;
  }

  /* Policy Highlights Grid - Flowing nicely in single column */
  .shem-policy-highlight {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 10px;
  }

  @media(min-width: 576px) {
    .shem-policy-highlight {
      grid-template-columns: 1fr 1fr;
    }
  }

  .shem-policy-box {
    border-radius: 12px;
    padding: 20px;
    position: relative;
  }

  .shem-policy-box.open-access {
    background: rgba(16, 185, 129, 0.03);
    border: 1.5px solid rgba(16, 185, 129, 0.15);
  }

  .shem-policy-box.peer-review {
    background: rgba(15, 43, 70, 0.03);
    border: 1.5px solid rgba(15, 43, 70, 0.12);
  }

  .shem-policy-box-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
  }

  .shem-policy-box.open-access .shem-policy-box-icon {
    background: rgba(16, 185, 129, 0.08);
    color: #10b981;
  }

  .shem-policy-box.peer-review .shem-policy-box-icon {
    background: rgba(15, 43, 70, 0.08);
    color: #0F2B46;
  }

  .shem-policy-box h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
  }

  .shem-policy-box p {
    font-size: 0.85rem;
    margin-bottom: 0;
    line-height: 1.5;
    color: #475569;
    text-align: left;
  }

.cmp_article_list.articles > li {
    margin-bottom: 10px;
}

/* Hilangkan ruang putih di sekitar banner/header */
.pkp_site_name {
    margin: 0 !important;
    padding: 0 !important;
}

.pkp_site_name_wrapper {
    padding: 0 !important;
    margin: 0 !important;
}

.pkp_head_wrapper {
    padding: 0 !important;
    margin: 0 !important;
}

.has_site_logo .pkp_head_wrapper {
    padding-top: 0 !important;
}

.pkp_site_name .is_img {
    display: block !important;
    line-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.pkp_site_name .is_img img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}


.pkp_site_name .is_img img {
    /* display: inline-block; */
    max-height: none !important;
    height: auto !important;
    width: 100% !important;
}

.has_site_logo .pkp_head_wrapper {
        padding-top: inherit;
    }

 /* CSS GEN AI SHEM */
   html {
            scroll-behavior: smooth;
        }

       /* CSS Namespace khusus agar tidak mengganggu styling tema bawaan OJS 3 */
        .shem-policy-container {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            color: #2D3748;
            line-height: 1.65;
            background-color: #FFFFFF;
            max-width: 960px;
            margin: 0 auto;
            padding: 24px;
            box-sizing: border-box;
        }

        /* Banner Header Utama */
        .shem-policy-container .shem-header-banner {
            background: linear-gradient(135deg, #0F2B46 0%, #1A4066 100%);
            color: #FFFFFF;
            padding: 36px 30px;
            border-radius: 12px;
            margin-bottom: 24px;
            box-shadow: 0 10px 25px rgba(15, 43, 70, 0.15);
        }

        .shem-policy-container .shem-journal-badge {
            display: inline-block;
            background-color: rgba(255, 255, 255, 0.15);
            color: #E2E8F0;
            font-size: 0.85rem;
            font-weight: 600;
            padding: 6px 14px;
            border-radius: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 12px;
        }

        .shem-policy-container .shem-main-title {
            font-size: 2rem;
            font-weight: 800;
            color: #FFFFFF;
            margin: 0 0 10px 0;
            line-height: 1.25;
            border: none;
            padding: 0;
        }

        .shem-policy-container .shem-publisher-info {
            font-size: 0.95rem;
            color: #CBD5E0;
            margin: 0;
            font-style: italic;
        }

        /* Kotak Daftar Isi (Table of Contents) di Bagian Atas */
        .shem-policy-container .shem-toc-box {
            background-color: #F8FAFC;
            border: 1px solid #E2E8F0;
            border-left: 5px solid #0F2B46;
            border-radius: 10px;
            padding: 22px 26px;
            margin-bottom: 32px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
        }

        .shem-policy-container .shem-toc-title {
            font-size: 1.15rem;
            font-weight: 700;
            color: #0F2B46;
            margin: 0 0 14px 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .shem-policy-container .shem-toc-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 10px 16px;
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .shem-policy-container .shem-toc-item a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 12px;
            border-radius: 6px;
            color: #1A202C;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.92rem;
            transition: all 0.2s ease;
            background-color: #FFFFFF;
            border: 1px solid #EDF2F7;
        }

        .shem-policy-container .shem-toc-item a:hover {
            background-color: #0F2B46;
            color: #FFFFFF;
            border-color: #0F2B46;
            transform: translateY(-1px);
        }

        .shem-policy-container .shem-toc-badge {
            background-color: #0F2B46;
            color: #FFFFFF;
            width: 22px;
            height: 22px;
            border-radius: 4px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            font-weight: 700;
            flex-shrink: 0;
        }

        .shem-policy-container .shem-toc-item a:hover .shem-toc-badge {
            background-color: #FFFFFF;
            color: #0F2B46;
        }

        /* Kartu Section Utama */
        .shem-policy-container .shem-section {
            background-color: #FFFFFF;
            border: 1px solid #E2E8F0;
            border-radius: 10px;
            padding: 24px 28px;
            margin-bottom: 24px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
            transition: border-color 0.2s ease-in-out;
            scroll-margin-top: 20px; /* Offset saat di-scroll melalui anchor link */
        }

        .shem-policy-container .shem-section:hover {
            border-color: #CBD5E0;
        }

        /* Header Seksi dengan Perataan Tengah Vertikal Presisi */
        .shem-policy-container .shem-section-header {
            display: flex;
            align-items: center; /* Presisi di tengah vertikal */
            gap: 14px;
            margin-bottom: 18px;
            padding-bottom: 12px;
            border-bottom: 2px solid #F1F5F9;
        }

        /* Kotak Angka Nomor Seksi */
        .shem-policy-container .shem-section-num {
            background-color: #0F2B46;
            color: #ffffff;
            width: 38px;
            height: 38px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1rem;
            line-height: 1;
            flex-shrink: 0;
            margin: 0;
        }

        /* Judul Seksi Utama */
        .shem-policy-container .shem-section-title {
            font-size: 1.35rem;
            color: #0F2B46;
            font-weight: 700;
            margin: 0;
            padding: 0;
            line-height: 1.2;
            display: flex;
            align-items: center;
        }

        /* Subseksi & Kartu Aturan */
        .shem-policy-container .shem-subsection {
            margin-top: 20px;
        }

        .shem-policy-container .shem-subsection-title {
            font-size: 1.05rem;
            font-weight: 700;
            color: #0F2B46;
            margin: 16px 0 10px 0;
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }

        /* Badge Status (Diperbolehkan / Dilarang / Required) */
        .shem-policy-container .shem-badge {
            display: inline-block;
            padding: 3px 10px;
            border-radius: 6px;
            font-size: 0.78rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .shem-policy-container .shem-badge-permitted {
            background-color: #E6F4EA;
            color: #137333;
            border: 1px solid #CEEAD6;
        }

        .shem-policy-container .shem-badge-prohibited {
            background-color: #FCE8E6;
            color: #C5221F;
            border: 1px solid #FAD2CF;
        }

        .shem-policy-container .shem-badge-info {
            background-color: #E8F0FE;
            color: #1A73E8;
            border: 1px solid #D2E3FC;
        }

        /* Daftar dan Poin-Poin Kebijakan */
        .shem-policy-container ul {
            margin: 8px 0 16px 0;
            padding-left: 20px;
        }

        .shem-policy-container li {
            margin-bottom: 8px;
            color: #4A5568;
            text-align: justify;
        }

        .shem-policy-container li strong {
            color: #1A202C;
        }

        /* Link Styling */
        .shem-policy-container .shem-link {
            color: #0F2B46;
            font-weight: 600;
            text-decoration: underline;
            text-underline-offset: 3px;
            transition: color 0.2s ease;
        }

        .shem-policy-container .shem-link:hover {
            color: #1A73E8;
        }

        .shem-policy-container p {
            margin: 0 0 12px 0;
            color: #4A5568;
            text-align: justify;
        }

        /* Kotak Sorot Khusus (Highlight Box) */
        .shem-policy-container .shem-highlight-box {
            background-color: #F8FAFC;
            border-left: 4px solid #0F2B46;
            padding: 16px 20px;
            border-radius: 0 8px 8px 0;
            margin: 16px 0;
        }

        /* Responsive Layout */
        @media (max-width: 640px) {
            .shem-policy-container {
                padding: 12px;
            }
            .shem-policy-container .shem-header-banner {
                padding: 24px 18px;
            }
            .shem-policy-container .shem-main-title {
                font-size: 1.5rem;
            }
            .shem-policy-container .shem-toc-box {
                padding: 16px 18px;
            }
            .shem-policy-container .shem-toc-grid {
                grid-template-columns: 1fr;
            }
            .shem-policy-container .shem-section {
                padding: 18px 16px;
            }
            .shem-policy-container .shem-section-header {
                gap: 10px;
            }
            .shem-policy-container .shem-section-num {
                width: 32px;
                height: 32px;
                font-size: 0.9rem;
            }
            .shem-policy-container .shem-section-title {
                font-size: 1.15rem;
            }
        }


/* === JUSTIFY: Abstract, References & isi artikel (dipasang via sistem) === */
.item.abstract p,
.item.references .value,
.item.references .value p,
.article-details .main_entry p {
    text-align: justify;
}


.userGroup {
    display: none !important;
}