@font-face {
    font-family: "Halyard Text";
    src: url("https://s3-csis-web.s3.ap-southeast-1.amazonaws.com/others/Halyard+Text+Regular.ttf") format("truetype");
}

body {
    font-family: "Halyard Text", sans-serif;
}

.site-footer {
    background: #00857b !important;
}

/* ============================================
   OJS 3 EDITORIAL BOARD PROFILE CARD 
   ============================================ */
/* ============================================
           OJS 3 EDITORIAL BOARD PROFILE CARD
           ============================================ */

:root {
    --card-bg: #fafcfb;
    --card-border: #d4e3dd;
    --card-shadow: rgba(13, 124, 95, 0.08);
    --accent-primary: #0d7c5f;
    --accent-secondary: #0a6349;
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --badge-bg: #f8fafc;
    --badge-border: #e2e8f0;
    --divider: #f1f5f9;
    --avatar-ring: linear-gradient(135deg, #0d7c5f 0%, #2ecc71 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #ffffff;
    color: var(--text-primary);
    line-height: 1.6;
    /*padding: 40px 20px;*/
}

.editorial-board {
    width: 100%;
    box-sizing: border-box;
}

.editorial-board .page-header {
    text-align: center;
    margin-bottom: 50px;
}

.editorial-board .page-header h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.editorial-board .page-header p {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 400;
}

.editorial-board .section-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 48px 0 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent-primary);
    display: inline-block;
}

/* --- Global Badge Style --- */
.editorial-board .profile-id-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: var(--badge-bg);
    border: 1px solid var(--badge-border);
    border-radius: 20px;
    font-size: 12px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 500;
    white-space: nowrap;
}

.editorial-board .profile-id-badge:hover {
    background: rgba(13, 124, 95, 0.05);
    border-color: rgba(13, 124, 95, 0.2);
    color: var(--accent-primary);
    transform: translateY(-1px);
}

.editorial-board .profile-id-badge img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.editorial-board .id-label {
    font-weight: 500;
}

.editorial-board .id-value {
    font-weight: 600;
    color: var(--accent-primary);
    font-family: 'SF Mono', monospace;
    font-size: 11px;
}

.editorial-board .flag {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

/* === STYLE 1: Horizontal Card (Leadership) === */
.editorial-board .profile-card {
    width: 100%;
    box-sizing: border-box;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 24px 32px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 28px;
    box-shadow: 0 4px 12px var(--card-shadow);
    transition: all 0.3s ease;
}

.editorial-board .profile-card:hover {
    box-shadow: 0 10px 30px rgba(13, 124, 95, 0.15);
    border-color: rgba(13, 124, 95, 0.2);
}

.editorial-board .profile-avatar {
    flex-shrink: 0;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    padding: 3px;
    background: var(--avatar-ring);
}

.editorial-board .profile-avatar img {
    width: 104px;
    height: 104px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    background: #fff;
}

.editorial-board .profile-info {
    flex: 1;
}

.editorial-board .profile-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 4px;
}

.editorial-board .profile-role {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.editorial-board .profile-affiliation {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.editorial-board .profile-ids {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

/* === STYLE 2: Vertical Card (Grid) === */
.editorial-board .cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 24px;
}

.editorial-board .profile-card-v {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 4px 12px var(--card-shadow);
    transition: all 0.3s ease;
}

.editorial-board .profile-card-v:hover {
    box-shadow: 0 10px 30px rgba(13, 124, 95, 0.15);
    border-color: rgba(13, 124, 95, 0.2);
    transform: translateY(-2px);
}

.editorial-board .profile-card-v .profile-avatar {
    margin: 0 auto 16px;
    width: 90px;
    height: 90px;
}

.editorial-board .profile-card-v .profile-avatar img {
    width: 84px;
    height: 84px;
}

.editorial-board .profile-card-v .profile-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.editorial-board .profile-card-v .profile-affiliation {
    justify-content: center;
    font-size: 13px;
    margin-bottom: 16px;
}

.editorial-board .profile-card-v .profile-ids {
    justify-content: center;
    gap: 8px;
}

/* === h-index styling === */
.editorial-board .h-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffedd5;
    color: #c2410c;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 6px;
}

/* Responsive */
@media (max-width: 640px) {
    .editorial-board .profile-card {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }

    .editorial-board .profile-affiliation,
    .editorial-board .profile-ids {
        justify-content: center;
    }
}


/* ============================================
   OJS 3 FOCUS AND SCOPE
   ============================================ */

.isr-interactive-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    color: #444444;
    line-height: 1.8;
    background-color: #fbfdfc;
    /* Latar belakang sangat halus */
    padding: 20px;
    border-radius: 12px;
}

