
/* =========================================================
   Pakistan Journal of Management Research (PJMR)
   Theme: Executive Management Research
   Compatible with OJS 3.x / Default Theme
   ========================================================= */

/* ---------- 1. DESIGN TOKENS ---------- */
:root {
    --pjmr-navy: #10213f;
    --pjmr-navy-deep: #09152a;
    --pjmr-emerald: #087f6b;
    --pjmr-emerald-dark: #056555;
    --pjmr-gold: #c99a3d;
    --pjmr-gold-light: #e8c77f;
    --pjmr-ink: #1f2937;
    --pjmr-muted: #667085;
    --pjmr-line: #dce3ea;
    --pjmr-soft: #f4f7f8;
    --pjmr-paper: #ffffff;
    --pjmr-shadow: 0 12px 32px rgba(16, 33, 63, 0.10);
    --pjmr-shadow-small: 0 5px 18px rgba(16, 33, 63, 0.08);
    --pjmr-radius: 14px;
}

/* ---------- 2. GLOBAL ---------- */
html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--pjmr-ink);
    background:
        radial-gradient(circle at 8% 5%, rgba(8, 127, 107, 0.06), transparent 25rem),
        linear-gradient(180deg, #f7f9fb 0%, #ffffff 520px);
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.72;
}

a {
    color: var(--pjmr-emerald);
    text-decoration: none;
    transition: color 0.2s ease, background-color 0.2s ease,
                border-color 0.2s ease, transform 0.2s ease,
                box-shadow 0.2s ease;
}

a:hover,
a:focus {
    color: var(--pjmr-navy);
}

img {
    max-width: 100%;
    height: auto;
}

::selection {
    color: #ffffff;
    background: var(--pjmr-emerald);
}

/* ---------- 3. TOP HEADER ---------- */
.pkp_structure_head {
    position: relative;
    z-index: 20;
    overflow: visible;
    border: 0;
    background:
        linear-gradient(115deg, rgba(9, 21, 42, 0.98), rgba(16, 33, 63, 0.96)),
        repeating-linear-gradient(
            135deg,
            transparent 0,
            transparent 16px,
            rgba(255, 255, 255, 0.025) 16px,
            rgba(255, 255, 255, 0.025) 17px
        );
    box-shadow: 0 8px 24px rgba(9, 21, 42, 0.18);
}

.pkp_structure_head::before {
    content: "";
    display: block;
    height: 5px;
    background: linear-gradient(
        90deg,
        var(--pjmr-emerald) 0 46%,
        var(--pjmr-gold) 46% 64%,
        var(--pjmr-emerald) 64% 100%
    );
}

.pkp_head_wrapper {
    max-width: 1320px;
    margin: 0 auto;
}

/* ---------- 4. JOURNAL TITLE ---------- */
.pkp_site_name {
    width: 100%;
    padding: 28px 24px 24px;
    text-align: left;
    box-sizing: border-box;
}

.pkp_site_name > a,
.pkp_site_name .is_text {
    display: block;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    color: #ffffff !important;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(29px, 3.25vw, 47px) !important;
    font-weight: 700;
    line-height: 1.12 !important;
    letter-spacing: -0.6px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.16);
    white-space: nowrap;
}

.pkp_site_name > a::after,
.pkp_site_name .is_text::after {
    content: "Advancing evidence-based management, leadership and organisational research";
    display: block;
    width: fit-content;
    max-width: 100%;
    margin-top: 12px;
    padding: 7px 13px 7px 15px;
    border-left: 3px solid var(--pjmr-gold);
    color: #dbe6ef;
    background: rgba(255, 255, 255, 0.045);
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: 0.75px;
    text-transform: uppercase;
    white-space: normal;
}

/* Logo version */
.pkp_site_name .is_img img {
    max-height: 105px;
    width: auto;
}

/* ---------- 5. NAVIGATION ---------- */
.pkp_navigation_primary_wrapper {
    padding: 0 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(4, 14, 30, 0.34);
}

#navigationPrimary {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2px;
    max-width: 1320px;
    margin: 0 auto;
}

#navigationPrimary > li > a {
    position: relative;
    display: block;
    padding: 17px 17px 15px;
    border: 0;
    color: #eef4f8;
    font-size: 14px;
    font-weight: 650;
    letter-spacing: 0.15px;
    text-transform: none;
}

#navigationPrimary > li > a::after {
    content: "";
    position: absolute;
    right: 17px;
    bottom: 10px;
    left: 17px;
    height: 2px;
    border-radius: 20px;
    background: var(--pjmr-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.22s ease;
}

