/* =========================================================
   Journal of Tropical AgriFood (JTAF)
   OJS 3.5 Custom Stylesheet
   Version 1.0
   Purpose: scoped styling for JTAF content blocks only
   ========================================================= */

/* ---------------------------------------------------------
   1. GENERAL JTAF CONTENT SECTIONS
   --------------------------------------------------------- */

#focusAndScope,
#peerReviewProcess,
#publicationFrequency,
#openAccessPolicy,
#publicationEthics,
#screeningForPlagiarism,
#rwcPolicySummary,
#editorialMasthead,
#jtaf-indexing {
    line-height: 1.7;
}

#focusAndScope h3,
#peerReviewProcess h3,
#publicationFrequency h3,
#openAccessPolicy h3,
#publicationEthics h3,
#screeningForPlagiarism h3,
#rwcPolicySummary h3,
#editorialMasthead h3,
#jtaf-indexing h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

#publicationEthics h4,
#editorialMasthead h4 {
    margin-top: 1.5rem;
    margin-bottom: .55rem;
    font-weight: 700;
}

/* ---------------------------------------------------------
   2. POLICY / CONTENT LISTS
   --------------------------------------------------------- */

#focusAndScope ul,
#publicationEthics ul,
#screeningForPlagiarism ul {
    padding-left: 1.4rem;
    margin-top: .6rem;
    margin-bottom: 1rem;
}

#focusAndScope li,
#publicationEthics li,
#screeningForPlagiarism li {
    margin-bottom: .4rem;
}

/* ---------------------------------------------------------
   3. EDITORIAL MASTHEAD
   --------------------------------------------------------- */

#editorialMasthead h4 {
    padding-bottom: .35rem;
    border-bottom: 1px solid #e4e8e5;
}

#editorialMasthead p {
    margin-top: 0;
    margin-bottom: 1rem;
}

/* ---------------------------------------------------------
   4. INDEXING & ABSTRACTING
   --------------------------------------------------------- */

#jtaf-indexing {
    width: 100%;
    margin: 0 auto;
}

#jtaf-indexing .jtaf-indexing-title {
    text-align: center;
    margin-bottom: .4rem;
}

#jtaf-indexing .jtaf-indexing-intro {
    max-width: 900px;
    margin: 0 auto 1.5rem auto;
    text-align: center;
}

#jtaf-indexing .jtaf-index-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
    gap: 16px;
    width: 100%;
    margin: 0;
}

#jtaf-indexing .jtaf-index-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 108px;
    padding: 12px;
    box-sizing: border-box;
    background: #ffffff;
    border: 1px solid #dce4df;
    border-radius: 8px;
    text-decoration: none;
    overflow: hidden;
    transition:
        transform .18s ease,
        box-shadow .18s ease,
        border-color .18s ease;
}

#jtaf-indexing .jtaf-index-card:hover,
#jtaf-indexing .jtaf-index-card:focus {
    transform: translateY(-2px);
    box-shadow: 0 5px 16px rgba(0, 0, 0, .08);
    border-color: #9db8a5;
    text-decoration: none;
}

#jtaf-indexing .jtaf-index-card:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

#jtaf-indexing .jtaf-index-card img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 72px;
    object-fit: contain;
}

/* ---------------------------------------------------------
   5. SIMPLE SEPARATORS INSIDE JTAF CONTENT
   --------------------------------------------------------- */

#focusAndScope hr,
#peerReviewProcess hr,
#publicationFrequency hr,
#openAccessPolicy hr,
#publicationEthics hr,
#screeningForPlagiarism hr,
#rwcPolicySummary hr {
    border: 0;
    border-top: 1px solid #e4e8e5;
    margin: 1.5rem 0;
}

/* ---------------------------------------------------------
   6. RESPONSIVE
   --------------------------------------------------------- */

@media (max-width: 900px) {
    #jtaf-indexing .jtaf-index-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 12px;
    }
}

@media (max-width: 600px) {
    #jtaf-indexing .jtaf-index-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    #jtaf-indexing .jtaf-index-card {
        min-height: 92px;
        padding: 10px;
    }

    #jtaf-indexing .jtaf-index-card img {
        max-height: 60px;
    }
}

@media (max-width: 380px) {
    #jtaf-indexing .jtaf-index-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   7. REVIEWERS & REVIEWER ACKNOWLEDGEMENTS
   Card + researcher identifier badge model
   ========================================================= */

#jtaf-reviewers {
    line-height: 1.65;
}

#jtaf-reviewers > h2 {
    margin-bottom: 1rem;
}

#jtaf-reviewers h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: .45rem;
    border-bottom: 2px solid #e4e8e5;
}

#jtaf-reviewers .jtaf-reviewer-note {
    margin: 1.25rem 0 1.75rem;
    padding: 13px 15px;
    border-left: 4px solid #2f6f3e;
    border-radius: 5px;
    background: #f5f8f6;
}

#jtaf-reviewers .jtaf-reviewer-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

#jtaf-reviewers .jtaf-reviewer-card {
    position: relative;
    min-width: 0;
    padding: 15px;
    border: 1px solid #dde5df;
    border-radius: 9px;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .04);
    transition:
        transform .18s ease,
        box-shadow .18s ease,
        border-color .18s ease;
}

#jtaf-reviewers .jtaf-reviewer-card:hover {
    transform: translateY(-2px);
    border-color: #9eb7a5;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
}

#jtaf-reviewers .jtaf-reviewer-name {
    margin-bottom: 5px;
    font-weight: 700;
    font-size: 1.02rem;
    color: #173c25;
}

#jtaf-reviewers .jtaf-reviewer-affiliation {
    margin-bottom: 12px;
    color: #4f5e55;
    font-size: .93rem;
    overflow-wrap: anywhere;
}

#jtaf-reviewers .jtaf-reviewer-identifiers {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 8px;
}

#jtaf-reviewers .jtaf-id-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 9px;
    border: 1px solid #d9e1dc;
    border-radius: 999px;
    background: #f8faf9;
    color: #25362b;
    font-size: .79rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition:
        transform .15s ease,
        box-shadow .15s ease,
        background-color .15s ease,
        border-color .15s ease;
}

#jtaf-reviewers .jtaf-id-badge:hover,
#jtaf-reviewers .jtaf-id-badge:focus {
    transform: translateY(-1px);
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .10);
}

#jtaf-reviewers .jtaf-id-orcid {
    border-left: 4px solid #a6ce39;
}

#jtaf-reviewers .jtaf-id-scopus {
    border-left: 4px solid #ef7c00;
}

#jtaf-reviewers .jtaf-id-sinta {
    border-left: 4px solid #1c6e8c;
}

#jtaf-reviewers .jtaf-id-scholar {
    border-left: 4px solid #4285f4;
}

#jtaf-reviewers .jtaf-id-researcher {
    border-left: 4px solid #6b5b95;
}

/* Custom hover tooltip */
#jtaf-reviewers .jtaf-id-badge::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 50%;
    bottom: calc(100% + 9px);
    z-index: 20;
    width: max-content;
    max-width: 260px;
    padding: 7px 9px;
    border-radius: 5px;
    background: #1f2c23;
    color: #ffffff;
    font-size: .75rem;
    font-weight: 500;
    line-height: 1.3;
    white-space: normal;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 4px);
    transition:
        opacity .15s ease,
        transform .15s ease,
        visibility .15s ease;
}

#jtaf-reviewers .jtaf-id-badge::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: calc(100% + 3px);
    z-index: 21;
    border: 6px solid transparent;
    border-top-color: #1f2c23;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%);
    transition: opacity .15s ease, visibility .15s ease;
}

#jtaf-reviewers .jtaf-id-badge:hover::after,
#jtaf-reviewers .jtaf-id-badge:focus::after,
#jtaf-reviewers .jtaf-id-badge:hover::before,
#jtaf-reviewers .jtaf-id-badge:focus::before {
    opacity: 1;
    visibility: visible;
}

#jtaf-reviewers .jtaf-id-badge:hover::after,
#jtaf-reviewers .jtaf-id-badge:focus::after {
    transform: translate(-50%, 0);
}

#jtaf-reviewers .jtaf-reviewer-issue {
    margin-bottom: 2rem;
}

#jtaf-reviewers .jtaf-reviewer-issue h4 {
    margin: 0 0 12px;
    padding: 9px 12px;
    border-left: 4px solid #ef8a17;
    border-radius: 4px;
    background: #f7f9f7;
    font-weight: 700;
}

@media (max-width: 760px) {
    #jtaf-reviewers .jtaf-reviewer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    #jtaf-reviewers .jtaf-reviewer-card {
        padding: 13px;
    }

    #jtaf-reviewers .jtaf-id-badge::after {
        max-width: 210px;
    }
}

/* =========================================================
   8. RETRACTION, WITHDRAWAL & CORRECTION POLICY
   ========================================================= */

#jtaf-rwc-policy {
    line-height: 1.7;
}

#jtaf-rwc-policy > h2 {
    margin-bottom: 1rem;
}

#jtaf-rwc-policy .jtaf-policy-toc {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 1.35rem 0 1.8rem;
}

#jtaf-rwc-policy .jtaf-policy-toc a {
    display: inline-flex;
    align-items: center;
    padding: 7px 11px;
    border: 1px solid #dce4df;
    border-radius: 999px;
    background: #f7f9f7;
    text-decoration: none;
    font-weight: 700;
}

#jtaf-rwc-policy .jtaf-policy-toc a:hover,
#jtaf-rwc-policy .jtaf-policy-toc a:focus {
    background: #eef4ef;
    text-decoration: none;
}

#jtaf-rwc-policy .jtaf-policy-section {
    margin: 0 0 2rem;
    padding: 18px 20px;
    border: 1px solid #e0e7e2;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
}

#jtaf-rwc-policy .jtaf-policy-section h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    padding-bottom: .5rem;
    border-bottom: 2px solid #e4e8e5;
}

#jtaf-rwc-policy .jtaf-policy-section h4 {
    margin-top: 1.35rem;
    margin-bottom: .6rem;
}

#jtaf-rwc-policy ul,
#jtaf-rwc-policy ol {
    padding-left: 1.45rem;
}

#jtaf-rwc-policy li {
    margin-bottom: .45rem;
}

#jtaf-rwc-policy hr {
    border: 0;
    border-top: 1px solid #e4e8e5;
    margin: 1.6rem 0;
}

#jtaf-rwc-policy .jtaf-policy-note {
    margin-top: 1.25rem;
    padding: 13px 15px;
    border-left: 4px solid #2f6f3e;
    border-radius: 5px;
    background: #f5f8f6;
}

@media (max-width: 600px) {
    #jtaf-rwc-policy .jtaf-policy-section {
        padding: 14px;
    }

    #jtaf-rwc-policy .jtaf-policy-toc {
        gap: 7px;
    }
}

/* =========================================================
   9. GENERATIVE AI POLICY
   ========================================================= */

#jtaf-ai-policy {
    line-height: 1.7;
}

#jtaf-ai-policy > h2 {
    margin-bottom: 1rem;
}

#jtaf-ai-policy .jtaf-policy-toc {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 1.35rem 0 1.8rem;
}

#jtaf-ai-policy .jtaf-policy-toc a {
    display: inline-flex;
    align-items: center;
    padding: 7px 11px;
    border: 1px solid #dce4df;
    border-radius: 999px;
    background: #f7f9f7;
    text-decoration: none;
    font-weight: 700;
}

#jtaf-ai-policy .jtaf-policy-toc a:hover,
#jtaf-ai-policy .jtaf-policy-toc a:focus {
    background: #eef4ef;
    text-decoration: none;
}

#jtaf-ai-policy .jtaf-policy-section {
    margin: 0 0 2rem;
    padding: 18px 20px;
    border: 1px solid #e0e7e2;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
}

#jtaf-ai-policy .jtaf-policy-section h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    padding-bottom: .5rem;
    border-bottom: 2px solid #e4e8e5;
}

#jtaf-ai-policy .jtaf-policy-section h4 {
    margin-top: 1.35rem;
    margin-bottom: .6rem;
}

#jtaf-ai-policy ul,
#jtaf-ai-policy ol {
    padding-left: 1.45rem;
}

#jtaf-ai-policy li {
    margin-bottom: .45rem;
}

#jtaf-ai-policy hr {
    border: 0;
    border-top: 1px solid #e4e8e5;
    margin: 1.6rem 0;
}

#jtaf-ai-policy .jtaf-ai-example {
    margin: 1.15rem 0;
    padding: 13px 15px;
    border-left: 4px solid #ef8a17;
    border-radius: 5px;
    background: #fff8ef;
}

#jtaf-ai-policy .jtaf-policy-note {
    margin-top: 1.25rem;
    padding: 13px 15px;
    border-left: 4px solid #2f6f3e;
    border-radius: 5px;
    background: #f5f8f6;
}

@media (max-width: 600px) {
    #jtaf-ai-policy .jtaf-policy-section {
        padding: 14px;
    }

    #jtaf-ai-policy .jtaf-policy-toc {
        gap: 7px;
    }
}

/* =========================================================
   10. JTAF VISUAL ENHANCEMENT LAYER
   Static pages, policy pages, and long-text pages
   ========================================================= */

/* ---------- Root accent palette ---------- */
:root {
    --jtaf-green-900: #173c25;
    --jtaf-green-700: #2f6f3e;
    --jtaf-green-100: #f3f8f4;
    --jtaf-green-050: #f8fbf8;
    --jtaf-orange-700: #ef8a17;
    --jtaf-orange-100: #fff7ee;
    --jtaf-border: #dfe7e2;
    --jtaf-border-strong: #c7d6cc;
    --jtaf-shadow-sm: 0 2px 8px rgba(0, 0, 0, .05);
    --jtaf-shadow-md: 0 8px 22px rgba(0, 0, 0, .08);
    --jtaf-radius: 10px;
}

/* ---------- Optional overall background pattern ----------
   Replace YOUR-PATTERN-FILE.png with the final uploaded pattern asset URL
   when available. Keep opacity subtle.
------------------------------------------------------------ */
.pkp_structure_page {
    background-color: #f7faf7;
    background-image:
        linear-gradient(rgba(255,255,255,.84), rgba(255,255,255,.84)),
        url('https://upload.unmul.ac.id/uploads/adcdJTAFpattern-v2.png');
    background-repeat: repeat;
    background-position: top left;
    background-size: 320px auto;
    background-attachment: fixed;
}

/* Main content areas kept readable */
.pkp_structure_main,
.pkp_structure_sidebar,
.obj_issue_toc,
.obj_issue_summary,
.obj_article_details,
.page_static {
    position: relative;
}

.pkp_structure_main::before,
.page_static::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.pkp_structure_main > *,
.page_static > * {
    position: relative;
    z-index: 1;
}

/* ---------- Generic typography polish for rich text pages ---------- */
#focusAndScope,
#peerReviewProcess,
#publicationFrequency,
#openAccessPolicy,
#publicationEthics,
#screeningForPlagiarism,
#rwcPolicySummary,
#editorialMasthead,
#jtaf-indexing,
#jtaf-reviewers,
#jtaf-rwc-policy,
#jtaf-ai-policy {
    color: #213126;
}

#focusAndScope h3,
#peerReviewProcess h3,
#publicationFrequency h3,
#openAccessPolicy h3,
#publicationEthics h3,
#screeningForPlagiarism h3,
#rwcPolicySummary h3,
#editorialMasthead h3,
#jtaf-indexing h3,
#jtaf-reviewers h3,
#jtaf-rwc-policy h3,
#jtaf-ai-policy h3 {
    position: relative;
    padding-left: 14px;
    color: var(--jtaf-green-900);
}

#focusAndScope h3::before,
#peerReviewProcess h3::before,
#publicationFrequency h3::before,
#openAccessPolicy h3::before,
#publicationEthics h3::before,
#screeningForPlagiarism h3::before,
#rwcPolicySummary h3::before,
#editorialMasthead h3::before,
#jtaf-indexing h3::before,
#jtaf-reviewers h3::before,
#jtaf-rwc-policy h3::before,
#jtaf-ai-policy h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: .2em;
    width: 5px;
    height: 1.15em;
    border-radius: 999px;
    background: linear-gradient(to bottom, var(--jtaf-green-700), var(--jtaf-orange-700));
}

/* ---------- Decorative intro / note / callout boxes ---------- */
.jtaf-intro-box,
.jtaf-highlight-box,
.jtaf-info-box,
#jtaf-reviewers .jtaf-reviewer-note,
#jtaf-rwc-policy .jtaf-policy-note,
#jtaf-ai-policy .jtaf-policy-note {
    position: relative;
    padding: 15px 16px 15px 18px;
    border: 1px solid var(--jtaf-border);
    border-left: 5px solid var(--jtaf-green-700);
    border-radius: 8px;
    background: linear-gradient(180deg, #ffffff 0%, var(--jtaf-green-050) 100%);
    box-shadow: var(--jtaf-shadow-sm);
}

.jtaf-warning-box,
#jtaf-ai-policy .jtaf-ai-example {
    position: relative;
    padding: 15px 16px 15px 18px;
    border: 1px solid #f2ddc5;
    border-left: 5px solid var(--jtaf-orange-700);
    border-radius: 8px;
    background: linear-gradient(180deg, #fffdfb 0%, var(--jtaf-orange-100) 100%);
    box-shadow: var(--jtaf-shadow-sm);
}

/* ---------- Rich long-text section panels ---------- */
#jtaf-rwc-policy .jtaf-policy-section,
#jtaf-ai-policy .jtaf-policy-section {
    border: 1px solid var(--jtaf-border);
    border-top: 4px solid var(--jtaf-green-700);
    border-radius: 12px;
    background:
        linear-gradient(180deg, rgba(243,248,244,.55) 0, rgba(255,255,255,1) 65px),
        #ffffff;
    box-shadow: var(--jtaf-shadow-sm);
}

#jtaf-rwc-policy .jtaf-policy-section:hover,
#jtaf-ai-policy .jtaf-policy-section:hover {
    box-shadow: var(--jtaf-shadow-md);
}

