.journals ul .body .description a {
    display: inline;
}

/* Background body */
body {
    background: url("https://dianimami.my.id/assets/pbj/bgimage02.jpg") #f5f9fb fixed !important;
    overflow-x: hidden;
}

/* Header */
#headerNavigationContainer {
    max-height: 200% !important;
}

/* List Artikel Background (TOC) */
.obj_issue_toc .articles > li {
    margin-bottom: 20px;
    border-bottom: #FF00A8;
    background: transparent url("https://i.ibb.co/j5Q3ZRh/whiteBG.jpg") repeat scroll 0% 0% !important;
    padding: 1rem;
    border-radius: .5rem;
    border: 1px solid #FF00A8;
    box-shadow: .2rem .2rem .1rem #ffa300;
}

/* Logo */
.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: 200px !important;
}
.pkp_site_name_wrapper {
    padding-left: 0;
    padding-right: 0;
}

/* User nav */
.pkp_navigation_user_wrapper {
    top: 0;
    right: 0;
    padding-right: 30px;
}
.pkp_navigation_user > li > a,
.pkp_navigation_user > li.in_focus > a,
.pkp_navigation_user > li > a:hover,
.pkp_navigation_user > li > a:focus {
    color: black;
}

/* Page structure */
.pkp_structure_page {
    margin-top: 20px !important;
    margin-bottom: 20 !important;
    padding-bottom: 20 !important;
}

/* ---------------- MENU DROPDOWN ---------------- */

*, *:before, *:after {
    -webkit-border-sizing: border-box;
    -moz-border-sizing: border-box;
    border-sizing: border-box;
}

.container > ul {
    list-style: none;
}