#navigationPrimary > li > a:hover,
#navigationPrimary > li > a:focus {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.055);
}

#navigationPrimary > li > a:hover::after,
#navigationPrimary > li > a:focus::after {
    transform: scaleX(1);
}

/* Dropdowns */
#navigationPrimary ul {
    min-width: 230px;
    padding: 8px;
    border: 1px solid rgba(16, 33, 63, 0.10);
    border-radius: 10px;
    background: #ffffff;
    box-shadow: var(--pjmr-shadow);
}

#navigationPrimary ul a {
    padding: 10px 12px;
    border-radius: 7px;
    color: var(--pjmr-ink);
    font-size: 14px;
}

#navigationPrimary ul a:hover,
#navigationPrimary ul a:focus {
    color: #ffffff;
    background: var(--pjmr-emerald);
}

/* User navigation */
.pkp_navigation_user {
    top: 12px;
    right: 24px;
}

.pkp_navigation_user > li > a {
    color: #e9f0f6;
    font-size: 13px;
    font-weight: 600;
}

.pkp_navigation_user > li > a:hover {
    color: var(--pjmr-gold-light);
}

/* Search button */
.pkp_search {
    color: #ffffff;
}

.pkp_search:hover,
.pkp_search:focus {
    color: var(--pjmr-gold-light);
}

/* ---------- 6. MAIN PAGE FRAME ---------- */
.pkp_structure_content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 32px;
    max-width: 1320px;
    margin: 38px auto 0;
    padding: 0 24px 54px;
    box-sizing: border-box;
}

.pkp_structure_main {
    float: none;
    width: auto;
    min-width: 0;
    padding: 0;
}

.pkp_structure_main::before,
.pkp_structure_main::after {
    display: none;
}

.page {
    padding: 0;
}

/* ---------- 7. TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6,
.page_title,
.current_issue_title {
    color: var(--pjmr-navy);
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.28;
}

h1,
.page_title {
    position: relative;
    margin: 0 0 26px;
    padding: 0 0 15px;
    font-size: clamp(29px, 3vw, 42px);
    font-weight: 700;
}

h1::after,
.page_title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 84px;
    height: 4px;
    border-radius: 20px;
    background: linear-gradient(90deg, var(--pjmr-emerald), var(--pjmr-gold));
}

h2 {
    font-size: 27px;
}

h3 {
    font-size: 22px;
}

p {
    margin: 0 0 1.15em;
}

blockquote {
    margin: 24px 0;
    padding: 20px 24px;
    border-left: 4px solid var(--pjmr-gold);
    border-radius: 0 12px 12px 0;
    color: #344054;
    background: #f7f3ea;
}

/* ---------- 8. HOMEPAGE / ABOUT JOURNAL ---------- */
.page_index_journal .homepage_about {
    position: relative;
    overflow: hidden;
    margin: 0 0 32px;
    padding: 30px 32px;
    border: 1px solid var(--pjmr-line);
    border-radius: var(--pjmr-radius);
    background: #ffffff;
    box-shadow: var(--pjmr-shadow-small);
}

.page_index_journal .homepage_about::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 6px;
    background: linear-gradient(180deg, var(--pjmr-emerald), var(--pjmr-gold));
}

.page_index_journal .homepage_about h2 {
    margin-top: 0;
    color: var(--pjmr-navy);
}

.page_index_journal .homepage_image {
    margin: 0 0 30px;
    overflow: hidden;
    border-radius: var(--pjmr-radius);
    box-shadow: var(--pjmr-shadow);
}

.page_index_journal .additional_content {
    margin-top: 30px;
    padding: 30px 32px;
    border: 1px solid var(--pjmr-line);
    border-radius: var(--pjmr-radius);
    background: #ffffff;
    box-shadow: var(--pjmr-shadow-small);
}

/* ---------- 9. CURRENT ISSUE ---------- */
.current_issue {
    position: relative;
    margin: 0 0 34px;
    padding: 31px 32px 28px;
    overflow: hidden;
    border: 1px solid #d5dfe6;
    border-radius: var(--pjmr-radius);
    background:
        linear-gradient(135deg, rgba(8, 127, 107, 0.05), transparent 45%),
        #ffffff;
    box-shadow: var(--pjmr-shadow);
}

.current_issue::after {
    content: "CURRENT RESEARCH";
    position: absolute;
    top: 22px;
    right: -39px;
    width: 170px;
    padding: 7px 0;
    color: #ffffff;
    background: var(--pjmr-emerald);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-align: center;
    transform: rotate(35deg);
}

