/* ==========================================================================
    1. PENGATURAN FONT GLOBAL
    ========================================================================== */
body, 
.pkp_structure_page, 
.pkp_structure_main, 
.pkp_block, 
.pkp_navigation_primary_row, 
#navbar, 
.obj_article_summary, 
.content td {
    font-family: "Bookman Old Style", Times, serif !important;
    font-size: 12pt !important;
}

/* ==========================================================================
    2. HEADER, MENU UTAMA & BANNER RESPONSIF (YURISPRUDEN)
    ========================================================================== */
.pkp_structure_head {
    background: #8b0101;
    border-bottom: 0.5rem solid #8b0101;
    width: 100% !important;
    height: auto !important; 
    min-height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden;
}

.pkp_head_wrapper, 
.pkp_site_name {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
}

.obj_announcement_full .description {
    display: block !important;
}

.pkp_site_name .is_img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

.pkp_site_name .is_img img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important; 
    max-height: none !important;
    display: block !important;
    margin: 0 auto !important;
    object-fit: contain !important;
    image-rendering: -webkit-optimize-contrast;
}

/* ==========================================================================
    3. ANIMASI LOGO FOOTER (SLIDE LOGO)
    ========================================================================== */
.body_logo {
    padding: 1px 0;
    overflow: hidden;
}
.slide_logo {
    margin: auto;
    position: relative;
    display: flex;
    place-items: center;
    justify-content: space-evenly;
}
.track_logo {
    display: flex;
    width: calc(250px * 5);
    animation: slideLeft 10s linear infinite;
}
.track_logo:hover {
    animation-play-state: paused;
}
@keyframes slideLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-120%)); }
}
.logo a {
    height: 100%;
    width: 250px;
    display: flex;
    align-items: center;
    padding: 0 5px;
    perspective: 150px;
} 
.logo img {
    width: 100%;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}
.logo img:hover {
    transform: translateZ(20px) scale(1.05);
}
.slide_logo::before,
.slide_logo::after {
    background: linear-gradient(to right, transparent 100%);
    content: '';
    height: 75px;
    position: absolute;
    width: 15%;
    z-index: 2;
    top: 0;
}
.slide_logo::before { left: 0; }
.slide_logo::after { right: 0; transform: rotateZ(180deg); }

/* ==========================================================================
    4. NAVBAR PENGATURAN
    ========================================================================== */
#navbar {
    background-color: #8b0101;
    margin-bottom: 15px;
}
#navbar a, 
#navbar a:link, 
#navbar a:visited {
    text-transform: none;
}
#navbar a:hover {
    background-color: #EB5151;
}

/* ==========================================================================
    5. PENGATURAN SIDE MENU (MENU SAMPING)
    ========================================================================== */
ul.sidemenu {
    margin-top: -6px;
    padding-left: 2px !important;
}
ul.sidemenu.full {
    margin: -12px -12px 0 -12px;
}
ul.sidemenu li:before {
    display: none;
}
ul.sidemenu li {
    padding: 0;
}
ul.sidemenu li:first-child a {
    border-top: 0px solid #620c0c;
}
ul.sidemenu li a {
    display: block;
    padding: 0em 8px;
    border-bottom: 1px solid #620c0c;
    background-color: #8b0101;
    text-decoration: none;
    color: white;
}
ul.sidemenu li a:hover {
    background-color: #f72323;
    text-decoration: underline;
}
ul.sidemenu li:last-child a {
    border-bottom: 0;
}

.block li:before {
    content: "";
    display: block;
    height: 0;
    width: 0;
    left: -1em;
    top: 0em;
    position: relative;
}

/* ==========================================================================
    6. PENGATURAN SIDEBAR KANAN & KIRI
    ========================================================================== */
#leftSidebar, #rightSidebar {
    margin: 20px 0 0 0;
    padding: 4px;
    background-color: #eeeeee;
    background-image: none;
    height: auto;
    overflow: hidden;
}
#leftSidebar {
    display: none;
    border-right: 1px solid #ccc;
    float: left;
    width: 0;
}
.pkp_structure_sidebar:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 300px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
    7. STRUKTUR KONTEN UTAMA
    ========================================================================== */
