/*
======================================================================
 IJVEA — Standard JAVIT-Inspired Pink Theme
 Version: 5.0
 Target : Open Journal Systems (OJS) 3.4.x — Default Theme

 Design direction:
 - Keep OJS layout conventions stable
 - Use JAVIT-like clean white masthead + strong navigation bar
 - Professional pink / rose palette
 - Avoid aggressive positioning overrides
 - Responsive and safe for pages with or without sidebar
======================================================================
*/

/* ==============================================================
   1. DESIGN TOKENS
   ============================================================== */
:root {
    --ijvea-pink-900: #7d174f;
    --ijvea-pink-800: #98205f;
    --ijvea-pink-700: #b52d72;
    --ijvea-pink-600: #cf3f84;
    --ijvea-pink-500: #e25597;
    --ijvea-pink-100: #fbe8f2;
    --ijvea-pink-050: #fff6fa;

    --ijvea-text: #30343b;
    --ijvea-muted: #6c737f;
    --ijvea-border: #e3e5e8;
    --ijvea-bg: #f5f6f8;
    --ijvea-white: #ffffff;

    --ijvea-container: 1200px;
    --ijvea-sidebar: 270px;
    --ijvea-gap: 28px;

    --ijvea-radius: 5px;
    --ijvea-shadow: 0 4px 18px rgba(49, 26, 40, 0.06);
}

/* ==============================================================
   2. GLOBAL
   ============================================================== */
html {
    scroll-behavior: smooth;
}
.page_index_journal{
	padding:15px;
}

.pkp_structure_head .pkp_site_name .is_img img {
    display: block;
    width: auto !important;
    height: 160px !important;
    max-width: 520px !important;
    max-height: 160px !important;
    object-fit: contain;
}

body {
    margin: 0;
    background: var(--ijvea-bg);
    color: var(--ijvea-text);
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

a {
    color: var(--ijvea-pink-700);
    text-decoration: none;
    transition: color .18s ease, background-color .18s ease,
                border-color .18s ease, box-shadow .18s ease;
}

a:hover,
a:focus {
    color: var(--ijvea-pink-900);
}

img {
    max-width: 100%;
    height: auto;
}

/* Keep the site centered and proportional */
.pkp_structure_page {
    width: 100%;
    max-width: none;
    margin: 0;
    background: transparent;
}

/* ==============================================================
   3. HEADER / JOURNAL IDENTITY
   JAVIT-inspired: white masthead + strong colored navigation
   ============================================================== */
.pkp_structure_head {
    margin: 0;
    padding: 0;
    background: var(--ijvea-white);
    border: 0;
    box-shadow: 0 2px 10px rgba(40, 24, 34, .06);
}

.pkp_head_wrapper {
    width: 100%;
    max-width: var(--ijvea-container);
    margin: 0 auto;
    padding: 0 24px;
}

/* Journal title */
.pkp_site_name_wrapper {
    min-height: 96px;
    padding: 24px 0 20px;
    display: flex;
    align-items: center;
}

.pkp_site_name {
    margin: 0;
    padding: 0;
}

.pkp_site_name .is_text {
    display: inline-block;
    max-width: 820px;
    margin: 0;
    padding: 0;
    color: #2f2530 !important;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(24px, 2.3vw, 32px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.15px;
    text-shadow: none;
}

/* Small JAVIT-like identity underline */
.pkp_site_name .is_text::after {
    content: "";
    display: block;
    width: 118px;
    height: 3px;
    margin-top: 11px;
    border-radius: 2px;
    background:
        linear-gradient(
            90deg,
            var(--ijvea-pink-500) 0 38%,
            var(--ijvea-pink-900) 38% 100%
        );
}

/* ==============================================================
   4. USER NAVIGATION
   Keep OJS standard positioning; only refine appearance
   ============================================================== */
.pkp_navigation_user_wrapper {
    background: transparent;
}

.pkp_navigation_user > li > a {
    color: var(--ijvea-pink-800);
    font-size: 13px;
    font-weight: 600;
}

.pkp_navigation_user > li > a:hover,
.pkp_navigation_user > li > a:focus {
    color: var(--ijvea-pink-900);
}

/* ==============================================================
   5. PRIMARY NAVIGATION
   ============================================================== */
.pkp_site_nav_menu {
    background: transparent;
}

/* Full colored bar inside the standard OJS header */
.pkp_navigation_primary_row {
    margin-left: -24px;
    margin-right: -24px;
    padding-left: 24px;
    padding-right: 24px;
    background: var(--ijvea-pink-900);
    border-top: 4px solid var(--ijvea-pink-500);
}

.pkp_navigation_primary_wrapper {
    min-height: 50px;
}

.pkp_navigation_primary {
    margin: 0;
}

.pkp_navigation_primary > li > a {
    position: relative;
    padding: 15px 15px;
    color: #fff !important;
    font-size: 13.5px;
    font-weight: 600;
    line-height: 20px;
    border-bottom: 0;
}

.pkp_navigation_primary > li > a:hover,
.pkp_navigation_primary > li > a:focus {
    color: #fff !important;
    background: rgba(255,255,255,.09);
}

/* subtle active / hover marker */
.pkp_navigation_primary > li > a::after {
    content: "";
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 7px;
    height: 2px;
    background: #ffd6e8;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .18s ease;
}

.pkp_navigation_primary > li:hover > a::after,
.pkp_navigation_primary > li > a:focus::after {
    transform: scaleX(1);
}

/* Current archive page */
.pkp_op_archive .pkp_navigation_primary > li > a[href*="/issue/archive"] {
    background: rgba(255,255,255,.11);
}

.pkp_op_archive .pkp_navigation_primary > li > a[href*="/issue/archive"]::after {
    transform: scaleX(1);
}

/* Search */
.pkp_navigation_search_wrapper {
    padding-top: 8px;
}

.pkp_navigation_search_wrapper a {
    color: #fff !important;
    font-size: 12.5px;
    font-weight: 600;
}

.pkp_navigation_search_wrapper a:hover {
    color: #ffd9e9 !important;
}

/* ==============================================================
   6. DROPDOWNS
   ============================================================== */
.pkp_navigation_primary ul,
.pkp_navigation_user ul {
    min-width: 220px;
    padding: 6px 0;
    background: #fff;
    border: 1px solid var(--ijvea-border);
    border-top: 3px solid var(--ijvea-pink-500);
    border-radius: 0 0 5px 5px;
    box-shadow: 0 10px 26px rgba(59, 27, 45, .13);
}

.pkp_navigation_primary ul a,
.pkp_navigation_user ul a {
    display: block;
    padding: 9px 14px;
    color: #3f4248 !important;
    background: #fff;
    border-bottom: 1px solid #f0f0f1;
    font-size: 13px;
    font-weight: 500;
}

.pkp_navigation_primary ul li:last-child a,
.pkp_navigation_user ul li:last-child a {
    border-bottom: 0;
}

.pkp_navigation_primary ul a:hover,
.pkp_navigation_user ul a:hover {
    color: var(--ijvea-pink-900) !important;
    background: var(--ijvea-pink-050);
}

/* ==============================================================
   7. MOBILE MENU BUTTON
   ============================================================== */
.pkp_site_nav_toggle {
    color: #fff;
    background: var(--ijvea-pink-900);
    border: 0;
    border-radius: 4px;
}

.pkp_site_nav_toggle:hover,
.pkp_site_nav_toggle:focus {
    background: var(--ijvea-pink-700);
}

/* ==============================================================
   8. CONTENT LAYOUT
   Conservative flex layout:
   - no sidebar  -> full content
   - left sidebar -> 270px + flexible main
   ============================================================== */
.pkp_structure_content {
    width: calc(100% - 40px);
    max-width: var(--ijvea-container);
    margin: 30px auto 44px;
    padding: 0;
    background: transparent;
}

/* Only apply column layout if OJS actually renders a sidebar */
.pkp_structure_content.has_sidebar {
    display: flex;
    align-items: flex-start;
    gap: var(--ijvea-gap);
}

/* Main */
.pkp_structure_main {
    float: none;
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0;
    background: #fff;
    border: 1px solid var(--ijvea-border);
    border-radius: var(--ijvea-radius);
    box-shadow: var(--ijvea-shadow);
    overflow: hidden;
}

/* When sidebar exists */
.pkp_structure_content.has_sidebar > .pkp_structure_main {
    flex: 1 1 auto;
    width: auto;
    order: 2;
}

/* Left sidebar */
.pkp_structure_content.has_sidebar > .pkp_structure_sidebar.left {
    flex: 0 0 var(--ijvea-sidebar);
    width: var(--ijvea-sidebar);
    order: 1;
}

/* Right/fallback sidebar */
.pkp_structure_content.has_sidebar > .pkp_structure_sidebar:not(.left) {
    flex: 0 0 var(--ijvea-sidebar);
    width: var(--ijvea-sidebar);
    order: 3;
}

/* ==============================================================
   9. PAGE CONTENT
   ============================================================== */
.page {
    margin: 0;
    padding: 30px 34px 38px;
    background: #fff;
}

/* Breadcrumb */
.cmp_breadcrumbs {
    margin: -30px -34px 25px;
    padding: 11px 34px;
    background: #fafafa;
    border-bottom: 1px solid var(--ijvea-border);
    color: var(--ijvea-muted);
    font-size: 12.5px;
}

.cmp_breadcrumbs ol {
    margin: 0;
    padding: 0;
}

.cmp_breadcrumbs a {
    color: var(--ijvea-pink-700);
    font-weight: 600;
}

.cmp_breadcrumbs a:hover {
    color: var(--ijvea-pink-900);
}

.cmp_breadcrumbs .separator {
    padding: 0 7px;
    color: #adb0b6;
}

/* ==============================================================
   10. TYPOGRAPHY
   ============================================================== */
.page h1 {
    position: relative;
    margin: 0 0 25px;
    padding: 0 0 12px;
    color: #342932;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(25px, 2vw, 30px);
    font-weight: 700;
    line-height: 1.25;
    border-bottom: 1px solid var(--ijvea-border);
}

.page h1::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 65px;
    height: 3px;
    background: var(--ijvea-pink-600);
}