.current_issue h2 {
    margin-top: 0;
    padding-right: 85px;
}

.current_issue .current_issue_title {
    color: var(--pjmr-navy);
    font-weight: 700;
}

.current_issue .read_more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 11px 18px;
    border: 1px solid var(--pjmr-emerald);
    border-radius: 8px;
    color: #ffffff;
    background: var(--pjmr-emerald);
    font-size: 14px;
    font-weight: 700;
}

.current_issue .read_more:hover {
    border-color: var(--pjmr-emerald-dark);
    background: var(--pjmr-emerald-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(8, 127, 107, 0.20);
}

/* ---------- 10. ISSUE TABLE OF CONTENTS ---------- */
.obj_issue_toc {
    margin-top: 25px;
}

.obj_issue_toc .heading {
    margin-bottom: 20px;
    padding: 22px 24px;
    border: 1px solid var(--pjmr-line);
    border-radius: 12px;
    background: linear-gradient(120deg, #ffffff, #f3f7f7);
}

.obj_issue_toc .heading .title {
    color: var(--pjmr-navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-weight: 700;
}

.obj_issue_toc .heading .description {
    color: var(--pjmr-muted);
}

.obj_issue_toc .section {
    margin: 28px 0 0;
}

.obj_issue_toc .section > h2,
.obj_issue_toc .section > h3 {
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 0 0 15px;
    padding-bottom: 11px;
    border-bottom: 1px solid var(--pjmr-line);
    color: var(--pjmr-navy);
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.obj_issue_toc .section > h2::before,
.obj_issue_toc .section > h3::before {
    content: "";
    width: 5px;
    height: 22px;
    border-radius: 20px;
    background: var(--pjmr-gold);
}

/* ---------- 11. ARTICLE SUMMARY CARDS ---------- */
.obj_article_summary {
    position: relative;
    margin: 0 0 18px !important;
    padding: 24px 24px 22px !important;
    border: 1px solid var(--pjmr-line) !important;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 4px 14px rgba(16, 33, 63, 0.055);
    transition: transform 0.22s ease, box-shadow 0.22s ease,
                border-color 0.22s ease;
}

.obj_article_summary:hover {
    border-color: rgba(8, 127, 107, 0.40) !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(16, 33, 63, 0.11);
}

.obj_article_summary::before {
    content: "";
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 0;
    width: 4px;
    border-radius: 0 8px 8px 0;
    background: linear-gradient(180deg, var(--pjmr-emerald), var(--pjmr-gold));
}

.obj_article_summary .title {
    margin: 0 0 8px;
    padding-left: 4px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.42;
}

.obj_article_summary .title a {
    color: var(--pjmr-navy);
}

.obj_article_summary .title a:hover {
    color: var(--pjmr-emerald);
}

.obj_article_summary .authors {
    margin: 5px 0 9px;
    color: #465467;
    font-size: 14px;
    font-weight: 600;
}

.obj_article_summary .pages,
.obj_article_summary .published {
    color: var(--pjmr-muted);
    font-size: 13px;
}

/* ---------- 12. PDF / GALLEY BUTTONS ---------- */
.obj_galley_link,
.obj_article_summary .galleys_links a,
.cmp_button,
.cmp_form .buttons button,
button.submit,
input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 39px;
    padding: 9px 16px;
    border: 1px solid var(--pjmr-emerald) !important;
    border-radius: 8px;
    color: #ffffff !important;
    background: var(--pjmr-emerald) !important;
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 13px;
    font-weight: 750;
    line-height: 1.2;
    letter-spacing: 0.2px;
    box-shadow: none;
}

.obj_galley_link::before {
    content: "↧";
    margin-right: 7px;
    font-size: 15px;
}

.obj_galley_link:hover,
.obj_article_summary .galleys_links a:hover,
.cmp_button:hover,
.cmp_form .buttons button:hover,
button.submit:hover,
input[type="submit"]:hover {
    border-color: var(--pjmr-navy) !important;
    background: var(--pjmr-navy) !important;
    transform: translateY(-1px);
    box-shadow: 0 7px 16px rgba(16, 33, 63, 0.17);
}

/* ---------- 13. ARTICLE DETAIL PAGE ---------- */
.obj_article_details {
    padding: 30px 32px;
    border: 1px solid var(--pjmr-line);
    border-radius: var(--pjmr-radius);
    background: #ffffff;
    box-shadow: var(--pjmr-shadow-small);
}

.obj_article_details .page_title {
    color: var(--pjmr-navy);
}

.obj_article_details .authors {
    margin-bottom: 18px;
    color: #344054;
}

.obj_article_details .author_name {
    font-weight: 700;
}

.obj_article_details .item {
    margin: 25px 0;
}

.obj_article_details .item .label {
    margin-bottom: 8px;
    color: var(--pjmr-navy);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.2px;
}

.obj_article_details .abstract {
    padding: 22px 24px;
    border: 1px solid #dfe7eb;
    border-left: 4px solid var(--pjmr-emerald);
    border-radius: 0 10px 10px 0;
    background: var(--pjmr-soft);
}

.obj_article_details .keywords {
    color: #475467;
}

/* DOI and metadata links */
.obj_article_details .doi a,
.obj_article_details .orcid a {
    overflow-wrap: anywhere;
    font-weight: 650;
}

/* ---------- 14. ARCHIVES ---------- */
.page_issue_archive .issues_archive {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.obj_issue_summary {
    margin: 0 !important;
    padding: 22px !important;
    border: 1px solid var(--pjmr-line) !important;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: var(--pjmr-shadow-small);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.obj_issue_summary:hover {
    transform: translateY(-3px);
    box-shadow: var(--pjmr-shadow);
}

.obj_issue_summary .title {
    color: var(--pjmr-navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    font-weight: 700;
}

/* ---------- 15. SIDEBAR ---------- */
.pkp_structure_sidebar {
    float: none;
    width: auto;
    padding: 0;
}

.pkp_block {
    position: relative;
    margin: 0 0 22px;
    padding: 22px;
    overflow: hidden;
    border: 1px solid var(--pjmr-line);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: var(--pjmr-shadow-small);
}

.pkp_block::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pjmr-emerald), var(--pjmr-gold));
}

.pkp_block .title {
    margin: 0 0 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e8edf1;
    color: var(--pjmr-navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    font-weight: 700;
}

.pkp_block ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.pkp_block li {
    padding: 7px 0;
    border-bottom: 1px dashed #e3e8ed;
}

.pkp_block li:last-child {
    border-bottom: 0;
}

.pkp_block li a {
    display: block;
    color: #334155;
    font-size: 14px;
    font-weight: 600;
}

.pkp_block li a:hover {
    color: var(--pjmr-emerald);
    transform: translateX(3px);
}

/* Make a Submission block */
.pkp_block.block_make_submission {
    border: 0;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.08), transparent 45%),
        var(--pjmr-navy);
    box-shadow: 0 14px 28px rgba(9, 21, 42, 0.20);
}

.pkp_block.block_make_submission::before {
    background: var(--pjmr-gold);
}

.pkp_block.block_make_submission .title,
.pkp_block.block_make_submission p {
    color: #ffffff;
}

.pkp_block.block_make_submission a {
    display: block;
    padding: 13px 16px;
    border: 1px solid var(--pjmr-gold);
    border-radius: 8px;
    color: var(--pjmr-navy) !important;
    background: var(--pjmr-gold);
    font-weight: 800;
    text-align: center;
}

.pkp_block.block_make_submission a:hover {
    border-color: #ffffff;
    background: #ffffff;
    transform: translateY(-2px);
}

/* ---------- 16. BREADCRUMBS ---------- */
.cmp_breadcrumbs {
    margin-bottom: 23px;
    padding: 10px 14px;
    border: 1px solid var(--pjmr-line);
    border-radius: 8px;
    background: #ffffff;
    color: var(--pjmr-muted);
    font-size: 13px;
}

.cmp_breadcrumbs a {
    font-weight: 650;
}

/* ---------- 17. FORMS ---------- */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="url"],
input[type="search"],
select,
textarea {
    box-sizing: border-box;
    width: 100%;
    padding: 11px 13px;
    border: 1px solid #cfd8e1;
    border-radius: 8px;
    color: var(--pjmr-ink);
    background: #ffffff;
    font: inherit;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--pjmr-emerald);
    box-shadow: 0 0 0 3px rgba(8, 127, 107, 0.12);
}

