
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(''); /* 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;
}

/* ===== GLASSMORPHISM SIDEBAR ===== */

/* item dasar */
.sidebar-glass {
    position: relative;
    padding: 10px;
    margin-bottom: 6px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.35s ease;
    overflow: hidden;
}

/* hover effect */
.sidebar-glass:hover {
    background: rgba(16, 188, 208, 0.15);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    transform: translateY(-3px);
}

/* garis animasi bawah */
.sidebar-glass::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #10bcd0, #5ee7ff);
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.sidebar-glass:hover::after {
    width: 80%;
}

/* teks dan icon */
.sidebar-glass a,
.sidebar-glass em {
    transition: all 0.3s ease;
    color: white !important;
}

.sidebar-glass:hover a {
    color: #ffffff !important;
    transform: translateX(6px);
}

.sidebar-glass:hover em {
    color: #10bcd0;
    transform: translateX(4px);
}

/* === ARTICLE LIST ANIMATION - SINTA SAFE === */

/* Container tiap artikel */
.obj_article_summary {
    padding: 18px;
    margin-bottom: 18px;
    border-radius: 8px;
    background: #ffffff;
    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: #10d070;
}

/* Garis animasi bawah */
.obj_article_summary::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: #10d070;
    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: #10d070 !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: #10d070;
    transform: translateY(-2px);
}

.editorial-anim {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 15px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
}

/* GARIS ANIMASI */
.editorial-anim::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: 6px;
  background: linear-gradient(
    90deg,
    #5a2929,
    #c2410c,
    #5a2929
  );
  background-size: 300% 300%;
  animation: borderMove 4s linear infinite;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  padding: 2px;
}

@keyframes borderMove {
  0%   { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* FOTO */
.editorial-anim img {
  width: 78px;
  height: 100px;
  border-radius: 6px;
  margin-right: 15px;
  z-index: 1;
}