.page h2 {
    margin: 28px 0 12px;
    color: var(--ijvea-pink-900);
    font-size: 21px;
    line-height: 1.35;
}

.page h3 {
    margin: 22px 0 10px;
    color: var(--ijvea-pink-800);
    font-size: 17px;
    line-height: 1.4;
}

.page h4 {
    color: #41363f;
}

.page p {
    margin: 0 0 15px;
    color: #40444b;
    font-size: 14.5px;
    line-height: 1.72;
}

/* Avoid forced justified text; easier to read on journal web pages */
.page p,
.obj_article_details .abstract {
    text-align: left;
}

/* ==============================================================
   11. ARCHIVE EMPTY STATE
   ============================================================== */
.page_issue_archive > p {
    margin: 2px 0 0;
    padding: 14px 16px;
    color: #555861;
    background: var(--ijvea-pink-050);
    border: 1px solid #f0dce6;
    border-left: 4px solid var(--ijvea-pink-600);
    border-radius: 3px;
}

/* ==============================================================
   12. SIDEBAR
   ============================================================== */
.pkp_structure_sidebar {
    float: none;
    min-width: 0;
    margin: 0;
    padding: 0;
    background: transparent;
}

.pkp_structure_sidebar .pkp_block {
    margin: 0 0 18px;
    padding: 0;
    background: #fff;
    border: 1px solid var(--ijvea-border);
    border-radius: var(--ijvea-radius);
    box-shadow: 0 3px 12px rgba(59, 27, 45, .045);
    overflow: hidden;
}

.pkp_structure_sidebar .pkp_block .title {
    margin: 0;
    padding: 10px 13px;
    color: #fff;
    background: var(--ijvea-pink-900);
    border: 0;
    border-left: 4px solid var(--ijvea-pink-500);
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1.35;
}

.pkp_structure_sidebar .pkp_block .content {
    margin: 0;
    padding: 11px 13px 13px;
}

.pkp_structure_sidebar .pkp_block ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.pkp_structure_sidebar .pkp_block li {
    margin: 0;
    padding: 7px 0;
    border-bottom: 1px solid #eeeeef;
}

.pkp_structure_sidebar .pkp_block li:last-child {
    border-bottom: 0;
}

.pkp_structure_sidebar .pkp_block a {
    color: #484c53;
    font-size: 13px;
    font-weight: 500;
}

.pkp_structure_sidebar .pkp_block a:hover {
    color: var(--ijvea-pink-700);
}

/* Web-feed icons */
.block_web_feed .content ul {
    display: flex;
    align-items: center;
    gap: 9px;
}

.block_web_feed .content li {
    padding: 0;
    border: 0;
}

.block_web_feed img {
    display: block;
    width: auto;
    height: 25px;
    max-height: 25px;
}

/* Language active state */
.block_language .current a {
    color: var(--ijvea-pink-800) !important;
    font-weight: 700;
}

/* ==============================================================
   13. ISSUE CARDS
   ============================================================== */
.issues_archive {
    margin: 0;
    padding: 0;
    list-style: none;
}

.obj_issue_summary {
    margin: 0 0 20px;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--ijvea-border);
    border-left: 4px solid var(--ijvea-pink-700);
    border-radius: 4px;
    box-shadow: none;
}