label {
    color: var(--pjmr-navy);
    font-weight: 700;
}

/* ---------- 18. TABLES ---------- */
table {
    width: 100%;
    margin: 22px 0;
    border-collapse: collapse;
    border: 1px solid var(--pjmr-line);
    background: #ffffff;
}

th {
    padding: 12px 14px;
    color: #ffffff;
    background: var(--pjmr-navy);
    font-weight: 700;
    text-align: left;
}

td {
    padding: 12px 14px;
    border-top: 1px solid var(--pjmr-line);
}

tr:nth-child(even) td {
    background: #f7f9fa;
}

/* ---------- 19. ALERTS / NOTICES ---------- */
.cmp_notification,
.pkp_page_index .cmp_notification {
    padding: 16px 18px;
    border: 1px solid #d9e5e1;
    border-left: 4px solid var(--pjmr-emerald);
    border-radius: 8px;
    background: #f1f8f6;
}

/* ---------- 20. PAGINATION ---------- */
.cmp_pagination a,
.cmp_pagination .current {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    margin: 3px;
    border: 1px solid var(--pjmr-line);
    border-radius: 7px;
    background: #ffffff;
    font-weight: 700;
}

.cmp_pagination .current,
.cmp_pagination a:hover {
    color: #ffffff;
    border-color: var(--pjmr-emerald);
    background: var(--pjmr-emerald);
}

