/* Animasi menu berbasis table */
.menu-anim {
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

/* efek hover background */
.menu-anim:hover {
    background-color: #243f63 !important;
}

/* garis animasi */
.menu-anim::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background-color: #dabc8d;
    transition: left 0.4s ease;
}

/* saat hover */
.menu-anim:hover::after {
    left: 0;
}

/* animasi teks */
.menu-anim a {
    display: block;
    transition: transform 0.3s ease, color 0.3s ease;
}

.menu-anim:hover a {
    transform: translateX(6px);
    color: #ffffff !important;
}
body {
    background-color: #0c1f33; /* fallback */
    background-image:
        linear-gradient(90deg, rgba(255,255,255,0.03) 0px, transparent 0px),
        linear-gradient(rgba(255,255,255,0.03) 0px, transparent 0px),
        url('/public/site/images/lina89/COVER_TI.png'); /* SESUAIKAN PATH */
    background-size:
        40px 40px,
        40px 40px,
        cover,
        cover;
    background-repeat: repeat, repeat, no-repeat, no-repeat;
    background-position: center, center, center, center;
    background-attachment: fixed;
}

/* ===== HEADER ===== */
#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: 200px !important;
}
.pkp_site_name_wrapper {
  padding-left: 0;
  padding-right: 0;
}
.pkp_navigation_user_wrapper {
  top: 0;
  right: 0;
  padding-right: 30px;
}
.pkp_structure_page {
  margin-top: 20px !important;
  margin-bottom: 20 !important;
  padding-bottom: 20 !important;
}
.pkp_block ul li,
.menu-anim {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* efek hover background */
.pkp_block ul li:hover,
.menu-anim:hover {
    background-color: #243f63 !important;
    border-radius: 5px;
}

/* garis animasi */
.pkp_block ul li::after,
.menu-anim::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background-color: #dabc8d;
    transition: left 0.4s ease;
}

/* saat hover */
.pkp_block ul li:hover::after,
.menu-anim:hover::after {
    left: 0;
}

/* teks bergerak */
.pkp_block ul li a,
.menu-anim a {
    display: block;
    transition: all 0.3s ease;
}

.pkp_block ul li:hover a,
.menu-anim:hover a {
    transform: translateX(8px);
    color: #ffffff !important;
}

/* === ARTICLE LIST ANIMATION - SINTA SAFE === */

/* Container tiap artikel */
.obj_article_summary {
    padding: 18px;
    margin-bottom: 18px;
    border-radius: 8px;
    background: #d7d9dd;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e5e5e5;
}

/* Hover efek lembut */
.obj_article_summary:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    border-color: #34028f;
}

/* Garis animasi bawah */
.obj_article_summary::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: #34028f;
    transition: width 0.4s ease;
}

.obj_article_summary:hover::after {
    width: 100%;
}

/* Judul artikel */
.obj_article_summary .title a {
    transition: color 0.3s ease;
}

.obj_article_summary:hover .title a {
    color: #34028f !important;
}

/* Nama author lebih halus */
.obj_article_summary .authors {
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.obj_article_summary:hover .authors {
    opacity: 1;
}

/* Tombol PDF modern */
.obj_article_summary .galley_links .obj_galley_link {
    background: #000000;
    color: #ffffff !important;
    border-radius: 4px;
    padding: 4px 10px;
    transition: all 0.3s ease;
}

.obj_article_summary .galley_links .obj_galley_link:hover {
    background: #34028f;
    transform: translateY(-2px);
}