.obj_issue_summary:hover {
    border-left-color: var(--ijvea-pink-500);
    box-shadow: 0 4px 14px rgba(59, 27, 45, .07);
}

.obj_issue_summary .title,
.obj_issue_summary .title a {
    color: #382d36;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
}

.obj_issue_summary .title a:hover {
    color: var(--ijvea-pink-700);
}

/* ==============================================================
   14. ARTICLE CARDS
   ============================================================== */
.obj_article_summary {
    margin: 0 0 18px;
    padding: 17px 18px;
    background: #fff;
    border: 1px solid var(--ijvea-border);
    border-left: 4px solid var(--ijvea-pink-700);
    border-radius: 4px;
    box-shadow: none;
}

.obj_article_summary:hover {
    border-left-color: var(--ijvea-pink-500);
    box-shadow: 0 4px 14px rgba(59, 27, 45, .07);
}

.obj_article_summary .title a {
    color: #382d36;
    font-size: 15.5px;
    font-weight: 700;
    line-height: 1.48;
}

.obj_article_summary .title a:hover {
    color: var(--ijvea-pink-700);
}

.obj_article_summary .authors {
    color: #5d626b;
    font-size: 13px;
}

.obj_article_summary .pages {
    color: #82868e;
    font-size: 12.5px;
}

/* ==============================================================
   15. ARTICLE DETAIL
   ============================================================== */
.obj_article_details .page_title,
.obj_article_details .title {
    color: #382d36;
}

.obj_article_details .label {
    color: var(--ijvea-pink-900);
    font-weight: 700;
}

.obj_article_details .abstract {
    line-height: 1.75;
}

/* ==============================================================
   16. BUTTONS / GALLEYS
   ============================================================== */
.cmp_button,
.obj_galley_link,
a.obj_galley_link {
    display: inline-block;
    padding: 7px 12px;
    color: #fff !important;
    background: var(--ijvea-pink-800);
    border: 1px solid var(--ijvea-pink-800);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.25;
}

.cmp_button:hover,
.obj_galley_link:hover,
a.obj_galley_link:hover {
    color: #fff !important;
    background: var(--ijvea-pink-600);
    border-color: var(--ijvea-pink-600);
}

/* ==============================================================
   17. FORMS
   ============================================================== */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="url"],
textarea,
select {
    max-width: 100%;
    padding: 9px 10px;
    color: var(--ijvea-text);
    background: #fff;
    border: 1px solid #cfd3d8;
    border-radius: 4px;
    font: inherit;
    outline: none;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--ijvea-pink-600);
    box-shadow: 0 0 0 3px rgba(207, 63, 132, .10);
}

/* ==============================================================
   18. TABLES
   ============================================================== */
.page table {
    width: 100%;
    margin: 18px 0;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid var(--ijvea-border);
    font-size: 13px;
}

.page table th {
    padding: 10px 11px;
    color: #fff;
    background: var(--ijvea-pink-900);
    border: 1px solid var(--ijvea-pink-900);
    text-align: left;
    vertical-align: top;
}

.page table td {
    padding: 9px 11px;
    border: 1px solid var(--ijvea-border);
    vertical-align: top;
}

.page table tr:nth-child(even) td {
    background: #fcfafb;
}

/* ==============================================================
   19. TASK BADGE
   ============================================================== */
.task_count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 19px;
    height: 19px;
    margin-left: 5px;
    padding: 0 5px;
    color: #fff;
    background: var(--ijvea-pink-600);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
}

/* ==============================================================
   20. FOOTER
   ============================================================== */
.pkp_structure_footer_wrapper {
    margin: 0;
    background: #4b2038;
    border-top: 4px solid var(--ijvea-pink-500);
}

.pkp_structure_footer {
    width: 100%;
    max-width: var(--ijvea-container);
    min-height: 92px;
    margin: 0 auto;
    padding: 24px;
    color: rgba(255,255,255,.84);
}

.pkp_structure_footer a {
    color: #fff;
}

.pkp_structure_footer a:hover {
    color: #ffd7e8;
}

.pkp_brand_footer {
    margin: 0;
}

.pkp_brand_footer img {
    display: block;
    width: auto;
    max-width: 180px;
    max-height: 45px;
    padding: 5px 8px;
    background: #fff;
    border-radius: 3px;
}

/* ==============================================================
   21. ACCESSIBILITY
   ============================================================== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--ijvea-pink-500);
    outline-offset: 2px;
}

/* ==============================================================
   22. MEDIUM DESKTOP
   ============================================================== */
@media (max-width: 1100px) {
    :root {
        --ijvea-sidebar: 245px;
        --ijvea-gap: 22px;
    }

    .pkp_structure_content {
        width: calc(100% - 32px);
    }

    .pkp_navigation_primary > li > a {
        padding-left: 12px;
        padding-right: 12px;
    }
}

/* ==============================================================
   23. TABLET
   Do NOT force OJS nav open/closed state.
   Only change proportions when it is displayed.
   ============================================================== */
