/* ============================
   RJPS SIDEBAR BASE
============================ */
.rjps-sidebar {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}

/* ============================
   ISSN
============================ */
.rjps-issn {
    margin-bottom: 20px;
}

.rjps-issn a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
}

/* ============================
   QUICK MENU
============================ */
.rjps-menu {
    margin-bottom: 25px;
}

.rjps-menu__header {
    background: #000;
    color: #f4c01e;
    padding: 10px;
    font-weight: bold;
    border-bottom: 1px solid #f4cd57;
}

.rjps-menu__item {
    position: relative;
    display: block;
    padding: 8px;
    background: #333;
    color: #fff;
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s ease;
}

/* Sweep hover */
.rjps-menu__item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #f4c01e;
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    z-index: -1;
}

.rjps-menu__item:hover::before {
    transform: translateX(0);
}

.rjps-menu__item:hover {
    color: #000;
}

/* ============================
   SECTION
============================ */
.rjps-section {
    margin-bottom: 30px;
}

.rjps-section__header {
    background: #000;
    color: #f4c01e;
    padding: 10px;
    font-weight: bold;
    margin-bottom: 10px;
    border-bottom: 1px solid #f4cd57;
}

/* ============================
   IMAGE HOVER
============================ */
.rjps-img-hover {
    display: inline-block;
    overflow: hidden;
}

.rjps-img-hover img {
    width: 100%;
    height: auto;
    display: block;
    transition:
        transform 0.4s ease,
        box-shadow 0.3s ease;
}

.rjps-img-hover:hover img {
    transform: scale(1.05);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

/* ============================
   MORE LINK
============================ */
.rjps-more {
    display: inline-block;
    margin-top: 10px;
    font-weight: bold;
    text-decoration: none;
    color: #000;
}

/* ============================
   DISABLE PKP FOOTER
============================ */
.pkp_brand_footer {
    display: none !important;
}