/* Card Container */
.isr-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-left: 6px solid transparent;
}

/* Hover Effect: Kartu sedikit terangkat dan memunculkan warna dasar ISR */
.isr-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(52, 118, 99, 0.12);
    border-left: 6px solid #347663;
}

/* Khusus untuk Paragraf Pertama (Intro) */
.isr-card.isr-intro {
    background: linear-gradient(145deg, #ffffff 0%, #f2f8f6 100%);
    border-left: 6px solid #347663;
    font-size: 1.05em;
}

/* Styling Judul / Sub-heading */
.isr-card p strong {
    display: inline-block;
    color: #2c3e50;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    position: relative;
    transition: color 0.3s ease;
}

/* Animasi garis bawah interaktif pada Judul saat kartu di-hover */
.isr-card p strong::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    bottom: -4px;
    left: 0;
    background-color: #347663;
    border-radius: 2px;
    transition: width 0.4s ease;
}

.isr-card:hover p strong {
    color: #347663;
}

.isr-card:hover p strong::after {
    width: 100%;
}

.isr-card p {
    text-align: justify;
    margin-bottom: 15px;
}

.isr-card p:last-child {
    margin-bottom: 0;
}

/* Interactive Bullet Points */
.isr-card ul {
    list-style: none;
    padding-left: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.isr-card ul li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

/* Efek geser kanan saat list disentuh kursor */
.isr-card ul li:hover {
    transform: translateX(8px);
    color: #111;
}

/* Custom Bullet Icon menggunakan CSS */
.isr-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background-color: #347663;
    border-radius: 3px;
    opacity: 0.8;
    transition: all 0.3s ease;
    transform: rotate(45deg);
    /* Membuat bentuk diamond/belah ketupat */
}

.isr-card ul li:hover::before {
    transform: rotate(90deg);
    /* Berputar saat di-hover */
    opacity: 1;
}

/* =======================================================
   Halaman About (Tombol & Badge)
   ======================================================= */

/* Tombol Interaktif untuk Download */
.isr-btn {
    display: inline-block;
    background-color: #347663;
    color: #ffffff !important;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    margin-top: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(52, 118, 99, 0.2);
}

.isr-btn:hover {
    background-color: #26594a;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(52, 118, 99, 0.3);
}