@media (max-width: 991px) {
    .pkp_head_wrapper {
        padding-left: 18px;
        padding-right: 18px;
    }

    .pkp_site_name_wrapper {
        min-height: 84px;
        padding-top: 18px;
        padding-bottom: 16px;
    }

    .pkp_site_name .is_text {
        padding-right: 52px;
        font-size: clamp(21px, 4vw, 27px);
    }

    .pkp_navigation_primary_row {
        margin-left: -18px;
        margin-right: -18px;
        padding-left: 0;
        padding-right: 0;
    }

    .pkp_navigation_primary > li > a {
        padding: 11px 18px;
        border-bottom: 1px solid rgba(255,255,255,.10);
    }

    .pkp_navigation_primary > li > a::after {
        display: none;
    }

    .pkp_structure_content,
    .pkp_structure_content.has_sidebar {
        width: calc(100% - 28px);
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .pkp_structure_content.has_sidebar > .pkp_structure_main {
        width: 100%;
        order: 1;
    }

    .pkp_structure_content.has_sidebar > .pkp_structure_sidebar {
        width: 100%;
        flex-basis: auto;
        order: 2;
    }

    .pkp_structure_sidebar {
        width: 100%;
    }
}

/* ==============================================================
   24. MOBILE
   ============================================================== */
@media (max-width: 600px) {
    body {
        font-size: 14px;
    }

    .pkp_head_wrapper {
        padding-left: 14px;
        padding-right: 14px;
    }

    .pkp_site_name_wrapper {
        min-height: 76px;
        padding-top: 15px;
        padding-bottom: 13px;
    }

    .pkp_site_name .is_text {
        font-size: 20px;
        line-height: 1.2;
    }

    .pkp_site_name .is_text::after {
        width: 86px;
        margin-top: 9px;
    }

    .pkp_navigation_primary_row {
        margin-left: -14px;
        margin-right: -14px;
    }

    .pkp_structure_content,
    .pkp_structure_content.has_sidebar {
        width: calc(100% - 20px);
        margin-top: 14px;
        margin-bottom: 28px;
    }

    .page {
        padding: 22px 17px 28px;
    }

    .cmp_breadcrumbs {
        margin: -22px -17px 21px;
        padding: 10px 17px;
    }

    .page h1 {
        margin-bottom: 20px;
        font-size: 24px;
    }

    .page h2 {
        font-size: 19px;
    }

    .page h3 {
        font-size: 16px;
    }

    .page p {
        font-size: 14px;
        line-height: 1.68;
    }

    .page table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .pkp_structure_footer {
        padding: 22px 16px;
    }
}

/* ==============================================================
   25. PRINT
   ============================================================== */
@media print {
    body {
        background: #fff;
        color: #000;
    }

    .pkp_structure_head,
    .pkp_structure_sidebar,
    .pkp_structure_footer_wrapper,
    .cmp_breadcrumbs {
        display: none !important;
    }

    .pkp_structure_content,
    .pkp_structure_main,
    .page {
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 0 !important;
        border: 0 !important;
        box-shadow: none !important;
    }
}
/* =========================================================
   IJVEA CUSTOM SIDEBAR BLOCKS
   ========================================================= */

.ijvea-block {
  color: #334155;
  font-size: 0.9rem;
  line-height: 1.6;
}

.ijvea-block p {
  margin-top: 0;
  margin-bottom: 14px;
}

.ijvea-block-title {
  position: relative;
  margin: 0 0 16px;
  padding-bottom: 10px;
  color: #0a2e73;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.35;
}

.ijvea-block-title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 46px;
  height: 3px;
  background: #f97316;
  border-radius: 10px;
  content: "";
}

/* Button */

.ijvea-block-button {
  display: block;
  box-sizing: border-box;
  width: 100%;
  padding: 11px 14px;
  color: #ffffff !important;
  background:
    linear-gradient(
      135deg,
      #f97316,
      #e85d04
    );
  border-radius: 7px;
  box-shadow: 0 6px 14px rgba(249, 115, 22, 0.2);
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.ijvea-block-button:hover,
.ijvea-block-button:focus {
  color: #ffffff !important;
  box-shadow: 0 9px 18px rgba(249, 115, 22, 0.27);
  transform: translateY(-2px);
}

/* Submission links */

.ijvea-block-secondary-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 10px;
}

.ijvea-block-secondary-links a {
  display: block;
  padding: 7px 8px;
  color: #1246a3;
  background: #eef4ff;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
}

/* Journal data */

.ijvea-journal-data {
  margin: 0;
}

.ijvea-journal-data > div {
  padding: 9px 0;
  border-bottom: 1px solid #e2e8f0;
}

.ijvea-journal-data > div:first-child {
  padding-top: 0;
}

.ijvea-journal-data > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.ijvea-journal-data dt {
  margin-bottom: 2px;
  color: #64748b;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ijvea-journal-data dd {
  margin: 0;
  color: #172033;
  font-weight: 650;
  line-height: 1.45;
}

/* Quick links */

.ijvea-block-links,
.ijvea-indexing-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ijvea-block-links li,
.ijvea-indexing-list li {
  border-bottom: 1px solid #e2e8f0;
}

.ijvea-block-links li:last-child,
.ijvea-indexing-list li:last-child {
  border-bottom: 0;
}

.ijvea-block-links a,
.ijvea-indexing-list a {
  position: relative;
  display: block;
  padding: 9px 20px 9px 0;
  color: #334155;
  font-weight: 650;
}

.ijvea-block-links a::after,
.ijvea-indexing-list a::after {
  position: absolute;
  top: 50%;
  right: 2px;
  color: #f97316;
  content: "›";
  font-size: 1.2rem;
  transform: translateY(-50%);
}

.ijvea-block-links a:hover,
.ijvea-block-links a:focus,
.ijvea-indexing-list a:hover,
.ijvea-indexing-list a:focus {
  color: #1246a3;
}

/* Contact */

.ijvea-contact-data {
  display: grid;
  gap: 6px;
  margin: 0 0 13px;
  font-style: normal;
}

.ijvea-contact-data strong {
  color: #0a2e73;
}

.ijvea-contact-data span {
  display: block;
}

.ijvea-contact-data a {
  overflow-wrap: anywhere;
}

/* Publisher */

.ijvea-publisher-block {
  text-align: center;
}

.ijvea-publisher-block .ijvea-block-title {
  text-align: left;
}

.ijvea-publisher-logo {
  display: block;
  width: auto;
  max-width: 210px;
  max-height: 110px;
  margin: 0 auto 14px;
  object-fit: contain;
}

.ijvea-publisher-block p {
  text-align: left;
}

/* Text link */

.ijvea-block-text-link {
  display: inline-block;
  color: #1246a3;
  font-weight: 750;
}

.ijvea-block-text-link:hover,
.ijvea-block-text-link:focus {
  color: #d95b0b;
}

/* OJS wrapper */

.pkp_structure_sidebar .pkp_block {
  overflow: hidden;
  margin-bottom: 20px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid #dce3ed;
  border-top: 4px solid #1246a3;
  border-radius: 10px;
  box-shadow: 0 7px 20px rgba(15, 46, 115, 0.07);
}

.pkp_structure_sidebar .pkp_block:hover {
  border-top-color: #f97316;
}
/* =========================================================
   IJVEA PUBLICATION ETHICS PAGE
   ========================================================= */

.ijvea-policy-meta {
  margin-top: 14px;
  color: #64748b;
  font-size: 0.86rem;
}

.ijvea-policy-toc {
  margin-bottom: 24px;
  padding: 24px;
  background: #f8fafc;
  border: 1px solid #dce3ed;
  border-radius: 10px;
}

.ijvea-policy-toc h2 {
  margin: 0 0 14px;
  color: #0a2e73;
  font-size: 1.2rem;
}

.ijvea-policy-toc ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 28px;
  margin: 0;
  padding-left: 22px;
}

.ijvea-policy-toc li {
  color: #f97316;
  font-weight: 700;
}

.ijvea-policy-toc a {
  color: #1246a3;
  font-weight: 650;
}

.ijvea-policy-toc a:hover,
.ijvea-policy-toc a:focus {
  color: #d95b0b;
  text-decoration: underline;
}

.ijvea-policy-section {
  scroll-margin-top: 100px;
}

