/* ================================
   NAVBAR UTAMA (TOP MENU)
   ================================ */
#navigationPrimary li a {
    color: #000000; /* warna default */
    font-weight: 500;
    padding: 6px 12px;
    transition: all 0.3s ease;
    border-radius: 6px;
}

#navigationPrimary li a:hover {
    color: #ffffff; /* teks putih */
    background: linear-gradient(135deg, #00b9b9, #008080); /* gradient modern */
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}


/* ================================
   SIDEBAR MENU
   ================================ */

/* --- Link dengan <a> --- */
#customblock-side-bar td a {
    display: block;
    background: linear-gradient(135deg, #00b9b9, #00a3a3); /* gradient turquoise */
    color: #ffffff !important;
    padding: 4px !important;
    margin: 4px 0;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

/* Hover untuk link (kecuali img) */
#customblock-side-bar td a:hover {
    background: linear-gradient(135deg, #008080, #006666);
    color: #ffeb3b !important; /* teks kuning */
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
   
}


/* --- Item tanpa link (hanya teks dalam <td>) --- */
#customblock-side-bar td {
    background: #009999;
    color: #ffffff !important;
    text-align: center;
    padding: 4px !important;
    margin: 4px 0;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 6px;
    cursor: default;
    transition: all 0.3s ease;
}

/* Hover untuk item tanpa link */
#customblock-side-bar td:hover {
    background: #007777;
    color: #ffeb3b !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);

}


/* ================================
   EXCEPTION: IMG
   ================================ */
#customblock-side-bar td span a img,
#customblock-side-bar td span a img:hover {
    background: none !important;
    box-shadow: none !important;
    transform: none !important;
    border-radius: 0 !important;
}


									
/* Gaya profesional & minimalis untuk tombol Login Register */
.profile a {
  display: inline-block;
  padding: 0px;
  background-color: white; /* biru tua yang formal */
  color: #009999;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 14px;
  border: 2px solid transparent;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.profile a:hover {
  color: #ffffff; /* teks putih */
    background: linear-gradient(135deg, #00b9b9, #008080); /* gradient modern */
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}

#headerNavigationContainer {
    max-width: 100%;     /* batas maksimal lebar */
    margin: 0 auto;         /* otomatis center secara horizontal */
    padding: 10px;          /* jarak dalam */
    background-color: #f0f0f0; /* bisa ganti warna sesuai kebutuhan */
    border-radius: 5px;     /* opsional, membuat sudut melengkung */
    box-sizing: border-box; /* memastikan padding tidak menambah lebar */
}


/* ==== Styling Login Page OJS ==== */

/* Hilangkan breadcrumb & teks yang tidak perlu */
.page_login .cmp_breadcrumbs,
.page_login h1,
.page_login p {
  display: none !important;
}

/* Layout utama login */
.page_login {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 90vh;
  background: white;
  padding: 20px;
}

/* Card login */
.page_login .cmp_form.login {
  background: #fff;
  padding: 35px 40px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  width: 100%;
  max-width: 400px;
  text-align: center;
}

/* Judul custom login */
.page_login .cmp_form.login::before {
  content: "🔐 Login Jurnal";
  display: block;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
}

/* Input */
.page_login input[type="text"],
.page_login input[type="password"] {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
}

/* Hover efek */
.page_login input[type="text"]:hover,
.page_login input[type="password"]:hover {
  border-color: #009999;
  background-color: #ffffff;
  box-shadow: 0 0 6px rgba(0, 153, 153, 0.3);
}

/* Fokus efek (saat diklik) */
.page_login input[type="text"]:focus,
.page_login input[type="password"]:focus {
  border-color: #006666;
  background-color: #fff;
  outline: none;
  box-shadow: 0 0 8px rgba(0, 102, 102, 0.5);
}

/* Tombol wrapper */
.page_login .buttons {
  display: flex;               /* sejajarkan horizontal */
  justify-content: center;     /* posisikan di tengah */
  gap: 15px;                   /* jarak antar tombol */
  margin-top: 20px;
}

/* Tombol */
.page_login button,
.page_login input[type="submit"] {
  flex: 1;                     /* lebar otomatis menyesuaikan */
  max-width: 200px;            /* batasi agar tidak terlalu panjang */
  padding: 12px;
  background: #009999;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

/* Hover */
.page_login button:hover,
.page_login input[type="submit"]:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #00b9b9, #008080);
  box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}

/* Link bawah */
.page_login a {
  color: black;
  text-decoration: none;
  font-size: 13px;
}
.page_login a:hover {
  text-decoration: underline;
}

/* Responsive: di layar kecil tombol tetap full width */
@media (max-width: 600px) {
  .page_login .buttons {
    flex-direction: column; /* tumpuk vertikal */
  }
  
  .page_login button,
  .page_login input[type="submit"] {
    max-width: 100%;
  }
}


/* Checkbox & label sejajar */
.page_login .checkbox input[type="checkbox"] {
  margin-right: 5px;
}



/* PAge Register lengkap */
/* ===== Register Page Wrapper ===== */
.page.page_register {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  background: #f7f9fb;
  padding: 40px 15px;
}

/* Card Wrapper */
.page.page_register form#register {
  max-width: 600px;
  margin: 0 auto;
  background: #ffffff;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* Heading */
.page.page_register h1 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: #0a6750;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.page.page_register h1::before {
  content: "📝"; /* Bisa ganti ke icon lock 🔒 kalau mau */
  font-size: 1.4rem;
}

