/* ==========================================
   SESIOMADIKA - FKIP UNSIKA CUSTOM THEME
   ========================================== */

/* Warna utama */
:root {
    --unsika-blue: #003366;
    --unsika-light: #00509e;
    --unsika-gold: #f4b400;
    --soft-bg: #f5f7fa;
}

/* ==========================================
   HEADER
   ========================================== */

.pkp_structure_head {
    background: linear-gradient(135deg, #003366, #00509e);
    box-shadow: 0 2px 15px rgba(0,0,0,0.15);
}

.pkp_site_name a {
    color: white !important;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.pkp_navigation_primary > li > a {
    color: white !important;
    font-weight: 600;
    transition: all .3s ease;
}

.pkp_navigation_primary > li > a:hover {
    color: #f4b400 !important;
}

/* ==========================================
   BODY
   ========================================== */

body {
    background: #f5f7fa;
}

/* ==========================================
   HOMEPAGE ISSUE CARD
   ========================================== */

.obj_issue_summary {
    background: white;
    border-radius: 15px;
    border: none;
    padding: 20px;
    margin-bottom: 25px;
    transition: all .3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
}

.obj_issue_summary:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.obj_issue_summary .title a {
    color: #003366 !important;
    font-weight: 700;
}

.obj_issue_summary .description {
    line-height: 1.7;
}

/* ==========================================
   COVER ISSUE
   ========================================== */

.obj_issue_summary .cover img,
.current_issue .cover img {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,.15);
}

/* ==========================================
   ARTICLE CARD
   ========================================== */

.obj_article_summary {
    background: white;
    border-radius: 12px;
    padding: 18px;
    margin-bottom: 18px;
    border-left: 5px solid #00509e;
    transition: .3s;
}

.obj_article_summary:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,.10);
}

.obj_article_summary .title a {
    color: #003366;
    font-weight: 700;
}

.obj_article_summary .meta {
    color: #666;
}

/* ==========================================
   BUTTON
   ========================================== */

.cmp_button,
.obj_galley_link,
a.read_more {
    background: #00509e !important;
    color: white !important;
    border-radius: 8px !important;
    border: none !important;
    transition: .3s;
}

.cmp_button:hover,
.obj_galley_link:hover,
a.read_more:hover {
    background: #003366 !important;
}

/* ==========================================
   SIDEBAR
   ========================================== */

.pkp_block {
    background: white;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,.05);
    margin-bottom: 20px;
}

.pkp_block .title {
    color: #003366;
    font-weight: 700;
    border-bottom: 2px solid #f4b400;
    padding-bottom: 8px;
}

/* ==========================================
   ANNOUNCEMENT
   ========================================== */

.cmp_announcements .obj_announcement_summary {
    background: white;
    border-left: 5px solid #f4b400;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
}

/* ==========================================
   BREADCRUMB
   ========================================== */

.cmp_breadcrumbs {
    background: white;
    border-radius: 10px;
    padding: 10px 15px;
    margin-bottom: 20px;
}

/* ==========================================
   SEARCH BOX
   ========================================== */

.pkp_search input[type="text"] {
    border-radius: 8px;
    border: 1px solid #ccc;
}

.pkp_search button {
    border-radius: 8px;
}

/* ==========================================
   FOOTER
   ========================================== */

.pkp_structure_footer_wrapper {
    background: #00264d;
    color: white;
    margin-top: 40px;
}

.pkp_footer_content {
    color: white;
}

.pkp_footer_content a {
    color: #f4b400;
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width:768px){

    .obj_issue_summary {
        padding: 15px;
    }

    .obj_article_summary {
        padding: 15px;
    }

}