.ijvea-policy-section h3 {
  margin-top: 24px;
  margin-bottom: 10px;
  color: #1246a3;
  font-size: 1.05rem;
}

.ijvea-policy-section ol,
.ijvea-policy-section ul {
  padding-left: 24px;
}

.ijvea-policy-section li {
  margin-bottom: 8px;
}

.ijvea-notice-info {
  margin-top: 18px;
  color: #0c4a6e;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
}

.ijvea-contact-box {
  margin-top: 16px;
  padding: 20px;
  background: #eef4ff;
  border: 1px solid #bfdbfe;
  border-left: 5px solid #1246a3;
  border-radius: 8px;
}

.ijvea-contact-box p:last-child {
  margin-bottom: 0;
}

.ijvea-policy-closing {
  border-left: 5px solid #f97316;
}

@media (max-width: 700px) {
  .ijvea-policy-toc ol {
    grid-template-columns: 1fr;
  }
}
/* =========================================================
   IJVEA PEER REVIEW PROCESS PAGE
   ========================================================= */

.ijvea-review-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.ijvea-review-summary-item {
  min-height: 92px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid #dce3ed;
  border-top: 4px solid #1246a3;
  border-radius: 9px;
  box-shadow: 0 6px 18px rgba(15, 46, 115, 0.05);
}

.ijvea-review-summary-label {
  display: block;
  margin-bottom: 6px;
  color: #64748b;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ijvea-review-summary-item strong {
  display: block;
  color: #0a2e73;
  font-size: 0.95rem;
  line-height: 1.45;
}

/* Review workflow */

.ijvea-review-steps {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.ijvea-review-steps > li {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  margin-bottom: 12px;
  padding: 18px;
  background: #f8fafc;
  border: 1px solid #dce3ed;
  border-radius: 9px;
}

.ijvea-review-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: #ffffff;
  background: #1246a3;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 850;
}

.ijvea-review-steps > li:nth-child(even)
.ijvea-review-step-number {
  background: #f97316;
}

.ijvea-review-steps h3 {
  margin-top: 0;
  margin-bottom: 5px;
}

.ijvea-review-steps p {
  margin: 0;
}

/* Review criteria */

.ijvea-review-criteria-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
  margin-bottom: 24px;
}

.ijvea-review-criterion {
  padding: 18px;
  background: #f8fafc;
  border: 1px solid #dce3ed;
  border-left: 4px solid #1246a3;
  border-radius: 8px;
}

.ijvea-review-criterion:nth-child(even) {
  border-left-color: #f97316;
}

.ijvea-review-criterion h3 {
  margin-top: 0;
  margin-bottom: 7px;
}

.ijvea-review-criterion p {
  margin: 0;
}

/* Review timeline */

.ijvea-review-time-table {
  margin: 18px 0;
  border: 1px solid #dce3ed;
  border-radius: 9px;
  overflow: hidden;
}

.ijvea-review-time-table > div {
  display: grid;
  grid-template-columns: minmax(230px, 1fr) 1fr;
  border-bottom: 1px solid #dce3ed;
}

.ijvea-review-time-table > div:last-child {
  border-bottom: 0;
}

.ijvea-review-time-table dt,
.ijvea-review-time-table dd {
  margin: 0;
  padding: 13px 16px;
}

.ijvea-review-time-table dt {
  color: #0a2e73;
  background: #f8fafc;
  font-weight: 750;
}

.ijvea-review-time-table dd {
  background: #ffffff;
}

/* Editorial decisions */

.ijvea-decision-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  margin-bottom: 22px;
}

.ijvea-decision-card {
  padding: 18px;
  background: #ffffff;
  border: 1px solid #dce3ed;
  border-left: 5px solid #1246a3;
  border-radius: 8px;
}

.ijvea-decision-card:nth-child(2) {
  border-left-color: #16a34a;
}

.ijvea-decision-card:nth-child(3) {
  border-left-color: #f59e0b;
}

.ijvea-decision-card:nth-child(4) {
  border-left-color: #ea580c;
}

.ijvea-decision-card:nth-child(5) {
  border-left-color: #dc2626;
}

.ijvea-decision-card h3 {
  margin-top: 0;
  margin-bottom: 6px;
}

.ijvea-decision-card p {
  margin: 0;
}

/* Notice variation */

.ijvea-notice-warning {
  margin-top: 18px;
  color: #78350f;
  background: #fffbeb;
  border: 1px solid #fde68a;
}

@media (max-width: 900px) {
  .ijvea-review-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 650px) {
  .ijvea-review-summary,
  .ijvea-review-criteria-grid {
    grid-template-columns: 1fr;
  }

  .ijvea-review-steps > li {
    grid-template-columns: 42px 1fr;
    gap: 12px;
    padding: 15px;
  }

  .ijvea-review-step-number {
    width: 38px;
    height: 38px;
  }

  .ijvea-review-time-table > div {
    grid-template-columns: 1fr;
  }

  .ijvea-review-time-table dd {
    padding-top: 6px;
  }
}
/* =========================================================
   IJVEA PLAGIARISM POLICY PAGE
   ========================================================= */

.ijvea-plagiarism-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.ijvea-plagiarism-summary-item {
  min-height: 94px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid #dce3ed;
  border-top: 4px solid #1246a3;
  border-radius: 9px;
  box-shadow: 0 6px 18px rgba(15, 46, 115, 0.05);
}

.ijvea-plagiarism-summary-item:nth-child(even) {
  border-top-color: #f97316;
}

.ijvea-plagiarism-summary-label {
  display: block;
  margin-bottom: 6px;
  color: #64748b;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ijvea-plagiarism-summary-item strong {
  display: block;
  color: #0a2e73;
  font-size: 0.94rem;
  line-height: 1.45;
}

/* Screening stages */

.ijvea-screening-steps {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.ijvea-screening-steps > li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 15px;
  margin-bottom: 12px;
  padding: 18px;
  background: #f8fafc;
  border: 1px solid #dce3ed;
  border-radius: 9px;
}

.ijvea-screening-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: #ffffff;
  background: #1246a3;
  border-radius: 50%;
  font-weight: 850;
}

.ijvea-screening-steps > li:nth-child(even)
.ijvea-screening-step-number {
  background: #f97316;
}

.ijvea-screening-steps h3 {
  margin-top: 0;
  margin-bottom: 5px;
}

.ijvea-screening-steps p {
  margin: 0;
}

/* Plagiarism types */

.ijvea-plagiarism-type-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0 26px;
}

.ijvea-plagiarism-type {
  padding: 18px;
  background: #f8fafc;
  border: 1px solid #dce3ed;
  border-left: 4px solid #1246a3;
  border-radius: 8px;
}

