/* ===== GLOBAL STYLE ===== */
body {
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    background-color: #f8f9fb;
    color: #2c2c2c;
    line-height: 1.7;
}

/* ===== HEADER ===== */
.pkp_structure_head {
    background: linear-gradient(135deg, #1B3A6B, #0f2747);
    border-bottom: 3px solid #F5A623;
}

.pkp_site_name a {
    color: #ffffff !important;
    font-weight: 700;
    letter-spacing: 1px;
}

.pkp_navigation_primary_row {
    background: transparent;
}

.pkp_navigation_primary a {
    color: #ffffff !important;
    font-weight: 500;
}

.pkp_navigation_primary a:hover {
    color: #F5A623 !important;
}

/* ===== HERO / FRONT ===== */
.pkp_page_index .current_issue {
    background: #ffffff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* ===== ARTICLE LIST ===== */
.obj_article_summary {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    transition: 0.3s;
    border-left: 4px solid transparent;
}

.obj_article_summary:hover {
    transform: translateY(-4px);
    border-left: 4px solid #F5A623;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* ===== ARTICLE TITLE ===== */
.obj_article_summary .title a {
    font-size: 18px;
    font-weight: 600;
    color: #1B3A6B;
}

.obj_article_summary .title a:hover {
    color: #F5A623;
}

/* ===== BUTTON ===== */
button, .pkp_button {
    background: #F5A623;
    border: none;
    color: white;
    padding: 10px 18px;
    border-radius: 6px;
    transition: 0.3s;
}

button:hover, .pkp_button:hover {
    background: #d98c10;
}

/* ===== SIDEBAR ===== */
.pkp_structure_sidebar {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
}

/* ===== FOOTER ===== */
.pkp_structure_footer_wrapper {
    background: #1B3A6B;
    color: #ffffff;
    padding: 30px 0;
}

.pkp_footer_content a {
    color: #F5A623;
}

/* ===== ARTICLE PAGE ===== */
.obj_article_details {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
}

.obj_article_details h1 {
    color: #1B3A6B;
    font-weight: 700;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .obj_article_summary {
        padding: 15px;
    }
}