.pkp_structure_main {
    width: 860px;
    text-align: justify;
    max-width: 100%;
    word-spacing: 0.5px;
    line-height: 1.4rem;
}
.pkp_structure_main p {
    line-height: 1.4rem;
    margin: 0.75rem 0;
    max-width: 100%;
}
.obj_issue_toc .section h2 {
    display: block;
}

/* ==========================================================================
    8. PENGATURAN JUDUL BLOK (BLOCK TITLE)
    ========================================================================== */
#leftSidebar div.block span.blockTitle, 
#rightSidebar div.block span.blockTitle {    
    background-color: #8b0101;
    color: #FFF;
    box-shadow: 0px 2px 5px -2px rgba(51,51,51,1);
}
.pkp_block {
    padding: 0.5rem;
    line-height: 1.2rem;
    text-align: center;
}
.pkp_block .title {
    display: block;
    height: 32px;
    border-bottom: 1px solid #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    background-color: #8b0101;
    text-align: center;
    color: #ffffff;
    line-height: 2;
    max-width: 100%;
    padding-inline: inherit;
}

/* ==========================================================================
    9. TAMPILAN ARTIKEL & GALLEY
    ========================================================================== */
.obj_article_details .page_title {
    background: rgba(81, 59, 59, 0.12);
    padding: 10px;
    border-radius: 6px;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}
.obj_article_summary {
    margin-bottom: 6px;
    padding: 6px 0.75rem;
    border-radius: 1rem;
    background: transparent;
    box-shadow: 2px 2px 6px #dedede;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}
.obj_article_summary p {
    margin: 4px 0 !important;
}
.obj_article_summary:hover {
    background: rgba(239, 18, 18, 0.12);
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1) !important;
}
.obj_article_summary .galleys,
.obj_article_details .galleys {
    margin: 2px 0 !important;
}
.obj_galley_link {
    font-weight: 700;
    text-transform: capitalize !important;
    background: transparent !important;
    color: black !important;
    border: solid 1px #ef1212 !important;
    font-size: 12pt !important;
    margin-top: 2px !important;
    display: inline-block;
    transition: all 0.3s ease !important;
}
.obj_galley_link:hover {
    background: #8b0101 !important;
    color: white !important;
    animation: subtlePulse 1.5s infinite ease-in-out;
    box-shadow: 0 4px 12px rgba(139, 1, 1, 0.2) !important;
}

@keyframes subtlePulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* ==========================================================================
    10. KELAS WARNA KHUSUS
    ========================================================================== */
.linkHitam { color: black; }
.linkPutih { color: white; }
.linkMerah { color: red; }

/* ==========================================================================
    11. MENU INTERAKTIF CONTENT & TEKS 1 BARIS (RESPONSIF)
    ========================================================================== */
.content {
    margin-top: -12px;
}
.content td {
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-decoration: none;
    padding: 0.5rem;
    background-color: #8b0101;
    transition: 0.7s;
    position: relative;
    z-index: 1;
    white-space: nowrap !important;
    container-type: inline-size;
    font-size: clamp(8pt, 6cqi, 12pt) !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}
.content .fa {
    padding: 0 6px;
}
.content td:hover {
    background-color: #ef1212;
    box-shadow: rgba(239, 18, 18, 0.5) 2px 2px 2px 3px;
    color: white !important;
}
.content td::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0.15rem;
    background-color: #45ef12;
    left: 0;
    bottom: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: 800ms;
}
.content td:hover::after {
    transform: scaleX(1);
}

/* ==========================================================================
    12. PENCARIAN & EFEK GALERI GAMBAR
    ========================================================================== */
.pkp_navigation_search_wrapper a {
    padding-bottom: 4px;
    border-bottom-width: 3px;
    color: #ffffff;
}
.galleryImg {
    height: 150px;
    width: 100%;
    transform-origin: 50% 50%;
    transition: transform 30s linear;
}
.galleryImg:hover {    
    transform: scale(2) rotate(0.1deg);
}

/* ==========================================================================
    13. KONTEN TAMBAHAN & FOOTER
    ========================================================================== */
.pkp_page_index .additional_content {
    padding: 0 1rem;
    text-align: center;
}
.pkp_brand_footer {
    display: none;
}
.pkp_footer_content {
    padding: inherit;
    text-align: center;
    background: transparent url("https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS8kPj8XsUAesuZTIOdsxrwErwiNPuABu43WhNGItaHhLr4iOMgyHAw1mEHJP7F6wP0Etg&usqp=CAU") repeat scroll 0% 0% !important;
    max-width: 100%;
    max-height: 100%;
}
.pkp_structure_footer_wrapper {
    background: #e8ebef;
    border-bottom: 2px solid #595959;
}