.dropdown {
    position: relative;
}
.dropdown a {
    text-decoration: none;
}
.dropdown [data-toggle="dropdown"] {
    display: block;
    color: black;
    background: #ffa300;
    -moz-box-shadow: 0 1px 0 #083266 inset, 0 -1px 0 #083266 inset;
    -webkit-box-shadow: 0 1px 0 #083266 inset, 0 -1px 0 #083266 inset;
    box-shadow: 0 1px 0 #083266 inset, 0 -1px 0 #083266 inset;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
    padding: 10px;
}
.dropdown [data-toggle="dropdown"]:hover {
    background: #cd3d2e;
}
.dropdown [data-toggle="dropdown"]:before {
    position: absolute;
    display: block;
    content: '\25BC';
    font-size: 0.7em;
    color: #000;
    top: 13px;
    right: 10px;
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -moz-transition: -moz-transform 0.6s;
    -o-transition: -o-transform 0.6s;
    -webkit-transition: -webkit-transform 0.6s;
    transition: transform 0.6s;
}
.dropdown > .dropdown-menu {
    max-height: 0;
    overflow: hidden;
    list-style: none;
    padding: 0;
    margin: 0;
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -moz-transform-origin: 50% 0%;
    -ms-transform-origin: 50% 0%;
    -webkit-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
    -moz-transition: max-height 0.6s ease-out;
    -o-transition: max-height 0.6s ease-out;
    -webkit-transition: max-height 0.6s ease-out;
    transition: max-height 0.6s ease-out;
    animation: hideAnimation 0.4s ease-out;
    -moz-animation: hideAnimation 0.4s ease-out;
    -webkit-animation: hideAnimation 0.4s ease-out;
}
.dropdown > .dropdown-menu li {
    padding: 0;
}
.dropdown > input[type="checkbox"] {
    opacity: 0;
    display: block;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.dropdown > input[type="checkbox"]:checked ~ .dropdown-menu {
    max-height: 9999px;
    display: block;
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    animation: showAnimation 0.5s ease-in-out;
    -moz-animation: showAnimation 0.5s ease-in-out;
    -webkit-animation: showAnimation 0.5s ease-in-out;
    -moz-transition: max-height 2s ease-in-out;
    -o-transition: max-height 2s ease-in-out;
    -webkit-transition: max-height 2s ease-in-out;
    transition: max-height 2s ease-in-out;
}
.dropdown > input[type="checkbox"]:checked + a[data-toggle="dropdown"]:before {
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
    -moz-transition: -moz-transform 0.6s;
    -o-transition: -o-transform 0.6s;
    -webkit-transition: -webkit-transform 0.6s;
    transition: transform 0.6s;
}

/* Animations */
@keyframes showAnimation {
    0%   { transform: scaleY(0.1); }
    40%  { transform: scaleY(1.04); }
    60%  { transform: scaleY(0.98); }
    80%  { transform: scaleY(1.02); }
    100% { transform: scaleY(1); }
}
@-moz-keyframes showAnimation {
    0%   { -moz-transform: scaleY(0.1); }
    40%  { -moz-transform: scaleY(1.04); }
    60%  { -moz-transform: scaleY(0.98); }
    80%  { -moz-transform: scaleY(1.02); }
    100% { -moz-transform: scaleY(1); }
}
@-webkit-keyframes showAnimation {
    0%   { -webkit-transform: scaleY(0.1); }
    40%  { -webkit-transform: scaleY(1.04); }
    60%  { -webkit-transform: scaleY(0.98); }
    80%  { -webkit-transform: scaleY(1.02); }
    100% { -webkit-transform: scaleY(1); }
}

@keyframes hideAnimation {
    0%   { transform: scaleY(1); }
    60%  { transform: scaleY(0.98); }
    80%  { transform: scaleY(1.02); }
    100% { transform: scaleY(0); }
}
@-moz-keyframes hideAnimation {
    0%   { -moz-transform: scaleY(1); }
    60%  { -moz-transform: scaleY(0.98); }
    80%  { -moz-transform: scaleY(1.02); }
    100% { -moz-transform: scaleY(0); }
}
@-webkit-keyframes hideAnimation {
    0%   { -webkit-transform: scaleY(1); }
    60%  { -webkit-transform: scaleY(0.98); }
    80%  { -webkit-transform: scaleY(1.02); }
    100% { -webkit-transform: scaleY(0); }
}

/* ---------------- LAYOUT UMUM ---------------- */

* {
    box-sizing: border-box;
}

/* Kolom custom */
.column2 {
    float: left;
    width: 33%;
    padding: 10px;
}
.row2:after {
    content: "";
    display: table;
    clear: both;
}
@media screen and (max-width: 600px) {
    .column2 {
        width: 100%;
    }
}

/* Footer */
.pkp_footer_content {
    float: left;
    width: 70%;
    padding-top: 10px;
    padding-bottom: 10px;
}
.pkp_brand_footer {
    float: right;
    width: 30%;
    padding-bottom: 10px;
    padding-top: 100px;
    display: none; /* disembunyikan */
}
.pkp_structure_footer_wrapper {
    border-bottom: @double solid;
}

/* Clearfix */
.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}
.clearfix:after {
    clear: both;
}
.clearfix {
    *zoom: 1;
}

/* Container responsive (layout lama Anda) */
.container {
    position: relative;
    margin: 0px auto;
    padding: 50px 0;
    clear: both;
}
@media only screen and (min-width: 1200px) {
    .container { width: 1210px; }
}
@media only screen and (min-width: 960px) and (max-width: 1199px) {
    .container { width: 1030px; }
}
@media only screen and (min-width: 768px) and (max-width: 959px) {
    .container { width: 682px; }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
    .container {
        width: 428px;
        margin: 0 auto;
    }
}
@media only screen and (max-width: 479px) {
    .container {
        width: 320px;
        margin: 0 auto;
    }
}

/* ---------------- MENU KIRI (mcd-menu) ---------------- */