/* Info text */
.page.page_register p {
  text-align: center;
  font-size: 14px;
  color: #555;
  margin-bottom: 25px;
}

/* ===== Fieldset Styling ===== */
.page.page_register fieldset {
  border: none;
  margin-bottom: 25px;
}

.page.page_register legend {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #0a6750;
  border-bottom: 2px solid #eaeaea;
  padding-bottom: 5px;
}

/* Input fields */
.page.page_register input[type="text"],
.page.page_register input[type="email"],
.page.page_register input[type="password"],
.page.page_register select {
  width: 100%;
  padding: 12px 14px;
  margin-top: 6px;
  margin-bottom: 16px;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.page.page_register input:focus,
.page.page_register select:focus {
  border-color: #0a6750;
  box-shadow: 0 0 8px rgba(10, 103, 80, 0.25);
  outline: none;
}

/* Hover effect untuk input & select */
.page.page_register input[type="text"]:hover,
.page.page_register input[type="email"]:hover,
.page.page_register input[type="password"]:hover,
.page.page_register select:hover {
  border-color: #0a6750;
  background-color: #f0faf7;
  box-shadow: 0 0 6px rgba(10, 103, 80, 0.2);
  transition: all 0.3s ease;
}


/* Labels */
.page.page_register label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-bottom: 4px;
}

/* Checkbox */
/* Checkbox Wrapper */
.page.page_register .fields label {
  display: flex;               /* sejajarkan checkbox + teks */
  align-items: flex-start;     /* biar sejajar di atas (kalau teks panjang) */
  gap: 8px;                    /* jarak antara checkbox dan teks */
  font-size: 14px;
  color: #444;
  line-height: 1.5;
  margin-bottom: 12px;         /* jarak antar checkbox */
  cursor: pointer;
}

/* Checkbox input */
.page.page_register input[type="checkbox"] {
  margin: 3px 0 0 0;           /* sejajarkan dengan awal teks */
  transform: scale(1.1);       /* sedikit lebih besar */
  cursor: pointer;
}


/* reCAPTCHA wrapper */
.page.page_register .recaptcha_wrapper {
  margin: 20px 0;
  text-align: center;
}

/* ===== Buttons ===== */
.page.page_register .buttons {
  margin-top: 25px;
  display: flex;                /* bikin sejajar */
  justify-content: space-between; 
  gap: 15px;                    /* jarak antar tombol */
}

/* Tombol Register */
.page.page_register .buttons .submit {
  flex: 1;                      /* biar seimbang */
  padding: 14px;
  background: #0a6750;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
  text-align: center;
}

.page.page_register .buttons .submit:hover {
  background: #088c6c;
}