/* Alternate highlight for every second section */
#jtaf-rwc-policy .jtaf-policy-section:nth-of-type(even),
#jtaf-ai-policy .jtaf-policy-section:nth-of-type(even) {
    border-top-color: var(--jtaf-orange-700);
}

/* ---------- TOC chips ---------- */
#jtaf-rwc-policy .jtaf-policy-toc a,
#jtaf-ai-policy .jtaf-policy-toc a {
    border-color: var(--jtaf-border-strong);
    background: linear-gradient(180deg, #ffffff 0%, #f4f8f5 100%);
    box-shadow: 0 1px 3px rgba(0,0,0,.04);
}

#jtaf-rwc-policy .jtaf-policy-toc a:hover,
#jtaf-rwc-policy .jtaf-policy-toc a:focus,
#jtaf-ai-policy .jtaf-policy-toc a:hover,
#jtaf-ai-policy .jtaf-policy-toc a:focus {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

/* ---------- Editorial Masthead richer blocks ---------- */
#editorialMasthead p {
    padding: 12px 14px;
    border: 1px solid #e5ebe7;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 1px 4px rgba(0,0,0,.03);
}

#editorialMasthead h4 {
    margin-top: 1.6rem;
    color: var(--jtaf-green-900);
    border-bottom: none;
    padding: 10px 12px;
    border-left: 4px solid var(--jtaf-orange-700);
    border-radius: 4px;
    background: linear-gradient(180deg, #f7faf7 0%, #f1f6f2 100%);
}

/* ---------- About / policy content boxes ---------- */
#focusAndScope,
#peerReviewProcess,
#publicationFrequency,
#openAccessPolicy,
#publicationEthics,
#screeningForPlagiarism,
#rwcPolicySummary {
    padding: 0;
}

#focusAndScope > p,
#peerReviewProcess > p,
#publicationFrequency > p,
#openAccessPolicy > p,
#publicationEthics > p,
#screeningForPlagiarism > p,
#rwcPolicySummary > p {
    margin-bottom: 1rem;
}

#publicationEthics h4 {
    padding: 9px 12px;
    border-left: 4px solid var(--jtaf-green-700);
    border-radius: 4px;
    background: linear-gradient(180deg, #f7faf7 0%, #f1f6f2 100%);
    color: var(--jtaf-green-900);
}

#publicationEthics ul,
#focusAndScope ul,
#screeningForPlagiarism ul {
    padding: 14px 18px 14px 34px;
    border: 1px solid #e5ebe7;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 1px 4px rgba(0,0,0,.03);
}

/* ---------- Reviewer page richer style ---------- */
#jtaf-reviewers .jtaf-reviewer-card {
    background:
        linear-gradient(180deg, rgba(243,248,244,.55) 0, rgba(255,255,255,1) 58px),
        #ffffff;
    border-top: 4px solid var(--jtaf-green-700);
}

#jtaf-reviewers .jtaf-reviewer-card:nth-child(3n+2) {
    border-top-color: var(--jtaf-orange-700);
}

#jtaf-reviewers .jtaf-reviewer-issue h4 {
    border-left-color: var(--jtaf-orange-700);
    background: linear-gradient(180deg, #fffaf4 0%, #fff4e6 100%);
}

/* ---------- Index cards richer style ---------- */
#jtaf-indexing .jtaf-index-card {
    background:
        linear-gradient(180deg, rgba(243,248,244,.55) 0, rgba(255,255,255,1) 100%),
        #ffffff;
    border-top: 3px solid var(--jtaf-green-700);
}

#jtaf-indexing .jtaf-index-card:nth-child(4n+2) {
    border-top-color: var(--jtaf-orange-700);
}

/* ---------- Responsive safeguard ---------- */
@media (max-width: 768px) {
    .pkp_structure_page {
        background-size: 240px auto;
    }

    #jtaf-rwc-policy .jtaf-policy-section,
    #jtaf-ai-policy .jtaf-policy-section {
        border-top-width: 3px;
    }
}

/* =========================================================
   11. LEGACY JTAF TILE BACKGROUND — STRONGER OVERRIDE
   Uses the original JTAF pattern as a repeated tile.
   ========================================================= */

html,
body {
    background-color: #f5efe3 !important;
    background-image: url('https://upload.unmul.ac.id/uploads/adcdJTAFpattern-v2.png') !important;
    background-repeat: repeat !important;
    background-position: top left !important;
    background-size: 225px 225px !important;
    background-attachment: scroll !important;
}

/* Let the legacy tile show through the public OJS page shell */
.pkp_structure_page {
    background: transparent !important;
}

/* Apply the same repeated tile to the central content wrapper */
.pkp_structure_content {
    background-color: transparent !important;
    background-image: url('https://upload.unmul.ac.id/uploads/adcdJTAFpattern-v2.png') !important;
    background-repeat: repeat !important;
    background-position: top left !important;
    background-size: 225px 225px !important;
}

/* Keep text readable while still allowing the pattern to remain visible */
.pkp_structure_main {
    background-color: rgba(255, 255, 255, .72) !important;
}

.pkp_structure_sidebar {
    background-color: rgba(255, 255, 255, .68) !important;
}

/* Static page body itself should not paint an opaque white layer */
.page_static,
.page_static > .cmp_breadcrumbs + *,
.page_static .jtaf-page-shell {
    background-color: transparent !important;
}

/* Policy/reviewer cards stay clean above the patterned page */
#jtaf-rwc-policy .jtaf-policy-section,
#jtaf-ai-policy .jtaf-policy-section,
#jtaf-reviewers .jtaf-reviewer-card,
#jtaf-indexing .jtaf-index-card,
#editorialMasthead p {
    background-color: rgba(255, 255, 255, .94);
}

/* Mobile: slightly smaller tile */
@media (max-width: 768px) {
    html,
    body,
    .pkp_structure_content {
        background-size: 180px 180px !important;
    }

    .pkp_structure_main,
    .pkp_structure_sidebar {
        background-color: rgba(255, 255, 255, .78) !important;
    }
}

/* =========================================================
   12. JTAF FOOTER — OJS 3.5
   Adapted from legacy JTAF footer
   ========================================================= */

#jtaf-footer {
    width: min(100%, 1100px);
    margin: 26px auto 0;
    overflow: hidden;
    border: 1px solid #cad9ce;
    border-radius: 16px;
    background:
        linear-gradient(rgba(255,255,255,.88), rgba(255,255,255,.88)),
        url('https://upload.unmul.ac.id/uploads/adcdJTAFpattern-v2.png');
    background-repeat: repeat;
    background-size: 220px 220px;
    box-shadow: 0 7px 22px rgba(0,0,0,.10);
    color: #26372c;
}

#jtaf-footer * {
    box-sizing: border-box;
}

#jtaf-footer .jtaf-footer-main {
    display: grid;
    grid-template-columns: minmax(280px, 38%) 1fr;
    min-height: 320px;
}

#jtaf-footer .jtaf-footer-map {
    padding: 20px;
    border-right: 1px solid #d2ded5;
    background: rgba(234,243,237,.78);
}

#jtaf-footer .jtaf-footer-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 280px;
    border: 1px solid #c7d7cc;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,.10);
    background: #eee;
}

#jtaf-footer .jtaf-footer-info {
    padding: 22px 26px;
    background: rgba(255,255,255,.68);
}

#jtaf-footer .jtaf-footer-logo-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

#jtaf-footer .jtaf-footer-logo-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 92px;
    height: 72px;
    padding: 7px;
    border: 1px solid #d5e1d9;
    border-radius: 10px;
    background: rgba(255,255,255,.94);
    text-decoration: none;
    transition:
        transform .18s ease,
        box-shadow .18s ease,
        border-color .18s ease;
}

#jtaf-footer .jtaf-footer-logo-card:hover,
#jtaf-footer .jtaf-footer-logo-card:focus {
    transform: translateY(-2px);
    border-color: #2f6f3e;
    box-shadow: 0 5px 13px rgba(0,0,0,.12);
    text-decoration: none;
}

#jtaf-footer .jtaf-footer-logo-card img {
    display: block;
    max-width: 100%;
    max-height: 56px;
    width: auto;
    height: auto;
    object-fit: contain;
}

#jtaf-footer .jtaf-footer-title {
    margin: 4px 0 4px;
    color: #015429;
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.25;
}

#jtaf-footer .jtaf-footer-department {
    margin-bottom: 17px;
    color: #496653;
    font-size: .94rem;
    line-height: 1.55;
}

#jtaf-footer .jtaf-footer-contact {
    display: grid;
    gap: 10px;
    font-size: .92rem;
    line-height: 1.55;
}

#jtaf-footer .jtaf-footer-contact-item {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 10px;
    align-items: start;
}

#jtaf-footer .jtaf-footer-label {
    color: #164b2d;
    font-weight: 700;
}

#jtaf-footer a {
    color: #176b45;
    text-decoration: none;
}

#jtaf-footer a:hover,
#jtaf-footer a:focus {
    color: #008c55;
    text-decoration: underline;
}

#jtaf-footer .jtaf-footer-publisher {
    padding: 18px 24px 20px;
    text-align: center;
    border-top: 1px solid #d5e0d9;
    background: rgba(255,255,255,.90);
}

#jtaf-footer .jtaf-footer-publisher-title {
    margin-bottom: 8px;
    color: #35634b;
    font-size: .96rem;
    font-weight: 700;
}

#jtaf-footer .jtaf-footer-publisher-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: #3f5147;
    font-size: .92rem;
    line-height: 1.55;
}

#jtaf-footer .jtaf-footer-publisher-links a {
    font-weight: 700;
}

#jtaf-footer .jtaf-footer-and {
    color: #6a796f;
    font-size: .84rem;
    font-style: italic;
}

#jtaf-footer .jtaf-footer-bottom {
    padding: 14px 20px;
    text-align: center;
    background: linear-gradient(135deg, #015429 0%, #0d6a3c 72%, #ef8a17 140%);
    color: #ffffff;
    font-size: .84rem;
    line-height: 1.65;
}

#jtaf-footer .jtaf-footer-bottom a {
    color: #ffffff;
    font-weight: 700;
}

#jtaf-footer .jtaf-footer-bottom a:hover,
#jtaf-footer .jtaf-footer-bottom a:focus {
    color: #e9f7ed;
}

#jtaf-footer .jtaf-footer-bottom-secondary {
    margin-top: 3px;
    opacity: .94;
}

/* Avoid the outer OJS page-footer area fighting with the custom footer */
.pkp_footer_content {
    max-width: none;
}

@media (max-width: 760px) {
    #jtaf-footer {
        width: 96%;
        border-radius: 13px;
    }

    #jtaf-footer .jtaf-footer-main {
        grid-template-columns: 1fr;
    }

    #jtaf-footer .jtaf-footer-map {
        border-right: 0;
        border-bottom: 1px solid #d2ded5;
    }

    #jtaf-footer .jtaf-footer-map iframe {
        min-height: 240px;
    }

    #jtaf-footer .jtaf-footer-info {
        padding: 20px;
    }

    #jtaf-footer .jtaf-footer-logo-row {
        justify-content: center;
    }

    #jtaf-footer .jtaf-footer-title,
    #jtaf-footer .jtaf-footer-department {
        text-align: center;
    }

    #jtaf-footer .jtaf-footer-contact-item {
        grid-template-columns: 1fr;
        gap: 2px;
        text-align: center;
    }
}

@media (max-width: 420px) {
    #jtaf-footer .jtaf-footer-map {
        padding: 14px;
    }

    #jtaf-footer .jtaf-footer-map iframe {
        min-height: 210px;
    }

    #jtaf-footer .jtaf-footer-logo-card {
        width: 80px;
        height: 64px;
    }

    #jtaf-footer .jtaf-footer-logo-card img {
        max-height: 50px;
    }

    #jtaf-footer .jtaf-footer-title {
        font-size: 1.15rem;
    }

    #jtaf-footer .jtaf-footer-bottom {
        padding: 13px 12px;
        font-size: .79rem;
    }
}

/* =========================================================
   13. JTAF HEADER — WIDER LOGO LOCKUP
   Make better use of OJS 3.5 header width
   ========================================================= */

@media (min-width: 769px) {

    .pkp_site_name_wrapper {
        padding-top: 18px;
        padding-bottom: 8px;
    }

    .pkp_site_name {
        text-align: left;
        margin: 0;
    }

    .pkp_site_name .is_img {
        display: block;
        width: clamp(420px, 34vw, 520px);
        max-width: 62vw;
        line-height: 0;
    }

    .pkp_site_name .is_img img {
        display: block;
        width: 100%;
        max-width: none;
        max-height: none;
        height: auto;
        margin: 0;
    }

    /* Give the logo room without forcing it into a tiny title slot */
    .pkp_head_wrapper {
        padding-top: 0;
    }

    .pkp_site_nav_menu {
        margin-top: 4px;
    }

    .pkp_navigation_primary_wrapper {
        padding-top: 2px;
    }
}

/* Tablet */
@media (min-width: 481px) and (max-width: 768px) {

    .pkp_site_name .is_img {
        width: min(430px, 78vw);
        line-height: 0;
    }

    .pkp_site_name .is_img img {
        width: 100%;
        max-width: none;
        max-height: none;
        height: auto;
    }
}

/* Mobile */
@media (max-width: 480px) {

    .pkp_site_name .is_img {
        width: min(310px, 82vw);
        line-height: 0;
    }

    .pkp_site_name .is_img img {
        width: 100%;
        max-width: none;
        max-height: none;
        height: auto;
    }
}

/* =========================================================
   14. JTAF HEADER — EXACT 952 x 140 DESKTOP LOGO
   For JTAF_Header_952x140_Final.png
   ========================================================= */

/* Desktop / wide screens */
@media (min-width: 1024px) {

    .pkp_site_name_wrapper {
        padding-top: 14px;
        padding-bottom: 8px;
    }

    .pkp_site_name {
        width: 952px !important;
        height: 140px !important;
        max-width: 952px !important;
        margin: 0 !important;
        padding: 0 !important;
        line-height: 0 !important;
    }

    .pkp_site_name .is_img {
        display: block !important;
        width: 952px !important;
        height: 140px !important;
        max-width: 952px !important;
        max-height: 140px !important;
        margin: 0 !important;
        padding: 0 !important;
        line-height: 0 !important;
        overflow: hidden;
    }

    .pkp_site_name .is_img img {
        display: block !important;
        width: 952px !important;
        height: 140px !important;
        max-width: 952px !important;
        max-height: 140px !important;
        margin: 0 !important;
        padding: 0 !important;
        object-fit: contain !important;
        object-position: left center !important;
    }

    /* Keep navigation visually close to the header logo */
    .pkp_site_nav_menu {
        margin-top: 4px;
    }
}

/* Medium screens: scale proportionally while preserving 952:140 ratio */
@media (min-width: 769px) and (max-width: 1023px) {

    .pkp_site_name {
        width: 100% !important;
        height: auto !important;
        margin: 0 !important;
        line-height: 0 !important;
    }

    .pkp_site_name .is_img {
        display: block !important;
        width: min(952px, 92vw) !important;
        height: auto !important;
        aspect-ratio: 952 / 140;
        max-width: 92vw !important;
        margin: 0 !important;
        line-height: 0 !important;
    }

    .pkp_site_name .is_img img {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        max-width: none !important;
        max-height: none !important;
        object-fit: contain !important;
        object-position: left center !important;
    }
}

/* Tablet */
@media (min-width: 481px) and (max-width: 768px) {

    .pkp_site_name .is_img {
        width: 92vw !important;
        height: auto !important;
        aspect-ratio: 952 / 140;
        max-width: 92vw !important;
        line-height: 0 !important;
    }

    .pkp_site_name .is_img img {
        width: 100% !important;
        height: 100% !important;
        max-width: none !important;
        max-height: none !important;
        object-fit: contain !important;
        object-position: left center !important;
    }
}

/* Mobile */
@media (max-width: 480px) {

    .pkp_site_name .is_img {
        width: 90vw !important;
        height: auto !important;
        aspect-ratio: 952 / 140;
        max-width: 90vw !important;
        line-height: 0 !important;
    }

    .pkp_site_name .is_img img {
        width: 100% !important;
        height: 100% !important;
        max-width: none !important;
        max-height: none !important;
        object-fit: contain !important;
        object-position: left center !important;
    }
}

/* =========================================================
   15. JTAF HEADER — GREEN BLEND + SAFE TOP
   Matches JTAF_Header_952x140_v2_safe-top.png
   ========================================================= */