/* Badge untuk ISSN */
.isr-issn-box {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.isr-issn-badge {
    background: #f2f8f6;
    border: 1px solid #d1e3dd;
    color: #347663;
    padding: 10px 15px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
}

/* =======================================================
   Modern & Interactive Submissions Page (OJS 3)
   ======================================================= */

/* 1. Mencegah tampilan dipersempit oleh class col-md-8 bawaan OJS */
.page-submissions .row.justify-content-md-center .col-md-8 {
    flex: 0 0 100%;
    max-width: 100%;
}

@media (min-width: 992px) {
    .page-submissions .row.justify-content-md-center .col-md-8 {
        flex: 0 0 90%;
        /* Memberikan sedikit ruang bernapas di layar besar (tidak 100% mentok kiri-kanan) */
        max-width: 90%;
    }
}

/* 2. Styling Judul Halaman Utama */
.page-submissions .page-header h1 {
    color: #347663;
    font-weight: 800;
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

/* 3. Kotak Alert "Make a new submission" */
.page-submissions .alert.alert-primary {
    background-color: #f2f8f6;
    border: 1px solid #347663;
    border-left: 6px solid #347663;
    color: #2c3e50;
    border-radius: 8px;
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(52, 118, 99, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-submissions .alert.alert-primary a {
    color: #347663;
    text-decoration: none;
    border-bottom: 2px solid rgba(52, 118, 99, 0.3);
    transition: all 0.3s ease;
    margin: 0 5px;
}

.page-submissions .alert.alert-primary a:hover {
    border-bottom-color: #347663;
    color: #26594a;
}

/* 4. Layout Interactive Cards untuk setiap seksi */
.page-submissions .submissions-checklist,
.page-submissions .submissions-author-guidelines,
.page-submissions .submissions-privacy-statement {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 30px;
    margin-top: 25px;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-left: 6px solid transparent;
    color: #444444;
    line-height: 1.8;
}

/* Hover Effect pada masing-masing seksi */
.page-submissions .submissions-checklist:hover,
.page-submissions .submissions-author-guidelines:hover,
.page-submissions .submissions-privacy-statement:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(52, 118, 99, 0.12);
    border-left: 6px solid #347663;
}

/* 5. Styling Judul (H2) di dalam Kartu */
.page-submissions div[class^="submissions-"] h2 {
    color: #2c3e50;
    font-size: 22px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
}

/* Animasi Garis Bawah pada Sub-Judul saat di-hover */
.page-submissions div[class^="submissions-"] h2::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: #347663;
    border-radius: 2px;
    transition: width 0.4s ease;
}

.page-submissions div[class^="submissions-"]:hover h2::after {
    width: 100%;
}

.page-submissions div[class^="submissions-"]:hover h2 {
    color: #347663;
}

/* 6. Perbaikan Format Teks Checklist (Khusus untuk format list yang menumpuk) */
.page-submissions .submissions-checklist ul {
    background: #fbfdfc;
    border: 1px dashed #d1e3dd;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    list-style: none;
    /* Menghapus titik default karena angkanya sudah ada di teks (1), 2), dst) */
}

.page-submissions .submissions-checklist ul li {
    /* white-space pre-line memaksa teks yang dienter di editor OJS agar turun ke bawah secara otomatis */
    white-space: pre-line;
    line-height: 1.8;
}

/* Menyembunyikan tombol Edit bawaan (agar tidak merusak estetika desain) bagi pembaca publik */
.page-submissions .btn-edit-link {
    display: none !important;
}


/* =======================================================
   OJS 3 Submissions

   ======================================================= */

/* =======================================================
   Modern & Interactive Submissions Page (OJS 3)
   ======================================================= */

/* 1. Mencegah tampilan dipersempit oleh class col-md-8 bawaan OJS */
.page-submissions .row.justify-content-md-center .col-md-8 {
    flex: 0 0 100%;
    max-width: 100%;
}

@media (min-width: 992px) {
    .page-submissions .row.justify-content-md-center .col-md-8 {
        flex: 0 0 90%;
        /* Memberikan sedikit ruang bernapas di layar besar (tidak 100% mentok kiri-kanan) */
        max-width: 90%;
    }
}

/* 2. Styling Judul Halaman Utama */
.page-submissions .page-header h1 {
    color: #347663;
    font-weight: 800;
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

/* 3. Kotak Alert "Make a new submission" */
.page-submissions .alert.alert-primary {
    background-color: #f2f8f6;
    border: 1px solid #347663;
    border-left: 6px solid #347663;
    color: #2c3e50;
    border-radius: 8px;
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(52, 118, 99, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-submissions .alert.alert-primary a {
    color: #347663;
    text-decoration: none;
    border-bottom: 2px solid rgba(52, 118, 99, 0.3);
    transition: all 0.3s ease;
    margin: 0 5px;
}

.page-submissions .alert.alert-primary a:hover {
    border-bottom-color: #347663;
    color: #26594a;
}

/* 4. Layout Interactive Cards untuk setiap seksi */
.page-submissions .submissions-checklist,
.page-submissions .submissions-author-guidelines,
.page-submissions .submissions-privacy-statement {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 30px;
    margin-top: 25px;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-left: 6px solid transparent;
    color: #444444;
    line-height: 1.8;
}

/* Hover Effect pada masing-masing seksi */
.page-submissions .submissions-checklist:hover,
.page-submissions .submissions-author-guidelines:hover,
.page-submissions .submissions-privacy-statement:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(52, 118, 99, 0.12);
    border-left: 6px solid #347663;
}

/* 5. Styling Judul (H2) di dalam Kartu */
.page-submissions div[class^="submissions-"] h2 {
    color: #2c3e50;
    font-size: 22px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
}

/* Animasi Garis Bawah pada Sub-Judul saat di-hover */
.page-submissions div[class^="submissions-"] h2::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: #347663;
    border-radius: 2px;
    transition: width 0.4s ease;
}

.page-submissions div[class^="submissions-"]:hover h2::after {
    width: 100%;
}

.page-submissions div[class^="submissions-"]:hover h2 {
    color: #347663;
}

/* 6. Perbaikan Format Teks Checklist (Khusus untuk format list yang menumpuk) */
.page-submissions .submissions-checklist ul {
    background: #fbfdfc;
    border: 1px dashed #d1e3dd;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    list-style: none;
    /* Menghapus titik default karena angkanya sudah ada di teks (1), 2), dst) */
}

.page-submissions .submissions-checklist ul li {
    /* white-space pre-line memaksa teks yang dienter di editor OJS agar turun ke bawah secara otomatis */
    white-space: pre-line;
    line-height: 1.8;
}

/* Menyembunyikan tombol Edit bawaan (agar tidak merusak estetika desain) bagi pembaca publik */
.page-submissions .btn-edit-link {
    display: none !important;
}

/* =======================================================
   LOCKSS Page Layout & UI Redesign 
   ======================================================= */
.page.lockss {
    padding: 30px 20px;
    max-width: 900px;
    /* Lebar ideal untuk membaca */
    margin: 0 auto;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
    color: #444444;
    line-height: 1.8;
}

@media (min-width: 992px) {
    .page.lockss {
        padding: 50px 30px;
    }
}

/* 1. Navigasi Atas (Previous / Next) */
.page.lockss p:first-of-type {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #fbfdfc;
    padding: 12px 25px;
    border-radius: 8px;
    border: 1px dashed #d1e3dd;
    margin-bottom: 10px;
    font-weight: 500;
}

.page.lockss p:first-of-type a.action {
    color: #347663;
    text-decoration: none;
    transition: all 0.3s;
}

.page.lockss p:first-of-type a.action:hover {
    color: #26594a;
    transform: translateX(-4px);
    /* Efek slide */
}

.page.lockss p:first-of-type span.disabled {
    color: #a0aec0;
}

/* 2. Styling Judul (h3) */
.page.lockss h3 {
    color: #2c3e50;
    font-size: 22px;
    font-weight: 700;
    margin-top: 35px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.page.lockss h3::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: #347663;
    border-radius: 2px;
    transition: width 0.4s ease;
}

.page.lockss:hover h3::after {
    width: 100%;
}

.page.lockss h3:hover {
    color: #347663;
}

/* Menyembunyikan elemen usang (br & separator) */
.page.lockss .separator,
.page.lockss br {
    display: none;
}

/* 3. List Interaktif (Cards) */
.page.lockss ul {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 25px 30px;
    margin-top: 10px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-left: 6px solid transparent;
    list-style: none;
}

.page.lockss ul:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(52, 118, 99, 0.12);
    border-left: 6px solid #347663;
}

.page.lockss ul li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.page.lockss ul li:last-child {
    margin-bottom: 0;
}

.page.lockss ul li:hover {
    transform: translateX(8px);
}

.page.lockss ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background-color: #347663;
    border-radius: 3px;
    opacity: 0.8;
    transition: all 0.3s ease;
    transform: rotate(45deg);
}

.page.lockss ul li:hover::before {
    transform: rotate(90deg);
    opacity: 1;
}

.page.lockss ul li a {
    color: #347663;
    text-decoration: none;
    font-weight: 500;
}

.page.lockss ul li a:hover {
    color: #26594a;
    border-bottom: 1px dashed #347663;
}

/* 4. Tabel Metadata Modern */
.page.lockss table.data {
    width: 100%;
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    margin-top: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
}

.page.lockss table.data:hover {
    box-shadow: 0 12px 25px rgba(52, 118, 99, 0.09);
    transform: translateY(-2px);
}

.page.lockss table.data td {
    padding: 18px 20px;
    border-bottom: 1px solid #f5f5f5;
    vertical-align: top;
}

.page.lockss table.data tr:last-child td {
    border-bottom: none;
}

.page.lockss table.data td.label {
    font-weight: 600;
    color: #2c3e50;
    background: #fcfdfd;
    border-right: 1px solid #f5f5f5;
}

.page.lockss table.data td.value {
    color: #555;
    word-break: break-all;
}

.page.lockss table.data td.value a {
    color: #347663;
    text-decoration: none;
    border-bottom: 1px dashed rgba(52, 118, 99, 0.4);
    transition: all 0.2s;
}

.page.lockss table.data td.value a:hover {
    border-bottom: 1px solid #347663;
    color: #26594a;
}

/* 5. Gambar / Emblem Sponsor PKP & LOCKSS */
.page.lockss img {
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 25px;
    margin-bottom: 10px;
}

.page.lockss img:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.12);
}@font-face {
    font-family: "Halyard Text";
    src: url("https://s3-csis-web.s3.ap-southeast-1.amazonaws.com/others/Halyard+Text+Regular.ttf") format("truetype");
}