/* Tombol Login */
.page.page_register .buttons .login {
  flex: 1;                      /* biar ukurannya sama dengan register */
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e0f4ef;          /* kasih background biar mirip tombol */
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  color: #0a6750;
  transition: background 0.3s ease;
}

.page.page_register .buttons .login:hover {
  background: #c5e9e0;
}


.page.page_register .buttons .login:hover {
  text-decoration: underline;
}

/* ===== Responsive ===== */
@media (max-width: 600px) {
  .page.page_register form#register {
    padding: 25px 20px;
  }

  .page.page_register h1 {
    font-size: 1.5rem;
  }
}



/* Footer */
/* ==== Footer Styling ==== */
.pkp_structure_footer_wrapper {
  background: linear-gradient(135deg, #00b9b9, #008080); /* gradasi elegan */
  color: #ffffff;                
  padding: 30px 20px;
  font-family: "Segoe UI", Tahoma, sans-serif;
  font-size: 14px;
  border-top: 3px solid #009999; 
}

.pkp_structure_footer {
  max-width: 1024px;   
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;     
}

.pkp_footer_content {
  text-align: left;   /* pastikan selalu rata kiri */
  flex: 1;            /* biar menempel di kiri */
}

.pkp_footer_content p {
  margin: 0;
  line-height: 1.6;
  font-size: 16px;
  font-weight: 500;
  color: #f0f0f0;
}

.pkp_brand_footer {
  text-align: right; /* logo tetap kanan */
}

.pkp_brand_footer img {
  max-height: 80px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.pkp_brand_footer img:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* Responsif untuk layar kecil */
@media (max-width: 600px) {
  .pkp_structure_footer {
    flex-direction: column;
    align-items: flex-start; /* tetap kiri, bukan center */
    gap: 15px;
  }

  .pkp_brand_footer {
    text-align: left; /* logo ikut kiri juga */
  }
}


/* ==== Navigation User (Login & Register) ==== */
#navigationUser {
  list-style: none;
  margin: 0;
  padding: 0 30px 0 0;   /* kasih padding kanan 30px */
  display: flex;
  justify-content: flex-end;  /* tetap rata kanan */
  gap: 15px;                   /* jarak antar item */
}

#navigationUser li a {
  text-decoration: none;
  padding: 8px 16px;
  background: #009999;    /* warna tombol */
  color: #ffffff;
  border-radius: 6px;
  font-weight: 500;
  transition: background 0.3s ease;
}

#navigationUser li a:hover {
    color:yellow;
  background: #006666;    /* warna saat hover */
}


/* PAge Submission */
/* ==== General Page Styling ==== */
.page_submissions {
  font-family: "Segoe UI", Tahoma, sans-serif;
  color: #333;
  line-height: 1.7;
  max-width: 1000px;
  margin: 20px auto;
  padding: 20px;
}

/* ==== Breadcrumbs ==== */
.cmp_breadcrumbs {
  font-size: 14px;
  margin-bottom: 15px;
  color: #555;
}

.cmp_breadcrumbs a {
  text-decoration: none;
  color: #009999;
  font-weight: 500;
  transition: color 0.3s ease;
}

.cmp_breadcrumbs a:hover {
  color: #006666;
}

.cmp_breadcrumbs .separator {
  margin: 0 6px;
  color: #aaa;
}

/* ==== Page Titles ==== */
.page_submissions h1 {
  font-size: 28px;
  margin: 15px 0 25px;
  font-weight: 600;
  color: #0d1b2a;
  border-bottom: 3px solid #009999;
  padding-bottom: 6px;
}

.page_submissions h2 {
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 12px;
  font-weight: 600;
  color: #008080;
  border-left: 4px solid #009999;
  padding-left: 8px;
}

/* ==== Add Icons to Titles ==== */
.page_submissions h1::before {
  content: "📑 ";   /* Ikon untuk halaman utama */
}

.submission_checklist h2::before {
  content: "✅ ";   /* Ikon checklist */
}

.author_guidelines h2::before {
  content: "🖊️ ";  /* Ikon guidelines */
}

.section_policy h2::before {
  content: "📌 ";   /* Ikon section policy */
}

.privacy_statement h2::before {
  content: "🔒 ";   /* Ikon privacy */
}