/* Blend the OJS header shell into the new green banner */
.pkp_structure_head {
    background:
        linear-gradient(90deg, #0a4d1e 0%, #0f6230 52%, #246d3e 100%) !important;
    border-bottom: 0 !important;
}

.pkp_site_name_wrapper,
.pkp_site_nav_menu,
.pkp_navigation_primary_wrapper {
    background: transparent !important;
}

/* Keep the 952 x 140 banner exact on desktop */
@media (min-width: 1024px) {

    .pkp_site_name_wrapper {
        padding-top: 10px !important;
        padding-bottom: 6px !important;
    }

    .pkp_site_name,
    .pkp_site_name .is_img,
    .pkp_site_name .is_img img {
        width: 952px !important;
        height: 140px !important;
        max-width: 952px !important;
        max-height: 140px !important;
    }

    .pkp_site_name .is_img img {
        object-fit: contain !important;
        object-position: left center !important;
    }
}

/* Navigation readability on the green shell */
.pkp_navigation_primary > li > a,
.pkp_navigation_user > li > a,
.pkp_search,
.pkp_search_desktop {
    color: #ffffff !important;
}

.pkp_navigation_primary > li > a:hover,
.pkp_navigation_primary > li > a:focus,
.pkp_navigation_user > li > a:hover,
.pkp_navigation_user > li > a:focus {
    color: #fff4df !important;
}

/* Slightly warm hover underline to echo JTAF orange */
.pkp_navigation_primary > li > a:hover,
.pkp_navigation_primary > li > a:focus {
    border-bottom-color: #ef8a17 !important;
}

/* Mobile/tablet: keep green shell and proportional logo */
@media (max-width: 1023px) {
    .pkp_structure_head {
        background:
            linear-gradient(90deg, #0a4d1e 0%, #0f6230 58%, #246d3e 100%) !important;
    }
}

/* =========================================================
   16. JTAF NEW HEADER LOGO v3 — FULL WIDTH
   Source logo ratio is ~3:1, so height must remain AUTO.
   This override removes the previous 140px height limit.
   ========================================================= */

.pkp_structure_head {
    background: #0b652f !important;
    border-bottom: 0 !important;
}

.pkp_site_name_wrapper,
.pkp_site_nav_menu,
.pkp_navigation_primary_wrapper {
    background: transparent !important;
}

/* Desktop: use the full 952px header width */
@media (min-width: 1024px) {

    .pkp_site_name_wrapper {
        padding-top: 8px !important;
        padding-bottom: 6px !important;
    }

    .pkp_site_name {
        display: block !important;
        width: 952px !important;
        max-width: 952px !important;
        height: auto !important;
        max-height: none !important;
        margin: 0 !important;
        padding: 0 !important;
        line-height: 0 !important;
        overflow: visible !important;
    }

    .pkp_site_name .is_img {
        display: block !important;
        width: 952px !important;
        max-width: 952px !important;
        height: auto !important;
        max-height: none !important;
        margin: 0 !important;
        padding: 0 !important;
        line-height: 0 !important;
        overflow: visible !important;
    }

    .pkp_site_name .is_img img {
        display: block !important;
        width: 952px !important;
        max-width: 952px !important;
        height: auto !important;
        max-height: none !important;
        margin: 0 !important;
        padding: 0 !important;
        object-fit: initial !important;
        object-position: left center !important;
    }

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

/* Tablet / medium screens */
@media (min-width: 769px) and (max-width: 1023px) {

    .pkp_site_name,
    .pkp_site_name .is_img {
        width: 92vw !important;
        max-width: 952px !important;
        height: auto !important;
        max-height: none !important;
        margin: 0 !important;
        line-height: 0 !important;
    }

    .pkp_site_name .is_img img {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        max-height: none !important;
        object-fit: initial !important;
    }
}

/* Mobile */
@media (max-width: 768px) {

    .pkp_site_name,
    .pkp_site_name .is_img {
        width: 92vw !important;
        height: auto !important;
        max-width: 92vw !important;
        max-height: none !important;
        margin: 0 !important;
        line-height: 0 !important;
    }

    .pkp_site_name .is_img img {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        max-height: none !important;
        object-fit: initial !important;
    }
}

/* Navigation remains readable on the green header */
.pkp_navigation_primary > li > a,
.pkp_navigation_user > li > a,
.pkp_search,
.pkp_search_desktop {
    color: #ffffff !important;
}

.pkp_navigation_primary > li > a:hover,
.pkp_navigation_primary > li > a:focus {
    color: #fff1d8 !important;
    border-bottom-color: #ef8a17 !important;
}

/* =========================================================
   17. JTAF HOMEPAGE — ABOUT LEFT / COVER RIGHT
   OJS 3.5 homepage_image + homepage_about
   ========================================================= */

/* Desktop */
@media (min-width: 900px) {

    .page_index_journal {
        display: grid;
        grid-template-columns: minmax(0, 1.35fr) minmax(300px, .85fr);
        column-gap: 28px;
        align-items: start;
    }

    /* By default, all other homepage blocks span the full width */
    .page_index_journal > * {
        grid-column: 1 / -1;
    }

    /* Put About on the left */
    .page_index_journal > .homepage_about {
        grid-column: 1;
        grid-row: 1;
        margin: 0;
        padding: 22px 24px;
        border: 1px solid #dfe7e2;
        border-top: 4px solid #2f6f3e;
        border-radius: 12px;
        background: rgba(255,255,255,.90);
        box-shadow: 0 3px 12px rgba(0,0,0,.06);
    }

    /* Put homepage/cover image on the right */
    .page_index_journal > .homepage_image {
        grid-column: 2;
        grid-row: 1;
        align-self: start;
        margin: 0;
        padding: 14px;
        border: 1px solid #dfe7e2;
        border-top: 4px solid #ef8a17;
        border-radius: 12px;
        background: rgba(255,255,255,.90);
        box-shadow: 0 3px 12px rgba(0,0,0,.06);
        text-align: center;
    }

    .page_index_journal > .homepage_image img {
        display: block;
        width: auto;
        max-width: 100%;
        max-height: 640px;
        height: auto;
        margin: 0 auto;
        object-fit: contain;
    }

    /* Keep About heading compact */
    .page_index_journal > .homepage_about h2 {
        margin-top: 0;
        margin-bottom: 14px;
        padding-bottom: 8px;
        color: #173c25;
        border-bottom: 2px solid #e4e8e5;
    }

    /* The next homepage block starts below both columns */
    .page_index_journal > .homepage_about + *,
    .page_index_journal > .homepage_image + * {
        margin-top: 0;
    }

    /* Add breathing room before any full-width block after the pair */
    .page_index_journal > .current_issue,
    .page_index_journal > .cmp_announcements,
    .page_index_journal > .additional_content,
    .page_index_journal > .obj_issue_toc {
        margin-top: 28px;
    }
}

/* Tablet/mobile: stack naturally with About first, cover second */
@media (max-width: 899px) {

    .page_index_journal {
        display: flex;
        flex-direction: column;
    }

    .page_index_journal > .homepage_about {
        order: 1;
        margin-bottom: 18px;
        padding: 18px;
        border: 1px solid #dfe7e2;
        border-top: 4px solid #2f6f3e;
        border-radius: 10px;
        background: rgba(255,255,255,.90);
        box-shadow: 0 2px 8px rgba(0,0,0,.05);
    }

    .page_index_journal > .homepage_image {
        order: 2;
        margin-bottom: 22px;
        padding: 12px;
        border: 1px solid #dfe7e2;
        border-top: 4px solid #ef8a17;
        border-radius: 10px;
        background: rgba(255,255,255,.90);
        text-align: center;
    }

    .page_index_journal > .homepage_image img {
        display: block;
        width: auto;
        max-width: 100%;
        max-height: 560px;
        height: auto;
        margin: 0 auto;
        object-fit: contain;
    }

    /* Everything else follows the paired blocks */
    .page_index_journal > *:not(.homepage_about):not(.homepage_image) {
        order: 3;
    }
}

/* =========================================================
   18. JTAF HOMEPAGE — MINI INDEXING PANEL BELOW COVER
   Uses Website Settings > Appearance > Advanced > Additional Content
   ========================================================= */

@media (min-width: 900px) {

    /* About stays tall on the left */
    .page_index_journal > .homepage_about {
        grid-column: 1 !important;
        grid-row: 1 / span 2 !important;
        align-self: stretch;
    }

    /* Cover remains at top-right */
    .page_index_journal > .homepage_image {
        grid-column: 2 !important;
        grid-row: 1 !important;
    }

    /* Additional Content becomes the lower-right panel */
    .page_index_journal > .additional_content {
        grid-column: 2 !important;
        grid-row: 2 !important;
        margin: 18px 0 0 !important;
        padding: 0 !important;
        align-self: start;
    }
}

#jtaf-home-indexing-mini {
    padding: 16px;
    border: 1px solid #dfe7e2;
    border-top: 4px solid #2f6f3e;
    border-radius: 12px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 3px 12px rgba(0,0,0,.06);
}

#jtaf-home-indexing-mini h3 {
    margin: 0 0 13px;
    padding: 0 0 8px;
    color: #173c25;
    font-size: 1rem;
    line-height: 1.25;
    text-align: center;
    border-bottom: 1px solid #e4e8e5;
}

#jtaf-home-indexing-mini .jtaf-home-index-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

#jtaf-home-indexing-mini .jtaf-home-index-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 6px;
    border: 1px solid #e2e8e4;
    border-radius: 7px;
    background: #ffffff;
}

#jtaf-home-indexing-mini .jtaf-home-index-logo img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 42px;
    height: auto;
    object-fit: contain;
}

#jtaf-home-indexing-mini .jtaf-home-index-note {
    margin: 11px 0 0;
    color: #66746b;
    font-size: .76rem;
    line-height: 1.4;
    text-align: center;
}

@media (max-width: 899px) {

    .page_index_journal > .additional_content {
        order: 3;
        margin-bottom: 22px;
    }

    #jtaf-home-indexing-mini .jtaf-home-index-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {

    #jtaf-home-indexing-mini .jtaf-home-index-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* =========================================================
   19. JTAF HOMEPAGE POLISH — BALANCE + JOURNAL FACTS
   ========================================================= */

@media (min-width: 900px) {

    /* Let the right column fill the same total height as About */
    .page_index_journal {
        grid-template-rows: auto 1fr;
    }

    .page_index_journal > .homepage_about {
        grid-column: 1 !important;
        grid-row: 1 / span 2 !important;
        align-self: stretch;
    }

    .page_index_journal > .homepage_image {
        grid-column: 2 !important;
        grid-row: 1 !important;
    }

    .page_index_journal > .additional_content {
        grid-column: 2 !important;
        grid-row: 2 !important;
        margin-top: 10px !important;
        align-self: stretch !important;
    }

    #jtaf-home-indexing-mini {
        height: 100%;
        min-height: 100%;
        display: flex;
        flex-direction: column;
    }

    #jtaf-home-indexing-mini .jtaf-home-index-grid {
        flex: 1 1 auto;
        align-content: center;
    }
}

/* Make the indexing heading a little more prominent */
#jtaf-home-indexing-mini h3 {
    font-size: 1.12rem;
    letter-spacing: .01em;
    color: #173c25;
}

/* Slightly roomier indexing cells */
#jtaf-home-indexing-mini .jtaf-home-index-grid {
    gap: 7px;
}

#jtaf-home-indexing-mini .jtaf-home-index-logo {
    min-height: 62px;
    padding: 7px;
}

#jtaf-home-indexing-mini .jtaf-home-index-logo img {
    max-height: 46px;
    transition: transform .18s ease;
}

/* Normalize logos with very different native aspect ratios */
#jtaf-home-indexing-mini img[alt="Crossref"] {
    transform: scale(1.07);
}

#jtaf-home-indexing-mini img[alt="Index Copernicus"] {
    transform: scale(1.08);
}

#jtaf-home-indexing-mini img[alt="Google Scholar"] {
    transform: scale(1.06);
}

#jtaf-home-indexing-mini img[alt="SINTA"] {
    transform: scale(1.06);
}

#jtaf-home-indexing-mini img[alt="GARUDA"] {
    transform: scale(1.10);
}

#jtaf-home-indexing-mini img[alt="SciSpace"] {
    transform: scale(1.12);
}

#jtaf-home-indexing-mini img[alt="CiteFactor"] {
    transform: scale(1.10);
}

#jtaf-home-indexing-mini img[alt="BASE"] {
    transform: scale(1.09);
}

#jtaf-home-indexing-mini img[alt="Indonesia OneSearch"] {
    transform: scale(1.09);
}

#jtaf-home-indexing-mini img[alt="OpenAlex"] {
    transform: scale(1.12);
}

#jtaf-home-indexing-mini img[alt="Semantic Scholar"] {
    transform: scale(1.08);
}

#jtaf-home-indexing-mini img[alt="Dimensions"] {
    transform: scale(1.08);
}

#jtaf-home-indexing-mini img[alt="Neliti"] {
    transform: scale(1.10);
}

#jtaf-home-indexing-mini img[alt="ISSN Portal"] {
    transform: scale(1.08);
}

#jtaf-home-indexing-mini img[alt="ROAD"] {
    transform: scale(1.11);
}

#jtaf-home-indexing-mini img[alt="Clarivate"] {
    transform: scale(1.08);
}

/* ---------------------------------------------------------
   ABOUT THE JOURNAL — visually separate the metadata block
   The current Journal Summary renders the metadata as the
   second paragraph, so style it as a compact Journal Facts box.
   --------------------------------------------------------- */

.page_index_journal > .homepage_about > p:nth-of-type(2) {
    position: relative;
    margin: 1.15rem 0 1.25rem !important;
    padding: 14px 16px !important;
    border: 1px solid #dce6df;
    border-left: 5px solid #ef8a17;
    border-radius: 9px;
    background:
        linear-gradient(135deg, rgba(244,249,245,.98), rgba(255,249,241,.96));
    box-shadow: 0 2px 8px rgba(0,0,0,.045);
    line-height: 1.85;
    column-count: 2;
    column-gap: 22px;
}

/* Keep individual fact lines together as much as possible */
.page_index_journal > .homepage_about > p:nth-of-type(2) strong {
    color: #174a2b;
}

/* Add a small visual label above the facts box */
.page_index_journal > .homepage_about > p:nth-of-type(2)::before {
    content: "JOURNAL FACTS";
    display: block;
    margin-bottom: 6px;
    color: #2f6f3e;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
}

/* Improve paragraph rhythm in About */
.page_index_journal > .homepage_about > p {
    margin-top: 0;
    margin-bottom: 1.1rem;
}

@media (max-width: 620px) {
    .page_index_journal > .homepage_about > p:nth-of-type(2) {
        column-count: 1;
    }
}

/* =========================================================
   20. JTAF CURRENT ISSUE — COMPACT SCHOLARLY LAYOUT
   OJS 3.5 native classes: .current_issue, .obj_issue_toc,
   .heading, .sections, .cmp_article_list, .obj_article_summary
   ========================================================= */

.current_issue {
    margin-top: 30px;
    padding: 22px 24px 24px;
    border: 1px solid #dfe7e2;
    border-top: 4px solid #2f6f3e;
    border-radius: 12px;
    background: rgba(255,255,255,.90);
    box-shadow: 0 3px 12px rgba(0,0,0,.06);
}

.current_issue > h2 {
    margin: 0 0 6px;
    color: #173c25;
    font-size: 1.35rem;
    line-height: 1.25;
}

.current_issue > .current_issue_title {
    margin-bottom: 16px;
    color: #526258;
    font-size: .92rem;
    font-weight: 700;
}

/* ---------------------------------------------------------
   ISSUE HEADER / COVER + ISSUE METADATA
   --------------------------------------------------------- */

.current_issue .obj_issue_toc > .heading {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    margin: 0 0 20px;
    padding: 14px;
    border: 1px solid #e2e9e4;
    border-radius: 10px;
    background:
        linear-gradient(135deg, rgba(244,249,245,.97), rgba(255,249,241,.95));
}

.current_issue .obj_issue_toc > .heading .cover {
    float: none !important;
    width: auto !important;
    margin: 0 !important;
}

.current_issue .obj_issue_toc > .heading .cover img {
    display: block;
    width: 138px !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 auto;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0,0,0,.12);
}

/* Any issue description / series / published metadata aligns beside cover */
.current_issue .obj_issue_toc > .heading > *:not(.cover) {
    min-width: 0;
}

.current_issue .obj_issue_toc > .heading .description {
    margin: 0 0 10px;
    line-height: 1.55;
}

.current_issue .obj_issue_toc > .heading .published,
.current_issue .obj_issue_toc > .heading .pub_id {
    margin-top: 7px;
    font-size: .86rem;
    color: #526258;
}

.current_issue .obj_issue_toc > .heading .published .label,
.current_issue .obj_issue_toc > .heading .pub_id .type {
    font-weight: 700;
    color: #174a2b;
}

/* ---------------------------------------------------------
   ARTICLE SECTIONS
   --------------------------------------------------------- */

.current_issue .obj_issue_toc .sections {
    margin-top: 0;
}

.current_issue .obj_issue_toc .section {
    margin: 0 0 20px;
    padding: 0;
}

