/* =========================================================
   FINAL PROFESSIONAL OJS FIX
========================================================= */

/* =========================================================
   GLOBAL CONTAINER
========================================================= */

.pkp_head_wrapper,
.pkp_navigation_primary_row,
.pkp_structure_content,
.pkp_structure_footer {

    max-width: 1400px !important;
    margin: auto;
}

/* =========================================================
   HEADER
========================================================= */

.pkp_structure_head {

    background:
        linear-gradient(
            135deg,
            #14507c,
            #1d679c
        ) !important;

    border-bottom: 3px solid #f4c542;
}

/* =========================================================
   HEADER HEIGHT
========================================================= */

.pkp_head_wrapper {

    padding-top: 10px !important;
    padding-bottom: 8px !important;
}

/* =========================================================
   BRAND AREA
========================================================= */

.pkp_site_name {

    display: flex !important;

    align-items: center;

    justify-content: flex-start;
}

/* =========================================================
   LOGO
========================================================= */

.pkp_site_name img {

    max-height: 85px !important;

    width: auto;

    transition: 0.3s ease;
}

.pkp_site_name img:hover {

    transform: scale(1.02);
}

/* =========================================================
   NAVIGATION BAR
========================================================= */

.pkp_navigation_primary_wrapper {

    background: rgba(0,0,0,0.18);

    border-radius: 8px 8px 0 0;

    margin-top: 8px;

    overflow: hidden;
}

/* =========================================================
   NAV CONTAINER
========================================================= */

.pkp_navigation_primary {

    display: flex !important;

    align-items: center;

    flex-wrap: nowrap !important;

    justify-content: flex-start;
}

/* =========================================================
   NAV ITEM
========================================================= */

.pkp_navigation_primary > li {

    flex: none;
}

/* =========================================================
   NAV LINK
========================================================= */

.pkp_navigation_primary > li > a {

    padding: 12px 14px !important;

    font-size: 14px !important;

    font-weight: 600;

    white-space: nowrap;

    letter-spacing: 0;
}

/* =========================================================
   SEARCH POSITION
========================================================= */

.pkp_navigation_search_wrapper {

    margin-left: auto;
}

/* =========================================================
   REMOVE EXTRA HEIGHT
========================================================= */

.pkp_navigation_primary_row {

    min-height: unset !important;
}

/* =========================================================
   MAIN CONTENT
========================================================= */

.pkp_structure_main {

    padding-top: 24px;
}

/* =========================================================
   CONTENT CARD
========================================================= */

.page,
.obj_article_summary,
.obj_issue_toc,
.current_issue {

    background: #ffffff;

    border-radius: 14px;

    padding: 26px;

    box-shadow:
        0 6px 18px rgba(0,0,0,0.05);

    border: 1px solid #edf2f7;
}

/* =========================================================
   SIDEBAR
========================================================= */

.pkp_block {

    border-radius: 14px !important;

    padding: 22px !important;

    box-shadow:
        0 6px 18px rgba(0,0,0,0.05);

    transition: 0.3s ease;
}

.pkp_block:hover {

    transform: translateY(-2px);
}

/* =========================================================
   SIDEBAR TITLE
========================================================= */

.pkp_block .title {

    font-size: 18px;

    font-weight: 700;

    color: #0f172a;

    margin-bottom: 18px;
}

/* =========================================================
   TYPOGRAPHY
========================================================= */

body {

    font-size: 15px;

    line-height: 1.8;
}

h1,h2,h3,h4 {

    font-weight: 700;

    color: #0f172a;
}

/* =========================================================
   FOOTER
========================================================= */

.pkp_structure_footer_wrapper {

    background:
        linear-gradient(
            135deg,
            #06263d,
            #0f4c75
        ) !important;

    margin-top: 60px;
}

.pkp_structure_footer {

    padding-top: 40px;
    padding-bottom: 40px;

    color: rgba(255,255,255,0.85);
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 1200px) {

    .pkp_navigation_primary {

        flex-wrap: wrap !important;
    }
}

@media (max-width: 768px) {

    .pkp_site_name {

        justify-content: center;
    }

    .pkp_site_name img {

        max-height: 70px !important;
    }

    .pkp_navigation_primary {

        flex-direction: column;

        align-items: stretch;
    }

    .pkp_navigation_primary > li {

        width: 100%;
    }

    .pkp_navigation_primary > li > a {

        display: block;

        width: 100%;
    }

    .pkp_navigation_search_wrapper {

        margin-left: 0;
    }
}