/* =========================================================
   CRBLS JOURNAL HOMEPAGE - MODERN OJS DESIGN
   ========================================================= */

:root {
    --crbls-blue: #082d6b;
    --crbls-dark: #061f4f;
    --crbls-navy: #071d49;
    --crbls-light-blue: #eef4ff;
    --crbls-yellow: #ffc400;
    --crbls-yellow-light: #fff8d9;
    --crbls-border: #d9d9d9;
    --crbls-text: #333333;
    --crbls-muted: #777777;
    --crbls-white: #ffffff;
}

/* =========================================================
   GLOBAL
   ========================================================= */

body {
    background: #f5f6f8 !important;
    color: var(--crbls-text);
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 13px;
}

.pkp_structure_main,
.pkp_structure_content {
    background: #fff;
}

.pkp_page_index .pkp_structure_main {
    max-width: 1200px;
    margin: 0 auto;
}

a {
    color: var(--crbls-blue);
}

a:hover {
    color: #d89f00;
}

/* =========================================================
   TOP NAVIGATION
   ========================================================= */

.pkp_navigation_primary_wrapper {
    background: var(--crbls-blue) !important;
    border: none !important;
}

.pkp_navigation_primary {
    display: flex;
    align-items: center;
}

.pkp_navigation_primary > li > a {
    color: #fff !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    padding: 14px 17px !important;
    border: none !important;
}

.pkp_navigation_primary > li > a:hover {
    background: #061f4f !important;
    color: #fff !important;
}

.pkp_navigation_primary > li > a::before {
    margin-right: 6px;
}

/* =========================================================
   HEADER
   ========================================================= */

.pkp_structure_head {
    background: #fff !important;
    border-bottom: 1px solid #ddd !important;
}

.pkp_site_name {
    padding: 18px 0 !important;
}

.pkp_site_name a {
    color: var(--crbls-blue) !important;
    font-weight: 800;
}

/* Logo */

.pkp_site_name .is_img img {
    max-height: 90px !important;
    width: auto;
}

/* =========================================================
   MAIN PAGE WIDTH
   ========================================================= */

.crbls-wrapper {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 10px;
}

.crbls-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 265px;
    gap: 12px;
    align-items: start;
}

.crbls-main {
    min-width: 0;
    background: #fff;
}

.crbls-sidebar {
    min-width: 0;
}

/* =========================================================
   SECTION TITLES
   ========================================================= */

.crbls-section-title {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    margin: 0 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #ddd;
    text-transform: uppercase;
}

.crbls-section-title.blue {
    color: var(--crbls-blue);
}

/* =========================================================
   ABOUT JOURNAL
   ========================================================= */

.crbls-about {
    background: #fff;
    padding: 10px;
    border: 1px solid #ddd;
}

.crbls-about-top {
    display: grid;
    grid-template-columns: 95px 1fr;
    gap: 20px;
    align-items: start;
}

.crbls-cover {
    text-align: center;
}

.crbls-cover img {
    width: 90px;
    height: 120px;
    object-fit: cover;
    border: 1px solid #ddd;
    box-shadow: 0 2px 8px rgba(0,0,0,.15);
}

.crbls-about-title {
    background: var(--crbls-blue);
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    padding: 9px 12px;
    text-align: center;
    margin-bottom: 10px;
}

.crbls-about-text {
    font-size: 12px;
    line-height: 1.65;
    color: #444;
}

.crbls-about-text p {
    margin: 0 0 8px;
}

/* =========================================================
   NOTICE / STARTING FROM
   ========================================================= */

.crbls-notice {
    background: var(--crbls-yellow-light);
    border-left: 4px solid var(--crbls-yellow);
    padding: 9px 12px;
    margin: 10px 0;
    font-size: 12px;
    line-height: 1.55;
}

.crbls-notice strong {
    color: #222;
}

/* =========================================================
   ABOUT INFORMATION GRID
   ========================================================= */

.crbls-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    margin-top: 12px;
}

.crbls-info-box {
    padding: 12px;
    min-height: 150px;
}

.crbls-info-box + .crbls-info-box {
    border-left: 1px solid #ddd;
}

.crbls-info-box p {
    font-size: 11px;
    line-height: 1.55;
    margin: 0 0 8px;
}

.crbls-info-link {
    display: inline-block;
    font-size: 11px;
    color: var(--crbls-blue);
    font-weight: 600;
}

/* =========================================================
   BUTTONS
   ========================================================= */

.crbls-btn {
    display: inline-block;
    padding: 9px 16px;
    background: var(--crbls-yellow);
    color: #111 !important;
    text-decoration: none !important;
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
    border: none;
    transition: all .2s ease;
}