.current_issue .obj_issue_toc .section > h3 {
    margin: 0 0 10px;
    padding: 9px 12px;
    border-left: 4px solid #ef8a17;
    border-radius: 4px;
    background: linear-gradient(180deg, #fffaf4 0%, #fff4e6 100%);
    color: #173c25;
    font-size: 1rem;
}

/* Two-column scholarly card list on wide screens */
@media (min-width: 980px) {

    .current_issue .cmp_article_list.articles {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px 12px;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .current_issue .cmp_article_list.articles > li {
        margin: 0 !important;
        padding: 0 !important;
        border: 0 !important;
    }
}

/* Article summary cards */
.current_issue .obj_article_summary {
    position: relative;
    height: 100%;
    margin: 0;
    padding: 13px 14px 12px;
    border: 1px solid #e1e8e3;
    border-left: 4px solid #2f6f3e;
    border-radius: 8px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 1px 4px rgba(0,0,0,.035);
    transition:
        transform .16s ease,
        box-shadow .16s ease,
        border-color .16s ease;
}

.current_issue .obj_article_summary:hover {
    transform: translateY(-1px);
    border-left-color: #ef8a17;
    box-shadow: 0 5px 14px rgba(0,0,0,.07);
}

.current_issue .obj_article_summary .title {
    margin: 0 0 7px;
    font-size: .94rem;
    line-height: 1.42;
    font-weight: 700;
}

.current_issue .obj_article_summary .title a {
    color: #075f91;
    text-decoration: none;
}

.current_issue .obj_article_summary .title a:hover,
.current_issue .obj_article_summary .title a:focus {
    color: #174a2b;
    text-decoration: underline;
}

.current_issue .obj_article_summary .meta {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 10px;
    margin: 0 0 8px;
    color: #66746b;
    font-size: .78rem;
    line-height: 1.4;
}

.current_issue .obj_article_summary .authors {
    flex: 1 1 100%;
    color: #526258;
}

.current_issue .obj_article_summary .pages,
.current_issue .obj_article_summary .published {
    font-size: .76rem;
    color: #78857c;
}

.current_issue .obj_article_summary .galleys_links {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 8px 0 0;
    padding: 0;
}

.current_issue .obj_article_summary .galleys_links li {
    margin: 0 !important;
}

.current_issue .obj_article_summary .galleys_links a {
    padding: 4px 8px;
    border: 1px solid #1c75a3;
    border-radius: 4px;
    background: #ffffff;
    font-size: .72rem;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
}

.current_issue .obj_article_summary .galleys_links a:hover,
.current_issue .obj_article_summary .galleys_links a:focus {
    color: #ffffff;
    background: #1c75a3;
    text-decoration: none;
}

/* View all issues as a compact action */
.current_issue > .read_more {
    display: inline-flex;
    margin-top: 2px;
    padding: 7px 11px;
    border: 1px solid #cbdacf;
    border-radius: 999px;
    background: #f5f8f6;
    color: #176b45;
    font-size: .82rem;
    font-weight: 700;
    text-decoration: none;
}

.current_issue > .read_more:hover,
.current_issue > .read_more:focus {
    border-color: #2f6f3e;
    background: #eef5ef;
    text-decoration: none;
}

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

@media (max-width: 979px) {

    .current_issue .cmp_article_list.articles {
        display: grid;
        grid-template-columns: 1fr;
        gap: 9px;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .current_issue .cmp_article_list.articles > li {
        margin: 0 !important;
        padding: 0 !important;
        border: 0 !important;
    }
}

@media (max-width: 620px) {

    .current_issue {
        padding: 17px 15px 19px;
    }

    .current_issue .obj_issue_toc > .heading {
        grid-template-columns: 105px minmax(0, 1fr);
        gap: 12px;
        padding: 11px;
    }

    .current_issue .obj_issue_toc > .heading .cover img {
        width: 100px !important;
    }

    .current_issue .obj_article_summary {
        padding: 11px 12px;
    }
}

@media (max-width: 420px) {

    .current_issue .obj_issue_toc > .heading {
        grid-template-columns: 1fr;
    }

    .current_issue .obj_issue_toc > .heading .cover img {
        width: 135px !important;
        margin: 0 auto 4px;
    }
}

/* =========================================================
   21. JTAF CURRENT ISSUE — VISUAL POLISH v2
   Inspired by legacy JTAF green/orange identity
   ========================================================= */

/* --- Current Issue outer shell --- */
.current_issue {
    position: relative;
    overflow: hidden;
    border-top: 5px solid #1f6a3c;
    background:
        linear-gradient(rgba(255,255,255,.93), rgba(255,255,255,.93)),
        url('https://upload.unmul.ac.id/uploads/adcdJTAFpattern-v2.png');
    background-repeat: repeat;
    background-size: 220px 220px;
}

.current_issue::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 170px;
    height: 5px;
    background: #ef8a17;
}

.current_issue > h2 {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 5px;
    color: #154b2a;
    font-size: 1.45rem;
}

.current_issue > h2::before {
    content: "";
    width: 8px;
    height: 24px;
    border-radius: 99px;
    background: linear-gradient(180deg, #2f7b48, #ef8a17);
}

.current_issue > .current_issue_title {
    display: inline-block;
    margin: 0 0 16px 17px;
    padding: 5px 10px;
    border: 1px solid #d8e3dc;
    border-radius: 999px;
    background: #f3f8f4;
    color: #315c40;
    font-size: .82rem;
    font-weight: 700;
}

/* ---------------------------------------------------------
   ISSUE HERO — COVER LEFT, DETAILS RIGHT
   --------------------------------------------------------- */

.current_issue .obj_issue_toc > .heading {
    position: relative;
    display: grid !important;
    grid-template-columns: 175px minmax(0, 1fr) !important;
    grid-auto-rows: auto;
    column-gap: 22px !important;
    row-gap: 8px !important;
    align-items: start !important;
    min-height: 245px;
    margin-bottom: 22px !important;
    padding: 18px 20px !important;
    border: 1px solid #d8e3dc !important;
    border-radius: 12px !important;
    background:
        linear-gradient(135deg, rgba(239,248,242,.98) 0%, rgba(255,251,244,.98) 100%) !important;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.65);
}

/* Decorative orange corner */
.current_issue .obj_issue_toc > .heading::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 68px;
    height: 4px;
    border-radius: 0 12px 0 4px;
    background: #ef8a17;
}

.current_issue .obj_issue_toc > .heading .cover {
    grid-column: 1 !important;
    grid-row: 1 / span 10 !important;
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    align-self: start;
}

.current_issue .obj_issue_toc > .heading .cover img {
    width: 165px !important;
    max-width: 165px !important;
    height: auto !important;
    margin: 0 !important;
    border: 5px solid #ffffff;
    border-radius: 7px;
    box-shadow: 0 8px 20px rgba(25,72,43,.16);
}

/* Force all non-cover details into the right column */
.current_issue .obj_issue_toc > .heading > *:not(.cover) {
    grid-column: 2 !important;
    min-width: 0;
    margin-left: 0 !important;
    padding-left: 0 !important;
}

/* Issue description becomes a strong title/detail block */
.current_issue .obj_issue_toc > .heading .description {
    margin: 2px 0 5px !important;
    color: #26372c;
    font-size: 1rem;
    line-height: 1.55;
}

.current_issue .obj_issue_toc > .heading .description p {
    margin: 0 0 8px;
}

/* Published / DOI / other issue metadata */
.current_issue .obj_issue_toc > .heading .published,
.current_issue .obj_issue_toc > .heading .pub_id {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 4px;
    align-items: center;
    width: fit-content;
    margin: 2px 0 !important;
    padding: 5px 9px;
    border: 1px solid #d7e3da;
    border-radius: 999px;
    background: rgba(255,255,255,.78);
    color: #516158;
    font-size: .78rem;
}

.current_issue .obj_issue_toc > .heading .published .label,
.current_issue .obj_issue_toc > .heading .pub_id .type {
    color: #174b2b;
    font-weight: 800;
}

/* ---------------------------------------------------------
   SECTION HEADINGS
   --------------------------------------------------------- */

.current_issue .obj_issue_toc .section {
    margin-bottom: 24px !important;
}

.current_issue .obj_issue_toc .section > h3 {
    position: relative;
    margin: 4px 0 12px !important;
    padding: 10px 14px 10px 18px !important;
    border: 1px solid #e1e7e3;
    border-left: 5px solid #2f6f3e !important;
    border-radius: 7px !important;
    background:
        linear-gradient(90deg, rgba(241,248,243,.98), rgba(255,249,241,.96)) !important;
    color: #174a2b !important;
    font-size: .98rem !important;
    box-shadow: 0 2px 7px rgba(0,0,0,.035);
}

/* ---------------------------------------------------------
   ARTICLE CARDS — more JTAF character
   --------------------------------------------------------- */

.current_issue .obj_article_summary {
    overflow: hidden;
    border: 1px solid #dfe7e2 !important;
    border-left: 0 !important;
    border-top: 4px solid #2f6f3e !important;
    background:
        linear-gradient(180deg, rgba(247,251,248,.92) 0%, rgba(255,255,255,.98) 58px) !important;
}

.current_issue .cmp_article_list.articles > li:nth-child(even) .obj_article_summary {
    border-top-color: #ef8a17 !important;
}

.current_issue .obj_article_summary::after {
    content: "";
    position: absolute;
    right: -20px;
    bottom: -28px;
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(47,111,62,.055), transparent 70%);
    pointer-events: none;
}

.current_issue .obj_article_summary .title {
    padding-right: 4px;
    font-size: .96rem !important;
    line-height: 1.42 !important;
}

.current_issue .obj_article_summary .title a {
    color: #00689b !important;
}

.current_issue .obj_article_summary .title a:hover,
.current_issue .obj_article_summary .title a:focus {
    color: #1c663a !important;
}

.current_issue .obj_article_summary .meta {
    position: relative;
    margin-top: 8px !important;
    padding-top: 8px;
    border-top: 1px dashed #dfe6e1;
}

.current_issue .obj_article_summary .authors {
    color: #59685f !important;
    font-size: .78rem !important;
}

.current_issue .obj_article_summary .pages {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 3px 7px;
    border-radius: 999px;
    background: #f4f7f5;
    color: #738078 !important;
    font-size: .70rem !important;
    font-weight: 700;
}

/* PDF / galley buttons */
.current_issue .obj_article_summary .galleys_links a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 9px !important;
    border-color: #1673a3 !important;
    border-radius: 5px !important;
    background: #ffffff !important;
    color: #11658e !important;
    box-shadow: 0 1px 3px rgba(0,0,0,.03);
}

.current_issue .obj_article_summary .galleys_links a::before {
    content: "↧";
    font-size: .78rem;
    font-weight: 900;
}

.current_issue .obj_article_summary .galleys_links a:hover,
.current_issue .obj_article_summary .galleys_links a:focus {
    background: #116f9f !important;
    color: #ffffff !important;
}

/* ---------------------------------------------------------
   Desktop density: balanced two-column articles
   --------------------------------------------------------- */

@media (min-width: 1050px) {
    .current_issue .cmp_article_list.articles {
        gap: 12px 14px !important;
    }

    .current_issue .obj_article_summary {
        min-height: 150px;
    }
}

/* ---------------------------------------------------------
   Tablet / mobile hero adjustments
   --------------------------------------------------------- */

@media (max-width: 760px) {

    .current_issue .obj_issue_toc > .heading {
        grid-template-columns: 125px minmax(0, 1fr) !important;
        column-gap: 14px !important;
        min-height: 190px;
        padding: 14px !important;
    }

    .current_issue .obj_issue_toc > .heading .cover img {
        width: 118px !important;
        max-width: 118px !important;
        border-width: 4px;
    }
}

@media (max-width: 480px) {

    .current_issue .obj_issue_toc > .heading {
        grid-template-columns: 1fr !important;
        min-height: 0;
    }

    .current_issue .obj_issue_toc > .heading .cover {
        grid-column: 1 !important;
        grid-row: auto !important;
        text-align: center;
    }

    .current_issue .obj_issue_toc > .heading .cover img {
        width: 145px !important;
        max-width: 145px !important;
        margin: 0 auto !important;
    }

    .current_issue .obj_issue_toc > .heading > *:not(.cover) {
        grid-column: 1 !important;
    }

    .current_issue > .current_issue_title {
        margin-left: 0;
    }
}

/* =========================================================
   22. JTAF ARTICLE METRICS — OJS 3.5
   Homepage Current Issue + all Issue View pages
   ========================================================= */

.obj_article_summary.jtaf35-enhanced {
    display: flex;
    flex-direction: column;
}

/* Keep the metadata area compact */
.obj_article_summary.jtaf35-enhanced .meta {
    margin-bottom: 7px !important;
}

/* Metrics strip */
.jtaf35-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin: 9px 0 8px;
    padding-top: 9px;
    border-top: 1px dashed #dce5df;
}

.jtaf35-metric {
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
    padding: 6px 7px;
    border: 1px solid #e1e8e3;
    border-radius: 7px;
    background: rgba(248,251,249,.96);
    color: #425249;
    font-size: .69rem;
    line-height: 1.25;
}

.jtaf35-metric .jtaf35-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    border-radius: 50%;
    background: #edf4ef;
    color: #2f6f3e;
    font-size: .68rem;
    font-weight: 800;
}

.jtaf35-metric > span:last-child {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.jtaf35-metric b {
    margin-bottom: 1px;
    color: #526158;
    font-size: .61rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .025em;
}

.jtaf35-metric em {
    min-width: 0;
    overflow: hidden;
    color: #173c25;
    font-style: normal;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.jtaf35-metric em a {
    display: block;
    overflow: hidden;
    color: #08709d;
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.jtaf35-metric em a:hover,
.jtaf35-metric em a:focus {
    color: #174a2b;
    text-decoration: underline;
}

/* Views */
.jtaf35-view .jtaf35-icon {
    background: #eaf6eb;
    color: #458d50;
}

/* Downloads */
.jtaf35-download .jtaf35-icon {
    background: #eaf2fd;
    color: #347bc5;
}

/* DOI */
.jtaf35-doi {
    grid-column: 1 / -1;
}

.jtaf35-doi .jtaf35-icon {
    background: #e8f6fb;
    color: #258bb8;
}

/* Dates */
.jtaf35-submitted .jtaf35-icon,
.jtaf35-published .jtaf35-icon {
    background: #fff4e7;
    color: #b86d14;
}

/* Actions: Abstract + native OJS PDF buttons */
.jtaf35-card-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
    padding-top: 3px;
}

.jtaf35-card-actions .galleys_links {
    display: flex !important;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0 !important;
    padding: 0 !important;
}

.jtaf35-card-actions .galleys_links li {
    margin: 0 !important;
}

.jtaf35-abstract-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 5px 10px;
    border: 1px solid #2f6f3e;
    border-radius: 5px;
    background: #ffffff;
    color: #245f37;
    font-family: inherit;
    font-size: .72rem;
    font-weight: 700;
    line-height: 1.1;
    cursor: pointer;
    transition:
        background-color .16s ease,
        color .16s ease,
        transform .16s ease;
}

.jtaf35-abstract-btn::before {
    content: "≡";
    margin-right: 5px;
    font-size: .8rem;
}

.jtaf35-abstract-btn:hover,
.jtaf35-abstract-btn:focus {
    transform: translateY(-1px);
    background: #2f6f3e;
    color: #ffffff;
}

/* ---------------------------------------------------------
   ABSTRACT MODAL
   --------------------------------------------------------- */

#jtaf35Overlay {
    display: none;
    position: fixed;
    z-index: 999999;
    inset: 0;
    overflow: auto;
    padding: 28px 14px;
    background: rgba(15,39,24,.68);
    backdrop-filter: blur(2px);
}

#jtaf35Modal {
    position: relative;
    width: 720px;
    max-width: 100%;
    margin: 4vh auto;
    overflow: hidden;
    border: 1px solid #d9e3dc;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 20px 60px rgba(0,0,0,.28);
}

.jtaf35-modal-head {
    position: relative;
    padding: 18px 52px 16px 20px;
    background:
        linear-gradient(125deg, #185b33 0%, #2f7b48 76%, #ef8a17 150%);
    color: #ffffff;
}

.jtaf35-modal-badge {
    display: inline-block;
    margin-bottom: 7px;
    padding: 3px 8px;
    border: 1px solid rgba(255,255,255,.34);
    border-radius: 999px;
    background: rgba(255,255,255,.14);
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .06em;
}

#jtaf35ModalTitle {
    margin: 0 !important;
    padding: 0 !important;
    color: #ffffff !important;
    font-size: 1.08rem !important;
    line-height: 1.45 !important;
}

#jtaf35CloseX {
    position: absolute;
    top: 10px;
    right: 13px;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #ffffff;
    font-size: 1.8rem;
    line-height: 34px;
    cursor: pointer;
}

.jtaf35-modal-body {
    padding: 21px 23px 18px;
}

#jtaf35ModalContent {
    color: #3f4e44;
    font-size: .91rem;
    line-height: 1.75;
    text-align: justify;
}

.jtaf35-loading {
    padding: 28px 6px;
    color: #6a796f !important;
    text-align: center !important;
}

.jtaf35-modal-foot {
    display: flex;
    justify-content: flex-end;
    gap: 7px;
    padding: 12px 20px;
    border-top: 1px solid #e1e7e2;
    background: #f5f8f6;
}

.jtaf35-modal-foot a,
.jtaf35-modal-foot button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 31px;
    padding: 6px 12px;
    border-radius: 999px;
    font-family: inherit;
    font-size: .72rem;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}

#jtaf35ArticleLink {
    border: 1px solid #2f6f3e;
    background: #2f6f3e;
    color: #ffffff;
}

#jtaf35Close {
    border: 1px solid #cbd7ce;
    background: #ffffff;
    color: #526158;
}

/* Slightly more room when cards are single-column issue pages */
.page_issue .obj_article_summary.jtaf35-enhanced .jtaf35-metrics {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.page_issue .obj_article_summary.jtaf35-enhanced .jtaf35-doi {
    grid-column: auto;
}

/* If an issue page is rendered with our two-column article grid,
   use the compact metrics layout again */
@media (max-width: 1150px) {
    .page_issue .obj_article_summary.jtaf35-enhanced .jtaf35-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .page_issue .obj_article_summary.jtaf35-enhanced .jtaf35-doi {
        grid-column: 1 / -1;
    }
}

@media (max-width: 520px) {
    .jtaf35-metrics,
    .page_issue .obj_article_summary.jtaf35-enhanced .jtaf35-metrics {
        grid-template-columns: 1fr;
    }

    .jtaf35-doi,
    .page_issue .obj_article_summary.jtaf35-enhanced .jtaf35-doi {
        grid-column: auto;
    }

    #jtaf35Overlay {
        padding: 10px;
    }

    #jtaf35Modal {
        margin-top: 10px;
    }

    .jtaf35-modal-body {
        padding: 17px;
    }
}

/* =========================================================
   23. JTAF SIDEBAR — OJS 3.5 POLISH
   Custom blocks + native sidebar blocks
   ========================================================= */

.pkp_structure_sidebar {
    padding-top: 0;
}

.pkp_structure_sidebar .pkp_block {
    overflow: hidden;
    margin: 0 0 16px;
    border: 1px solid #dfe7e2;
    border-top: 4px solid #2f6f3e;
    border-radius: 10px;
    background:
        linear-gradient(rgba(255,255,255,.92), rgba(255,255,255,.92)),
        url('https://upload.unmul.ac.id/uploads/adcdJTAFpattern-v2.png');
    background-repeat: repeat;
    background-size: 180px 180px;
    box-shadow: 0 3px 10px rgba(0,0,0,.055);
}

.pkp_structure_sidebar .pkp_block:nth-of-type(even) {
    border-top-color: #ef8a17;
}

.pkp_structure_sidebar .pkp_block .title {
    margin: 0;
    padding: 11px 13px 9px;
    border-bottom: 1px solid #e3e9e5;
    background: rgba(247,250,248,.92);
    color: #174a2b;
    font-size: .88rem;
    font-weight: 800;
    line-height: 1.25;
    text-transform: none;
}

.pkp_structure_sidebar .pkp_block .content {
    padding: 12px 13px 13px;
    color: #445249;
    font-size: .82rem;
    line-height: 1.5;
}

.pkp_structure_sidebar .pkp_block .content p {
    margin: 0 0 8px;
}

.pkp_structure_sidebar .pkp_block .content p:last-child {
    margin-bottom: 0;
}

.pkp_structure_sidebar .pkp_block .content a {
    color: #08709d;
    text-decoration: none;
}

.pkp_structure_sidebar .pkp_block .content a:hover,
.pkp_structure_sidebar .pkp_block .content a:focus {
    color: #174a2b;
    text-decoration: underline;
}