/* ==========================================================================
    14. PRIMARY NAVBAR BARU
    ========================================================================== */
.pkp_navigation_primary_row {
    background: #f23737;
    padding: 0.3rem 2rem 0 1rem;
}
.pkp_navigation_primary_row .pkp_navigation_primary_wrapper ul li {
    padding: 0 !important;
    margin: 0 !important;
}
.pkp_navigation_primary_row .pkp_navigation_primary_wrapper ul li a {
    margin: 0 !important;
    padding: 0 10px !important;
    line-height: 32px !important;
    font-size: 12pt !important;
    color: black !important;
    font-weight: bold !important;
    transition: 0.2s;
}
.pkp_navigation_primary_row .pkp_navigation_primary_wrapper ul li a:hover {
    background: #8b0101;
    color: white !important;
    border-radius: 15px !important;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}
.pkp_navigation_primary_row .pkp_navigation_primary_wrapper ul li ul {
    background: #541414 !important;
    border-radius: 0 !important;
}
.pkp_navigation_primary_row .pkp_navigation_primary_wrapper ul li ul li {
    border-bottom: solid 1px white !important;
}
.pkp_navigation_primary_row .pkp_navigation_primary_wrapper ul li ul li:last-child {
    border-bottom: none !important;
}

/* ==========================================================================
    15. JUDUL EDISI & HALAMAN (ISSUE & PAGE TITLE)
    ========================================================================== */
.pkp_page_index .current_issue .current_issue_title,
.pkp_structure_main .page h1 {
    background: rgba(81, 59, 59, 0.12);
    padding: 10px;
    border-radius: 6px;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}