.crbls-btn:hover {
    background: #e5a900;
    color: #111 !important;
    transform: translateY(-1px);
}

.crbls-btn-blue {
    background: var(--crbls-blue);
    color: #fff !important;
}

.crbls-btn-blue:hover {
    background: #041b40;
    color: #fff !important;
}

/* =========================================================
   CURRENT ISSUE
   ========================================================= */

.crbls-current {
    margin-top: 20px;
}

.crbls-current-header {
    background: var(--crbls-blue);
    color: #fff;
    padding: 9px 13px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 4px 4px 0 0;
}

.crbls-current-header strong {
    font-size: 13px;
}

.crbls-current-year {
    font-size: 11px;
    opacity: .9;
}

.crbls-current-description {
    padding: 10px 4px;
    font-size: 11px;
    line-height: 1.6;
    color: #666;
}

/* =========================================================
   ARTICLE CARDS
   ========================================================= */

.crbls-articles {
    margin-top: 10px;
}

.crbls-article {
    position: relative;
    background: #fff;
    border: 1px solid #ddd;
    border-bottom: 3px solid var(--crbls-yellow);
    border-radius: 8px;
    padding: 14px 14px 12px;
    margin-bottom: 10px;
    box-shadow: 0 2px 7px rgba(0,0,0,.06);
    transition: all .2s ease;
}

.crbls-article:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,.12);
    transform: translateY(-1px);
}

.crbls-article-title {
    margin: 0 50px 6px 0;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 700;
}

.crbls-article-title a {
    color: var(--crbls-blue);
    text-decoration: none;
}

.crbls-article-title a:hover {
    color: #d79c00;
}

.crbls-article-doi {
    font-size: 10px;
    margin-bottom: 8px;
    color: #666;
}

.crbls-article-doi a {
    color: #1d77b8;
}

.crbls-authors {
    font-size: 10px;
    line-height: 1.5;
    color: #555;
    margin-bottom: 7px;
}

.crbls-authors strong {
    color: #333;
}

.crbls-pages {
    position: absolute;
    right: 12px;
    top: 15px;
    font-size: 9px;
    color: #888;
}

.crbls-pdf {
    display: inline-block;
    background: var(--crbls-blue);
    color: #fff !important;
    padding: 6px 12px;
    border-radius: 3px;
    font-size: 9px;
    font-weight: 700;
    text-decoration: none !important;
    margin-top: 4px;
}

.crbls-pdf:hover {
    background: #041c44;
}

/* =========================================================
   VIEW ALL ISSUES
   ========================================================= */

.crbls-view-all {
    margin: 12px 0 25px;
}

/* =========================================================
   ARCHIVE
   ========================================================= */

.crbls-archive {
    margin-top: 20px;
    border-top: 1px solid #ddd;
    padding-top: 15px;
}

.crbls-archive-current {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--crbls-blue);
    color: #fff;
    padding: 9px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}

.crbls-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 12px;
}

.crbls-year-box {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    background: #fff;
}

.crbls-year-box h4 {
    font-size: 12px;
    color: #333;
    margin: 0 0 8px;
    padding-bottom: 6px;
    border-bottom: 2px solid var(--crbls-blue);
}

.crbls-year-box a {
    display: block;
    font-size: 9px;
    line-height: 1.6;
    margin-bottom: 3px;
    color: #2868a8;
    text-decoration: none;
}

.crbls-year-box a:hover {
    color: #d89f00;
}

/* =========================================================
   SIDEBAR
   ========================================================= */

.crbls-sidebar-box {
    margin-bottom: 12px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 1px 5px rgba(0,0,0,.06);
}

.crbls-sidebar-title {
    background: var(--crbls-blue);
    color: #fff;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 8px;
}

.crbls-sidebar-content {
    padding: 8px;
}

/* =========================================================
   QUICK LINKS
   ========================================================= */

.crbls-quick-links {
    background: var(--crbls-blue);
    padding: 9px;
}

.crbls-quick-links a {
    display: block;
    background: #08265d;
    color: #fff !important;
    border: 1px solid #fff;
    border-radius: 2px;
    padding: 5px 7px;
    margin-bottom: 4px;
    font-size: 8px;
    font-weight: 600;
    text-decoration: none !important;
    text-align: center;
    transition: all .15s ease;
}

.crbls-quick-links a:hover {
    background: var(--crbls-yellow);
    color: #111 !important;
}

/* =========================================================
   CONTACT SIDEBAR
   ========================================================= */

.crbls-contact {
    font-size: 9px;
    line-height: 1.5;
}