/* ---------------------------------------------------------
   ADDITIONAL MENU
   --------------------------------------------------------- */

#customblock-additionalmenu .content,
#customblock-additional_menu .content {
    padding: 8px 10px 10px;
}

#customblock-additionalmenu .content p,
#customblock-additional_menu .content p {
    margin: 0;
}

#customblock-additionalmenu .content a,
#customblock-additional_menu .content a {
    position: relative;
    display: block;
    margin: 0;
    padding: 7px 8px 7px 18px;
    border-bottom: 1px solid #edf1ee;
    color: #0b638f;
    font-size: .76rem;
    font-weight: 700;
    line-height: 1.25;
    text-transform: uppercase;
    text-decoration: none;
    transition:
        padding-left .15s ease,
        background-color .15s ease,
        color .15s ease;
}

#customblock-additionalmenu .content a::before,
#customblock-additional_menu .content a::before {
    content: "›";
    position: absolute;
    left: 7px;
    top: 7px;
    color: #ef8a17;
    font-weight: 900;
}

#customblock-additionalmenu .content a:hover,
#customblock-additionalmenu .content a:focus,
#customblock-additional_menu .content a:hover,
#customblock-additional_menu .content a:focus {
    padding-left: 22px;
    border-radius: 5px;
    background: #f3f8f4;
    color: #174a2b;
    text-decoration: none;
}

/* ---------------------------------------------------------
   VISITOR STAT
   --------------------------------------------------------- */

#customblock-visitor {
    text-align: center;
}

#customblock-visitor .title {
    background: linear-gradient(90deg, #075b31 0%, #0b6d3b 100%);
    color: #fff36b;
    text-align: center;
    letter-spacing: .02em;
}

#customblock-visitor .content {
    padding: 13px 10px 14px;
    text-align: center;
}

#customblock-visitor img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

/* ---------------------------------------------------------
   ARTICLE TEMPLATE DOWNLOAD
   --------------------------------------------------------- */

#customblock-template {
    text-align: center;
}

#customblock-template .title {
    background: linear-gradient(90deg, #075b31 0%, #0b6d3b 100%);
    color: #fff36b;
    text-align: center;
    letter-spacing: .02em;
}

#customblock-template .content {
    padding: 13px 10px 14px;
    text-align: center;
}

#customblock-template img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 88px;
    margin: 0 auto;
    object-fit: contain;
}

#customblock-template .content a {
    display: inline-block;
}

/* ---------------------------------------------------------
   SUPPORT TOOLS / CITATION
   --------------------------------------------------------- */

#customblock-supporttools .content,
#customblock-support_tools .content,
#customblock-citation .content {
    padding: 10px;
}

.jtaf-side-tools {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
}

.jtaf-side-tool {
    display: flex !important;
    align-items: center;
    gap: 9px;
    min-height: 42px;
    padding: 7px 9px !important;
    border: 1px solid #e0e7e2;
    border-radius: 7px;
    background: rgba(255,255,255,.94);
    color: #174a2b !important;
    font-size: .76rem !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
    text-decoration: none !important;
    transition:
        transform .15s ease,
        box-shadow .15s ease,
        border-color .15s ease;
}

.jtaf-side-tool:hover,
.jtaf-side-tool:focus {
    transform: translateY(-1px);
    border-color: #bfcfc4;
    box-shadow: 0 4px 10px rgba(0,0,0,.06);
    text-decoration: none !important;
}

.jtaf-side-tool img {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    object-fit: contain;
}

/* ---------------------------------------------------------
   BUILT-IN INFORMATION / LANGUAGE / SUBSCRIPTION / FEEDS
   --------------------------------------------------------- */

.pkp_block.block_information ul,
.pkp_block.block_language,
.pkp_block.block_subscription,
.pkp_block.block_web_feed {
    margin: 0;
}

.pkp_block.block_information ul {
    padding-left: 0;
    list-style: none;
}

.pkp_block.block_information li {
    margin: 0;
}

.pkp_block.block_information li a {
    display: block;
    padding: 5px 0;
    border-bottom: 1px solid #edf1ee;
    font-size: .78rem;
}

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

/* Hide "Developed By" visually when it is disabled or if OJS renders empty shell */
.pkp_block.block_developed_by:empty {
    display: none !important;
}

/* ---------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------- */

@media (max-width: 991px) {
    .pkp_structure_sidebar .pkp_block {
        margin-bottom: 12px;
    }

    #customblock-additionalmenu .content a,
    #customblock-additional_menu .content a {
        font-size: .79rem;
    }
}

/* =========================================================
   24. JTAF ADDITIONAL MENU — SAFE SCOPED PATCH v3.2
   IMPORTANT:
   - Scoped ONLY to the additionalmenu custom block
   - Does not alter homepage, current issue, indexing, footer,
     header, or general OJS layout.
   ========================================================= */

.pkp_structure_sidebar #customblock-additionalmenu {
    overflow: hidden;
}

.pkp_structure_sidebar #customblock-additionalmenu > .content {
    padding: 0 !important;
}

/* Accreditation certificate */
.pkp_structure_sidebar #customblock-additionalmenu .jtaf-accreditation {
    padding: 10px 10px 6px;
}

.pkp_structure_sidebar #customblock-additionalmenu .jtaf-accreditation-link {
    position: relative;
    display: block !important;
    overflow: hidden;
    padding: 0 !important;
    border: 1px solid #dce5df !important;
    border-radius: 9px;
    background: #fff !important;
    box-shadow: 0 2px 7px rgba(0,0,0,.05);
    text-decoration: none !important;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.pkp_structure_sidebar #customblock-additionalmenu .jtaf-accreditation-link:hover,
.pkp_structure_sidebar #customblock-additionalmenu .jtaf-accreditation-link:focus {
    transform: translateY(-2px);
    border-color: #b8cdbf !important;
    box-shadow: 0 7px 18px rgba(0,0,0,.10);
}

.pkp_structure_sidebar #customblock-additionalmenu .jtaf-accreditation-link img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    transition: transform .25s ease, filter .25s ease;
}

.pkp_structure_sidebar #customblock-additionalmenu .jtaf-accreditation-link:hover img,
.pkp_structure_sidebar #customblock-additionalmenu .jtaf-accreditation-link:focus img {
    transform: scale(1.03);
    filter: saturate(1.05) contrast(1.02);
}

.pkp_structure_sidebar #customblock-additionalmenu .jtaf-accreditation-badge {
    position: absolute;
    z-index: 2;
    top: 8px;
    left: 8px;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(16,91,48,.92);
    color: #fff;
    font-size: .60rem;
    font-weight: 800;
    letter-spacing: .025em;
}

.pkp_structure_sidebar #customblock-additionalmenu .jtaf-accreditation-caption {
    display: block;
    padding: 7px 9px 8px;
    border-top: 1px solid #e4ebe6;
    background: linear-gradient(90deg, #f5f9f6 0%, #fff8ef 100%);
    color: #31533d;
    font-size: .66rem;
    font-weight: 700;
    text-align: center;
}

/* Additional Menu heading */
.pkp_structure_sidebar #customblock-additionalmenu .jtaf-sidebar-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 6px 10px 8px;
    padding: 9px 11px;
    border-radius: 7px;
    background: linear-gradient(100deg, #0d6135 0%, #1d7544 78%, #ef8a17 150%);
    color: #fff;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .045em;
    text-transform: uppercase;
}

.pkp_structure_sidebar #customblock-additionalmenu .jtaf-sidebar-title-mark {
    width: 6px;
    height: 18px;
    flex: 0 0 6px;
    border-radius: 999px;
    background: linear-gradient(180deg, #ffd17d, #ef8a17);
}

/* Menu */
.pkp_structure_sidebar #customblock-additionalmenu .jtaf-menu {
    display: grid;
    gap: 3px;
    padding: 0 10px 11px;
}

.pkp_structure_sidebar #customblock-additionalmenu .jtaf-menu-item {
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin: 0 !important;
    padding: 7px 8px 7px 10px !important;
    border: 1px solid transparent !important;
    border-bottom: 1px solid #edf1ee !important;
    border-radius: 6px;
    background: transparent !important;
    color: #096b98 !important;
    font-size: .70rem !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
    letter-spacing: .015em;
    text-transform: uppercase;
    text-decoration: none !important;
    transition:
        transform .16s ease,
        padding-left .16s ease,
        background-color .16s ease,
        border-color .16s ease,
        box-shadow .16s ease,
        color .16s ease;
}

/* Disable old arrow from v3.0 only inside this custom menu */
.pkp_structure_sidebar #customblock-additionalmenu .jtaf-menu-item::before {
    content: none !important;
}

.pkp_structure_sidebar #customblock-additionalmenu .jtaf-menu-item:hover,
.pkp_structure_sidebar #customblock-additionalmenu .jtaf-menu-item:focus {
    transform: translateX(2px);
    padding-left: 13px !important;
    border-color: #d8e5dc !important;
    background: linear-gradient(90deg, #f1f8f3 0%, #fffaf3 100%) !important;
    color: #174a2b !important;
    box-shadow: 0 3px 8px rgba(0,0,0,.045);
}

.pkp_structure_sidebar #customblock-additionalmenu .jtaf-menu-text {
    min-width: 0;
}

.pkp_structure_sidebar #customblock-additionalmenu .jtaf-menu-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    border-radius: 50%;
    background: #eef5f0;
    color: #2f6f3e;
    font-size: .95rem;
    font-weight: 900;
    line-height: 1;
    transition: transform .16s ease, background-color .16s ease, color .16s ease;
}

.pkp_structure_sidebar #customblock-additionalmenu .jtaf-menu-item:hover .jtaf-menu-arrow,
.pkp_structure_sidebar #customblock-additionalmenu .jtaf-menu-item:focus .jtaf-menu-arrow {
    transform: translateX(2px);
    background: #2f6f3e;
    color: #fff;
}

/* Fast-track highlight */
.pkp_structure_sidebar #customblock-additionalmenu .jtaf-menu-featured {
    margin-top: 4px !important;
    border: 1px solid #efdfc9 !important;
    background: linear-gradient(90deg, #fff8ee 0%, #fffdf8 100%) !important;
    color: #9a5a0c !important;
}

.pkp_structure_sidebar #customblock-additionalmenu .jtaf-menu-featured .jtaf-menu-arrow {
    background: #fff0dc;
    color: #c56d08;
}

.pkp_structure_sidebar #customblock-additionalmenu .jtaf-menu-featured:hover,
.pkp_structure_sidebar #customblock-additionalmenu .jtaf-menu-featured:focus {
    border-color: #eccb9f !important;
    background: linear-gradient(90deg, #fff1dc 0%, #fffaf0 100%) !important;
    color: #784305 !important;
}

/* =========================================================
   25. JTAF TEMPLATE + VISITOR SIDEBAR — SAFE SCOPED v3.3
   Scoped only to custom blocks: template + visitor
   ========================================================= */

/* Remove generic padding only for these two custom blocks */
.pkp_structure_sidebar #customblock-template > .content,
.pkp_structure_sidebar #customblock-visitor > .content {
    padding: 0 !important;
}

/* Shared inner card */
.pkp_structure_sidebar #customblock-template .jtaf-sidecard,
.pkp_structure_sidebar #customblock-visitor .jtaf-sidecard {
    padding: 0;
}

/* Shared title — visually matches Additional Menu */
.pkp_structure_sidebar #customblock-template .jtaf-sidecard-title,
.pkp_structure_sidebar #customblock-visitor .jtaf-sidecard-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 10px 10px 8px;
    padding: 9px 11px;
    border-radius: 7px;
    background: linear-gradient(100deg, #0d6135 0%, #1d7544 78%, #ef8a17 150%);
    color: #ffffff;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .045em;
    text-transform: uppercase;
    box-shadow: 0 2px 6px rgba(0,0,0,.07);
}

.pkp_structure_sidebar #customblock-template .jtaf-sidecard-title-mark,
.pkp_structure_sidebar #customblock-visitor .jtaf-sidecard-title-mark {
    width: 6px;
    height: 18px;
    flex: 0 0 6px;
    border-radius: 999px;
    background: linear-gradient(180deg, #ffd17d, #ef8a17);
}

.pkp_structure_sidebar #customblock-template .jtaf-sidecard-body,
.pkp_structure_sidebar #customblock-visitor .jtaf-sidecard-body {
    padding: 0 10px 11px;
}

/* ---------------------------------------------------------
   TEMPLATE DOWNLOAD
   --------------------------------------------------------- */

.pkp_structure_sidebar #customblock-template .jtaf-template-download {
    display: grid !important;
    grid-template-columns: 64px minmax(0, 1fr) 24px;
    align-items: center;
    gap: 9px;
    margin: 0 !important;
    padding: 9px !important;
    border: 1px solid #dce5df !important;
    border-radius: 9px;
    background: linear-gradient(135deg, #ffffff 0%, #f6faf7 100%) !important;
    color: #174a2b !important;
    text-decoration: none !important;
    box-shadow: 0 2px 7px rgba(0,0,0,.045);
    transition:
        transform .18s ease,
        box-shadow .18s ease,
        border-color .18s ease,
        background-color .18s ease;
}

.pkp_structure_sidebar #customblock-template .jtaf-template-download:hover,
.pkp_structure_sidebar #customblock-template .jtaf-template-download:focus {
    transform: translateY(-2px);
    border-color: #bfd2c4 !important;
    background: linear-gradient(135deg, #f4faf6 0%, #fff8ef 100%) !important;
    box-shadow: 0 7px 16px rgba(0,0,0,.09);
}

.pkp_structure_sidebar #customblock-template .jtaf-template-image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 48px;
    overflow: hidden;
    border: 1px solid #d6e2d9;
    border-radius: 6px;
    background: #ffffff;
}

.pkp_structure_sidebar #customblock-template .jtaf-template-image-wrap img {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    margin: 0 !important;
    object-fit: contain;
    transition: transform .2s ease;
}

.pkp_structure_sidebar #customblock-template .jtaf-template-download:hover img {
    transform: scale(1.045);
}

.pkp_structure_sidebar #customblock-template .jtaf-template-meta {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.pkp_structure_sidebar #customblock-template .jtaf-template-meta strong {
    color: #174a2b;
    font-size: .72rem;
    line-height: 1.25;
}

.pkp_structure_sidebar #customblock-template .jtaf-template-meta small {
    margin-top: 3px;
    color: #6b786f;
    font-size: .61rem;
    line-height: 1.3;
}

.pkp_structure_sidebar #customblock-template .jtaf-template-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #eef5f0;
    color: #2f6f3e;
    font-size: .85rem;
    font-weight: 900;
    transition: background-color .16s ease, color .16s ease, transform .16s ease;
}

.pkp_structure_sidebar #customblock-template .jtaf-template-download:hover .jtaf-template-arrow,
.pkp_structure_sidebar #customblock-template .jtaf-template-download:focus .jtaf-template-arrow {
    transform: translateY(1px);
    background: #2f6f3e;
    color: #ffffff;
}

/* ---------------------------------------------------------
   VISITOR STAT
   --------------------------------------------------------- */

.pkp_structure_sidebar #customblock-visitor .jtaf-visitor-body {
    text-align: center;
}

.pkp_structure_sidebar #customblock-visitor .jtaf-flagcounter-link {
    display: block !important;
    margin: 0 !important;
    padding: 9px !important;
    overflow: hidden;
    border: 1px solid #dce5df !important;
    border-radius: 9px;
    background: #ffffff !important;
    text-decoration: none !important;
    box-shadow: 0 2px 7px rgba(0,0,0,.045);
    transition:
        transform .18s ease,
        box-shadow .18s ease,
        border-color .18s ease;
}

.pkp_structure_sidebar #customblock-visitor .jtaf-flagcounter-link:hover,
.pkp_structure_sidebar #customblock-visitor .jtaf-flagcounter-link:focus {
    transform: translateY(-2px);
    border-color: #bfd2c4 !important;
    box-shadow: 0 7px 16px rgba(0,0,0,.09);
}

.pkp_structure_sidebar #customblock-visitor .jtaf-flagcounter-link img {
    display: block;
    width: auto !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 auto !important;
    transition: transform .22s ease;
}

.pkp_structure_sidebar #customblock-visitor .jtaf-flagcounter-link:hover img {
    transform: scale(1.025);
}

.pkp_structure_sidebar #customblock-visitor .jtaf-visitor-link {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 7px 0 0 !important;
    padding: 6px 8px !important;
    border-radius: 6px;
    color: #176b45 !important;
    background: #f4f8f5 !important;
    font-size: .64rem !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    transition: background-color .16s ease, color .16s ease;
}

.pkp_structure_sidebar #customblock-visitor .jtaf-visitor-link:hover,
.pkp_structure_sidebar #customblock-visitor .jtaf-visitor-link:focus {
    background: #eaf3ed !important;
    color: #174a2b !important;
}

.pkp_structure_sidebar #customblock-visitor .jtaf-visitor-link span {
    font-size: .9rem;
    line-height: 1;
}

/* =========================================================
   26. HIDE DEFAULT OJS / PKP BRAND FOOTER
   Keeps the custom JTAF footer as the visible site footer.
   ========================================================= */

.pkp_brand_footer {
    display: none !important;
}

/* Defensive fallback for theme variants */
.pkp_structure_footer_wrapper .pkp_brand_footer,
footer .pkp_brand_footer {
    display: none !important;
}

/* =========================================================
   27. JTAF PRIMARY NAVIGATION DROPDOWN — SAFE SCOPED v3.5
   Scoped only to #navigationPrimary / .pkp_navigation_primary
   ========================================================= */