.mcd-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #FFF;
    border-radius: 2px;
    width: 250px;
}
.mcd-menu li {
    position: relative;
}
.mcd-menu li a {
    display: block;
    text-decoration: none;
    padding: 12px 20px;
    color: #777;
    text-align: left;
    height: 36px;
    position: relative;
    border-bottom: 1px solid #EEE;
}
.mcd-menu li a i {
    float: left;
    font-size: 20px;
    margin: 0 10px 0 0;
}
.mcd-menu li a p {
    float: left;
    margin: 0;
}
.mcd-menu li a strong {
    display: block;
    text-transform: uppercase;
}
.mcd-menu li a small {
    display: block;
    font-size: 10px;
}
.mcd-menu li a i,
.mcd-menu li a strong,
.mcd-menu li a small {
    position: relative;
    transition: all 300ms linear;
}
.mcd-menu li:hover > a i {
    opacity: 1;
    animation: moveFromTop 300ms ease-in-out;
}
.mcd-menu li:hover a strong {
    opacity: 1;
    animation: moveFromLeft 300ms ease-in-out;
}
.mcd-menu li:hover a small {
    opacity: 1;
    animation: moveFromRight 300ms ease-in-out;
}
.mcd-menu li:hover > a {
    color: #e67e22;
}
.mcd-menu li a.active {
    position: relative;
    color: #e67e22;
    border: 0;
    box-shadow: 0 0 5px #DDD;
    border-left: 4px solid #e67e22;
    border-right: 4px solid #e67e22;
    margin: 0 -4px;
}
.mcd-menu li a.active:before {
    content: "";
    position: absolute;
    top: 42%;
    left: 0;
    border-left: 5px solid #e67e22;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}
.mcd-menu li a.active:after {
    content: "";
    position: absolute;
    top: 42%;
    right: 0;
    border-right: 5px solid #e67e22;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

/* submenu */
.mcd-menu li ul,
.mcd-menu li ul li ul {
    position: absolute;
    height: auto;
    min-width: 200px;
    padding: 0;
    margin: 0;
    background: #FFF;
    opacity: 0;
    visibility: hidden;
    transition: all 300ms linear;
    z-index: 1000;
    left: 280px;
    top: 0px;
    border-left: 4px solid #e67e22;
}
.mcd-menu li ul:before {
    content: "";
    position: absolute;
    top: 25px;
    left: -9px;
    border-right: 5px solid #e67e22;
    border-bottom: 5px solid transparent;
    border-top: 5px solid transparent;
}
.mcd-menu li:hover > ul,
.mcd-menu li ul li:hover > ul {
    display: block;
    opacity: 1;
    visibility: visible;
    left: 250px;
}
.mcd-menu li ul li a {
    padding: 10px;
    text-align: left;
    border: 0;
    border-bottom: 1px solid #EEE;
    height: auto;
}
.mcd-menu li ul li a i {
    font-size: 16px;
    display: inline-block;
    margin: 0 10px 0 0;
}
.mcd-menu li ul li ul {
    left: 230px;
    top: 0;
    border: 0;
    border-left: 4px solid #e67e22;
}
.mcd-menu li ul li ul:before {
    content: "";
    position: absolute;
    top: 15px;
    left: -9px;
    border-right: 5px solid #e67e22;
    border-bottom: 5px solid transparent;
    border-top: 5px solid transparent;
}
.mcd-menu li ul li:hover > ul {
    top: 0px;
    left: 200px;
}

/* Search di menu, responsif, dll (tetap sama seperti CSS Anda sebelumnya)
   ... (kode bagian ini tidak diubah, dibiarkan apa adanya) */

/* ============================
   LINK TITLE, VIEW ALL ISSUES, TURNITIN
   ============================ */

/* Link umum di konten */
.content a {
    color: #FF00A8;
    text-decoration: none;
    transition: 0.3s ease;
}
.content a:hover {
    color: #FFA300;
}

/* Judul artikel (daftar issue / TOC) */
.obj_article_summary .title a {
    color: #FF00A8 !important;
    transition: color 0.2s ease-in-out;
}
.obj_article_summary .title a:hover {
    color: #FFA300 !important;
}

/* LINK VIEW ALL ISSUES (biasanya class cmp_back_link) */
.cmp_back_link a {
    color: #FF00A8 !important;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}
.cmp_back_link a:hover {
    color: #FFA300 !important;
}

/* Tombol / link Turnitin di samping PDF */
.turnitin-link {
    background: #FF00A8 !important;   /* warna normal */
    color: #fff !important;
    padding: 6px 14px;
    border-radius: 4px;
    font-weight: 600;
    margin-left: 8px;
    border: none;
    display: inline-block;
    text-decoration: none;
    transition: background 0.2s ease-in-out;
}
.turnitin-link:hover {
    background: #FFA300 !important;   /* warna hover */
    color: #fff !important;
}