.crbls-contact img {
    max-width: 100%;
    height: auto;
}

.crbls-contact strong {
    color: var(--crbls-blue);
}

/* =========================================================
   TOOLS / LOGOS
   ========================================================= */

.crbls-tools {
    text-align: center;
}

.crbls-tools img {
    max-width: 100%;
    max-height: 48px;
object-fit: contain !important;
    margin: 5px auto;
    display: block;
}

/* =========================================================
   DOCUMENTS
   ========================================================= */

.crbls-document {
    text-align: center;
}

.crbls-document img {
    width: 45px;
    height: auto;
}

/* =========================================================
   FOOTER
   ========================================================= */

.crbls-footer {
    background:
        linear-gradient(rgba(6,31,79,.96), rgba(6,31,79,.96)),
        url("https://www.transparenttextures.com/patterns/cubes.png");
    color: #fff;
    margin-top: 35px;
    padding: 25px 20px 12px;
    border-radius: 7px;
}

.crbls-footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1.2fr .8fr;
    gap: 25px;
}

.crbls-footer h4 {
    color: #fff;
    font-size: 11px;
    margin: 0 0 9px;
}

.crbls-footer p {
    font-size: 9px;
    line-height: 1.6;
    margin: 0 0 8px;
    color: #e7edf8;
}

.crbls-footer a {
    color: #fff !important;
    font-size: 9px;
    line-height: 1.7;
    text-decoration: none;
}

.crbls-footer a:hover {
    color: var(--crbls-yellow) !important;
}

.crbls-visitors {
    background: rgba(255,255,255,.08);
    border-radius: 5px;
    padding: 10px;
    text-align: center;
}

.crbls-visitors strong {
    display: block;
    font-size: 9px;
    margin-bottom: 10px;
}

.crbls-counter {
    background: #fff;
    color: #333;
    padding: 5px;
    border-radius: 3px;
    font-size: 8px;
}

.crbls-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.15);
    margin-top: 18px;
    padding-top: 10px;
    text-align: center;
}

.crbls-footer-bottom p {
    margin: 0;
    font-size: 8px;
}

/* =========================================================
   INDEXING LOGOS
   ========================================================= */

.crbls-indexing {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 10px;
}

.crbls-indexing img {
    height: 24px;
    width: auto;
    max-width: 80px;
    object-fit: contain;
    background: #fff;
    padding: 2px;
    border-radius: 2px;
}

/* =========================================================
   OJS DEFAULT CONTENT
   ========================================================= */

.pkp_page_index .current_issue {
    margin-top: 20px;
}

.pkp_page_index .current_issue h2 {
    font-size: 15px;
    text-transform: uppercase;
    color: #333;
    border-bottom: 1px solid #ddd;
    padding-bottom: 8px;
}

.obj_article_summary {
    border-bottom: 3px solid var(--crbls-yellow) !important;
    border-radius: 7px;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    padding: 15px !important;
    margin-bottom: 10px;
    background: #fff;
}

.obj_article_summary h3.title {
    font-size: 13px !important;
}

.obj_article_summary h3.title a {
    color: var(--crbls-blue) !important;
}

.obj_article_summary .meta {
    font-size: 10px;
}

/* =========================================================
   OJS SIDEBAR
   ========================================================= */

.pkp_page_index .pkp_structure_sidebar {
    width: 265px;
}

.pkp_page_index .pkp_structure_sidebar .block {
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 12px;
    background: #fff;
}

.pkp_page_index .pkp_structure_sidebar .title {
    background: var(--crbls-blue);
    color: #fff;
    text-align: center;
    padding: 8px;
    font-size: 11px;
}

/* =========================================================
   SEARCH
   ========================================================= */

.search_controls {
    border-radius: 4px;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .crbls-layout {
        grid-template-columns: 1fr;
    }

    .crbls-sidebar {
        order: 2;
    }

    .crbls-main {
        order: 1;
    }

    .pkp_page_index .pkp_structure_sidebar {
        width: 100%;
    }

    .crbls-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 650px) {

    body {
        font-size: 12px;
    }

    .crbls-wrapper {
        padding: 5px;
    }

    .crbls-about-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .crbls-cover img {
        width: 110px;
        height: 145px;
    }

    .crbls-about-title {
        font-size: 15px;
    }

    .crbls-info-grid {
        grid-template-columns: 1fr;
    }

    .crbls-info-box + .crbls-info-box {
        border-left: none;
        border-top: 1px solid #ddd;
    }

    .crbls-archive-grid {
        grid-template-columns: 1fr 1fr;
    }

    .crbls-footer-grid {
        grid-template-columns: 1fr;
    }

    .crbls-footer {
        border-radius: 0;
    }

    .crbls-current-header {
        display: block;
    }

    .crbls-current-year {
        display: block;
        margin-top: 5px;
    }
}