.ijvea-plagiarism-type:nth-child(even) {
  border-left-color: #f97316;
}

.ijvea-plagiarism-type h3 {
  margin-top: 0;
  margin-bottom: 7px;
}

.ijvea-plagiarism-type p {
  margin: 0;
}

/* Assessment procedure */

.ijvea-assessment-procedure {
  margin: 18px 0;
  padding: 0;
  list-style: none;
  counter-reset: assessment-step;
}

.ijvea-assessment-procedure > li {
  position: relative;
  margin-bottom: 10px;
  padding: 14px 16px 14px 54px;
  background: #f8fafc;
  border: 1px solid #dce3ed;
  border-radius: 8px;
  counter-increment: assessment-step;
}

.ijvea-assessment-procedure > li::before {
  position: absolute;
  top: 13px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 29px;
  height: 29px;
  color: #ffffff;
  background: #1246a3;
  border-radius: 50%;
  content: counter(assessment-step);
  font-size: 0.82rem;
  font-weight: 800;
}

/* Editorial action cards */

.ijvea-action-levels {
  display: grid;
  gap: 16px;
  margin: 20px 0;
}

.ijvea-action-card {
  padding: 20px;
  background: #ffffff;
  border: 1px solid #dce3ed;
  border-left-width: 6px;
  border-radius: 9px;
}

.ijvea-action-minor {
  border-left-color: #16a34a;
}

.ijvea-action-moderate {
  border-left-color: #f59e0b;
}

.ijvea-action-serious {
  border-left-color: #dc2626;
}

.ijvea-action-label {
  display: inline-block;
  margin-bottom: 7px;
  padding: 4px 9px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ijvea-action-minor .ijvea-action-label {
  color: #166534;
  background: #dcfce7;
}

.ijvea-action-moderate .ijvea-action-label {
  color: #92400e;
  background: #fef3c7;
}

.ijvea-action-serious .ijvea-action-label {
  color: #991b1b;
  background: #fee2e2;
}

.ijvea-action-card h3 {
  margin-top: 0;
  margin-bottom: 8px;
}

/* Responsive */

@media (max-width: 900px) {
  .ijvea-plagiarism-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 650px) {
  .ijvea-plagiarism-summary,
  .ijvea-plagiarism-type-grid {
    grid-template-columns: 1fr;
  }

  .ijvea-screening-steps > li {
    grid-template-columns: 42px 1fr;
    gap: 11px;
    padding: 15px;
  }

  .ijvea-screening-step-number {
    width: 38px;
    height: 38px;
  }
}
/* =========================================================
   IJVEA ARTIFICIAL INTELLIGENCE USAGE POLICY
   ========================================================= */

/* Summary cards */

.ijvea-ai-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.ijvea-ai-summary-item {
  min-height: 94px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid #dce3ed;
  border-top: 4px solid #1246a3;
  border-radius: 9px;
  box-shadow: 0 6px 18px rgba(15, 46, 115, 0.05);
}

.ijvea-ai-summary-item:nth-child(even) {
  border-top-color: #f97316;
}

.ijvea-ai-summary-label {
  display: block;
  margin-bottom: 6px;
  color: #64748b;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ijvea-ai-summary-item strong {
  display: block;
  color: #0a2e73;
  font-size: 0.94rem;
  line-height: 1.45;
}

/* Permitted and disclosed uses */

.ijvea-ai-use-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 20px 0 24px;
}

.ijvea-ai-use-card {
  padding: 19px;
  background: #ffffff;
  border: 1px solid #dce3ed;
  border-left: 5px solid #16a34a;
  border-radius: 9px;
}

.ijvea-ai-use-card.ijvea-ai-disclose {
  border-left-color: #f97316;
}

.ijvea-ai-use-card h3 {
  margin-top: 0;
  margin-bottom: 7px;
}

.ijvea-ai-use-card p {
  margin: 0;
}

.ijvea-ai-use-label {
  display: inline-block;
  margin-bottom: 9px;
  padding: 4px 9px;
  border-radius: 20px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ijvea-ai-permitted .ijvea-ai-use-label {
  color: #166534;
  background: #dcfce7;
}

.ijvea-ai-disclose .ijvea-ai-use-label {
  color: #9a3412;
  background: #ffedd5;
}

/* Disclosure examples */

.ijvea-ai-example {
  margin: 16px 0;
  padding: 18px;
  background: #f8fafc;
  border: 1px solid #dce3ed;
  border-left: 5px solid #1246a3;
  border-radius: 8px;
}

.ijvea-ai-example p {
  margin-top: 0;
}

.ijvea-ai-example blockquote {
  margin: 10px 0 0;
  padding: 15px 18px;
  color: #334155;
  background: #ffffff;
  border-left: 4px solid #f97316;
  font-style: italic;
}

/* Prohibited uses */

.ijvea-ai-prohibited-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 20px 0;
}

.ijvea-ai-prohibited-card {
  padding: 18px;
  background: #fff7f7;
  border: 1px solid #fecaca;
  border-left: 5px solid #dc2626;
  border-radius: 8px;
}

.ijvea-ai-prohibited-card h3 {
  margin-top: 0;
  margin-bottom: 7px;
  color: #991b1b;
}

.ijvea-ai-prohibited-card p {
  margin: 0;
}

/* Assessment steps */

.ijvea-ai-assessment-steps {
  margin: 18px 0;
  padding: 0;
  list-style: none;
  counter-reset: ai-assessment-step;
}

.ijvea-ai-assessment-steps > li {
  position: relative;
  margin-bottom: 10px;
  padding: 14px 16px 14px 55px;
  background: #f8fafc;
  border: 1px solid #dce3ed;
  border-radius: 8px;
  counter-increment: ai-assessment-step;
}

.ijvea-ai-assessment-steps > li::before {
  position: absolute;
  top: 13px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 29px;
  height: 29px;
  color: #ffffff;
  background: #1246a3;
  border-radius: 50%;
  content: counter(ai-assessment-step);
  font-size: 0.82rem;
  font-weight: 800;
}

/* Responsive */

@media (max-width: 900px) {
  .ijvea-ai-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 650px) {
  .ijvea-ai-summary,
  .ijvea-ai-use-grid,
  .ijvea-ai-prohibited-grid {
    grid-template-columns: 1fr;
  }

  .ijvea-ai-example blockquote {
    padding: 13px;
  }
}

/* =========================================================
   IJVEA FINAL HEADER AND FOOTER — REVISION 2
   Target: OJS 3.4.x Default Theme
   ========================================================= */

/* ---------------------------------------------------------
   HEADER / LOGO
   --------------------------------------------------------- */

.pkp_structure_head {
    background: #ffffff;
}

