.pkp_block {
    /* --- Wadah Utama Blok Konten --- */
    .editor-section,
    .journal-details {
        background-color: #ffffff;
        border-radius: 12px;
        padding: 2rem;
        margin-bottom: 2rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); /* Bayangan yang lebih lembut */
        border: 1px solid #e9ecef;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .editor-section:hover,
    .journal-details:hover {
        transform: translateY(-5px); /* Efek mengangkat saat di-hover */
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    /* --- Judul Setiap Bagian (Publisher, Editorial Board, etc.) --- */
    .section-title {
        font-size: 1.5rem;
        font-weight: 600;
        color: #0d47a1; /* Biru tua */
        margin-bottom: 1.5rem;
        padding-bottom: 0.75rem;
        border-bottom: 2px solid #bbdefb; /* Aksen biru muda */
        display: flex;
        align-items: center;
    }

    .section-title .fa {
        color: #1976d2; /* Biru cerah untuk ikon */
        margin-right: 0.8rem;
        font-size: 1.4rem;
    }

    /* --- Sub-Judul (Address) --- */
    .editor-section h5 {
        font-size: 1.2rem;
        font-weight: 500;
        color: #333;
        margin-top: 1.5rem;
        margin-bottom: 0.5rem;
        display: flex;
        align-items: center;
    }

    .editor-section h5 .fa {
        color: #555;
        margin-right: 0.5rem;
    }

    /* --- Daftar Alamat --- */
    .editor-section ul {
        padding-left: 0.5rem;
    }

    .editor-section ul li {
        margin-bottom: 0.75rem;
        color: #555;
        font-size: 0.95rem;
    }

    .editor-section ul .fa-map-pin {
        color: #ef5350; /* Merah untuk ikon pin lokasi */
        margin-right: 0.6rem;
    }

    /* --- Kartu Profil Dewan Editorial --- */
    .editor-profile {
        background-color: #f8f9fa;
        padding: 1.5rem;
        border-radius: 8px;
        border-left: 4px solid #1976d2; /* Aksen biru untuk Editor-in-Chief */
        margin-bottom: 1.2rem;
    }

    /* Aksen warna berbeda untuk anggota biasa */
    .editor-profile.member {
        border-left-color: #ffca28; /* Aksen emas untuk anggota */
    }

    .editor-profile .name {
        font-size: 1.15rem;
        font-weight: 600;
        color: #0d47a1;
        margin-bottom: 0.25rem;
    }

    .editor-profile .role {
        font-size: 0.9rem;
        font-weight: 500;
        color: #424242;
        margin-bottom: 0.5rem;
        font-style: italic;
    }

    .editor-profile .qualification,
    .editor-profile .affiliation {
        font-size: 0.9rem;
        color: #757575;
        line-height: 1.5;
    }

    .editor-profile .fa {
        margin-right: 0.4rem;
    }

    /* --- Detail Jurnal --- */
    .journal-details p {
        font-size: 1rem;
        color: #444;
        margin-bottom: 1rem;
        border-bottom: 1px dashed #eee;
        padding-bottom: 1rem;
        display: flex;
        align-items: center;
    }

    .journal-details p:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }

    .journal-details .fa {
        width: 25px; /* Agar ikon sejajar */
        color: #1976d2;
        margin-right: 0.8rem;
        text-align: center;
    }

    .journal-details a {
        font-weight: 500;
        color: #0d47a1;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .journal-details a:hover {
        color: #d32f2f; /* Merah saat di-hover */
        text-decoration: underline;
    }

    /* --- Menghapus kelas bawaan jika ada --- */
    .list-unstyled {
        list-style: none;
        padding-left: 0;
    }
}

/* == Other
================================================== */

.obj_article_details {
    .author_bios {
        .affiliation {
            display: none;
        }
    }
}