/* ==========================================================================
   1. GLOBAL STYLES
   ========================================================================== */
   body {
    background: #f0f4f8; 
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: normal;
    font-size: 16px;
    color: #243b53;
    margin: 0;
}

article, aside, footer, header, nav, section {
    display: block;
}

/* ==========================================================================
   2. HEADER & LOGO (FULL AREA)
   ========================================================================== */
   .pkp_structure_head {
    margin: 0;
    padding: 0;
    background: transparent;
    min-height: 100%;
    width: 100%;
    border-bottom: 0px solid #ddd;
}

.has_site_logo .pkp_head_wrapper {
    padding-top: 0px;
}

.pkp_site_name .is_img img {
    display: block;
    width: auto;
    height: auto;
    max-height: 100%;
    max-width: 100%;
}

/* ==========================================================================
   3. TOP NAVIGATION
   ========================================================================== */
.pkp_navigation_primary_row {
    background: #102a43; /* Deep Navy */
    padding-left: 20px;
}

.pkp_navigation_primary > li > a {
    font-size: 16px;
    display: block;
    color: #f0f4f8;
    text-decoration: none;
    padding: 12px 15px;
    transition: background 0.3s ease;
}

.pkp_navigation_primary > li > a:hover {
    background: #243b53;
    color: #ffffff;
    border-radius: 4px;
}

/* ==========================================================================
   4. MAIN STRUCTURE & CONTENT
   ========================================================================== */
.pkp_structure_content {
    background: #f0f4f8; 
    padding: 20px 0;
}

.pkp_structure_main {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    padding: 20px;
}

/* ==========================================================================
   5. ARTICLE SUMMARY LIST
   ========================================================================== */
.obj_article_summary {
    background-color: #ffffff;
    border: 1px solid #e1e8ed;
    border-left: 5px solid #334e68;
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 0 8px 8px 0;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    font-size: 13px;
    color: #666;
}

.obj_article_summary:hover {
    box-shadow: 0 5px 15px rgba(51, 78, 104, 0.15);
    background-color: #fcfdfe;
}

.obj_article_summary .title a {
    color: #102a43;
    text-decoration: none;
    font-weight: 700;
}

.obj_article_summary .title a:hover {
    color: #334e68;
}

.obj_article_summary .meta {
    margin-bottom: 15px;
    font-size: 14px;
    color: #486581;
    display: flex;
    gap: 15px;
}

.obj_article_summary .obj_galley_link {
    display: inline-block;
    background-color: #334e68;
    color: #ffffff !important;
    padding: 6px 20px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s;
}

.obj_article_summary .obj_galley_link:hover {
    background-color: #102a43;
}

/* ==========================================================================
   6. SIDEBAR & BLOCKS
   ========================================================================== */
.pkp_block {
    font-size: 14px;
    line-height: 20px;
    overflow: hidden;
    border-radius: 8px !important;
    background: #ffffff !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 1px !important;
    margin: 0px 0px 20px !important;
    border: 1px solid #d9e2ec;
}

.pkp_block .title {
    background-color: #334e68;
    color: #ffffff;
    padding: 10px 15px;
    font-weight: 600;
    border-bottom: 3px solid #627d98;
}

.pkp_block .content {
    background-color: #f8fafc;
}

.pkp_block ul > li a {
    color: #334e68;
    padding: 10px 15px;
    display: flex;
    text-decoration: none;
    transition: all 0.2s ease;
}

.pkp_block ul > li a:hover {
    background-color: #e1e8f0;
    padding-left: 20px;
    color: #102a43;
}

/* ==========================================================================
   7. FOOTER
   ========================================================================== */
.pkp_structure_footer_wrapper {
    background: #102a43;
    border-top: 4px solid #334e68;
    margin-top: 40px;
}

.pkp_footer_content {
    color: #d9e2ec;
    padding: 40px 20px;
}

/* ==========================================================================
   8. RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 767px) {
    .obj_article_summary .meta {
        flex-direction: column;
        gap: 5px;
    }
}