/* =====================================================
   LP2STM MODERN OJS UI
   FINAL PROFESSIONAL CLEAN VERSION
===================================================== */

:root{
    --primary:#1f2937;
    --accent:#d4a017;
    --bg:#f4f6f9;
    --border:#e5e7eb;
    --text:#1f2937;
    --muted:#6b7280;
}

/* =====================================================
   GLOBAL
===================================================== */

body{
    background:var(--bg);
    color:var(--text);
    font-family:"Segoe UI",Roboto,Arial,sans-serif;
    line-height:1.7;
}

/* Smooth */
*{
    box-sizing:border-box;
    scroll-behavior:smooth;
}

/* Selection */
::selection{
    background:var(--accent);
    color:#fff;
}

/* =====================================================
   HEADER
===================================================== */

.pkp_structure_head{
    background:#2f3441;
    position:sticky;
    top:0;
    z-index:9999;
    box-shadow:0 2px 12px rgba(0,0,0,.08);
}

/* HEADER WRAPPER */
.pkp_head_wrapper{
    max-width:1400px;
    margin:auto;
}

/* LOGO */
.pkp_site_name .is_img img{
    width:auto;
    max-width:100%;
    max-height:140px;
    object-fit:contain;
}

.pkp_site_name .is_img img{
    width:100%;
    max-height:160px;
    object-fit:cover;
    display:block;
}

/* USER MENU */
.pkp_navigation_user_wrapper{
    position:absolute;
    top:12px;
    right:20px;
    z-index:9999;
}

.pkp_navigation_user_wrapper a{
    color:#fff !important;
    font-size:14px;
    font-weight:600;
}

/* =====================================================
   NAVIGATION
===================================================== */

.pkp_navigation_primary_wrapper{
    background:#fff;
    border-bottom:1px solid var(--border);
}

.pkp_navigation_primary_row{
    max-width:1400px;
    margin:auto;
}

.pkp_navigation_primary > li > a{
    color:#374151 !important;
    font-size:14px;
    font-weight:600;
    padding:16px 18px;
    transition:.3s ease;
}

.pkp_navigation_primary > li > a:hover{
    color:var(--accent) !important;
}

/* =====================================================
   MAIN LAYOUT
===================================================== */

.pkp_structure_page{
    max-width:1400px;
    margin:30px auto;
    padding:0 20px;
}

.pkp_structure_content{
    display:grid;
    grid-template-columns:minmax(0,1fr) 300px;
    gap:30px;
    align-items:start;
}

.pkp_structure_main{
    min-width:0;
}

/* CONTENT GRID */
.pkp_structure_content{
    display:grid;
    grid-template-columns:minmax(0,1fr) 310px;
    gap:30px;
    align-items:start;
}

/* =====================================================
   MAIN CONTENT
===================================================== */

.pkp_structure_main{
    background:#fff;
    border:1px solid var(--border);
    border-radius:14px;
    padding:35px;
    min-width:0;
    box-shadow:0 4px 18px rgba(0,0,0,.04);
}

/* PAGE TITLE */
.page h1{
    font-size:32px;
    font-weight:700;
    line-height:1.3;
    color:#111827;
    margin-bottom:28px;
}

/* =====================================================
   HERO SECTION
===================================================== */

.journal-hero{
    background:linear-gradient(135deg,#1f2937,#374151);
    color:#fff;
    padding:40px;
    border-radius:16px;
    margin-bottom:35px;
    box-shadow:0 12px 30px rgba(0,0,0,.12);
    position:relative;
    overflow:hidden;
}

.journal-hero h1{
    font-size:34px;
    font-weight:700;
    margin-bottom:15px;
    color:#fff;
}

.journal-hero p{
    font-size:16px;
    line-height:1.9;
    opacity:.95;
}

/* =====================================================
   INFO BOX
===================================================== */

.journal-info-box{
    background:#fff;
    border:1px solid var(--border);
    border-radius:12px;
    padding:28px;
    margin-bottom:28px;
    box-shadow:0 3px 12px rgba(0,0,0,.03);
}

.journal-info-box h2{
    font-size:22px;
    margin-bottom:18px;
    color:#1f2937;
}

.journal-info-box ul{
    padding-left:18px;
}

.journal-info-box li{
    margin-bottom:10px;
}

/* =====================================================
   ARTICLE CARD
===================================================== */

.obj_article_summary{
    overflow:hidden;
    position:relative;
    background:#fff;
    border:1px solid var(--border);
    border-radius:14px;
    padding:24px;
    margin-bottom:28px;
    transition:all .3s ease;
}

.obj_article_summary::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:5px;
    height:100%;
    background:var(--accent);
    border-radius:14px 0 0 14px;
}

.obj_article_summary:hover{
    border-color:#d4a017;
    transform:translateY(-3px);
    box-shadow:0 12px 28px rgba(0,0,0,.05);
}