.pkp_structure_page {
    margin: 0 auto;
    width: auto;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
    16. LATAR BELAKANG KONTEN & DETAIL ARTIKEL
    ========================================================================== */
.obj_article_details .abstract,
.obj_article_details .references {
    text-align: justify;
}

/* ==========================================================================
    17. KUSTOMISASI STRUKTUR TEAM EDITOR KUSTOM (.team-container)
    ========================================================================== */
.team-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}
.team-container .team-member {
    margin-bottom: 0;
    padding: 12px 1rem;
    border-radius: 1rem;
    background: transparent;
    box-shadow: 2px 2px 6px #dedede;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}
.team-container .team-member:hover {
    background: rgba(239, 18, 18, 0.08);
    box-shadow: 2px 2px 8px #cccccc;
}
.team-container .member-role {
    font-family: "Bookman Old Style", Times, serif !important;
    font-size: 13pt !important;
    font-weight: bold;
    text-transform: uppercase;
    color: #000;
    background-color: transparent;
    padding: 4px 10px;
    border-radius: 4px;
    align-self: flex-start;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}
.team-container .member-details {
    display: flex;
    flex-direction: column;
}
.team-container .member-name {
    font-family: "Bookman Old Style", Times, serif !important;
    font-size: 13pt !important;
    font-weight: bold;
    color: #8b0101;
    margin-bottom: 6px;
}
.team-container .member-data {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 0 !important;
    font-size: 11pt !important;
    line-height: 1.4rem;
    color: #333333;
}
.team-container .member-data li {
    padding: 0 !important;
    margin-bottom: 2px;
    background: transparent !important;
    border: none !important;
}
.team-container .member-data li:before {
    display: none !important;
}
.team-container .member-data a {
    color: #8b0101;
    text-decoration: underline;
}
.team-container .member-data a:hover {
    color: #ef1212;
}

/* ==========================================================================
    18. KUSTOMISASI STRUKTUR REVIEWER KUSTOM (.reviewer-container)
    ========================================================================== */
.reviewer-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}
.reviewer-container .reviewer-member {
    margin-bottom: 0;
    padding: 12px 1rem;
    border-radius: 1rem;
    background: transparent;
    box-shadow: 2px 2px 6px #dedede;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}
.reviewer-container .reviewer-member:hover {
    background: rgba(239, 18, 18, 0.08);
    box-shadow: 2px 2px 8px #cccccc;
}
.reviewer-container .reviewer-role {
    font-family: "Bookman Old Style", Times, serif !important;
    font-size: 13pt !important;
    font-weight: bold;
    text-transform: uppercase;
    color: #000;
    background-color: transparent;
    padding: 4px 10px;
    border-radius: 4px;
    align-self: flex-start;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}
.reviewer-container .reviewer-details {
    display: flex;
    flex-direction: column;
}
.reviewer-container .reviewer-name {
    font-family: "Bookman Old Style", Times, serif !important;
    font-size: 13pt !important;
    font-weight: bold;
    color: #8b0101;
    margin-bottom: 6px;
}
.reviewer-container .reviewer-data {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 0 !important;
    font-size: 11pt !important;
    line-height: 1.4rem;
    color: #333333;
}
.reviewer-container .reviewer-data li {
    padding: 0 !important;
    margin-bottom: 2px;
    background: transparent !important;
    border: none !important;
}
.reviewer-container .reviewer-data li:before {
    display: none !important;
}
.reviewer-container .reviewer-data a {
    color: #8b0101;
    text-decoration: underline;
}
.reviewer-container .reviewer-data a:hover {
    color: #ef1212;
}

/* ==========================================================================
    19. CUSTOMBLOCK-MENU
    ========================================================================== */
.customblock-menu {
    container-type: inline-size;
    width: 100%;
    margin-top: 25px !important;
    position: relative !important;
    background-color: transparent !important;
}
.customblock-menu table,
.customblock-menu tr,
.customblock-menu td,
.customblock-menu th,
.customblock-menu a {
    display: block;
    width: 100%;
    box-sizing: border-box;
    white-space: nowrap !important;
    overflow: visible !important;
    text-overflow: clip !important;
    font-size: clamp(2pt, 6cqi, 9pt) !important;
}

/* ==========================================================================
    20. TIMELINE JURNAL
    ========================================================================== */
.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    font-family: 'Bookman Old Style', Bookman, serif !important;
}
.timeline-item {
    position: relative;
    padding-left: 40px;
    padding-bottom: 30px;
    border-left: 3px solid #2c3e50;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 0;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background-color: #e74c3c;
    border: 3px solid #fff;
}
.timeline-date {
    display: block;
    font-weight: bold;
    color: #e74c3c;
    margin-bottom: 5px;
    font-size: 1.1em;
}
.timeline-event {
    color: #34495e;
    line-height: 1.5;
    font-size: 1em;
}
@media (max-width: 600px) {
    .timeline-container { padding: 10px; }
    .timeline-item { padding-left: 25px; }
}

/* ==========================================================================
    21. PEER-REVIEWED PROCESS
    ========================================================================== */
.process-container {
    max-width: 900px;
    margin: 30px auto;
    font-family: 'Bookman Old Style', Bookman, serif !important;
    color: #34495e;
    line-height: 1.6;
}
.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    position: relative;
}
.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 50px;
    width: 3px;
    height: calc(100% + 10px);
    background-color: #cbd5e1;
    z-index: 1;
}
.process-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #2c3e50;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1em;
    position: relative;
    z-index: 2;
    border: 3px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}
.process-content {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #e74c3c;
    padding: 15px 20px;
    border-radius: 6px;
    margin-left: 20px;
    width: 100%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.process-title {
    font-weight: bold;
    font-size: 1.1em;
    color: #2c3e50;
    margin-bottom: 5px;
}
.process-desc {
    font-size: 0.95em;
    color: #475569;
    margin: 0;
}
@media (max-width: 600px) {
    .process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .process-step:not(:last-child)::after {
        display: none;
    }
    .process-content {
        margin-left: 0;
        margin-top: 10px;
        border-left: 1px solid #e2e8f0;
        border-top: 4px solid #e74c3c;
    }
}

/* ==========================================================================
    22. KUSTOMISASI GAMBAR COVER HALAMAN DEPAN
    ========================================================================== */
.homepage-cover-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 20px;
    background-color: transparent;
}
.homepage-cover-img {
    width: 100% !important;
    max-width: 280px !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
    transition: transform 0.3s ease;
}
.homepage-cover-img:hover {
    transform: scale(1.02);
}

/* ==========================================================================
    23. EFEK & ANIMASI ELEGAN UNTUK MENU / HALAMAN CONTACT
    ========================================================================== */