body {
    font-family: "Halyard Text", sans-serif;
}

.site-footer {
    background: #00857b !important;
}

/* ============================================
   OJS 3 EDITORIAL BOARD PROFILE CARD 
   ============================================ */
/* ============================================
           OJS 3 EDITORIAL BOARD PROFILE CARD
           ============================================ */

:root {
    --card-bg: #fafcfb;
    --card-border: #d4e3dd;
    --card-shadow: rgba(13, 124, 95, 0.08);
    --accent-primary: #0d7c5f;
    --accent-secondary: #0a6349;
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --badge-bg: #f8fafc;
    --badge-border: #e2e8f0;
    --divider: #f1f5f9;
    --avatar-ring: linear-gradient(135deg, #0d7c5f 0%, #2ecc71 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #ffffff;
    color: var(--text-primary);
    line-height: 1.6;
    /*padding: 40px 20px;*/
}

.editorial-board {
    width: 100%;
    box-sizing: border-box;
}

.editorial-board .page-header {
    text-align: center;
    margin-bottom: 50px;
}

.editorial-board .page-header h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.editorial-board .page-header p {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 400;
}

.editorial-board .section-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 48px 0 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent-primary);
    display: inline-block;
}

/* --- Global Badge Style --- */
.editorial-board .profile-id-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: var(--badge-bg);
    border: 1px solid var(--badge-border);
    border-radius: 20px;
    font-size: 12px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 500;
    white-space: nowrap;
}

