/* =========================================
   JABES MODERN DEFAULT THEME
========================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background: #f8fafc;
    color: #0f172a;
}

/* HEADER */

.pkp_structure_head {
    background: linear-gradient(135deg,#0f172a,#1e40af);
    box-shadow: 0 4px 18px rgba(0,0,0,.15);
}

.pkp_site_name .is_text {
    color: white !important;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: .5px;
}

/* MENU */

.pkp_navigation_primary > li > a {
    color: white !important;
    font-weight: 500;
    transition: .3s;
}

.pkp_navigation_primary > li > a:hover {
    color: #93c5fd !important;
}

/* CURRENT ISSUE */

.current_issue {
    background: white;
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
    margin-top: 30px;
}

/* ARTICLE CARD */

.obj_article_summary {
    background: white;
    border-radius: 18px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 4px 14px rgba(0,0,0,.05);
    transition: .3s;
    border: 1px solid #e2e8f0;
}

.obj_article_summary:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0,0,0,.1);
}

/* ARTICLE TITLE */

.obj_article_summary .title a {
    color: #0f172a !important;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.5;
}

.obj_article_summary .title a:hover {
    color: #2563eb !important;
}

/* BUTTON */

.cmp_button,
a.file {
    background: linear-gradient(135deg,#2563eb,#1d4ed8);
    color: white !important;
    border-radius: 12px;
    padding: 10px 18px;
    border: none;
    transition: .3s;
}

.cmp_button:hover,
a.file:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(37,99,235,.25);
}

/* SIDEBAR */

.pkp_block {
    background: white;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 4px 14px rgba(0,0,0,.05);
    margin-bottom: 24px;
}

/* FOOTER */

.pkp_structure_footer_wrapper {
    background: #0f172a;
    color: #cbd5e1;
    padding-top: 40px;
}

/* RESPONSIVE */

@media(max-width:768px){

    .pkp_site_name .is_text{
        font-size:22px;
    }

    .obj_article_summary .title a{
        font-size:18px;
    }

}