/* ARTICLE TITLE */
.obj_article_summary .title{
    line-height:1.5;
    margin-bottom:12px;
}

.obj_article_summary .title a{
    color:#1f2937;
    font-size:18px;
    font-weight:700;
    text-decoration:none;
}

.obj_article_summary .title a:hover{
    color:var(--accent);
}

/* ARTICLE META */
.obj_article_summary .meta{
    color:var(--muted);
    font-size:14px;
    margin-top:10px;
}

/* ARTICLE SUMMARY */
.obj_article_summary .summary{
    margin-top:15px;
    line-height:1.8;
}

/* DOI */
.doi{
    color:#64748b;
    font-size:13px;
    word-break:break-word;
}

/* =====================================================
   SIDEBAR
===================================================== */

/* HIDE LEFT SIDEBAR */
.pkp_structure_sidebar.left{
    display:none !important;
}

/* RIGHT SIDEBAR */
.pkp_structure_sidebar.right{
    position:sticky;
    top:100px;
    align-self:start;
}

/* SIDEBAR BLOCK */
.pkp_block{
    background:#fcfcfd;
    border:1px solid var(--border);
    border-radius:12px;
    overflow:hidden;
    margin-bottom:24px;
    box-shadow:0 3px 12px rgba(0,0,0,.03);
    transition:all .3s ease;
}

.pkp_block:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 24px rgba(0,0,0,.05);
}

/* SIDEBAR TITLE */
.pkp_block .title{
    background:#fff;
    color:#374151;
    font-size:18px;
    font-weight:700;
    padding:18px 20px;
    border-bottom:1px solid var(--border);
}

/* SIDEBAR MENU */
.pkp_block ul{
    margin:0;
    padding:0;
    list-style:none;
}

.pkp_block ul li{
    border-bottom:1px solid #f1f5f9;
}

.pkp_block ul li:last-child{
    border-bottom:none;
}

.pkp_block ul li a{
    display:block;
    padding:14px 18px;
    background:#fff;
    color:#374151 !important;
    text-decoration:none;
    font-weight:600;
    transition:all .3s ease;
}

.pkp_block ul li a:hover{
    background:#f8fafc;
    color:var(--accent) !important;
    padding-left:22px;
}

/* =====================================================
   BUTTON
===================================================== */

.pkp_button,
button,
input[type=submit]{
    background:#1f2937;
    color:#fff;
    border:none;
    border-radius:6px;
    padding:10px 18px;
    font-weight:600;
    transition:.3s ease;
}

.pkp_button:hover,
button:hover,
input[type=submit]:hover{
    background:var(--accent);
    color:#fff;
}

/* PDF BUTTON */
.obj_galley_link.pdf{
    background:linear-gradient(135deg,#dc2626,#991b1b);
    border:none;
    border-radius:6px;
    color:#fff !important;
    padding:8px 14px;
}
.obj_galley_link.pdf:hover{
    transform:translateY(-2px);
}
/* =====================================================
   FORM
===================================================== */

input[type=text],
input[type=password],
input[type=email],
textarea,
select{
    width:100%;
    border:1px solid #d1d5db;
    border-radius:6px;
    padding:10px 12px;
    background:#fff;
}

/* =====================================================
   FOOTER
===================================================== */

.pkp_structure_footer_wrapper{
    background:#1f2937;
    border-top:4px solid var(--accent);
    margin-top:50px;
}

.pkp_structure_footer{
    max-width:1400px;
    margin:auto;
    padding:35px 20px;
    color:#fff;
}
.pkp_structure_footer a{
    color:#d4a017;
}

.pkp_structure_footer a:hover{
    color:#ffffff;
}
/* =====================================================
   SCROLLBAR
===================================================== */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-thumb{
    background:#b0b7c3;
    border-radius:20px;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:992px){

    .pkp_structure_content{
        grid-template-columns:1fr;
    }

    .pkp_structure_sidebar.right{
        position:relative;
        top:auto;
    }

    .pkp_structure_main{
        padding:24px;
    }

    .page h1{
        font-size:28px;
    }

    .journal-hero{
        padding:30px;
    }

    .journal-hero h1{
        font-size:28px;
    }

}

/* MOBILE */
@media(max-width:768px){

    .pkp_structure_page{
        padding:0 12px;
    }

    .pkp_structure_main{
        padding:20px;
    }

    .obj_article_summary{
        padding:18px;
    }

    .obj_article_summary .title a{
        font-size:17px;
    }

    .pkp_navigation_primary{
        width:100%;
    }

    .pkp_navigation_primary > li{
        width:100%;
    }
}


/* ==========================================
   HIDE ACCESSIBILITY LINKS
========================================== */

.pkp_screen_reader,
.cmp_skip_to_content,
.skip_to_content,
a[href="#pkp_content_main"],
a[href="#navigationPrimary"],
a[href="#footer"]
{
    display:none !important;
}