.editorial-board .profile-id-badge:hover {
    background: rgba(13, 124, 95, 0.05);
    border-color: rgba(13, 124, 95, 0.2);
    color: var(--accent-primary);
    transform: translateY(-1px);
}

.editorial-board .profile-id-badge img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.editorial-board .id-label {
    font-weight: 500;
}

.editorial-board .id-value {
    font-weight: 600;
    color: var(--accent-primary);
    font-family: 'SF Mono', monospace;
    font-size: 11px;
}

.editorial-board .flag {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

/* === STYLE 1: Horizontal Card (Leadership) === */
.editorial-board .profile-card {
    width: 100%;
    box-sizing: border-box;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 24px 32px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 28px;
    box-shadow: 0 4px 12px var(--card-shadow);
    transition: all 0.3s ease;
}

.editorial-board .profile-card:hover {
    box-shadow: 0 10px 30px rgba(13, 124, 95, 0.15);
    border-color: rgba(13, 124, 95, 0.2);
}

.editorial-board .profile-avatar {
    flex-shrink: 0;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    padding: 3px;
    background: var(--avatar-ring);
}

.editorial-board .profile-avatar img {
    width: 104px;
    height: 104px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    background: #fff;
}

.editorial-board .profile-info {
    flex: 1;
}

.editorial-board .profile-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 4px;
}

.editorial-board .profile-role {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.editorial-board .profile-affiliation {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.editorial-board .profile-ids {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

/* === STYLE 2: Vertical Card (Grid) === */
.editorial-board .cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 24px;
}

.editorial-board .profile-card-v {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 4px 12px var(--card-shadow);
    transition: all 0.3s ease;
}

.editorial-board .profile-card-v:hover {
    box-shadow: 0 10px 30px rgba(13, 124, 95, 0.15);
    border-color: rgba(13, 124, 95, 0.2);
    transform: translateY(-2px);
}

.editorial-board .profile-card-v .profile-avatar {
    margin: 0 auto 16px;
    width: 90px;
    height: 90px;
}

.editorial-board .profile-card-v .profile-avatar img {
    width: 84px;
    height: 84px;
}

.editorial-board .profile-card-v .profile-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.editorial-board .profile-card-v .profile-affiliation {
    justify-content: center;
    font-size: 13px;
    margin-bottom: 16px;
}

.editorial-board .profile-card-v .profile-ids {
    justify-content: center;
    gap: 8px;
}

/* === h-index styling === */
.editorial-board .h-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffedd5;
    color: #c2410c;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 6px;
}

/* Responsive */
@media (max-width: 640px) {
    .editorial-board .profile-card {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }

    .editorial-board .profile-affiliation,
    .editorial-board .profile-ids {
        justify-content: center;
    }
}


/* ============================================
   OJS 3 FOCUS AND SCOPE
   ============================================ */

.isr-interactive-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    color: #444444;
    line-height: 1.8;
    background-color: #fbfdfc;
    /* Latar belakang sangat halus */
    padding: 20px;
    border-radius: 12px;
}

