/* =====================================================
   GOOGLE FONTS
===================================================== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;700&family=Nunito+Sans:wght@400;500;600&display=swap');

/* =====================================================
   BASE BODY
===================================================== */
body {
    font-family: 'Nunito Sans', system-ui, sans-serif;
    background-color: #fbfbf8;
    color: #1f2933;
    line-height: 1.75;
}

/* =====================================================
   CORE OJS LAYOUT (STABLE – DO NOT MODIFY)
===================================================== */
.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, #064e3b, #0f766e);
}

.pkp_site_name a {
    color: #fffaf0 !important;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    letter-spacing: 0.6px;
}

/* =====================================================
   NAVIGATION MENU
===================================================== */
.pkp_navigation_primary_wrapper {
    background: #fffaf0;
    border-bottom: 1px solid #d1fae5;
}

.pkp_navigation_primary a {
    color: #065f46 !important;
    font-weight: 600;
}

.pkp_navigation_primary a:hover {
    color: #0f766e !important;
}

.pkp_navigation_primary .is_current a {
    color: #0f766e !important;
    border-bottom: 3px solid #f59e0b;
}

/* =====================================================
   HOMEPAGE BANNER
===================================================== */
.pkp_page_index .homepage_image {
    width: 100%;
    margin-bottom: 30px;
}

.pkp_page_index .homepage_image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

/* =====================================================
   IMAGE SAFETY
===================================================== */
.pkp_structure_main img {
    max-width: 100%;
    height: auto;
    float: none !important;
}

/* =====================================================
   HEADINGS
===================================================== */
h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    color: #064e3b;
}

h2 {
    font-size: 1.65rem;
    margin-top: 34px;
    border-left: 6px solid #f59e0b;
    padding-left: 14px;
}

h3 {
    font-size: 1.25rem;
    color: #0f766e;
}

/* =====================================================
   MAIN CONTENT CARD
===================================================== */
.pkp_structure_main > div,
.pkp_page_index .page_content {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 36px;
    box-shadow: 0 14px 34px rgba(15,118,110,0.12);
}

/* =====================================================
   JOURNAL ARTICLE BEAUTIFICATION
===================================================== */
.obj_article_summary {
    padding: 20px 0;
    border-bottom: 1px solid #ecfdf5;
}

.obj_article_summary:last-child {
    border-bottom: none;
}

.obj_article_summary .title a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: #064e3b;
}

.obj_article_summary .title a:hover {
    color: #f59e0b;
}

.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, #f0fdfa);
    border-radius: 20px;
    padding: 20px 24px;
    margin-bottom: 26px;
    border: 1px solid #ccfbf1;
}

.pkp_structure_sidebar h2 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #065f46;
    border: none;
}

/* =====================================================
   LINKS
===================================================== */
a {
    color: #0f766e;
    text-decoration: none;
}

a:hover {
    color: #b45309;
    text-decoration: underline;
}

/* =====================================================
   FOOTER
===================================================== */
.pkp_site_footer {
    background: linear-gradient(90deg, #064e3b, #0f766e);
    color: #fefce8;
    padding: 44px 20px;
}

.pkp_site_footer a {
    color: #fde68a;
    font-weight: 500;
}

.pkp_site_footer a:hover {
    color: #ffffff;
}