.pkp_site_name_wrapper {
    display: flex;
    align-items: center;
    min-height: 0 !important;
    padding: 12px 0 10px !important;
}

.pkp_site_name,
.pkp_site_name .is_img {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0;
}

.pkp_structure_head .pkp_site_name .is_img img {
    display: block;
    width: auto !important;
    height: 150px !important;
    max-width: 500px !important;
    max-height: 150px !important;
    object-fit: contain;
}

.pkp_navigation_primary_row {
    margin-top: 0 !important;
}

/* ---------------------------------------------------------
   FOOTER SHELL
   --------------------------------------------------------- */

.pkp_structure_footer_wrapper {
    margin: 0 !important;
    background: #4b2038 !important;
    border-top: 3px solid var(--ijvea-pink-500) !important;
}

.pkp_structure_footer {
    position: relative !important;
    display: block !important;
    width: calc(100% - 40px) !important;
    max-width: 1100px !important;
    min-height: 0 !important;
    margin: 0 auto !important;
    padding: 28px 24px 20px !important;
    color: rgba(255, 255, 255, 0.86) !important;
}

.pkp_structure_footer .pkp_footer_content {
    float: none !important;
    clear: both !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    columns: initial !important;
    column-count: initial !important;
    column-width: auto !important;
    column-gap: normal !important;
}

/*
   Struktur footer yang sedang dirender OJS terdiri dari lima blok utama:
   1) judul About, 2) deskripsi About, 3) Journal,
   4) Policies, dan 5) Authors. Judul About disatukan kembali
   dengan deskripsinya agar keempat bagian sejajar dalam empat kolom.
*/
.pkp_structure_footer .pkp_footer_content > div:first-child {
    display: grid !important;
    grid-template-columns:
        minmax(250px, 1.35fr)
        repeat(3, minmax(145px, 1fr)) !important;
    grid-auto-flow: row !important;
    align-items: start !important;
    column-gap: 42px !important;
    row-gap: 18px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    columns: initial !important;
    column-count: initial !important;
}

/* Jangan meratakan wrapper menjadi display:contents. */
.pkp_structure_footer .pkp_footer_content > div:first-child > div,
.pkp_structure_footer .pkp_footer_content > div:first-child > section,
.pkp_structure_footer .pkp_footer_content > div:first-child > nav {
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Susunan aktual dari editor footer: paragraf 1–5. */
.pkp_structure_footer .pkp_footer_content > div:first-child > p:nth-child(1) {
    display: none !important;
}

.pkp_structure_footer .pkp_footer_content > div:first-child > p:nth-child(2) {
    grid-column: 1 !important;
    grid-row: 1 !important;
}

.pkp_structure_footer .pkp_footer_content > div:first-child > p:nth-child(2)::before {
    display: block;
    margin: 0 0 8px;
    color: #ffffff;
    content: "About IJVEA";
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
}

.pkp_structure_footer .pkp_footer_content > div:first-child > p:nth-child(3) {
    grid-column: 2 !important;
    grid-row: 1 !important;
}

.pkp_structure_footer .pkp_footer_content > div:first-child > p:nth-child(4) {
    grid-column: 3 !important;
    grid-row: 1 !important;
}

.pkp_structure_footer .pkp_footer_content > div:first-child > p:nth-child(5) {
    grid-column: 4 !important;
    grid-row: 1 !important;
}

/* Copyright jika berada sebagai paragraf keenam di dalam wrapper. */
.pkp_structure_footer .pkp_footer_content > div:first-child > p:nth-child(n+6) {
    grid-column: 1 / -1 !important;
    grid-row: auto !important;
    width: 100% !important;
    margin: 2px 0 0 !important;
    padding: 13px 105px 0 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.16) !important;
    color: rgba(255, 255, 255, 0.70) !important;
    font-size: 12px !important;
    line-height: 1.5 !important;
}

/* Copyright jika ditempatkan OJS di luar wrapper pertama. */
.pkp_structure_footer .pkp_footer_content > div:first-child + p,
.pkp_structure_footer .pkp_footer_content > p:last-child {
    display: block !important;
    width: 100% !important;
    margin: 20px 0 0 !important;
    padding: 13px 105px 0 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.16) !important;
    color: rgba(255, 255, 255, 0.70) !important;
    font-size: 12px !important;
    line-height: 1.5 !important;
}

/* Fallback jika editor memakai empat wrapper bagian yang terpisah. */
.pkp_structure_footer .pkp_footer_content > div:first-child > div:nth-child(1),
.pkp_structure_footer .pkp_footer_content > div:first-child > section:nth-child(1),
.pkp_structure_footer .pkp_footer_content > div:first-child > nav:nth-child(1) {
    grid-column: 1 !important;
    grid-row: 1 !important;
}

.pkp_structure_footer .pkp_footer_content > div:first-child > div:nth-child(2),
.pkp_structure_footer .pkp_footer_content > div:first-child > section:nth-child(2),
.pkp_structure_footer .pkp_footer_content > div:first-child > nav:nth-child(2) {
    grid-column: 2 !important;
    grid-row: 1 !important;
}

.pkp_structure_footer .pkp_footer_content > div:first-child > div:nth-child(3),
.pkp_structure_footer .pkp_footer_content > div:first-child > section:nth-child(3),
.pkp_structure_footer .pkp_footer_content > div:first-child > nav:nth-child(3) {
    grid-column: 3 !important;
    grid-row: 1 !important;
}

.pkp_structure_footer .pkp_footer_content > div:first-child > div:nth-child(4),
.pkp_structure_footer .pkp_footer_content > div:first-child > section:nth-child(4),
.pkp_structure_footer .pkp_footer_content > div:first-child > nav:nth-child(4) {
    grid-column: 4 !important;
    grid-row: 1 !important;
}

/* ---------------------------------------------------------
   FOOTER TYPOGRAPHY
   --------------------------------------------------------- */

.pkp_structure_footer .pkp_footer_content h2,
.pkp_structure_footer .pkp_footer_content h3,
.pkp_structure_footer .pkp_footer_content h4 {
    margin: 0 0 8px !important;
    padding: 0 !important;
    color: #ffffff !important;
    background: transparent !important;
    border: 0 !important;
    font-family: "Segoe UI", Arial, Helvetica, sans-serif !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
}

.pkp_structure_footer .pkp_footer_content h2::after,
.pkp_structure_footer .pkp_footer_content h3::after,
.pkp_structure_footer .pkp_footer_content h4::after {
    display: none !important;
    content: none !important;
}

.pkp_structure_footer .pkp_footer_content p {
    margin: 0 !important;
    padding: 0 !important;
    color: rgba(255, 255, 255, 0.86) !important;
    font-size: 12.5px !important;
    line-height: 1.7 !important;
}

