/* =========================
   GLOBAL
========================= */
body {
    background: #f4f6f7;
    font-family: 'Noto Sans', sans-serif;
}

/* =========================
   HEADER FULL TOSCA
========================= */
.pkp_head_wrapper,
.pkp_navigation_primary_wrapper,
.pkp_navigation_user_wrapper {
    background: #0097b2 !important;
}

.pkp_site_name {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start;
    gap: 20px;
}

/* LOGO */
.pkp_site_name img {
    max-height: 70px;
}

/* TITLE TEXT */
.pkp_site_name::after {
    content: "Journal of Engineering Technology and Science Integration (JETSI)";
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.3;
}

.pkp_navigation_primary > li > a {
    color: #ffffff !important;
}

.pkp_navigation_primary > li > a:hover {
    color: #d1f2f1 !important;
}

/* =========================
   CONTAINER FIX (INI KUNCI UTAMA)
========================= */
.pkp_structure_page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* =========================
   LAYOUT UTAMA (FIX RAPI)
========================= */
.pkp_structure_content {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

/* KONTEN KIRI */
.pkp_structure_main {
    width: 74%;
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

/* SIDEBAR KANAN */
.pkp_structure_sidebar {
    width: 24%;
    position: relative;
}

/* =========================
   SIDEBAR CARD STYLE
========================= */
.pkp_block {
    background: #ffffff;
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.pkp_block .title {
    background: #0097b2 !important;
    color: #ffffff !important;
    padding: 8px;
    font-size: 14px;
    border-radius: 6px;
    font-weight: bold;
}

/* =========================
   IJIES SUBMISSION BUTTON
========================= */
.ijies-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #0097b2 ;
    color: #ffffff !important;
    padding: 16px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

/* Hover effect */
.ijies-submit-btn:hover {
    background: #0097b2 ;
    transform: translateY(-2px);
}

/* Icon */
.ijies-submit-btn .icon {
    font-size: 18px;
}

/* =========================
   INFO BOX
========================= */
.jetsi-info-box {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
    background: #ffffff;
    background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
}

.jetsi-row {
    display: flex;
    margin-bottom: 8px;
}

.jetsi-label {
    width: 200px;
    color: #555;
}

.jetsi-value {
    color: #2c3e50;
    font-weight: bold;
}

/* =========================
   INDEXING LOGO
========================= */
.indexing-logos img {
    max-width: 80%;
    display: block;
    margin: 10px auto;
}

/* =========================
   LINK
========================= */
a {
    color: #0097b2;
}

a:hover {
    color: #007c91;
}

/* =========================
   RESPONSIVE (WAJIB)
========================= */
@media (max-width: 992px) {
    .pkp_structure_content {
        flex-direction: column;
    }

    .pkp_structure_main,
    .pkp_structure_sidebar {
        width: 100%;
    }
}

/* =========================
   HEADER FIX (RAPI & LURUS)
========================= */

/* Background luar (full layar) */
.pkp_structure_head {
    background: #0097b2 !important;
}

/* Container tetap center */
.pkp_head_wrapper {
    background: #0097b2 !important;
}

/* Semua bagian header */
.pkp_site_name_wrapper,
.pkp_navigation_primary_wrapper,
.pkp_navigation_user_wrapper {
    background: #0097b2 !important;
}

/* Hilangkan padding/margin aneh */
.pkp_head_wrapper {
    padding: 0;
}

/* Biar tidak ada “kotak putih” */
.pkp_structure_page {
    background: transparent;
}

/* =========================
   JUSTIFY JOURNAL SUMMARY
========================= */
.pkp_page_index .journal-description,
.pkp_page_index .journal-description p {
    text-align: justify !important;
}

/* Optional: biar lebih rapi */
.pkp_page_index .journal-description p {
    line-height: 1.8;
}

.pkp_page_index .journal-description {
    text-align: justify;
    font-size: 15px;
    color: #2c3e50;
}

/* =========================
   ARCHIVE PREMIUM (JETSI STYLE UPGRADE)
========================= */

/* GRID */
.page_issue_archive .issues_archive {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* CARD */
.page_issue_archive .issue_summary {
    display: block !important;
    text-align: center;
    padding: 15px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

/* HOVER EFFECT */
.page_issue_archive .issue_summary:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* RESET FLEX */
.page_issue_archive .issue_summary .cover,
.page_issue_archive .issue_summary .description {
    width: 100% !important;
    float: none !important;
}

/* COVER */
.page_issue_archive .issue_summary .cover img {
    width: 100%;
    border-radius: 14px;
    margin-bottom: 15px;
}

/* HILANGKAN ELEMENT YANG BIKIN PECAH */
.page_issue_archive .issue_summary h2,
.page_issue_archive .issue_summary .series {
    display: none !important;
}

/* TITLE (VOL) */
.page_issue_archive .issue_summary .title {
    display: block;
    font-weight: 700;
    font-size: 17px;
    color: #4a4a4a;
    text-align: center;
    line-height: 1.5;
}

/* JOURNAL NAME (SECOND LINE) */
.page_issue_archive .issue_summary .meta {
    display: block;
    margin-top: 6px;
    font-size: 14px;
    color: #7a7a7a;
    text-align: center;
}

/* LINK CLEAN */
.page_issue_archive .issue_summary a {
    text-decoration: none;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {
    .page_issue_archive .issues_archive {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .page_issue_archive .issues_archive {
        grid-template-columns: 1fr;
    }
}

/* =========================
   FORCE ARCHIVE CARD (FIX FINAL)
========================= */

/* Matikan layout flex bawaan */
.page_issue_archive .issue_summary {
    display: block !important;
}

/* Bungkus konten jadi vertikal */
.page_issue_archive .issue_summary > * {
    display: block !important;
    width: 100% !important;
}

/* Cover FULL */
.page_issue_archive .issue_summary .cover {
    width: 100% !important;
    margin-bottom: 15px;
}

.page_issue_archive .issue_summary .cover img {
    width: 100% !important;
    height: auto;
    border-radius: 16px;
    display: block;
}

/* Hilangkan struktur lama */
.page_issue_archive .issue_summary .description {
    width: 100% !important;
    margin: 0 !important;
}

/* Paksa title ke bawah */
.page_issue_archive .issue_summary .title {
    display: block;
    text-align: center;
    font-weight: 700;
    font-size: 17px;
    margin-top: 10px;
    line-height: 1.5;
}

/* Volume */
.page_issue_archive .issue_summary .meta {
    text-align: center;
    margin-top: 5px;
    font-size: 14px;
    color: #666;
}

/* Hilangkan pecahan text */
.page_issue_archive .issue_summary h2,
.page_issue_archive .issue_summary .series {
    display: none !important;
}

/* === CARD ARTIKEL (JETSI TOSCA) === */
.obj_article_summary {
  background: #ffffff;
  border: 2px solid #e0f2f1;
  border-left: 6px solid #0097b2;
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 20px;
  transition: all 0.25s ease;
}

/* hover effect */
.obj_article_summary:hover {
  box-shadow: 0 8px 22px rgba(14,165,164,0.15);
  transform: translateY(-2px);
}

/* judul artikel */
.obj_article_summary .title a {
  font-weight: 600;
  font-size: 16px;
  color: #0097b2;
}

/* hover judul */
.obj_article_summary .title a:hover {
  color: #0097b2;
}

/* author */
.obj_article_summary .authors {
  margin-top: 6px;
  font-size: 14px;
  color: #444;
}

/* PDF button */
.obj_article_summary .galley_links a {
  background: #0097b2;
  color: #fff !important;
  padding: 6px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 13px;
  transition: 0.2s;
}

.obj_article_summary .galley_links a:hover {
  background: #0097b2;
}

/* garis bawah halus */
.obj_article_summary {
  border-bottom: 3px solid #0097b2;
}


/* === SEMBUNYIKAN DESKRIPSI DI HALAMAN ARCHIVE LIST === */
.page_issue_archive .description,
.page_issue_archive .obj_issue_summary .description {
  display: none;
}