/* ---------- 21. FOOTER ---------- */
.pkp_structure_footer_wrapper {
    position: relative;
    margin: 0;
    padding: 0;
    border: 0;
    background:
        linear-gradient(120deg, var(--pjmr-navy-deep), var(--pjmr-navy));
}

.pkp_structure_footer_wrapper::before {
    content: "";
    display: block;
    height: 5px;
    background: linear-gradient(90deg, var(--pjmr-emerald), var(--pjmr-gold));
}

.pkp_structure_footer {
    max-width: 1320px;
    margin: 0 auto;
    padding: 34px 24px;
    color: #d8e0e8;
}

.pkp_structure_footer a {
    color: var(--pjmr-gold-light);
}

.pkp_structure_footer a:hover {
    color: #ffffff;
}

.pkp_brand_footer {
    margin-top: 18px;
}

.pkp_brand_footer img {
    filter: brightness(0) invert(1);
    opacity: 0.75;
}

/* ---------- 22. ACCESSIBILITY ---------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(201, 154, 61, 0.58);
    outline-offset: 3px;
}

/* ---------- 23. RESPONSIVE ---------- */
@media (max-width: 1100px) {
    .pkp_site_name > a,
    .pkp_site_name .is_text {
        font-size: clamp(27px, 3.2vw, 39px) !important;
    }

    .pkp_structure_content {
        grid-template-columns: minmax(0, 1fr) 275px;
        gap: 24px;
    }
}

@media (max-width: 900px) {
    .pkp_structure_content {
        display: block;
        margin-top: 28px;
    }

    .pkp_structure_sidebar {
        margin-top: 34px;
    }

    .pkp_navigation_primary_wrapper {
        padding: 0;
    }

    #navigationPrimary {
        display: block;
    }

    #navigationPrimary > li > a {
        padding: 13px 20px;
    }

    .page_issue_archive .issues_archive {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .pkp_site_name {
        padding: 21px 18px 19px;
    }

    .pkp_site_name > a,
    .pkp_site_name .is_text {
        font-size: 29px !important;
        line-height: 1.18 !important;
        white-space: normal;
    }

    .pkp_site_name > a::after,
    .pkp_site_name .is_text::after {
        font-size: 10px;
        letter-spacing: 0.45px;
    }

    .pkp_structure_content {
        padding-right: 16px;
        padding-left: 16px;
    }

    .page_index_journal .homepage_about,
    .page_index_journal .additional_content,
    .current_issue,
    .obj_article_details {
        padding: 23px 20px;
    }

    .obj_article_summary {
        padding: 20px 18px 19px !important;
    }

    .current_issue::after {
        display: none;
    }

    .current_issue h2 {
        padding-right: 0;
    }

    h1,
    .page_title {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .pkp_site_name > a,
    .pkp_site_name .is_text {
        font-size: 24px !important;
    }

    .pkp_site_name > a::after,
    .pkp_site_name .is_text::after {
        display: none;
    }

    .pkp_block {
        padding: 19px;
    }

    .obj_article_summary .title {
        font-size: 18px;
    }
}

/* ---------- 24. PRINT ---------- */
@media print {
    .pkp_structure_head,
    .pkp_structure_sidebar,
    .pkp_structure_footer_wrapper,
    .cmp_breadcrumbs,
    .obj_galley_link {
        display: none !important;
    }

    body,
    .pkp_structure_content,
    .pkp_structure_main,
    .obj_article_details {
        margin: 0;
        padding: 0;
        border: 0;
        background: #ffffff;
        box-shadow: none;
    }
}