@media (min-width: 992px) {

    #navigationPrimary.pkp_navigation_primary {
        position: relative;
        overflow: visible !important;
    }

    #navigationPrimary.pkp_navigation_primary > li {
        position: relative;
    }

    /* Parent menu items that contain children */
    #navigationPrimary.pkp_navigation_primary > li:has(> ul) > a {
        position: relative;
        padding-right: 22px !important;
    }

    #navigationPrimary.pkp_navigation_primary > li:has(> ul) > a::after {
        content: "▾";
        position: absolute;
        right: 6px;
        top: 50%;
        transform: translateY(-48%);
        color: rgba(255,255,255,.86);
        font-size: .66rem;
        line-height: 1;
        transition: transform .16s ease, color .16s ease;
    }

    #navigationPrimary.pkp_navigation_primary > li:has(> ul):hover > a::after,
    #navigationPrimary.pkp_navigation_primary > li:has(> ul):focus-within > a::after {
        transform: translateY(-48%) rotate(180deg);
        color: #ffd18a;
    }

    /* Dropdown panel */
    #navigationPrimary.pkp_navigation_primary > li > ul {
        display: block !important;
        position: absolute !important;
        top: calc(100% - 1px) !important;
        left: 0 !important;
        z-index: 10050 !important;

        width: 260px;
        min-width: 240px;
        max-width: 310px;
        margin: 0 !important;
        padding: 8px !important;

        border: 1px solid #d8e3dc;
        border-top: 4px solid #2f6f3e;
        border-radius: 0 0 10px 10px;

        background:
            linear-gradient(rgba(255,255,255,.97), rgba(255,255,255,.97)),
            url('https://upload.unmul.ac.id/uploads/adcdJTAFpattern-v2.png');
        background-repeat: repeat;
        background-size: 160px 160px;

        box-shadow: 0 12px 28px rgba(0,0,0,.16);

        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(7px) !important;
        transition:
            opacity .16s ease,
            visibility .16s ease,
            transform .16s ease;
    }

    /* Orange accent in dropdown corner */
    #navigationPrimary.pkp_navigation_primary > li > ul::before {
        content: "";
        position: absolute;
        top: -4px;
        right: 0;
        width: 68px;
        height: 4px;
        background: #ef8a17;
    }

    /* Show on mouse hover and keyboard focus */
    #navigationPrimary.pkp_navigation_primary > li:hover > ul,
    #navigationPrimary.pkp_navigation_primary > li:focus-within > ul {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0) !important;
    }

    #navigationPrimary.pkp_navigation_primary > li > ul > li {
        display: block !important;
        width: 100%;
        margin: 0 !important;
        padding: 0 !important;
    }

    #navigationPrimary.pkp_navigation_primary > li > ul > li > a {
        position: relative;
        display: flex !important;
        align-items: center;
        width: 100%;
        min-height: 36px;

        margin: 0 !important;
        padding: 8px 28px 8px 12px !important;

        border: 0 !important;
        border-bottom: 1px solid #edf1ee !important;
        border-radius: 6px;

        background: transparent !important;
        color: #12628a !important;

        font-size: .77rem !important;
        font-weight: 700;
        line-height: 1.25;
        text-align: left;
        text-decoration: none !important;

        transition:
            padding-left .15s ease,
            background-color .15s ease,
            color .15s ease,
            box-shadow .15s ease;
    }

    #navigationPrimary.pkp_navigation_primary > li > ul > li:last-child > a {
        border-bottom-color: transparent !important;
    }

    #navigationPrimary.pkp_navigation_primary > li > ul > li > a::after {
        content: "›";
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-52%);
        display: inline-flex;
        align-items: center;
        justify-content: center;

        width: 18px;
        height: 18px;
        border-radius: 50%;

        background: #eef5f0;
        color: #2f6f3e;
        font-size: .9rem;
        font-weight: 900;
        line-height: 1;

        transition:
            transform .15s ease,
            background-color .15s ease,
            color .15s ease;
    }

    #navigationPrimary.pkp_navigation_primary > li > ul > li > a:hover,
    #navigationPrimary.pkp_navigation_primary > li > ul > li > a:focus {
        padding-left: 16px !important;
        outline: 0;
        background: linear-gradient(90deg, #f0f8f3, #fff9ef) !important;
        color: #174a2b !important;
        box-shadow: inset 3px 0 0 #ef8a17;
    }

    #navigationPrimary.pkp_navigation_primary > li > ul > li > a:hover::after,
    #navigationPrimary.pkp_navigation_primary > li > ul > li > a:focus::after {
        transform: translateY(-52%) translateX(2px);
        background: #2f6f3e;
        color: #fff;
    }

    /* Keep right-side dropdowns inside the header container */
    #navigationPrimary.pkp_navigation_primary > li:nth-last-child(-n+2) > ul {
        left: auto !important;
        right: 0 !important;
    }
}

/* Tablet/mobile: leave native OJS collapsible navigation intact.
   Only add light visual hierarchy for nested items. */
@media (max-width: 991px) {

    #navigationPrimary.pkp_navigation_primary > li > ul {
        margin: 4px 0 7px 10px !important;
        padding: 3px 0 3px 10px !important;
        border-left: 3px solid #ef8a17;
    }

    #navigationPrimary.pkp_navigation_primary > li > ul > li > a {
        padding: 5px 6px !important;
        color: #ffffff !important;
        font-size: .86rem !important;
        opacity: .94;
    }
}

/* =========================================================
   28. JTAF PRIMARY NAV — ACTIVE / HOVER STATE FIX v3.6
   Prevent pale-on-pale active menu appearance.
   Scoped only to top-level primary navigation.
   ========================================================= */

@media (min-width: 992px) {

    /* Normal top-level menu */
    #navigationPrimary.pkp_navigation_primary > li > a {
        color: #ffffff !important;
        background: transparent !important;
        border-bottom: 3px solid transparent !important;
        text-decoration: none !important;
        transition:
            color .16s ease,
            background-color .16s ease,
            border-color .16s ease,
            box-shadow .16s ease;
    }

    /* Hover / keyboard focus */
    #navigationPrimary.pkp_navigation_primary > li > a:hover,
    #navigationPrimary.pkp_navigation_primary > li > a:focus {
        color: #ffffff !important;
        background: rgba(255,255,255,.10) !important;
        border-bottom-color: #ef8a17 !important;
        box-shadow: inset 0 -1px 0 rgba(255,255,255,.08);
        outline: none !important;
    }

    /* Current / selected item — cover common OJS/theme variants */
    #navigationPrimary.pkp_navigation_primary > li.current > a,
    #navigationPrimary.pkp_navigation_primary > li.active > a,
    #navigationPrimary.pkp_navigation_primary > li > a[aria-current="page"],
    #navigationPrimary.pkp_navigation_primary > li > a.is_active,
    #navigationPrimary.pkp_navigation_primary > li > a.selected {
        color: #ffffff !important;
        background: rgba(239,138,23,.20) !important;
        border-bottom-color: #ef8a17 !important;
        box-shadow: inset 0 -2px 0 #ef8a17 !important;
    }

    /* Selected parent while submenu is hovered/focused */
    #navigationPrimary.pkp_navigation_primary > li:hover > a,
    #navigationPrimary.pkp_navigation_primary > li:focus-within > a {
        color: #ffffff !important;
        background: rgba(255,255,255,.10) !important;
        border-bottom-color: #ef8a17 !important;
    }

    /* Make parent dropdown arrow stay readable */
    #navigationPrimary.pkp_navigation_primary > li:has(> ul) > a::after {
        color: rgba(255,255,255,.92) !important;
    }

    #navigationPrimary.pkp_navigation_primary > li:has(> ul):hover > a::after,
    #navigationPrimary.pkp_navigation_primary > li:has(> ul):focus-within > a::after {
        color: #ffd18a !important;
    }
}

/* Mobile/tablet — avoid light text on light active backgrounds */
@media (max-width: 991px) {

    #navigationPrimary.pkp_navigation_primary > li > a,
    #navigationPrimary.pkp_navigation_primary > li.current > a,
    #navigationPrimary.pkp_navigation_primary > li.active > a,
    #navigationPrimary.pkp_navigation_primary > li > a[aria-current="page"] {
        color: #ffffff !important;
        background: transparent !important;
    }

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

/* ===== Reviewer Registration legacy class support ===== */
/* =========================================================
   JTAF REVIEWER REGISTRATION
   Compatible with OJS 2.4.8 Static Page
   Maximum Width: 805px
   ========================================================= */
.jtaf-reviewer-page {
    width: 100%;
    max-width: 805px;
    margin: 0 auto;
    padding: 0;
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    color: #333333;
    line-height: 1.6;
    box-sizing: border-box;
}
.jtaf-reviewer-page *,
.jtaf-reviewer-page *:before,
.jtaf-reviewer-page *:after {
    box-sizing: border-box;
}
/* ---------- HEADER ---------- */
.jtaf-reviewer-header {
    background: #015429;
    color: #ffffff;
    padding: 28px 30px;
    border-radius: 8px 8px 0 0;
    border-bottom: 5px solid #d8b400;
}
.jtaf-reviewer-header h1 {
    margin: 0 0 8px 0;
    font-size: 26px;
    line-height: 1.25;
    font-weight: 700;
    color: #ffffff;
}
.jtaf-reviewer-header p {
    margin: 0;
    font-size: 14px;
    color: #f4f4f4;
}
/* ---------- INTRODUCTION ---------- */
.jtaf-intro {
    background: #f7f9f8;
    border: 1px solid #e1e6e3;
    border-top: none;
    padding: 25px 30px;
}
.jtaf-intro h2 {
    margin: 0 0 12px 0;
    font-size: 20px;
    color: #015429;
}
.jtaf-intro p {
    margin: 0 0 12px 0;
    font-size: 14px;
}
.jtaf-intro p:last-child {
    margin-bottom: 0;
}
.jtaf-note {
    margin-top: 18px;
    padding: 12px 15px;
    background: #fffbea;
    border-left: 4px solid #d8b400;
    font-size: 13px;
}
/* ---------- FORM CONTAINER ---------- */
.jtaf-form {
    background: #ffffff;
    border: 1px solid #e1e6e3;
    border-top: none;
    padding: 30px;
}
/* ---------- SECTION ---------- */
.jtaf-section {
    margin: 0 0 30px 0;
    padding: 0 0 25px 0;
    border-bottom: 1px solid #e5e5e5;
}
.jtaf-section:last-of-type {
    border-bottom: none;
}
.jtaf-section-title {
    margin: 0 0 20px 0;
    padding: 10px 14px;
    background: #f1f5f2;
    border-left: 4px solid #015429;
    color: #015429;
    font-size: 17px;
    font-weight: 700;
}
/* ---------- FORM ROW ---------- */
.jtaf-row {
    width: 100%;
    display: table;
    table-layout: fixed;
    margin-bottom: 16px;
}
.jtaf-col {
    display: table-cell;
    width: 50%;
    padding-right: 10px;
    vertical-align: top;
}
.jtaf-col:last-child {
    padding-right: 0;
    padding-left: 10px;
}
.jtaf-full {
    display: block;
    width: 100%;
    padding: 0;
}
/* ---------- LABEL ---------- */
.jtaf-label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #333333;
}
.jtaf-required {
    color: #c62828;
}
/* ---------- INPUT ---------- */
.jtaf-input,
.jtaf-select,
.jtaf-textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #cfd6d2;
    border-radius: 4px;
    background: #ffffff;
    color: #333333;
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    font-size: 13px;
    outline: none;
}
.jtaf-input:focus,
.jtaf-select:focus,
.jtaf-textarea:focus {
    border-color: #015429;
    box-shadow: 0 0 0 2px rgba(1,84,41,0.08);
}
.jtaf-textarea {
    min-height: 100px;
    resize: vertical;
}
/* ---------- HELP TEXT ---------- */
.jtaf-help {
    display: block;
    margin-top: 5px;
    color: #777777;
    font-size: 11px;
    line-height: 1.5;
}
/* ---------- EXPERTISE CHECKBOX ---------- */
.jtaf-expertise-box {
    background: #fafbfa;
    border: 1px solid #dfe5e1;
    border-radius: 5px;
    padding: 15px;
}
.jtaf-checkbox-grid {
    width: 100%;
    display: table;
    table-layout: fixed;
}
.jtaf-checkbox-item {
    display: inline-block;
    width: 49%;
    vertical-align: top;
    padding: 5px 5px 5px 0;
    font-size: 12px;
}
.jtaf-checkbox-item input {
    margin-right: 6px;
    vertical-align: middle;
}
.jtaf-checkbox-item label {
    cursor: pointer;
}
/* ---------- PROFILE LINKS ---------- */
.jtaf-profile-box {
    background: #f7f9f8;
    border: 1px solid #e1e6e3;
    border-radius: 5px;
    padding: 15px;
}
.jtaf-profile-row {
    display: table;
    width: 100%;
    table-layout: fixed;
    margin-bottom: 12px;
}
.jtaf-profile-icon {
    display: table-cell;
    width: 105px;
    vertical-align: middle;
    font-weight: 700;
    font-size: 12px;
    color: #015429;
}
.jtaf-profile-input {
    display: table-cell;
    vertical-align: middle;
}
/* ---------- REVIEWER EXPERIENCE ---------- */
.jtaf-radio-group {
    padding: 8px 0;
}
.jtaf-radio-item {
    margin-right: 20px;
    font-size: 13px;
}
.jtaf-radio-item input {
    margin-right: 5px;
}
/* ---------- DECLARATION ---------- */
.jtaf-declaration {
    background: #f7f9f8;
    border: 1px solid #dfe5e1;
    border-radius: 5px;
    padding: 15px;
}
.jtaf-declaration-item {
    margin-bottom: 12px;
    font-size: 12px;
}
.jtaf-declaration-item:last-child {
    margin-bottom: 0;
}
.jtaf-declaration-item input {
    margin-right: 7px;
    vertical-align: middle;
}
/* ---------- SUBMIT ---------- */
.jtaf-submit-area {
    text-align: center;
    padding: 10px 0 5px 0;
}
.jtaf-submit {
    display: inline-block;
    padding: 12px 35px;
    background: #015429;
    border: none;
    border-radius: 4px;
    color: #ffffff !important;
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    letter-spacing: 0.3px;
}
.jtaf-submit:hover {
    background: #003d1e;
    color: #ffffff !important;
}
/* ---------- BENEFITS ---------- */
.jtaf-benefits {
    margin-top: 25px;
    padding: 25px 30px;
    background: #f7f9f8;
    border: 1px solid #e1e6e3;
}
.jtaf-benefits h2 {
    margin: 0 0 15px 0;
    color: #015429;
    font-size: 19px;
}
.jtaf-benefit {
    margin-bottom: 14px;
    padding-left: 25px;
    position: relative;
}
.jtaf-benefit:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #015429;
    font-weight: bold;
}
.jtaf-benefit strong {
    color: #333333;
}
.jtaf-benefit p {
    margin: 2px 0 0 0;
    font-size: 12px;
    color: #666666;
}
/* ---------- FOOTER NOTE ---------- */
.jtaf-contact {
    margin-top: 20px;
    padding: 20px;
    text-align: center;
    background: #015429;
    color: #ffffff;
    border-radius: 5px;
}
.jtaf-contact strong {
    color: #ffffff;
}
.jtaf-contact a {
    color: #ffffff !important;
    text-decoration: underline;
}
/* =========================================================
   RESPONSIVE
   ========================================================= */
@media screen and (max-width: 650px) {
    .jtaf-reviewer-header {
        padding: 22px 18px;
    }
    .jtaf-reviewer-header h1 {
        font-size: 21px;
    }
    .jtaf-intro,
    .jtaf-form,
    .jtaf-benefits {
        padding: 20px 18px;
    }
    .jtaf-row {
        display: block;
    }
    .jtaf-col {
        display: block;
        width: 100%;
        padding: 0 !important;
        margin-bottom: 16px;
    }
    .jtaf-checkbox-item {
        display: block;
        width: 100%;
    }
    .jtaf-profile-row {
        display: block;
    }
    .jtaf-profile-icon,
    .jtaf-profile-input {
        display: block;
        width: 100%;
    }
    .jtaf-profile-icon {
        margin-bottom: 5px;
    }
    .jtaf-submit {
        width: 100%;
    }
}

/* ===== Reviewer List legacy class support ===== */
/* =========================================================
   JTAF REVIEWER DIRECTORY
========================================================= */
.jtaf-reviewer-wrapper {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    font-family: "Segoe UI", Arial, sans-serif;
    box-sizing: border-box;
}
/* Header */
.jtaf-reviewer-header {
    background: linear-gradient(135deg, #015429, #0c2b02);
    color: #ffffff;
    padding: 18px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.12);
}
.jtaf-reviewer-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.3px;
}
.jtaf-reviewer-header p {
    margin: 6px 0 0;
    font-size: 13px;
    opacity: 0.9;
}
/* Loading */
.jtaf-reviewer-loading {
    text-align: center;
    padding: 30px;
    color: #666666;
    font-size: 14px;
}
/* Grid */
.jtaf-reviewer-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
}
/* Card */
.jtaf-reviewer-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 125px;
    padding: 18px 18px 18px 20px;
    background: #ffffff;
    border: 1px solid #dddddd;
    border-left: 4px solid #015429;
    border-radius: 9px;
    box-sizing: border-box;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease,
        background-color 0.25s ease;
}
/* Hover */
.jtaf-reviewer-card:hover {
    transform: translateY(-4px);
    border-color: #31849b;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    background: #f9fcfa;
}
/* Number */
.jtaf-reviewer-number {
    position: absolute;
    top: 10px;
    right: 12px;
    min-width: 26px;
    height: 22px;
    padding: 0 7px;
    background: #015429;
    color: #ffffff;
    border-radius: 12px;
    font-size: 11px;
    line-height: 22px;
    text-align: center;
    font-weight: 600;
}
/* Icon */
.jtaf-reviewer-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eaf5ee;
    color: #015429;
    font-size: 18px;
}
/* Name */
.jtaf-reviewer-name {
    color: #174a2b;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 700;
    margin-bottom: 5px;
    padding-right: 30px;
}
/* Affiliation */
.jtaf-reviewer-affiliation {
    color: #666666;
    font-size: 12px;
    line-height: 1.45;
}
/* Identifier */
.jtaf-reviewer-identifier {
    display: inline-block;
    width: fit-content;
    margin-top: 8px;
    padding: 3px 8px;
    background: #eef6f8;
    border: 1px solid #c9e0e5;
    border-radius: 10px;
    color: #276c78;
    font-size: 10px;
    font-weight: 600;
}
/* Error */
.jtaf-reviewer-error {
    padding: 20px;
    border: 1px solid #e0b4b4;
    border-radius: 8px;
    background: #fff7f7;
    color: #9b3333;
    text-align: center;
}
/* Empty */
.jtaf-reviewer-empty {
    padding: 30px;
    text-align: center;
    color: #777777;
}
/* Responsive */
@media screen and (max-width: 650px) {
    .jtaf-reviewer-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .jtaf-reviewer-card {
        min-height: 115px;
    }
    .jtaf-reviewer-header h2 {
        font-size: 21px;
    }
}
@media screen and (max-width: 420px) {
    .jtaf-reviewer-wrapper {
        padding: 0 5px;
    }
    .jtaf-reviewer-card {
        padding: 15px;
    }
    .jtaf-reviewer-name {
        font-size: 14px;
    }
}