@media (max-width: 430px) {

    .crbls-archive-grid {
        grid-template-columns: 1fr;
    }

    .crbls-article {
        padding: 11px;
    }

    .crbls-pages {
        position: static;
        margin-top: 5px;
    }
}


/* =========================================================
   CRBLS - ABOUT THE JOURNAL
   ========================================================= */

.crbls-about-journal {
    width: 100%;
    margin: 0 auto 25px;
    box-sizing: border-box;
}

/* Main top area */

.crbls-about-top {
    display: grid;
    grid-template-columns: 248px 1fr;
    gap: 32px;
    align-items: start;
}

/* =========================================================
   JOURNAL COVER
   ========================================================= */

.crbls-journal-cover {
    width: 248px;
    height: 310px;
    background: #ffffff;
    border-radius: 10px;
    padding: 10px;
    box-sizing: border-box;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.10);
}

.crbls-journal-cover img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 5px;
}

/* =========================================================
   JOURNAL CONTENT
   ========================================================= */

.crbls-journal-content {
    min-width: 0;
}

/* =========================================================
   BLUE JOURNAL TITLE
   ========================================================= */

.crbls-journal-title {
    background: #062b6b;
    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 28px;
    font-weight: 700;

    line-height: 1.18;
    text-align: center;

    padding: 20px 25px;
    margin: 0 0 10px;

    min-height: 72px;

    display: flex;
    align-items: center;
    justify-content: center;

    box-sizing: border-box;
}

/* =========================================================
   DESCRIPTION
   ========================================================= */

.crbls-journal-description {
    color: #333333;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 17px;
    line-height: 1.62;

    text-align: justify;
}

.crbls-journal-description p {
    margin: 0 0 14px;
}

.crbls-journal-description strong {
    font-weight: 700;
}

/* =========================================================
   PUBLICATION FREQUENCY
   ========================================================= */

.crbls-publication-frequency {
    margin-top: 12px !important;
    font-size: 16px;
    text-align: left;
}

.crbls-publication-frequency strong {
    color: #222222;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .crbls-about-top {
        grid-template-columns: 190px 1fr;
        gap: 20px;
    }

    .crbls-journal-cover {
        width: 190px;
        height: 260px;
    }

    .crbls-journal-title {
        font-size: 23px;
        padding: 16px 18px;
    }

    .crbls-journal-description {
        font-size: 15px;
        line-height: 1.55;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 650px) {

    .crbls-about-top {
        display: block;
    }

    .crbls-journal-cover {
        width: 180px;
        height: 240px;
        margin: 0 auto 18px;
    }

    .crbls-journal-title {
        font-size: 20px;
        line-height: 1.25;
        padding: 14px 12px;
        min-height: auto;
    }

    .crbls-journal-description {
        font-size: 14px;
        line-height: 1.6;
        text-align: justify;
    }

    .crbls-publication-frequency {
        font-size: 14px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

    .crbls-journal-cover {
        width: 155px;
        height: 210px;
    }

    .crbls-journal-title {
        font-size: 18px;
    }

    .crbls-journal-description {
        font-size: 13px;
    }

}


/* =========================================================
   OJS JOURNAL ISSUE ARCHIVE
   OJS 3.5 SAFE / SCOPED CSS
   ========================================================= */

.ojs-archive-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
    font-family: inherit;
    color: #222;
}


/* =========================================================
   SECTION LABEL
   ========================================================= */

.ojs-archive-label {
    margin: 0 0 16px 0;
    padding: 0;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 1.4px;
    color: #929292;
    text-transform: uppercase;
}


/* =========================================================
   CURRENT ISSUE
   ========================================================= */

.ojs-current-issue {
    width: 100%;
    min-height: 69px;

    display: flex;
    align-items: center;

    box-sizing: border-box;

    padding: 0 24px;

    background: #1d2f68;

    border-radius: 14px;

    text-decoration: none !important;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.ojs-current-issue:hover {
    background: #17285c;
    transform: translateY(-1px);
    box-shadow: 0 7px 20px rgba(29, 47, 104, 0.14);
}


/* =========================================================
   CURRENT BADGE
   ========================================================= */

.ojs-current-badge {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 70px;
    height: 30px;

    padding: 0 15px;

    margin-right: 24px;

    box-sizing: border-box;

    background: #f6c43e;

    color: #17285c;

    border-radius: 18px;

    font-size: 13px;
    font-weight: 700;

    line-height: 1;
}


/* =========================================================
   CURRENT TITLE
   ========================================================= */

.ojs-current-title {
    color: #ffffff;

    font-size: 20px;
    font-weight: 700;

    line-height: 1.3;
}


/* =========================================================
   CURRENT YEAR
   ========================================================= */

.ojs-current-year {
    margin-left: auto;

    color: #b9c3df;

    font-size: 15px;
    font-weight: 500;

    white-space: nowrap;
}


/* =========================================================
   DIVIDER
   ========================================================= */

.ojs-archive-divider {
    width: 100%;

    height: 1px;

    margin: 28px 0 26px;

    background: #dedede;
}


/* =========================================================
   ISSUES GRID
   ========================================================= */

.ojs-issues-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 16px;

    width: 100%;
}