/* Judul yang dibuat dengan elemen strong pada editor OJS. */
.pkp_structure_footer .pkp_footer_content p > strong:first-child {
    display: block !important;
    margin: 0 0 7px !important;
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
}

.pkp_structure_footer .pkp_footer_content ul,
.pkp_structure_footer .pkp_footer_content ol {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.pkp_structure_footer .pkp_footer_content li {
    margin: 0 0 6px !important;
    padding: 0 !important;
    color: rgba(255, 255, 255, 0.86) !important;
    border: 0 !important;
    font-size: 12.5px !important;
    line-height: 1.45 !important;
}

.pkp_structure_footer .pkp_footer_content li:last-child {
    margin-bottom: 0 !important;
}

.pkp_structure_footer .pkp_footer_content li::marker {
    content: "";
}

.pkp_structure_footer .pkp_footer_content a {
    display: inline-block !important;
    color: rgba(255, 255, 255, 0.92) !important;
    font-size: 12.5px !important;
    line-height: 1.55 !important;
    text-decoration: none !important;
}

.pkp_structure_footer .pkp_footer_content a:hover,
.pkp_structure_footer .pkp_footer_content a:focus {
    color: #ffd7e8 !important;
    text-decoration: underline !important;
}

/* ---------------------------------------------------------
   OJS / PKP BRAND
   --------------------------------------------------------- */

.pkp_structure_footer .pkp_brand_footer {
    position: absolute !important;
    right: 24px !important;
    bottom: 20px !important;
    top: auto !important;
    left: auto !important;
    float: none !important;
    clear: none !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
}

.pkp_structure_footer .pkp_brand_footer a {
    display: block !important;
    line-height: 0 !important;
}

.pkp_structure_footer .pkp_brand_footer img {
    display: block !important;
    width: auto !important;
    height: auto !important;
    max-width: 76px !important;
    max-height: 32px !important;
    margin: 0 !important;
    padding: 4px 6px !important;
    background: #ffffff !important;
    border-radius: 3px !important;
}

/* ---------------------------------------------------------
   TABLET
   --------------------------------------------------------- */

@media (max-width: 900px) {
    .pkp_structure_head .pkp_site_name .is_img img {
        height: 128px !important;
        max-width: 420px !important;
        max-height: 128px !important;
    }

    .pkp_site_name_wrapper {
        padding: 10px 0 9px !important;
    }

    .pkp_structure_footer {
        width: calc(100% - 30px) !important;
        padding: 26px 18px 20px !important;
    }

    .pkp_structure_footer .pkp_footer_content > div:first-child {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        column-gap: 34px !important;
        row-gap: 22px !important;
    }

    .pkp_structure_footer .pkp_footer_content > div:first-child > p:nth-child(2) {
        grid-column: 1 !important;
        grid-row: 1 !important;
    }

    .pkp_structure_footer .pkp_footer_content > div:first-child > p:nth-child(3) {
        grid-column: 2 !important;
        grid-row: 1 !important;
    }

    .pkp_structure_footer .pkp_footer_content > div:first-child > p:nth-child(4) {
        grid-column: 1 !important;
        grid-row: 2 !important;
    }

    .pkp_structure_footer .pkp_footer_content > div:first-child > p:nth-child(5) {
        grid-column: 2 !important;
        grid-row: 2 !important;
    }

    .pkp_structure_footer .pkp_footer_content > div:first-child > p:nth-child(n+6) {
        grid-column: 1 / -1 !important;
        grid-row: 3 !important;
    }
}

/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 600px) {
    .pkp_site_name_wrapper {
        justify-content: center;
        padding: 9px 0 8px !important;
    }

    .pkp_structure_head .pkp_site_name .is_img img {
        width: auto !important;
        height: auto !important;
        max-width: 90% !important;
        max-height: 94px !important;
        margin: 0 auto !important;
    }

    .pkp_structure_footer {
        width: calc(100% - 20px) !important;
        padding: 24px 15px 19px !important;
    }

    .pkp_structure_footer .pkp_footer_content > div:first-child {
        grid-template-columns: 1fr !important;
        row-gap: 21px !important;
    }

    .pkp_structure_footer .pkp_footer_content > div:first-child > p:nth-child(2) {
        grid-column: 1 !important;
        grid-row: 1 !important;
    }

    .pkp_structure_footer .pkp_footer_content > div:first-child > p:nth-child(3) {
        grid-column: 1 !important;
        grid-row: 2 !important;
    }

    .pkp_structure_footer .pkp_footer_content > div:first-child > p:nth-child(4) {
        grid-column: 1 !important;
        grid-row: 3 !important;
    }

    .pkp_structure_footer .pkp_footer_content > div:first-child > p:nth-child(5) {
        grid-column: 1 !important;
        grid-row: 4 !important;
    }

    .pkp_structure_footer .pkp_footer_content > div:first-child > p:nth-child(n+6) {
        grid-column: 1 !important;
        grid-row: 5 !important;
        padding-right: 0 !important;
    }

    .pkp_structure_footer .pkp_footer_content > div:first-child + p,
    .pkp_structure_footer .pkp_footer_content > p:last-child {
        padding-right: 0 !important;
    }

    .pkp_structure_footer .pkp_brand_footer {
        position: static !important;
        width: auto !important;
        margin-top: 17px !important;
    }

    .pkp_structure_footer .pkp_brand_footer img {
        max-width: 72px !important;
        max-height: 30px !important;
    }
}


/* =========================================================
   OJS STRUCTURAL GUIDE-LINE CLEANUP
   Removes the faint vertical desktop guide lines generated by
   the Default Theme without removing the real card borders.
   ========================================================= */

/* Remove any column guide background from the content wrapper. */
.pkp_structure_content,
.pkp_structure_content.has_sidebar {
    background-image: none !important;
    border-left: 0 !important;
    border-right: 0 !important;
    box-shadow: none !important;
}

/* OJS Default Theme may draw desktop column separators with
   pseudo-elements. Disable only those decorative separators. */
.pkp_structure_content::before,
.pkp_structure_content::after,
.pkp_structure_content.has_sidebar::before,
.pkp_structure_content.has_sidebar::after,
.pkp_structure_main::before,
.pkp_structure_main::after,
.pkp_structure_sidebar::before,
.pkp_structure_sidebar::after,
.pkp_structure_sidebar.left::before,
.pkp_structure_sidebar.left::after {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    content: none !important;
    background: none !important;
    border: 0 !important;
    box-shadow: none !important;
}

/* Keep the actual page/card surfaces clean and independent. */
.pkp_structure_main,
.pkp_structure_sidebar,
.pkp_structure_sidebar.left {
    background-image: none !important;
}