/* Card Container */
.isr-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-left: 6px solid transparent;
}

/* Hover Effect: Kartu sedikit terangkat dan memunculkan warna dasar ISR */
.isr-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(52, 118, 99, 0.12);
    border-left: 6px solid #347663;
}

/* Khusus untuk Paragraf Pertama (Intro) */
.isr-card.isr-intro {
    background: linear-gradient(145deg, #ffffff 0%, #f2f8f6 100%);
    border-left: 6px solid #347663;
    font-size: 1.05em;
}

/* Styling Judul / Sub-heading */
.isr-card p strong {
    display: inline-block;
    color: #2c3e50;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    position: relative;
    transition: color 0.3s ease;
}

/* Animasi garis bawah interaktif pada Judul saat kartu di-hover */
.isr-card p strong::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    bottom: -4px;
    left: 0;
    background-color: #347663;
    border-radius: 2px;
    transition: width 0.4s ease;
}

.isr-card:hover p strong {
    color: #347663;
}

.isr-card:hover p strong::after {
    width: 100%;
}

.isr-card p {
    text-align: justify;
    margin-bottom: 15px;
}

.isr-card p:last-child {
    margin-bottom: 0;
}

/* Interactive Bullet Points */
.isr-card ul {
    list-style: none;
    padding-left: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.isr-card ul li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

/* Efek geser kanan saat list disentuh kursor */
.isr-card ul li:hover {
    transform: translateX(8px);
    color: #111;
}

/* Custom Bullet Icon menggunakan CSS */
.isr-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background-color: #347663;
    border-radius: 3px;
    opacity: 0.8;
    transition: all 0.3s ease;
    transform: rotate(45deg);
    /* Membuat bentuk diamond/belah ketupat */
}

.isr-card ul li:hover::before {
    transform: rotate(90deg);
    /* Berputar saat di-hover */
    opacity: 1;
}

/* =======================================================
   Halaman About (Tombol & Badge)
   ======================================================= */

/* Tombol Interaktif untuk Download */
.isr-btn {
    display: inline-block;
    background-color: #347663;
    color: #ffffff !important;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    margin-top: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(52, 118, 99, 0.2);
}

.isr-btn:hover {
    background-color: #26594a;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(52, 118, 99, 0.3);
}