/* ===== Metrics page original + OJS35 page styles ===== */
/* =========================================================
   JTAF Metrics MultiAccount Notification
   OJS 2.4.8 COMPATIBLE
   MAX WIDTH: 805px
   ========================================================= */
.jtaf-metrics-notice {
    margin-top: 18px;
    padding: 12px 16px;
    border: 1px solid #d9e6dc;
    border-left: 4px solid #2e7d32;
    border-radius: 6px;
    background: #f7fbf8;
    color: #555;
    font-size: 12px;
    line-height: 1.6;
}

.jtaf-metrics-notice strong {
    color: #2e7d32;
}

.jtaf-metrics-notice b {
    color: #333;
}

.jtaf-metrics-notice .id-note {
    display: block;
    margin-top: 5px;
    color: #666;
    font-style: italic;
}
/* =========================================================
   JTAF METRICS CITATION & INDEX v5
   OJS 2.4.8 COMPATIBLE
   MAX WIDTH: 805px
   ========================================================= */

.jtaf-dashboard {
    width: 100%;
    max-width: 805px;
    margin: 0 auto;
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    color: #333;
    box-sizing: border-box;
}

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

/* =========================================================
   TITLE
   ========================================================= */

.jtaf-dashboard-title {
    text-align: center;
    margin: 5px 0 4px;
    font-size: 25px;
    font-weight: 700;
    color: #333;
}

.jtaf-dashboard-subtitle {
    text-align: center;
    margin: 0 0 25px;
    font-size: 13px;
    color: #777;
}

/* =========================================================
   SECTION
   ========================================================= */

.jtaf-metrics-section {
    width: 100%;
}

.jtaf-section-title {
    margin: 0 0 15px;
    font-size: 21px;
    font-weight: 600;
    color: #333;
}

.jtaf-metric-group {
    margin-bottom: 22px;
}

.jtaf-metric-group-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #444;
}

.jtaf-group-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2E7D32;
    display: inline-block;
    flex-shrink: 0;
}

/* =========================================================
   METRIC GRID
   ========================================================= */

.jtaf-metric-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.jtaf-metric-grid.two {
    grid-template-columns: repeat(2, 1fr);
}

/* =========================================================
   METRIC CARD
   ========================================================= */

.jtaf-metric-card {
    min-height: 145px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,.07);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 15px 10px;
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.jtaf-metric-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,.13);
    border-color: #b9d5be;
}

.jtaf-metric-value {
    font-size: 32px;
    line-height: 1.1;
    font-weight: 700;
    color: #2E7D32;
    word-break: break-word;
}

.jtaf-metric-label {
    margin-top: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #444;
}

.jtaf-metric-source {
    margin-top: 5px;
    font-size: 10px;
    color: #999;
}

/* =========================================================
   ANALYTICS
   ========================================================= */

.jtaf-analytics-section {
    width: 100%;
    margin-top: 30px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 2px 7px rgba(0,0,0,.07);
}

.jtaf-analytics-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.jtaf-analytics-header-left h2 {
    margin: 0;
    font-size: 21px;
    color: #333;
}

.jtaf-analytics-header-left p {
    margin: 5px 0 0;
    font-size: 12px;
    color: #888;
}

.jtaf-analytics-source {
    font-size: 11px;
    color: #2E7D32;
    background: #f1f8f3;
    border: 1px solid #d7eadb;
    padding: 6px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

/* =========================================================
   GROWTH SUMMARY
   ========================================================= */

.jtaf-growth-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.jtaf-growth-item {
    text-align: center;
    padding: 15px 10px;
    border-right: 1px solid #eee;
}

.jtaf-growth-item:last-child {
    border-right: none;
}

.jtaf-growth-value {
    display: block;
    font-size: 24px;
    line-height: 1.1;
    font-weight: 700;
    color: #2E7D32;
}

.jtaf-growth-label {
    display: block;
    margin-top: 6px;
    font-size: 11px;
    color: #888;
}

/* =========================================================
   CHART
   ========================================================= */

.jtaf-citation-chart {
    width: 100%;
    min-height: 280px;
}

.jtaf-citation-chart svg {
    width: 100%;
    height: 280px;
    display: block;
}

.jtaf-chart-empty {
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #999;
    font-size: 13px;
}

.jtaf-baseline-number {
    font-size: 30px;
    font-weight: 700;
    color: #2E7D32;
}

.jtaf-baseline-text {
    margin-top: 7px;
    font-size: 12px;
    color: #888;
}

.jtaf-growth-message {
    text-align: center;
    font-size: 12px;
    color: #888;
    margin-top: 10px;
}

/* =========================================================
   DATA STATUS
   ========================================================= */

.jtaf-data-status {
    margin-top: 20px;
    text-align: center;
    font-size: 11px;
    color: #999;
}

.jtaf-data-status-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 5px;
    border-radius: 50%;
    background: #999;
}

.jtaf-data-status.success .jtaf-data-status-dot {
    background: #2E7D32;
}

.jtaf-data-status.error .jtaf-data-status-dot {
    background: #c62828;
}

/* =========================================================
   IMPACT AT A GLANCE
   ========================================================= */

.jtaf-impact-glance {
    width: 100%;
    margin-top: 22px;
    background: #f8fbf9;
    border: 1px solid #dce9df;
    border-radius: 14px;
    padding: 22px 24px;
}

.jtaf-impact-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.jtaf-impact-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #2E7D32;
    color: #fff;
    font-size: 17px;
    flex-shrink: 0;
}

.jtaf-impact-header h2 {
    margin: 0;
    font-size: 19px;
    font-weight: 700;
    color: #333;
}

.jtaf-impact-header p {
    margin: 3px 0 0;
    font-size: 11px;
    color: #888;
}

.jtaf-impact-text {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

.jtaf-impact-text strong {
    color: #2E7D32;
    font-weight: 700;
}

.jtaf-impact-footer {
    margin-top: 15px;
    padding-top: 12px;
    border-top: 1px solid #e3ece5;
    font-size: 10px;
    color: #999;
}

/* =========================================================
   MOBILE
   ========================================================= */

@media screen and (max-width: 700px) {
    .jtaf-metric-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 600px) {

    .jtaf-dashboard {
        padding-left: 5px;
        padding-right: 5px;
    }

    .jtaf-dashboard-title {
        font-size: 21px;
    }

    .jtaf-metric-grid,
    .jtaf-metric-grid.two {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .jtaf-metric-card {
        min-height: 125px;
    }

    .jtaf-metric-value {
        font-size: 27px;
    }

    .jtaf-analytics-section {
        padding: 16px;
    }

    .jtaf-analytics-header {
        align-items: flex-start;
        gap: 10px;
    }

    .jtaf-analytics-header-left h2 {
        font-size: 19px;
    }

    .jtaf-analytics-source {
        font-size: 10px;
    }

    .jtaf-growth-summary {
        grid-template-columns: 1fr;
    }

    .jtaf-growth-item {
        border-right: none;
        border-bottom: 1px solid #eee;
    }

    .jtaf-growth-item:last-child {
        border-bottom: none;
    }

    .jtaf-impact-glance {
        padding: 18px;
    }

    .jtaf-impact-text {
        font-size: 14px;
        line-height: 1.7;
    }

    .jtaf-impact-header h2 {
        font-size: 17px;
    }
}

@media screen and (max-width: 400px) {

    .jtaf-metric-grid,
    .jtaf-metric-grid.two {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   JTAF METRICS v5.5
   BLOCK 5 — INDEXING & ABSTRACTING SERVICES
   OJS 2.4.8 COMPATIBLE
   ========================================================= */

.jtaf-index-section {

    width: 100%;

    margin-top: 28px;

    padding: 22px 20px;

    box-sizing: border-box;

    background: #f8fbf9;

    border: 1px solid #dce9df;

    border-radius: 14px;

}


/* =========================================================
   HEADER
   ========================================================= */

.jtaf-index-header {

    display: flex;

    align-items: center;

    gap: 11px;

    margin-bottom: 6px;

}


.jtaf-index-icon {

    width: 34px;

    height: 34px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #2E7D32;

    color: #fff;

    font-size: 16px;

    flex-shrink: 0;

}


.jtaf-index-title {

    margin: 0;

    font-size: 20px;

    font-weight: 700;

    color: #333;

}


.jtaf-index-subtitle {

    margin: 0 0 20px 45px;

    font-size: 11px;

    color: #888;

}


/* =========================================================
   INDEXER GRID
   ========================================================= */

.jtaf-index-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 12px;

}


/* =========================================================
   INDEXER CARD
   ========================================================= */

.jtaf-index-card {

    min-height: 135px;

    background: #fff;

    border: 1px solid #dedede;

    border-radius: 10px;

    padding: 10px;

    box-sizing: border-box;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: space-between;

    text-decoration: none;

    transition:
        transform .18s ease,
        box-shadow .18s ease,
        border-color .18s ease;

}


/* =========================================================
   HOVER
   ========================================================= */

.jtaf-index-card:hover {

    transform: translateY(-3px);

    border-color: #9bbda1;

    box-shadow:
        0 5px 14px rgba(0,0,0,.09);

    text-decoration: none;

}


/* =========================================================
   LOGO BOX
   ========================================================= */

.jtaf-index-logo {

    width: 100%;

    height: 78px;

    display: flex;

    align-items: center;

    justify-content: center;

    box-sizing: border-box;

    overflow: hidden;

}


/* =========================================================
   LOGO
   ========================================================= */

.jtaf-index-logo img {

    max-width: 88%;

    max-height: 70px;

    width: auto;

    height: auto;

    object-fit: contain;

    display: block;

}


/* =========================================================
   INDEXER NAME
   ========================================================= */

.jtaf-index-name {

    width: 100%;

    min-height: 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    font-size: 11px;

    line-height: 1.3;

    font-weight: 600;

    color: #555;

}


/* =========================================================
   FOOTNOTE
   ========================================================= */

.jtaf-index-footer {

    margin-top: 16px;

    padding-top: 11px;

    border-top: 1px solid #e2ebe4;

    text-align: center;

    font-size: 10px;

    line-height: 1.6;

    color: #999;

}


/* =========================================================
   TABLET
   ========================================================= */

@media screen and (max-width: 700px) {

    .jtaf-index-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media screen and (max-width: 420px) {

    .jtaf-index-section {

        padding: 18px 12px;

    }


    .jtaf-index-grid {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 9px;

    }


    .jtaf-index-card {

        min-height: 120px;

    }


    .jtaf-index-logo {

        height: 68px;

    }


    .jtaf-index-logo img {

        max-height: 60px;

    }


    .jtaf-index-name {

        font-size: 10px;

    }


    .jtaf-index-subtitle {

        margin-left: 0;

    }

}





#jtafPublicationStatsV2 {

    width:100%;
    max-width:805px;

    margin:28px auto;

    padding:24px;

    box-sizing:border-box;

    background:#ffffff;

    border:1px solid #e4e9e5;

    border-radius:16px;

    box-shadow:
        0 4px 18px rgba(0,0,0,0.06);

    font-family:
        'Segoe UI',
        Arial,
        Helvetica,
        sans-serif;

    color:#333;

}


/* =========================================================
   HEADER
   ========================================================= */

#jtafPublicationStatsV2 .jtaf-pub-header {

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:15px;

    margin-bottom:18px;

    flex-wrap:wrap;

}


#jtafPublicationStatsV2 .jtaf-pub-title {

    font-size:20px;

    font-weight:700;

    color:#174d2a;

    margin-bottom:5px;

}


#jtafPublicationStatsV2 .jtaf-pub-subtitle {

    font-size:13px;

    color:#777;

}


#jtafPublicationStatsV2 .jtaf-pub-period {

    background:#edf7ef;

    color:#24733a;

    border:1px solid #d5ead9;

    border-radius:20px;

    padding:6px 12px;

    font-size:11px;

    font-weight:600;

    white-space:nowrap;

}


/* =========================================================
   STATUS
   ========================================================= */

#jtafPublicationStatsV2 .jtaf-pub-status {

    padding:45px 20px;

    text-align:center;

    color:#777;

    font-size:13px;

}


/* =========================================================
   CHART WRAPPER
   ========================================================= */

#jtafPublicationStatsV2 .jtaf-pub-chart-wrap {

    width:100%;

    overflow-x:auto;

    overflow-y:hidden;

    padding:5px 0 0;

    box-sizing:border-box;

}


/*
 * SVG itself.
 *
 * Minimum width keeps 8+ years readable
 * on small screens.
 */

#jtafPublicationStatsV2 .jtaf-pub-svg {

    width:100%;

    min-width:620px;

    height:360px;

    display:block;

}


/* =========================================================
   SVG ELEMENTS
   ========================================================= */

#jtafPublicationStatsV2 .jtaf-grid {

    stroke:#e8eee9;

    stroke-width:1;

}


#jtafPublicationStatsV2 .jtaf-axis {

    stroke:#cfd8d1;

    stroke-width:1;

}


#jtafPublicationStatsV2 .jtaf-y-label {

    fill:#888;

    font-size:10px;

}


#jtafPublicationStatsV2 .jtaf-x-label {

    fill:#555;

    font-size:11px;

    font-weight:600;

}


#jtafPublicationStatsV2 .jtaf-value {

    fill:#444;

    font-size:10px;

    font-weight:700;

}


#jtafPublicationStatsV2 .jtaf-bar-articles {

    fill:#2e7d32;

    opacity:.82;

    transition:
        opacity .15s ease,
        transform .15s ease;

}


#jtafPublicationStatsV2 .jtaf-bar-issues {

    fill:#d88900;

    opacity:.78;

    transition:
        opacity .15s ease,
        transform .15s ease;

}


#jtafPublicationStatsV2 .jtaf-bar-articles:hover,
#jtafPublicationStatsV2 .jtaf-bar-issues:hover {

    opacity:1;

}


/* =========================================================
   CHART TITLE
   ========================================================= */

#jtafPublicationStatsV2 .jtaf-chart-title {

    fill:#174d2a;

    font-size:14px;

    font-weight:700;

}


#jtafPublicationStatsV2 .jtaf-chart-description {

    fill:#888;

    font-size:10px;

}


/* =========================================================
   LEGEND
   ========================================================= */

#jtafPublicationStatsV2 .jtaf-legend-text {

    fill:#666;

    font-size:10px;

}


#jtafPublicationStatsV2 .jtaf-legend-article {

    fill:#2e7d32;

}


#jtafPublicationStatsV2 .jtaf-legend-issue {

    fill:#d88900;

}


/* =========================================================
   SUMMARY
   ========================================================= */

#jtafPublicationStatsV2 .jtaf-pub-summary {

    display:flex;

    gap:10px;

    margin-top:18px;

    padding-top:16px;

    border-top:1px solid #edf0ed;

    flex-wrap:wrap;

}


#jtafPublicationStatsV2 .jtaf-summary-card {

    flex:1;

    min-width:130px;

    padding:13px 15px;

    border-radius:10px;

    box-sizing:border-box;

}


#jtafPublicationStatsV2 .jtaf-summary-label {

    font-size:11px;

    color:#777;

    margin-bottom:4px;

}


#jtafPublicationStatsV2 .jtaf-summary-value {

    font-size:21px;

    font-weight:700;

}


#jtafPublicationStatsV2 .jtaf-summary-articles {

    background:#f3faf4;

}


#jtafPublicationStatsV2 .jtaf-summary-articles
.jtaf-summary-value {

    color:#2e7d32;

}


#jtafPublicationStatsV2 .jtaf-summary-issues {

    background:#fff9ef;

}


#jtafPublicationStatsV2 .jtaf-summary-issues
.jtaf-summary-value {

    color:#d88900;

}


#jtafPublicationStatsV2 .jtaf-summary-period {

    background:#f7f7f7;

}


#jtafPublicationStatsV2 .jtaf-summary-period
.jtaf-summary-value {

    color:#444;

    font-size:17px;

}


/* =========================================================
   FOOTER
   ========================================================= */

#jtafPublicationStatsV2 .jtaf-pub-footer {

    margin-top:15px;

    font-size:11px;

    color:#999;

    text-align:right;

}


/* =========================================================
   MOBILE
   ========================================================= */

@media screen and (max-width:600px) {

    #jtafPublicationStatsV2 {

        padding:18px;

        border-radius:12px;

    }


    #jtafPublicationStatsV2
    .jtaf-pub-title {

        font-size:18px;

    }


    #jtafPublicationStatsV2
    .jtaf-pub-subtitle {

        font-size:12px;

    }


    #jtafPublicationStatsV2
    .jtaf-pub-svg {

        min-width:590px;

        height:350px;

    }


    #jtafPublicationStatsV2
    .jtaf-summary-card {

        min-width:110px;

    }

}




/* =========================================================
   JTAF METRICS & INDEXING — OJS 3.5 ADAPTATION v6.0
   Original v5.7 data/API logic retained.
   ========================================================= */

.jtaf-dashboard,
.jtaf-index-section,
.jtaf-pub-summary {
    font-family: inherit !important;
}

.jtaf-dashboard-ojs35 {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    color: #314138;
}

/* INTRO */
.jtaf-metrics-hero {
    position: relative;
    overflow: hidden;
    margin: 0 0 18px;
    padding: 20px 22px;
    border: 1px solid #d7e3da;
    border-top: 5px solid #2f6f3e;
    border-radius: 13px;
    background:
        linear-gradient(rgba(255,255,255,.91), rgba(255,255,255,.91)),
        url('https://upload.unmul.ac.id/uploads/adcdJTAFpattern-v2.png');
    background-repeat: repeat;
    background-size: 190px 190px;
    box-shadow: 0 4px 15px rgba(0,0,0,.06);
}