.pkp_navigation_primary_row a[href*="contact"],
a[href*="contact"] {
    position: relative;
    transition: color 0.3s ease, transform 0.3s ease !important;
}

.pkp_navigation_primary_row a[href*="contact"]::after,
a[href*="contact"].contact-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 50%;
    background-color: #ffffff;
    transition: width 0.3s ease, left 0.3s ease !important;
}

.pkp_navigation_primary_row a[href*="contact"]:hover::after,
a[href*="contact"].contact-link:hover::after {
    width: 100%;
    left: 0;
}

.pkp_navigation_primary_row a[href*="contact"]:hover,
a[href*="contact"]:hover {
    transform: translateY(-1px);
    opacity: 0.95;
}

.contact-button {
    display: inline-block;
    padding: 8px 16px;
    background-color: #8b0101;
    color: #ffffff !important;
    border-radius: 4px;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.contact-button:hover {
    background-color: #ef1212;
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(239, 18, 18, 0.3);
}
/* ==========================================================================
    24. EFEK & ANIMASI ELEGAN UNTUK HALAMAN / MENU ARCHIVES
    ========================================================================== */

/* Efek transisi pada link/menu Archives di navbar utama */
.pkp_navigation_primary_row a[href*="issue"],
.pkp_navigation_primary_row a[href*="archive"],
a[href*="archive"] {
    position: relative;
    transition: color 0.3s ease, transform 0.3s ease !important;
}

/* Animasi garis bawah elegan saat menu Archives di-hover */
.pkp_navigation_primary_row a[href*="issue"]::after,
.pkp_navigation_primary_row a[href*="archive"]::after,
a[href*="archive"]::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 50%;
    background-color: #ffffff;
    transition: width 0.3s ease, left 0.3s ease !important;
}

.pkp_navigation_primary_row a[href*="issue"]:hover::after,
.pkp_navigation_primary_row a[href*="archive"]:hover::after,
a[href*="archive"]:hover::after {
    width: 100%;
    left: 0;
}

/* Efek interaktif untuk daftar edisi/arsip (issue summary atau card arsip) */
.obj_issue_summary, 
.pkp_issue_summary {
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    border-radius: 8px;
    background: transparent;
}

.obj_issue_summary:hover, 
.pkp_issue_summary:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 18px rgba(139, 1, 1, 0.12) !important;
    background: rgba(239, 18, 18, 0.03);
}

/* Efek tombol atau tautan edisi terdahulu (Cover / Judul Edisi di Arsip) */
.obj_issue_summary img,
.pkp_issue_summary img {
    transition: transform 0.4s ease, filter 0.4s ease !important;
}

.obj_issue_summary:hover img,
.pkp_issue_summary:hover img {
    transform: scale(1.03);
    filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.15));
}

/* ==========================================================================
    25. EFEK & ANIMASI ELEGAN UNTUK HALAMAN / MENU JOURNAL HISTORY
    ========================================================================== */

/* Efek transisi pada link/menu Journal History di navbar atau sidebar */
.pkp_navigation_primary_row a[href*="history"],
.pkp_navigation_primary_row a[href*="about"],
a[href*="history"] {
    position: relative;
    transition: color 0.3s ease, transform 0.3s ease !important;
}

/* Animasi garis bawah elegan saat menu Journal History di-hover */
.pkp_navigation_primary_row a[href*="history"]::after,
.pkp_navigation_primary_row a[href*="about"]::after,
a[href*="history"]::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 50%;
    background-color: #ffffff;
    transition: width 0.3s ease, left 0.3s ease !important;
}

.pkp_navigation_primary_row a[href*="history"]:hover::after,
.pkp_navigation_primary_row a[href*="about"]:hover::after,
a[href*="history"]:hover::after {
    width: 100%;
    left: 0;
}

/* Efek interaktif untuk teks atau paragraf dalam halaman Journal History */
.history-section, 
.pkp_structure_main h2, 
.pkp_structure_main h3 {
    transition: color 0.3s ease, transform 0.3s ease !important;
}

