/* =======================
   GLOBAL TYPOGRAPHY
======================= */
body{
    font-family:'Poppins', sans-serif;
    background:#f4f6f9;
    color:#1f2937;
}


/* =======================
   FORCE HEADER ROW LAYOUT
======================= */
.pkp_structure_head{
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
    flex-wrap:nowrap !important;
    padding:10px 20px !important;
}
.pkp_structure_head{
    background:linear-gradient(135deg,#0f172a,#1e3a8a);
}


/* =======================
   LOGO BLOCK FIX
======================= */
.pkp_site_name{
    flex:0 0 auto !important;
    text-align:left !important;
}


/* LOGO SIZE */
.pkp_site_name_wrapper .is_img img{
    width:200px !important;
    height:auto !important;
    display:block;
}

/* =======================
   LOGO CONTROL
======================= */
.pkp_site_name_wrapper{
    display:flex !important;
    align-items:center !important;
    flex:0 0 auto !important;
}

.pkp_site_name .is_img img{
    width:200px !important;
    height:auto !important;
    max-height:none !important;
    display:block !important;
}
.pkp_site_name_wrapper,
.pkp_site_name,
.pkp_site_name_wrapper a,
.pkp_site_name_wrapper .is_img{
    display:flex !important;
    align-items:center !important;
    visibility:visible !important;
    opacity:1 !important;
}

/* =======================
   MAIN HEADER FIX (IMPORTANT)
======================= */
.pkp_head_wrapper{
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
    flex-wrap:nowrap !important;
    width:100% !important;
}

/* =======================
   SITE NAME / LOGO AREA
======================= */
.pkp_site_name_wrapper{
    display:flex !important;
    align-items:center !important;
    flex:0 0 auto !important;
}

/* LOGO SIZE */
.pkp_site_name_wrapper .is_img img{
    width:200px !important;
    height:auto !important;
    display:block !important;
}

/* =======================
   REMOVE TITLE BLOCK (IMPORTANT)
======================= */
.main-header__title{
    display:none !important;
}

/* =======================
   NAVBAR FIX
======================= */
.pkp_navigation_primary_row{
    flex:1 !important;
    display:flex !important;
    justify-content:flex-end !important;
    align-items:center !important;
}

.pkp_navigation_primary{
    display:flex !important;
    justify-content:flex-end !important;
    align-items:center !important;
    margin:0 !important;
    padding:0 !important;
}

.pkp_navigation_primary a{
    color: black !important;
    font-weight:500;
    padding:8px 12px;
    text-decoration:none;
    border-radius:6px;
    transition:0.3s;
}

.pkp_navigation_primary a:hover{
    background:rgba(255,255,255,0.15);
    color:#38bdf8 !important;
}

/* =======================
   ISSUE CARDS
======================= */
.obj_issue_summary{
    background:#fff;
    border-radius:12px;
    box-shadow:0 4px 12px rgba(0,0,0,0.08);
    padding:18px;
    margin-bottom:20px;
    transition:all 0.3s ease;
}

.obj_issue_summary:hover{
    transform:translateY(-4px);
    box-shadow:0 8px 20px rgba(0,0,0,0.12);
}

/* =======================
   ARTICLE CARDS
======================= */
.obj_article_summary{
    background:#fff;
    border-radius:12px;
    padding:15px;
    margin-bottom:15px;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
    transition:0.3s;
}

.obj_article_summary:hover{
    transform:scale(1.01);
}

/* =======================
   LINKS
======================= */
a{
    color:#2563eb;
    text-decoration:none;
}

a:hover{
    text-decoration:underline;
}

/* =======================
   PAGE LAYOUT
======================= */
.pkp_page_index .page{
    max-width:1200px;
    margin:auto;
}

.pkp_structure_main{
    padding:20px;
}

.custom-hero{
    text-align:center;
    padding:70px 20px;
    background:linear-gradient(135deg,#0f172a,#1e3a8a);
    color:white;
    border-radius:12px;
    margin:20px;
}

.custom-hero h1{
    font-size:34px;
    margin-bottom:10px;
}

.custom-hero p{
    font-size:16px;
    opacity:0.9;
}
.modern-section{
    padding:40px 20px;
    border-radius:12px;
    background:#ffffff;
    margin:20px;
    box-shadow:0 4px 12px rgba(0,0,0,0.05);
}

.modern-announcements{
    padding:40px 20px;
    margin:20px;
    border-radius:12px;
    background:#f8fafc;
}

.announcement-section__toc li{
    background:white;
    padding:15px;
    border-radius:10px;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
}
.modern-issue{
    padding:30px 20px;
    margin:20px;
    background:#fff;
    border-radius:12px;
    box-shadow:0 4px 12px rgba(0,0,0,0.05);
}


@media (max-width: 768px){

    .pkp_structure_head{
        flex-direction:column !important;
        align-items:center !important;
    }

    .pkp_navigation_primary{
        justify-content:center !important;
        flex-wrap:wrap;
    }

    .pkp_site_name .is_img img{
        width:160px !important;
    }
}