/* ==== Notification Box (Login/Register) ==== */
.cmp_notification {
  background: #e6f7f7;
  border: 1px solid #b3e0e0;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 15px;
  margin-bottom: 25px;
}

.cmp_notification a {
  color: #009999;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.cmp_notification a:hover {
  color: #006666;
}

/* ==== Checklist Styling ==== */
.submission_checklist ul {
  list-style: none;
  padding: 0;
}

.submission_checklist li {
  background: #f9f9f9;
  margin: 8px 0;
  padding: 10px 14px;
  border-radius: 6px;
  border-left: 4px solid #009999;
  display: flex;
  align-items: center;
  font-size: 15px;
}

.submission_checklist li .fa {
  color: #009999;
  margin-right: 10px;
}

/* ==== Author Guidelines, Privacy, Section Policy ==== */
.author_guidelines p,
.author_guidelines ul,
.privacy_statement p,
.section_policy p {
  font-size: 15px;
  color: #444;
}

.author_guidelines ul {
  margin: 10px 0 15px 20px;
}

.author_guidelines li {
  margin-bottom: 8px;
}

/* ==== Highlight Strong Text ==== */
.author_guidelines strong {
  color: #0d1b2a;
}

/* ==== Responsive ==== */
@media (max-width: 700px) {
  .page_submissions {
    padding: 15px;
  }
  
  .page_submissions h1 {
    font-size: 24px;
  }

  .page_submissions h2 {
    font-size: 20px;
  }
}


/* tim journal */
/* ==== Editorial Team Page ==== */
.page_editorial_team {
  font-family: "Segoe UI", Tahoma, sans-serif;
  color: #333;
  line-height: 1.7;
  max-width: 900px;
  margin: 20px auto;
  padding: 20px;
}

/* ==== Breadcrumbs ==== */
.page_editorial_team .cmp_breadcrumbs {
  font-size: 14px;
  margin-bottom: 15px;
  color: #555;
}

.page_editorial_team .cmp_breadcrumbs a {
  text-decoration: none;
  color: #009999;
  font-weight: 500;
  transition: color 0.3s ease;
}

.page_editorial_team .cmp_breadcrumbs a:hover {
  color: #006666;
}

.page_editorial_team .cmp_breadcrumbs .separator {
  margin: 0 6px;
  color: #aaa;
}

/* ==== Title ==== */
.page_editorial_team h1 {
  font-size: 28px;
  margin: 15px 0 25px;
  font-weight: 600;
  color: #0d1b2a;
  border-bottom: 3px solid #009999;
  padding-bottom: 6px;
}

.page_editorial_team h1::before {
  content: "👥 ";
}

/* ==== Editorial Roles ==== */
.page_editorial_team p {
  font-size: 15px;
  margin-bottom: 15px;
  padding: 12px 16px;
  background: #f9f9f9;
  border-left: 4px solid #009999;
  border-radius: 6px;
}

.page_editorial_team p strong {
  display: block;
  font-size: 16px;
  color: #008080;
  margin-bottom: 4px;
}

.page_editorial_team a {
  text-decoration: none;
  color: #006666;
  font-weight: 500;
  transition: color 0.3s ease;
}

.page_editorial_team a:hover {
  color: #009999;
  text-decoration: underline;
}

/* ==== Mitra Bestari ==== */
.page_editorial_team p:last-of-type {
  background: #eefaf9;
  border-left: 4px solid #00b3b3;
}

.page_editorial_team p:last-of-type strong::before {
  content: "🌐 ";
}

.page_editorial_team p:last-of-type {
  line-height: 1.8;
}

/* ==== Responsive ==== */
@media (max-width: 700px) {
  .page_editorial_team {
    padding: 15px;
  }
  
  .page_editorial_team h1 {
    font-size: 24px;
  }
  
  .page_editorial_team p {
    font-size: 14px;
  }
}


/* Contact Us */
/* ==== Contact Us Page ==== */
.page .page_title {
  font-size: 28px;
  font-weight: 600;
  color: #0d1b2a;
  margin: 20px 0 25px;
  border-bottom: 3px solid #009999;
  padding-bottom: 6px;
}