/* Efek hover pada blok konten sejarah jurnal agar lebih hidup */
.history-container, 
.about-history {
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.history-container:hover, 
.about-history:hover {
    background: rgba(139, 1, 1, 0.02);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}
/* ==========================================================================
    26. PENYESUAIAN & EFEK ELEGAN TIMELINE JURNAL
    ========================================================================== */
.timeline-container {
    position: relative;
    max-width: 850px;
    margin: 30px auto;
    padding: 20px;
    font-family: "Bookman Old Style", Times, serif !important;
}

.timeline-item {
    position: relative;
    padding-left: 35px;
    padding-bottom: 25px;
    border-left: 3px solid #8b0101; /* Disesuaikan dengan warna marun Yurispruden */
    transition: all 0.3s ease;
}

.timeline-item:hover {
    border-left-color: #ef1212;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -8.5px;
    top: 2px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #8b0101;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px rgba(139, 1, 1, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.timeline-item:hover::before {
    transform: scale(1.25);
    background-color: #ef1212;
}

.timeline-date {
    display: inline-block;
    font-weight: bold;
    color: #ffffff;
    background-color: #8b0101;
    padding: 2px 10px;
    border-radius: 4px;
    margin-bottom: 8px;
    font-size: 0.95em;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.timeline-event {
    color: #333333;
    line-height: 1.6;
    font-size: 11pt;
    background: #fdfdfd;
    padding: 12px 16px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.timeline-item:hover .timeline-event {
    box-shadow: 0 4px 12px rgba(139, 1, 1, 0.08);
    transform: translateX(4px);
}

@media (max-width: 600px) {
    .timeline-container { padding: 10px; }
    .timeline-item { padding-left: 25px; }
}

/* ==========================================================================
    27. PENYESUAIAN & EFEK ELEGAN PEER-REVIEWED PROCESS
    ========================================================================== */
.process-container {
    max-width: 900px;
    margin: 30px auto;
    font-family: "Bookman Old Style", Times, serif !important;
    color: #333333;
    line-height: 1.6;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    position: relative;
    transition: transform 0.3s ease;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 50px;
    width: 3px;
    height: calc(100% + 10px);
    background-color: #cbd5e1;
    z-index: 1;
    transition: background-color 0.3s ease;
}

.process-step:hover:not(:last-child)::after {
    background-color: #8b0101;
}

.process-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #8b0101; /* Menggunakan warna marun Yurispruden */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1em;
    position: relative;
    z-index: 2;
    border: 3px solid #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover .process-number {
    background-color: #ef1212;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(139, 1, 1, 0.3);
}

.process-content {
    background: #fdfdfd;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #8b0101; /* Aksen garis marun di sisi kiri kotak */
    padding: 15px 20px;
    border-radius: 6px;
    margin-left: 20px;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.process-step:hover .process-content {
    background: rgba(139, 1, 1, 0.015);
    border-color: #cbd5e1;
    box-shadow: 0 6px 16px rgba(139, 1, 1, 0.08);
    transform: translateX(4px);
}

.process-title {
    font-weight: bold;
    font-size: 1.15em;
    color: #8b0101;
    margin-bottom: 6px;
}

.process-desc {
    font-size: 11pt;
    color: #475569;
    margin: 0;
}

@media (max-width: 600px) {
    .process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .process-step:not(:last-child)::after {
        display: none;
    }
    .process-content {
        margin-left: 0;
        margin-top: 15px;
        border-left: 1px solid #e2e8f0;
        border-top: 4px solid #8b0101;
    }
}

/* ==========================================================================
    28. EFEK HOVER LINGKARAN (CIRCLE) MENJADI HIJAU TERANG KHAS UNISMA
    ========================================================================== */

/* 1. Efek hover untuk titik lingkaran pada Timeline Jurnal */
.timeline-item:hover::before {
    background-color: #22c55e !important; /* Hijau terang khas Unisma */
    border-color: #ffffff !important;
    transform: scale(1.3) !important;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.5) !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

/* 2. Efek hover untuk lingkaran nomor pada Peer Review Process */
.process-step:hover .process-number {
    background-color: #22c55e !important; /* Hijau terang khas Unisma */
    color: #ffffff !important;
    transform: scale(1.15) !important;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4) !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

/* 3. Pengaman umum untuk elemen lain yang menggunakan class .circle atau berbentuk lingkaran */
.circle:hover, 
[class*="circle"]:hover {
    background-color: #22c55e !important;
    border-color: #22c55e !important;
    transition: background-color 0.3s ease, transform 0.3s ease !important;
}