/* Badge untuk ISSN */
.isr-issn-box {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.isr-issn-badge {
    background: #f2f8f6;
    border: 1px solid #d1e3dd;
    color: #347663;
    padding: 10px 15px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
}

/* =======================================================
   Modern & Interactive Submissions Page (OJS 3)
   ======================================================= */

/* 1. Mencegah tampilan dipersempit oleh class col-md-8 bawaan OJS */
.page-submissions .row.justify-content-md-center .col-md-8 {
    flex: 0 0 100%;
    max-width: 100%;
}

@media (min-width: 992px) {
    .page-submissions .row.justify-content-md-center .col-md-8 {
        flex: 0 0 90%;
        /* Memberikan sedikit ruang bernapas di layar besar (tidak 100% mentok kiri-kanan) */
        max-width: 90%;
    }
}

/* 2. Styling Judul Halaman Utama */
.page-submissions .page-header h1 {
    color: #347663;
    font-weight: 800;
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

/* 3. Kotak Alert "Make a new submission" */
.page-submissions .alert.alert-primary {
    background-color: #f2f8f6;
    border: 1px solid #347663;
    border-left: 6px solid #347663;
    color: #2c3e50;
    border-radius: 8px;
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(52, 118, 99, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-submissions .alert.alert-primary a {
    color: #347663;
    text-decoration: none;
    border-bottom: 2px solid rgba(52, 118, 99, 0.3);
    transition: all 0.3s ease;
    margin: 0 5px;
}

.page-submissions .alert.alert-primary a:hover {
    border-bottom-color: #347663;
    color: #26594a;
}

/* 4. Layout Interactive Cards untuk setiap seksi */
.page-submissions .submissions-checklist,
.page-submissions .submissions-author-guidelines,
.page-submissions .submissions-privacy-statement {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 30px;
    margin-top: 25px;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-left: 6px solid transparent;
    color: #444444;
    line-height: 1.8;
}

/* Hover Effect pada masing-masing seksi */
.page-submissions .submissions-checklist:hover,
.page-submissions .submissions-author-guidelines:hover,
.page-submissions .submissions-privacy-statement:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(52, 118, 99, 0.12);
    border-left: 6px solid #347663;
}

/* 5. Styling Judul (H2) di dalam Kartu */
.page-submissions div[class^="submissions-"] h2 {
    color: #2c3e50;
    font-size: 22px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
}

/* Animasi Garis Bawah pada Sub-Judul saat di-hover */
.page-submissions div[class^="submissions-"] h2::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: #347663;
    border-radius: 2px;
    transition: width 0.4s ease;
}

.page-submissions div[class^="submissions-"]:hover h2::after {
    width: 100%;
}

.page-submissions div[class^="submissions-"]:hover h2 {
    color: #347663;
}

/* 6. Perbaikan Format Teks Checklist (Khusus untuk format list yang menumpuk) */
.page-submissions .submissions-checklist ul {
    background: #fbfdfc;
    border: 1px dashed #d1e3dd;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    list-style: none;
    /* Menghapus titik default karena angkanya sudah ada di teks (1), 2), dst) */
}

.page-submissions .submissions-checklist ul li {
    /* white-space pre-line memaksa teks yang dienter di editor OJS agar turun ke bawah secara otomatis */
    white-space: pre-line;
    line-height: 1.8;
}

/* Menyembunyikan tombol Edit bawaan (agar tidak merusak estetika desain) bagi pembaca publik */
.page-submissions .btn-edit-link {
    display: none !important;
}


/* =======================================================
   OJS 3 Submissions

   ======================================================= */

/* =======================================================
   Modern & Interactive Submissions Page (OJS 3)
   ======================================================= */

/* 1. Mencegah tampilan dipersempit oleh class col-md-8 bawaan OJS */
.page-submissions .row.justify-content-md-center .col-md-8 {
    flex: 0 0 100%;
    max-width: 100%;
}

@media (min-width: 992px) {
    .page-submissions .row.justify-content-md-center .col-md-8 {
        flex: 0 0 90%;
        /* Memberikan sedikit ruang bernapas di layar besar (tidak 100% mentok kiri-kanan) */
        max-width: 90%;
    }
}

/* 2. Styling Judul Halaman Utama */
.page-submissions .page-header h1 {
    color: #347663;
    font-weight: 800;
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

/* 3. Kotak Alert "Make a new submission" */
.page-submissions .alert.alert-primary {
    background-color: #f2f8f6;
    border: 1px solid #347663;
    border-left: 6px solid #347663;
    color: #2c3e50;
    border-radius: 8px;
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(52, 118, 99, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-submissions .alert.alert-primary a {
    color: #347663;
    text-decoration: none;
    border-bottom: 2px solid rgba(52, 118, 99, 0.3);
    transition: all 0.3s ease;
    margin: 0 5px;
}

.page-submissions .alert.alert-primary a:hover {
    border-bottom-color: #347663;
    color: #26594a;
}

/* 4. Layout Interactive Cards untuk setiap seksi */
.page-submissions .submissions-checklist,
.page-submissions .submissions-author-guidelines,
.page-submissions .submissions-privacy-statement {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 30px;
    margin-top: 25px;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-left: 6px solid transparent;
    color: #444444;
    line-height: 1.8;
}

/* Hover Effect pada masing-masing seksi */
.page-submissions .submissions-checklist:hover,
.page-submissions .submissions-author-guidelines:hover,
.page-submissions .submissions-privacy-statement:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(52, 118, 99, 0.12);
    border-left: 6px solid #347663;
}

/* 5. Styling Judul (H2) di dalam Kartu */
.page-submissions div[class^="submissions-"] h2 {
    color: #2c3e50;
    font-size: 22px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
}

/* Animasi Garis Bawah pada Sub-Judul saat di-hover */
.page-submissions div[class^="submissions-"] h2::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: #347663;
    border-radius: 2px;
    transition: width 0.4s ease;
}

.page-submissions div[class^="submissions-"]:hover h2::after {
    width: 100%;
}

.page-submissions div[class^="submissions-"]:hover h2 {
    color: #347663;
}

/* 6. Perbaikan Format Teks Checklist (Khusus untuk format list yang menumpuk) */
.page-submissions .submissions-checklist ul {
    background: #fbfdfc;
    border: 1px dashed #d1e3dd;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    list-style: none;
    /* Menghapus titik default karena angkanya sudah ada di teks (1), 2), dst) */
}

.page-submissions .submissions-checklist ul li {
    /* white-space pre-line memaksa teks yang dienter di editor OJS agar turun ke bawah secara otomatis */
    white-space: pre-line;
    line-height: 1.8;
}

/* Menyembunyikan tombol Edit bawaan (agar tidak merusak estetika desain) bagi pembaca publik */
.page-submissions .btn-edit-link {
    display: none !important;
}

/* =======================================================
   LOCKSS Page Layout & UI Redesign 
   ======================================================= */
.page.lockss {
    padding: 30px 20px;
    max-width: 900px;
    /* Lebar ideal untuk membaca */
    margin: 0 auto;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
    color: #444444;
    line-height: 1.8;
}

@media (min-width: 992px) {
    .page.lockss {
        padding: 50px 30px;
    }
}

/* 1. Navigasi Atas (Previous / Next) */
.page.lockss p:first-of-type {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #fbfdfc;
    padding: 12px 25px;
    border-radius: 8px;
    border: 1px dashed #d1e3dd;
    margin-bottom: 10px;
    font-weight: 500;
}

.page.lockss p:first-of-type a.action {
    color: #347663;
    text-decoration: none;
    transition: all 0.3s;
}

.page.lockss p:first-of-type a.action:hover {
    color: #26594a;
    transform: translateX(-4px);
    /* Efek slide */
}

.page.lockss p:first-of-type span.disabled {
    color: #a0aec0;
}

/* 2. Styling Judul (h3) */
.page.lockss h3 {
    color: #2c3e50;
    font-size: 22px;
    font-weight: 700;
    margin-top: 35px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.page.lockss h3::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: #347663;
    border-radius: 2px;
    transition: width 0.4s ease;
}

.page.lockss:hover h3::after {
    width: 100%;
}

.page.lockss h3:hover {
    color: #347663;
}

/* Menyembunyikan elemen usang (br & separator) */
.page.lockss .separator,
.page.lockss br {
    display: none;
}

/* 3. List Interaktif (Cards) */
.page.lockss ul {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 25px 30px;
    margin-top: 10px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-left: 6px solid transparent;
    list-style: none;
}

.page.lockss ul:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(52, 118, 99, 0.12);
    border-left: 6px solid #347663;
}

.page.lockss ul li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.page.lockss ul li:last-child {
    margin-bottom: 0;
}

.page.lockss ul li:hover {
    transform: translateX(8px);
}

.page.lockss ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background-color: #347663;
    border-radius: 3px;
    opacity: 0.8;
    transition: all 0.3s ease;
    transform: rotate(45deg);
}

.page.lockss ul li:hover::before {
    transform: rotate(90deg);
    opacity: 1;
}

.page.lockss ul li a {
    color: #347663;
    text-decoration: none;
    font-weight: 500;
}

.page.lockss ul li a:hover {
    color: #26594a;
    border-bottom: 1px dashed #347663;
}

/* 4. Tabel Metadata Modern */
.page.lockss table.data {
    width: 100%;
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    margin-top: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
}

.page.lockss table.data:hover {
    box-shadow: 0 12px 25px rgba(52, 118, 99, 0.09);
    transform: translateY(-2px);
}

.page.lockss table.data td {
    padding: 18px 20px;
    border-bottom: 1px solid #f5f5f5;
    vertical-align: top;
}

.page.lockss table.data tr:last-child td {
    border-bottom: none;
}

.page.lockss table.data td.label {
    font-weight: 600;
    color: #2c3e50;
    background: #fcfdfd;
    border-right: 1px solid #f5f5f5;
}

.page.lockss table.data td.value {
    color: #555;
    word-break: break-all;
}

.page.lockss table.data td.value a {
    color: #347663;
    text-decoration: none;
    border-bottom: 1px dashed rgba(52, 118, 99, 0.4);
    transition: all 0.2s;
}

.page.lockss table.data td.value a:hover {
    border-bottom: 1px solid #347663;
    color: #26594a;
}

/* 5. Gambar / Emblem Sponsor PKP & LOCKSS */
.page.lockss img {
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 25px;
    margin-bottom: 10px;
}

.page.lockss img:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.12);
}