.page .page_title::before {
  content: "📞 ";
}

/* ==== Breadcrumbs ==== */
.page .cmp_breadcrumbs {
  font-size: 14px;
  margin-bottom: 15px;
  color: #555;
}

.page .cmp_breadcrumbs a {
  text-decoration: none;
  color: #009999;
  font-weight: 500;
  transition: color 0.3s ease;
}

.page .cmp_breadcrumbs a:hover {
  color: #006666;
}

.page .cmp_breadcrumbs .separator {
  margin: 0 6px;
  color: #aaa;
}

/* ==== Contact Section ==== */
#contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  font-family: "Segoe UI", Tahoma, sans-serif;
  color: #333;
  line-height: 1.7;
}

/* Mailing Address & Contact Box */
#contact div {
  background: #f9f9f9;
  border-left: 4px solid #009999;
  border-radius: 6px;
  padding: 18px 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

#contact h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #008080;
  font-weight: 600;
}

#contact p {
  font-size: 15px;
  margin-bottom: 10px;
}

/* Strong labels */
#contact p strong {
  display: block;
  color: #0d1b2a;
  margin-bottom: 4px;
  font-size: 15px;
}

/* Links inside */
#contact a {
  text-decoration: none;
  color: #006666;
  font-weight: 500;
  transition: color 0.3s ease;
}

#contact a:hover {
  color: #009999;
  text-decoration: underline;
}

/* ==== Google Maps Frame ==== */
/* ==== Google Maps Frame ==== */
#contact iframe {
  width: 100%;
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
  height: 350px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: all 0.4s ease;   /* transisi halus */
  transform: scale(1);         /* posisi default */
  border: 2px solid transparent; /* border default transparan */
}

/* Hover effect */
#contact iframe:hover {
  transform: scale(1.03);    
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  border: 2px solid #009999; /* border hijau saat hover */
}



/* ==== Responsive ==== */
@media (min-width: 768px) {
  #contact {
    grid-template-columns: 2fr 1fr; /* Map & Address lebih besar */
  }
}


/* Page Abput */
/* ===== Styling Halaman About the Journal ===== */
.page.page_about {
  max-width: 960px;         /* lebar konten agar tidak terlalu melebar */
  margin: 40px auto;        /* center halaman dengan margin atas bawah */
  padding: 20px 30px;
  background: #ffffff;      /* latar putih bersih */
  border-radius: 12px;      /* sudut membulat agar elegan */
  box-shadow: 0 4px 15px rgba(0,0,0,0.08); /* bayangan lembut */
  font-family: "Segoe UI", Tahoma, sans-serif;
  line-height: 1.7;
  color: #333;              /* teks utama */
}

/* ===== Breadcrumb ===== */
.cmp_breadcrumbs {
  font-size: 14px;
  margin-bottom: 20px;
  color: #666;
}