.jtaf-metrics-hero::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 5px;
    background: #ef8a17;
}

.jtaf-metrics-hero-kicker {
    margin-bottom: 4px;
    color: #2f6f3e;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.jtaf-metrics-hero-name {
    color: #153f25;
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.3;
}

.jtaf-metrics-hero-text {
    max-width: 760px;
    margin: 8px 0 13px;
    color: #536159;
    font-size: .88rem;
    line-height: 1.65;
}

.jtaf-metrics-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.jtaf-metrics-hero-badges span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 10px;
    border: 1px solid #d4e1d7;
    border-radius: 999px;
    background: rgba(248,251,249,.95);
    color: #245c36;
    font-size: .70rem;
    font-weight: 700;
}

/* NOTICE */
.jtaf-metrics-notice {
    margin: 0 0 22px !important;
    padding: 13px 15px !important;
    border: 1px solid #eadfcf !important;
    border-left: 5px solid #ef8a17 !important;
    border-radius: 9px !important;
    background: linear-gradient(90deg, #fff8ef 0%, #fbfcfa 100%) !important;
    color: #5a625d !important;
    font-size: .78rem !important;
    line-height: 1.55 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,.035);
}

.jtaf-metrics-notice strong {
    color: #315c40 !important;
}

/* SECTION HEADINGS */
.jtaf-section-title,
.jtaf-analytics-header-left h2,
.jtaf-impact-header h2,
.jtaf-index-title,
.jtaf-pub-title {
    color: #174a2b !important;
}

.jtaf-section-title {
    margin-bottom: 14px !important;
    padding: 9px 12px 9px 16px;
    border-left: 5px solid #2f6f3e;
    border-radius: 6px;
    background: linear-gradient(90deg, #f1f8f3, #fff9ef);
    font-size: 1.05rem !important;
}

/* METRIC GROUPS / CARDS */
.jtaf-metric-group {
    margin-bottom: 18px !important;
    padding: 14px;
    border: 1px solid #e0e7e2;
    border-radius: 11px;
    background: rgba(255,255,255,.86);
    box-shadow: 0 2px 9px rgba(0,0,0,.035);
}

.jtaf-metric-group-title {
    margin-bottom: 11px !important;
    color: #385244 !important;
    font-size: .82rem !important;
}

.jtaf-group-dot {
    background: linear-gradient(180deg, #2f7b48, #ef8a17) !important;
}

.jtaf-metric-grid {
    gap: 10px !important;
}

.jtaf-metric-card {
    position: relative;
    overflow: hidden;
    min-height: 118px !important;
    padding: 13px 9px !important;
    border: 1px solid #dfe7e2 !important;
    border-top: 4px solid #2f6f3e !important;
    border-radius: 9px !important;
    background: linear-gradient(180deg, #fbfdfb 0%, #ffffff 100%) !important;
    box-shadow: 0 2px 8px rgba(0,0,0,.045) !important;
}

.jtaf-metric-card:nth-child(even) {
    border-top-color: #ef8a17 !important;
}

.jtaf-metric-card:hover {
    transform: translateY(-3px) !important;
    border-color: #c5d7ca !important;
    box-shadow: 0 8px 18px rgba(0,0,0,.085) !important;
}

.jtaf-metric-value {
    color: #267044 !important;
    font-size: 1.65rem !important;
}

.jtaf-metric-label {
    margin-top: 7px !important;
    color: #37483e !important;
    font-size: .77rem !important;
}

.jtaf-metric-source {
    color: #89948d !important;
    font-size: .63rem !important;
}

/* ANALYTICS / IMPACT / PUBLICATION */
.jtaf-analytics-section,
.jtaf-impact-glance,
.jtaf-pub-summary {
    border: 1px solid #dce5df !important;
    border-radius: 12px !important;
    background:
        linear-gradient(rgba(255,255,255,.94), rgba(255,255,255,.94)),
        url('https://upload.unmul.ac.id/uploads/adcdJTAFpattern-v2.png') !important;
    background-repeat: repeat !important;
    background-size: 210px 210px !important;
    box-shadow: 0 3px 12px rgba(0,0,0,.05) !important;
}

.jtaf-analytics-section {
    margin-top: 20px !important;
    padding: 18px !important;
}

.jtaf-analytics-source {
    color: #24633a !important;
    background: #f2f8f4 !important;
    border-color: #d5e4d9 !important;
}

.jtaf-growth-summary {
    border-color: #dfe7e2 !important;
}

.jtaf-growth-value {
    color: #287146 !important;
}

.jtaf-impact-glance {
    margin-top: 18px !important;
    padding: 18px !important;
}

.jtaf-data-status {
    margin-top: 14px !important;
    border-radius: 999px !important;
}

.jtaf-pub-summary {
    margin-top: 20px !important;
    padding: 18px !important;
}

.jtaf-pub-period {
    border-color: #d7e3da !important;
    background: #f3f8f4 !important;
    color: #2f6f3e !important;
}

/* INDEXING */
.jtaf-index-section {
    width: 100% !important;
    max-width: none !important;
    margin-top: 22px !important;
    padding: 18px !important;
    border: 1px solid #dce5df !important;
    border-top: 5px solid #2f6f3e !important;
    border-radius: 12px !important;
    background:
        linear-gradient(rgba(255,255,255,.94), rgba(255,255,255,.94)),
        url('https://upload.unmul.ac.id/uploads/adcdJTAFpattern-v2.png') !important;
    background-repeat: repeat !important;
    background-size: 190px 190px !important;
    box-shadow: 0 3px 12px rgba(0,0,0,.05);
}

.jtaf-index-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 9px !important;
}

.jtaf-index-card {
    min-height: 112px !important;
    padding: 8px !important;
    border: 1px solid #dfe7e2 !important;
    border-radius: 8px !important;
    background: rgba(255,255,255,.96) !important;
    box-shadow: 0 1px 5px rgba(0,0,0,.035) !important;
}

.jtaf-index-card:hover {
    transform: translateY(-2px);
    border-color: #bfd2c4 !important;
    box-shadow: 0 6px 14px rgba(0,0,0,.075) !important;
}

.jtaf-index-logo {
    height: 64px !important;
}

.jtaf-index-logo img {
    max-height: 50px !important;
}

.jtaf-index-name {
    min-height: 24px !important;
    color: #526158 !important;
    font-size: .66rem !important;
}

/* RESPONSIVE */
@media (max-width: 980px) {
    .jtaf-metric-grid,
    .jtaf-metric-grid.two {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .jtaf-index-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 620px) {
    .jtaf-metrics-hero {
        padding: 17px 15px;
    }

    .jtaf-metrics-hero-name {
        font-size: 1.12rem;
    }

    .jtaf-metric-grid,
    .jtaf-metric-grid.two {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px !important;
    }

    .jtaf-index-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .jtaf-analytics-section,
    .jtaf-impact-glance,
    .jtaf-index-section,
    .jtaf-pub-summary {
        padding: 14px !important;
    }
}

@media (max-width: 390px) {
    .jtaf-metric-grid,
    .jtaf-metric-grid.two {
        grid-template-columns: 1fr !important;
    }
}

/* =========================================================
   29. STATIC PAGE SUITE — REVIEWERS + METRICS v3.7
   CSS moved out of Static Page HTML into Journal style sheet.
   ========================================================= */

/* ---------- COMMON STATIC PAGE WIDTH ---------- */
.jtaf-reviewer-page,
.jtaf-reviewer-wrapper,
.jtaf-dashboard-ojs35 {
    width: 100% !important;
    max-width: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box;
}

/* =========================================================
   REVIEWER REGISTRATION
   ========================================================= */
.jtaf-reviewer-page {
    overflow: hidden;
    border: 1px solid #dce5df;
    border-top: 5px solid #2f6f3e;
    border-radius: 13px;
    background: rgba(255,255,255,.90);
    box-shadow: 0 4px 15px rgba(0,0,0,.055);
}

.jtaf-reviewer-page .jtaf-reviewer-header {
    position: relative;
    margin: 0 !important;
    padding: 23px 26px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background:
        linear-gradient(110deg, rgba(13,97,53,.97), rgba(36,111,62,.96)),
        url('https://upload.unmul.ac.id/uploads/adcdJTAFpattern-v2.png') !important;
    color: #fff !important;
    text-align: left !important;
    box-shadow: none !important;
}

.jtaf-reviewer-page .jtaf-reviewer-header::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 130px;
    height: 5px;
    background: #ef8a17;
}

.jtaf-reviewer-page .jtaf-reviewer-header h1 {
    margin: 0 0 6px !important;
    color: #fff !important;
    font-size: 1.45rem !important;
}

.jtaf-reviewer-page .jtaf-reviewer-header p {
    margin: 0 !important;
    color: rgba(255,255,255,.90) !important;
    font-size: .86rem !important;
}

.jtaf-reviewer-page .jtaf-intro {
    padding: 22px 25px 18px !important;
    border-bottom: 1px solid #e3e9e5;
    background:
        linear-gradient(rgba(255,255,255,.92), rgba(255,255,255,.92)),
        url('https://upload.unmul.ac.id/uploads/adcdJTAFpattern-v2.png');
    background-repeat: repeat;
    background-size: 210px 210px;
}

.jtaf-reviewer-page .jtaf-intro h2 {
    margin-top: 0 !important;
    color: #174a2b !important;
    font-size: 1.08rem !important;
}

.jtaf-reviewer-page .jtaf-note {
    margin-top: 15px !important;
    padding: 12px 14px !important;
    border: 1px solid #eadfcf !important;
    border-left: 5px solid #ef8a17 !important;
    border-radius: 8px !important;
    background: linear-gradient(90deg,#fff8ef,#fbfcfa) !important;
    color: #566158 !important;
}

.jtaf-reviewer-page .jtaf-form {
    padding: 22px 25px 25px !important;
    border: 0 !important;
    background: rgba(255,255,255,.96) !important;
}

.jtaf-reviewer-page .jtaf-section {
    margin-bottom: 20px !important;
    padding-bottom: 18px !important;
}

.jtaf-reviewer-page .jtaf-section-title {
    margin: 0 0 15px !important;
    padding: 9px 12px 9px 15px !important;
    border: 1px solid #dfe7e2 !important;
    border-left: 5px solid #2f6f3e !important;
    border-radius: 7px !important;
    background: linear-gradient(90deg,#f1f8f3,#fff9ef) !important;
    color: #174a2b !important;
    font-size: .94rem !important;
}

.jtaf-reviewer-page .jtaf-row {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0,1fr)) !important;
    gap: 14px !important;
    width: 100% !important;
    margin-bottom: 14px !important;
}

.jtaf-reviewer-page .jtaf-col {
    display: block !important;
    width: auto !important;
    padding: 0 !important;
}

.jtaf-reviewer-page .jtaf-label {
    margin-bottom: 5px !important;
    color: #34463b !important;
    font-size: .76rem !important;
}

.jtaf-reviewer-page .jtaf-input,
.jtaf-reviewer-page .jtaf-select,
.jtaf-reviewer-page .jtaf-textarea {
    width: 100% !important;
    min-height: 40px;
    padding: 9px 11px !important;
    border: 1px solid #cfdad2 !important;
    border-radius: 7px !important;
    background: #fff !important;
    color: #2e3d34 !important;
    font-family: inherit !important;
    font-size: .80rem !important;
    box-shadow: inset 0 1px 2px rgba(0,0,0,.02);
    transition: border-color .15s ease, box-shadow .15s ease;
}

.jtaf-reviewer-page .jtaf-textarea {
    min-height: 105px;
}

.jtaf-reviewer-page .jtaf-input:focus,
.jtaf-reviewer-page .jtaf-select:focus,
.jtaf-reviewer-page .jtaf-textarea:focus {
    outline: none !important;
    border-color: #4e8b61 !important;
    box-shadow: 0 0 0 3px rgba(47,111,62,.10) !important;
}

.jtaf-reviewer-page .jtaf-help {
    display: block;
    margin-top: 4px;
    color: #7a867e !important;
    font-size: .66rem !important;
}

.jtaf-reviewer-page .jtaf-checkbox-item,
.jtaf-reviewer-page .jtaf-radio-item,
.jtaf-reviewer-page .jtaf-declaration-item {
    border-radius: 7px;
}

.jtaf-reviewer-page .jtaf-profile-box,
.jtaf-reviewer-page .jtaf-expertise-box,
.jtaf-reviewer-page .jtaf-benefits {
    border: 1px solid #dfe7e2 !important;
    border-radius: 9px !important;
    background: #f8faf9 !important;
}

.jtaf-reviewer-page .jtaf-submit {
    border-radius: 999px !important;
    background: linear-gradient(90deg,#1f6a3c,#2f7b48) !important;
    box-shadow: 0 4px 10px rgba(31,106,60,.16);
    transition: transform .15s ease, box-shadow .15s ease;
}

.jtaf-reviewer-page .jtaf-submit:hover,
.jtaf-reviewer-page .jtaf-submit:focus {
    transform: translateY(-1px);
    background: #174a2b !important;
    box-shadow: 0 7px 14px rgba(31,106,60,.20);
}

/* =========================================================
   REVIEWER DIRECTORY / LIST
   ========================================================= */
.jtaf-reviewer-wrapper {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.jtaf-reviewer-wrapper .jtaf-reviewer-header {
    position: relative;
    margin: 0 0 16px !important;
    padding: 18px 20px !important;
    border-radius: 11px !important;
    background:
        linear-gradient(110deg,#155f35,#2f7b48) !important;
    text-align: left !important;
    box-shadow: 0 4px 12px rgba(0,0,0,.07) !important;
}

.jtaf-reviewer-wrapper .jtaf-reviewer-header::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 90px;
    height: 4px;
    border-radius: 0 11px 0 3px;
    background: #ef8a17;
}

.jtaf-reviewer-wrapper .jtaf-reviewer-header h2 {
    margin: 0 !important;
    color: #fff !important;
    font-size: 1.18rem !important;
}

.jtaf-reviewer-wrapper .jtaf-reviewer-header h2 span {
    color: #fff !important;
}

.jtaf-reviewer-wrapper .jtaf-reviewer-header p {
    color: rgba(255,255,255,.88) !important;
}

.jtaf-reviewer-loading {
    position: relative;
    padding: 26px 18px 26px 48px !important;
    border: 1px solid #dfe7e2;
    border-radius: 9px;
    background: #f8faf9;
    color: #5b685f !important;
    text-align: left !important;
}

.jtaf-reviewer-loading::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 50%;
    width: 16px;
    height: 16px;
    margin-top: -8px;
    border: 2px solid #cbd9cf;
    border-top-color: #2f6f3e;
    border-radius: 50%;
    animation: jtafSpin .8s linear infinite;
}

@keyframes jtafSpin {
    to { transform: rotate(360deg); }
}

.jtaf-reviewer-grid {
    display: grid !important;
    grid-template-columns: repeat(2,minmax(0,1fr)) !important;
    gap: 12px !important;
}

.jtaf-reviewer-card {
    position: relative;
    overflow: hidden;
    min-height: 125px !important;
    padding: 15px !important;
    border: 1px solid #dfe7e2 !important;
    border-top: 4px solid #2f6f3e !important;
    border-radius: 9px !important;
    background: rgba(255,255,255,.96) !important;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.jtaf-reviewer-card:nth-child(even) {
    border-top-color: #ef8a17 !important;
}

.jtaf-reviewer-card:hover {
    transform: translateY(-2px);
    border-color: #c8d8cd !important;
    box-shadow: 0 7px 16px rgba(0,0,0,.075);
}

.jtaf-reviewer-name {
    color: #174a2b !important;
    font-size: .92rem !important;
}

.jtaf-reviewer-affiliation {
    color: #647168 !important;
    font-size: .75rem !important;
}

.jtaf-reviewer-identifier {
    margin-right: 5px;
    border-radius: 999px !important;
    background: #f1f7f3 !important;
    border-color: #d3e2d7 !important;
    color: #25613a !important;
}

/* =========================================================
   METRICS PAGE FINAL OJS 3.5 POLISH
   ========================================================= */
.jtaf-dashboard-ojs35 {
    padding: 0 !important;
}

.jtaf-dashboard-ojs35 .jtaf-metrics-section,
.jtaf-dashboard-ojs35 .jtaf-analytics-section,
.jtaf-dashboard-ojs35 .jtaf-impact-glance,
.jtaf-dashboard-ojs35 .jtaf-pub-summary,
.jtaf-dashboard-ojs35 .jtaf-index-section {
    max-width: none !important;
}

.jtaf-dashboard-ojs35 .jtaf-metric-grid {
    grid-template-columns: repeat(4,minmax(0,1fr));
}

.jtaf-dashboard-ojs35 .jtaf-metric-card {
    min-height: 108px !important;
}

.jtaf-dashboard-ojs35 .jtaf-index-grid {
    grid-template-columns: repeat(4,minmax(0,1fr)) !important;
}

.jtaf-dashboard-ojs35 canvas {
    max-width: 100% !important;
}

.jtaf-dashboard-ojs35 .jtaf-chart-container,
.jtaf-dashboard-ojs35 .jtaf-chart-wrap {
    min-height: 260px;
    border-radius: 10px;
    background: rgba(255,255,255,.88);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
    .jtaf-reviewer-page .jtaf-row {
        grid-template-columns: 1fr !important;
    }

    .jtaf-reviewer-grid {
        grid-template-columns: 1fr !important;
    }

    .jtaf-dashboard-ojs35 .jtaf-metric-grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }
}

@media (max-width: 520px) {
    .jtaf-reviewer-page .jtaf-reviewer-header,
    .jtaf-reviewer-page .jtaf-intro,
    .jtaf-reviewer-page .jtaf-form {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .jtaf-dashboard-ojs35 .jtaf-metric-grid,
    .jtaf-dashboard-ojs35 .jtaf-index-grid {
        grid-template-columns: 1fr !important;
    }
}
