/* =====================================================
   GOOGLE FONTS
===================================================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Source+Sans+3:wght@400;500;600&display=swap');

/* =====================================================
   BASE BODY
===================================================== */
body {
    font-family: 'Source Sans 3', system-ui, sans-serif;
    background-color: #f6f7fb;
    color: #1f2937;
    line-height: 1.75;
}

/* =====================================================
   CORE OJS LAYOUT (DO NOT TOUCH – STABLE)
===================================================== */
.pkp_structure_content {
    display: flex;
    align-items: flex-start;
}

.pkp_structure_main {
    width: calc(100% - 320px);
    padding-right: 30px;
    box-sizing: border-box;
}

.pkp_structure_sidebar {
    width: 320px;
    margin-top: 0 !important;
}

@media (max-width: 991px) {
    .pkp_structure_content {
        flex-direction: column;
    }
    .pkp_structure_main,
    .pkp_structure_sidebar {
        width: 100%;
        padding-right: 0;
    }
}

/* =====================================================
   HEADER & SITE NAME
===================================================== */
.pkp_structure_head {
    background: linear-gradient(90deg, #312e81, #4f46e5);
}

.pkp_site_name a {
    color: #ffffff !important;
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem;
    letter-spacing: 0.5px;
}

/* =====================================================
   NAVIGATION MENU
===================================================== */
.pkp_navigation_primary_wrapper {
    background: #ffffff;
    border-bottom: 1px solid #e0e7ff;
}

.pkp_navigation_primary a {
    color: #312e81 !important;
    font-weight: 600;
}

.pkp_navigation_primary a:hover {
    color: #4f46e5 !important;
}

.pkp_navigation_primary .is_current a {
    color: #4f46e5 !important;
    border-bottom: 3px solid #4f46e5;
}

/* =====================================================
   HOMEPAGE BANNER
===================================================== */
.pkp_page_index .homepage_image {
    width: 100%;
    margin-bottom: 28px;
}

.pkp_page_index .homepage_image img {
    width: 100%;
    height: auto;
    border-radius: 18px;
}

/* =====================================================
   IMAGE SAFETY
===================================================== */
.pkp_structure_main img {
    max-width: 100%;
    height: auto;
    float: none !important;
}

/* =====================================================
   HEADINGS
===================================================== */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #1e1b4b;
}

h2 {
    font-size: 1.6rem;
    margin-top: 32px;
    border-left: 5px solid #6366f1;
    padding-left: 14px;
}

h3 {
    font-size: 1.25rem;
    color: #4338ca;
}

/* =====================================================
   MAIN CONTENT CARD
===================================================== */
.pkp_structure_main > div,
.pkp_page_index .page_content {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px 34px;
    box-shadow: 0 14px 30px rgba(79,70,229,0.12);
}

/* =====================================================
   JOURNAL ARTICLE BEAUTIFICATION
===================================================== */
.obj_article_summary {
    padding: 18px 0;
    border-bottom: 1px solid #e0e7ff;
}

.obj_article_summary:last-child {
    border-bottom: none;
}

.obj_article_summary .title a {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #312e81;
}

.obj_article_summary .title a:hover {
    color: #6366f1;
}

.obj_article_summary .meta {
    font-size: 0.9rem;
    color: #6b7280;
}

.obj_article_summary .abstract {
    margin-top: 10px;
    color: #374151;
}

/* =====================================================
   SIDEBAR STYLE
===================================================== */
.pkp_structure_sidebar .block {
    background: linear-gradient(180deg, #ffffff, #eef2ff);
    border-radius: 18px;
    padding: 18px 22px;
    margin-bottom: 26px;
    border: 1px solid #e0e7ff;
}

.pkp_structure_sidebar h2 {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #3730a3;
    border: none;
}

/* =====================================================
   LINKS
===================================================== */
a {
    color: #4f46e5;
    text-decoration: none;
}

a:hover {
    color: #312e81;
    text-decoration: underline;
}

/* =====================================================
   FOOTER
===================================================== */
.pkp_site_footer {
    background: linear-gradient(90deg, #1e1b4b, #312e81);
    color: #e0e7ff;
    padding: 42px 20px;
}

.pkp_site_footer a {
    color: #c7d2fe;
    font-weight: 500;
}

.pkp_site_footer a:hover {
    color: #ffffff;
}