.cmp_breadcrumbs ol {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

.cmp_breadcrumbs li {
  margin-right: 6px;
}

.cmp_breadcrumbs a {
  color: #007b83;           /* hijau kebiruan */
  text-decoration: none;
  transition: color 0.3s;
}

.cmp_breadcrumbs a:hover {
  color: #004f52;
}

.cmp_breadcrumbs .separator {
  margin: 0 6px;
  color: #aaa;
}

/* ===== Judul Halaman ===== */
.page.page_about h1 {
  font-size: 28px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
  border-left: 6px solid #009999; /* garis aksen kiri */
  padding-left: 12px;
}

/* ===== Paragraf ===== */
.page.page_about p {
  font-size: 16px;
  text-align: justify;
  margin-bottom: 16px;
  color: #444;
}

/* Responsive Mobile */
@media (max-width: 600px) {
  .page.page_about {
    padding: 15px 20px;
  }

  .page.page_about h1 {
    font-size: 22px;
  }

  .page.page_about p {
    font-size: 15px;
  }
}


/* Page Archives */
/* ===== Archives Page ===== */
.page.page_issue_archive {
  max-width: 1100px;
  margin: 40px auto;
  padding: 20px;
  font-family: "Segoe UI", Tahoma, sans-serif;
  color: #333;
}

/* ===== Breadcrumbs ===== */
.page_issue_archive .cmp_breadcrumbs {
  font-size: 14px;
  margin-bottom: 20px;
  color: #666;
}

.page_issue_archive .cmp_breadcrumbs a {
  color: #009999;
  text-decoration: none;
  transition: color 0.3s;
}

.page_issue_archive .cmp_breadcrumbs a:hover {
  color: #006666;
}

.page_issue_archive .cmp_breadcrumbs .separator {
  margin: 0 6px;
  color: #aaa;
}

/* ===== Judul Halaman ===== */
.page_issue_archive h1 {
  font-size: 28px;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 25px;
  border-left: 6px solid #009999;
  padding-left: 12px;
}

/* ===== Issue List ===== */
.issues_archive {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* ===== Issue Card ===== */
.obj_issue_summary {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.obj_issue_summary:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* Cover Image tampil 100% proporsional */
.obj_issue_summary .cover {
  width: 100%;
  padding: 10px;
  background: #f9f9f9;
}

.obj_issue_summary .cover img {
  width: 100%;
  height: auto;
  object-fit: contain; /* biar tidak kepotong */
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.obj_issue_summary:hover .cover img {
  transform: scale(1.03);
}

/* Title & Series */
.obj_issue_summary h2 {
  margin: 10px 0 4px;
  font-size: 15px;
  font-weight: 600;
}

.obj_issue_summary h2 .title {
  text-decoration: none;
  color: #009999;
  transition: color 0.3s;
}

.obj_issue_summary h2 .title:hover {
  color: #006666;
}

.obj_issue_summary .series {
  font-size: 13px;
  color: #666;
  margin-bottom: 12px;
}

/* Responsive */
@media (max-width: 600px) {
  .obj_issue_summary .cover img {
    max-height: 240px; /* batasi tinggi di mobile */
  }
  .page_issue_archive h1 {
    font-size: 22px;
  }
}


/* Footer Baru */
/* ===== Footer Styling – JDMS ===== */
.site-footer {
  background: transparent; /* hijau elegan */
  color: #f4f4f4;
  font-family: "Segoe UI", Tahoma, sans-serif;
  padding: 30px 20px 15px;
  margin-top: 40px;
}

.site-footer a {
  color: #ffdd57; /* kuning emas lembut */
  text-decoration: none;
  transition: color 0.3s;
}

.site-footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Footer Wrapper */
.footer-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto 20px auto;
}

/* Brand & Identity */
.footer-brand {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  flex: 1 1 500px;
}

.footer-brand img {
  max-width: 70px;
  height: auto;
  background: #fff;
  border-radius: 12px;
  padding: 5px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.footer-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 5px 0;
}

.footer-sub {
  font-size: 14px;
  margin: 0 0 8px 0;
  opacity: 0.9;
}

.divider {
  border-top: 1px solid rgba(255,255,255,0.3);
  margin: 8px 0;
}

.small.muted {
  font-size: 13px;
  margin: 3px 0;
  opacity: 0.85;
}

/* Footnote */
.footnote {
  text-align: center;
  font-size: 12px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 10px;
  max-width: 1100px;
  margin: 0 auto;
  opacity: 0.9;
}

.footnote a {
  color: #ffdd57;
  font-weight: 500;
}



/* Headerrrrrrrr */
/* ===== Logo Journal ===== */
.pkp_site_name {
  display: flex;
  justify-content:left;
  align-items: center;
  margin: 20px 0;
  padding: 10px;
}

.pkp_site_name a.is_img {
  display: inline-block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.pkp_site_name a.is_img:hover {
  transform: scale(1.05);    /* Efek zoom halus saat hover */
  opacity: 0.9;              /* Sedikit transparan */
}

.pkp_site_name img {
  max-width: 250px;          /* Batasi ukuran logo agar tidak terlalu besar */
  height: auto;              /* Jaga proporsi */
  border-radius: 8px;        /* Sudut sedikit melengkung */
  box-shadow: 0 4px 12px rgba(0,0,0,0.15); /* Bayangan elegan */
}