/* =========================================================
   YEAR CARD
   ========================================================= */

.ojs-year-card {
    box-sizing: border-box;

    width: 100%;

    padding: 19px 17px 15px;

    border: 1px solid #dcdcdc;

    border-radius: 13px;

    background: #ffffff;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.ojs-year-card:hover {
    border-color: #c9c9c9;

    box-shadow:
        0 5px 18px rgba(0, 0, 0, 0.06);

    transform: translateY(-1px);
}


/* =========================================================
   YEAR TITLE
   ========================================================= */

.ojs-year-card h3 {
    margin: 0;

    padding: 0;

    color: #20346f;

    font-size: 18px;
    font-weight: 700;

    line-height: 1.4;
}


/* =========================================================
   YEAR BLUE LINE
   ========================================================= */

.ojs-year-line {
    width: 100%;

    height: 2px;

    margin: 9px 0 9px;

    background: #1d3171;
}


/* =========================================================
   ISSUE LINKS
   ========================================================= */

.ojs-year-card a {
    display: block;

    width: 100%;

    box-sizing: border-box;

    padding: 7px 1px;

    color: #2867b2;

    font-size: 15px;
    font-weight: 400;

    line-height: 1.35;

    text-decoration: none !important;

    border-bottom: 1px solid #eeeeee;

    transition:
        color 0.2s ease,
        padding-left 0.2s ease;
}

.ojs-year-card a:last-child {
    border-bottom: 0;
}

.ojs-year-card a:hover {
    color: #1d3171;

    padding-left: 4px;

    text-decoration: none !important;
}


/* =========================================================
   RESPONSIVE - TABLET
   ========================================================= */

@media (max-width: 900px) {

    .ojs-issues-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   RESPONSIVE - MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .ojs-current-issue {
        min-height: auto;

        padding: 16px 17px;

        flex-wrap: wrap;

        gap: 10px;
    }

    .ojs-current-badge {
        margin-right: 4px;
    }

    .ojs-current-title {
        font-size: 17px;
    }

    .ojs-current-year {
        width: 100%;

        margin-left: 0;

        font-size: 13px;
    }

    .ojs-issues-grid {
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .ojs-year-card {
        padding: 17px 15px 13px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

    .ojs-current-title {
        font-size: 16px;
    }

    .ojs-current-badge {
        min-width: 65px;
        height: 28px;

        padding: 0 12px;

        font-size: 12px;
    }

}



/* =========================================
   OJS JOURNAL LOGO - FULL WIDTH
   ========================================= */

.pkp_site_name {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.pkp_site_name a {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.pkp_site_name .is_img {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
}

.pkp_site_name .is_img img {
    display: block !important;

    width: 100% !important;
    max-width: 100% !important;

    height: auto !important;
    max-height: none !important;

    object-fit: contain !important;
    margin: 0 auto !important;
}

/* Remove header restrictions */

.pkp_structure_head {
    width: 100% !important;
}

.pkp_head_wrapper {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
}

/* Desktop */

@media (min-width: 768px) {

    .pkp_site_name .is_img img {
        width: 100% !important;
        height: auto !important;
    }

}

/* Mobile */

@media (max-width: 767px) {

    .pkp_site_name .is_img img {
        width: 100% !important;
        height: auto !important;
    }

}


/* OJS Full Width Logo - Reduced Height */

.pkp_site_name,
.pkp_site_name a,
.pkp_site_name .is_img {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.pkp_site_name .is_img img {
    display: block !important;
    width: 100% !important;
    height: 130px !important;
    max-width: 100% !important;
    max-height: 130px !important;

    object-fit: contain !important;
    object-position: center !important;

    margin: 0 !important;
}

/* Header container */
.pkp_head_wrapper {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
}

/* Mobile */
@media (max-width: 767px) {
    .pkp_site_name .is_img img {
        height: 90px !important;
        max-height: 90px !important;
    }
}