/*
=====================================================================
SJORANM — Journal Style Sheet
Swiss Journal of Radiology and Nuclear Medicine
Version: 1.4 — 30 August 2026

Consolidated replacement stylesheet for OJS 3.5.x.
Supersedes SJORANM v1.3 while preserving its visual identity and fixes.

v1.4 adds:
- removal of the legacy OJS sidebar and full-width main content
- refined primary/secondary CTA interaction
- subtle accordion interaction
- improved responsive behaviour, including Editorial Board cards
- reduced-motion accessibility support

Brand palette:
Navy:       #172234
Petrol:     #007b82
Teal light: #65c4c8
Text:       #334354
Muted:      #6b7b87
Line:       #dce3e8
Wash:       #f3f7f8
White:      #ffffff
=====================================================================
*/

:root {
    --sjoranm-navy: #172234;
    --sjoranm-petrol: #007b82;
    --sjoranm-teal: #65c4c8;
    --sjoranm-text: #334354;
    --sjoranm-muted: #6b7b87;
    --sjoranm-line: #dce3e8;
    --sjoranm-wash: #f3f7f8;
    --sjoranm-white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
    color: var(--sjoranm-text);
    line-height: 1.65;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

p, li, dd, dt, input, select, textarea, button {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

p { line-height: 1.7; }

a {
    color: var(--sjoranm-petrol);
    text-decoration: none;
}

a:hover,
a:focus {
    color: #005f66;
    text-decoration: underline;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(0, 123, 130, 0.30);
    outline-offset: 2px;
}

/* =================================================================
   1. HEADER
   ================================================================= */

.pkp_structure_head {
    background: var(--sjoranm-navy);
    border-bottom: 0;
    box-shadow: none;
}

.pkp_head_wrapper { max-width: 1280px; }

.pkp_site_name {
    padding-top: 18px;
    padding-bottom: 16px;
}

.pkp_site_name .is_text,
.pkp_site_name a,
.pkp_site_name a:link,
.pkp_site_name a:visited {
    color: var(--sjoranm-white) !important;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-decoration: none !important;
}

.pkp_site_name .is_text {
    font-size: clamp(20px, 2.1vw, 30px);
    line-height: 1.2;
}

.pkp_site_name img {
    max-height: 90px;
    width: auto;
}

/* =================================================================
   2. PRIMARY NAVIGATION
   ================================================================= */

.pkp_navigation_primary_wrapper {
    background: var(--sjoranm-navy);
    border-top: 1px solid rgba(255,255,255,0.10);
}

.pkp_navigation_primary {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.pkp_navigation_primary > li > a {
    color: #e8eef2 !important;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.01em;
    padding-top: 13px;
    padding-bottom: 13px;
    text-decoration: none !important;
}

.pkp_navigation_primary > li > a:hover,
.pkp_navigation_primary > li > a:focus {
    color: var(--sjoranm-teal) !important;
}

.pkp_navigation_primary ul {
    background: #ffffff;
    border: 1px solid var(--sjoranm-line);
    box-shadow: 0 8px 24px rgba(23,34,52,0.12);
}

.pkp_navigation_primary ul a {
    color: var(--sjoranm-navy) !important;
    font-size: 13px;
    text-decoration: none !important;
}

.pkp_navigation_primary ul a:hover,
.pkp_navigation_primary ul a:focus {
    color: var(--sjoranm-petrol) !important;
    background: var(--sjoranm-wash);
}

.pkp_navigation_search_wrapper a { color: #e8eef2 !important; }
.pkp_navigation_search_wrapper a:hover,
.pkp_navigation_search_wrapper a:focus { color: var(--sjoranm-teal) !important; }

/* =================================================================
   3. PAGE WIDTH / MAIN LAYOUT — v1.4
   Remove the legacy OJS sidebar and use the available reading width.
   ================================================================= */

.pkp_structure_content,
.pkp_structure_content.has_sidebar {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.pkp_structure_sidebar {
    display: none !important;
}

.pkp_structure_main,
.pkp_structure_content.has_sidebar .pkp_structure_main {
    width: 100% !important;
    max-width: none !important;
    float: none !important;
    color: var(--sjoranm-text);
    box-sizing: border-box;
}

.pkp_structure_main::before,
.pkp_structure_main::after { background: transparent; }

/* =================================================================
   4. HEADINGS / PAGE TITLES
   ================================================================= */

.pkp_structure_main h1,
.pkp_structure_main h2,
.pkp_structure_main h3,
.pkp_structure_main h4,
.page h1,
.page h2,
.page h3,
.page h4 {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: var(--sjoranm-navy);
}

.pkp_structure_main h1,
.page h1 {
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.pkp_structure_main h2,
.page h2 {
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.25;
}

.pkp_structure_main h3,
.page h3 {
    font-weight: 650;
    line-height: 1.3;
}

.page > h1,
.page_about > h1,
.page_contact > h1,
.page_submissions > h1,
.page_search > h1,
.page_issue_archive > h1,
.page_editorial_team > h1 {
    margin-bottom: 30px;
    padding-bottom: 14px;
    border-bottom: 3px solid var(--sjoranm-petrol);
}

/* =================================================================
   5. HOMEPAGE — GENERAL
   ================================================================= */

.page_index_journal .homepage_image { margin-bottom: 28px; }
.page_index_journal .homepage_image img {
    display: block;
    max-width: 100%;
    height: auto;
}

.page_index_journal .additional_content { color: var(--sjoranm-text); }
.page_index_journal .additional_content h2,
.page_index_journal .additional_content h3 { color: var(--sjoranm-navy); }

.page_index_journal .journal_description {
    margin-bottom: 38px;
}

/* Hide the default About heading when the custom landing hero is present. */
#homepageAbout > h2,
.homepage_about > h2,
.page_index_journal .journal_description > h2 {
    display: none;
}

#homepageAbout,
.homepage_about,
.page_index_journal .journal_description {
    margin-top: 18px;
    margin-bottom: 34px;
}

/* =================================================================
   6. LEGACY HOMEPAGE COMPONENT CLASSES
   Retained for compatibility with earlier SJORANM blocks.
   ================================================================= */

.sjoranm-home-about { margin: 0 0 34px 0; }

.sjoranm-home-about-hero {
    position: relative;
    overflow: hidden;
    margin: 0 0 20px 0;
    padding: 32px 34px 30px 34px;
    background:
        linear-gradient(135deg, rgba(0,123,130,0.08), rgba(0,123,130,0.015)),
        #f7f9fa;
    border: 1px solid var(--sjoranm-line);
    border-left: 5px solid var(--sjoranm-petrol);
}

.sjoranm-home-about-eyebrow {
    margin: 0 0 7px 0;
    color: var(--sjoranm-petrol);
    font-size: 11px;
    line-height: 1.3;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.sjoranm-home-about-title {
    max-width: 760px;
    margin: 0 0 14px 0;
    color: var(--sjoranm-navy);
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.22;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.sjoranm-home-about-lead {
    max-width: 790px;
    margin: 0;
    color: #405363;
    font-size: 16px;
    line-height: 1.75;
}

.sjoranm-home-facts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin: 0 0 22px 0;
}

.sjoranm-home-fact {
    min-height: 96px;
    padding: 16px 17px;
    background: #ffffff;
    border: 1px solid var(--sjoranm-line);
    border-top: 3px solid var(--sjoranm-petrol);
}

.sjoranm-home-fact-label {
    display: block;
    margin-bottom: 5px;
    color: var(--sjoranm-muted);
    font-size: 10px;
    line-height: 1.35;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.sjoranm-home-fact-value {
    display: block;
    color: var(--sjoranm-navy);
    font-size: 14px;
    line-height: 1.45;
    font-weight: 700;
}

.sjoranm-home-about-copy {
    margin: 0 0 20px 0;
    color: var(--sjoranm-text);
}

.sjoranm-home-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 20px 0 0 0;
}

.sjoranm-home-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 8px 13px;
    border: 1px solid var(--sjoranm-petrol);
    border-radius: 3px;
    color: var(--sjoranm-petrol) !important;
    background: #ffffff;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 700;
    text-decoration: none !important;
    transition: transform 0.18s ease, box-shadow 0.18s ease,
                background-color 0.18s ease, border-color 0.18s ease,
                color 0.18s ease, filter 0.18s ease;
}

.sjoranm-home-action:hover,
.sjoranm-home-action:focus {
    color: #ffffff !important;
    background: var(--sjoranm-petrol);
    text-decoration: none !important;
}

.sjoranm-home-action:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.11);
}

.sjoranm-home-action-primary {
    color: #ffffff !important;
    background: var(--sjoranm-petrol);
}

.sjoranm-home-action-primary:hover,
.sjoranm-home-action-primary:focus {
    background: #005f66;
    border-color: #005f66;
}

.sjoranm-home-action-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 12px rgba(0,0,0,0.16);
}

.sjoranm-home-action:focus-visible {
    outline: 3px solid rgba(0, 123, 130, 0.30);
    outline-offset: 3px;
}

.sjoranm-home-trademark-note {
    margin: 22px 0 0 0;
    padding-top: 15px;
    border-top: 1px solid var(--sjoranm-line);
    color: #71808b;
    font-size: 11px;
    line-height: 1.6;
}

.sjoranm-home-trademark-note strong { color: #536573; }

/* =================================================================
   7. CURRENT LANDING HERO / FACTS / CTAs
   ================================================================= */

.sjoranm-landing-hero {
    position: relative;
    overflow: hidden;
    margin: 0 0 18px 0;
    padding: 38px 40px 34px 40px;
    background:
        linear-gradient(135deg, rgba(0,123,130,0.18) 0%, rgba(0,123,130,0.02) 58%),
        #172234;
    border-left: 5px solid #49b7bc;
    color: #ffffff;
}

.sjoranm-landing-eyebrow {
    margin: 0 0 10px 0;
    color: #72d0d4;
    font-size: 11px;
    line-height: 1.3;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.13em;
}

.sjoranm-landing-title {
    max-width: 780px;
    margin: 0 0 17px 0;
    color: #ffffff !important;
    font-size: clamp(30px, 4.2vw, 48px);
    line-height: 1.08;
    font-weight: 750;
    letter-spacing: -0.035em;
}

.sjoranm-landing-title span { color: #74d1d5; }

.sjoranm-landing-lead {
    max-width: 800px;
    margin: 0;
    color: #d8e3e9;
    font-size: 16px;
    line-height: 1.75;
}

.sjoranm-landing-facts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin: 0 0 18px 0;
}

.sjoranm-landing-fact {
    min-height: 86px;
    padding: 15px 16px;
    background: #f5f8f8;
    border: 1px solid #dce3e8;
    border-top: 3px solid #007b82;
}

.sjoranm-landing-fact-label {
    display: block;
    margin-bottom: 4px;
    color: #6b7b87;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.sjoranm-landing-fact-value {
    display: block;
    color: #172234;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
}

.sjoranm-landing-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 0 0 18px 0;
}

.sjoranm-landing-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 14px;
    border: 1px solid #007b82;
    border-radius: 3px;
    background: #ffffff;
    color: #007b82 !important;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none !important;
    transition: transform 0.18s ease, box-shadow 0.18s ease,
                background-color 0.18s ease, border-color 0.18s ease,
                color 0.18s ease, filter 0.18s ease;
}

.sjoranm-landing-action:hover,
.sjoranm-landing-action:focus {
    background: #007b82;
    color: #ffffff !important;
    text-decoration: none !important;
}

.sjoranm-landing-action:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.11);
}

.sjoranm-landing-action-primary {
    background: #007b82;
    color: #ffffff !important;
}

.sjoranm-landing-action-primary:hover,
.sjoranm-landing-action-primary:focus {
    background: #005f66;
    border-color: #005f66;
}

.sjoranm-landing-action-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 12px rgba(0,0,0,0.16);
}

.sjoranm-landing-action:focus-visible {
    outline: 3px solid rgba(0, 123, 130, 0.30);
    outline-offset: 3px;
}

.sjoranm-landing-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    align-items: center;
    margin: 0;
    padding: 13px 16px;
    background: #ffffff;
    border: 1px solid #dce3e8;
    color: #6b7b87;
    font-size: 11px;
    line-height: 1.4;
}

.sjoranm-landing-trust strong { color: #172234; }
.sjoranm-landing-trust a {
    color: #007b82 !important;
    font-weight: 700;
}

/* =================================================================
   8. HOMEPAGE IMAGES / ANNOUNCEMENTS / CURRENT ISSUE
   ================================================================= */

.page_index_journal .journal_description img,
.page_index_journal .additional_content img {
    max-width: 100%;
    height: auto;
}

.page_index_journal .journal_description img[alt*="DOAJ" i],
.page_index_journal .additional_content img[alt*="DOAJ" i] {
    max-width: 260px !important;
    height: auto !important;
}

.page_index_journal .journal_description img[alt*="LinkedIn" i],
.page_index_journal .journal_description img[alt*="Truth" i],
.page_index_journal .additional_content img[alt*="LinkedIn" i],
.page_index_journal .additional_content img[alt*="Truth" i] {
    max-height: 42px !important;
    width: auto !important;
}

.page_index_journal #homepageAbout img,
.page_index_journal .homepage_about img {
    max-width: 240px !important;
    height: auto !important;
}

.page_index_journal .cmp_announcements {
    margin-top: 24px;
    margin-bottom: 28px;
}

.page_index_journal .cmp_announcements > h2 {
    font-size: 20px;
    border-bottom-width: 2px;
}

.obj_announcement_summary,
.cmp_announcements .obj_announcement_summary {
    margin-bottom: 20px;
    padding: 20px 22px;
    background: var(--sjoranm-wash);
    border-left: 4px solid var(--sjoranm-petrol);
}

.page_index_journal .obj_announcement_summary { padding: 16px 18px; }

.obj_announcement_summary h2,
.obj_announcement_summary h3,
.obj_announcement_summary .title {
    color: var(--sjoranm-navy);
    font-weight: 700;
}

.obj_announcement_summary .date {
    color: var(--sjoranm-muted);
    font-size: 13px;
}

.obj_announcement_summary .read_more {
    color: var(--sjoranm-petrol);
    font-weight: 600;
}

.page_index_journal .obj_announcement_summary .summary { color: #4a5c6b; }

.page_index_journal .current_issue {
    margin-top: 30px;
    padding-top: 0;
}

.page_index_journal .current_issue > h2,
.page_index_journal .cmp_announcements > h2 {
    padding-bottom: 10px;
    border-bottom: 3px solid var(--sjoranm-petrol);
    color: var(--sjoranm-navy);
}

.page_index_journal .current_issue > h2 {
    font-size: 27px;
    margin-bottom: 18px;
}

.page_index_journal .current_issue .current_issue_title,
.page_index_journal .current_issue .title {
    color: var(--sjoranm-navy);
    font-weight: 700;
}

.page_index_journal .current_issue .cover { margin-right: 26px; }

.page_index_journal .current_issue .cover img {
    max-width: 190px;
    border: 1px solid #d6dee3;
    box-shadow: 0 10px 28px rgba(23,34,52,0.12);
}

.page_index_journal .current_issue .obj_article_summary {
    margin-bottom: 20px;
    padding-bottom: 18px;
}

.page_index_journal .current_issue .obj_article_summary .title { font-size: 17px; }
.page_index_journal .current_issue .obj_article_summary .authors {
    margin-top: 5px;
    margin-bottom: 4px;
}

/* =================================================================
   9. ISSUES / ARTICLE LISTS / ARTICLE DETAILS
   ================================================================= */

.obj_issue_summary { border-bottom-color: var(--sjoranm-line); }
.obj_issue_summary .title,
.obj_issue_summary .title a {
    color: var(--sjoranm-navy) !important;
    font-weight: 700;
}
.obj_issue_summary .description { color: var(--sjoranm-text); }
.obj_issue_toc .heading { border-bottom-color: var(--sjoranm-line); }

.obj_issue_toc .section > h2,
.obj_issue_toc .section > h3 {
    margin-top: 34px;
    padding-bottom: 9px;
    border-bottom: 2px solid var(--sjoranm-line);
    color: var(--sjoranm-navy);
}

.obj_article_summary {
    margin-bottom: 26px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--sjoranm-line);
}

.obj_article_summary .title,
.obj_article_summary .title a {
    color: var(--sjoranm-navy) !important;
    font-weight: 700;
    line-height: 1.35;
    text-decoration: none !important;
}

.obj_article_summary .title a:hover,
.obj_article_summary .title a:focus { color: var(--sjoranm-petrol) !important; }
.obj_article_summary .authors { color: #4d5d6b; }
.obj_article_summary .pages,
.obj_article_summary .published {
    color: var(--sjoranm-muted);
    font-size: 13px;
}

.obj_article_details .page_title,
.obj_article_details h1 {
    color: var(--sjoranm-navy);
    font-weight: 700;
    line-height: 1.25;
}

.obj_article_details .authors,
.obj_article_details .authors a { color: #455766; }

.obj_article_details .abstract {
    line-height: 1.75;
    color: var(--sjoranm-text);
}

.obj_article_details .abstract h2,
.obj_article_details .item.references h2,
.obj_article_details .item.keywords h2 {
    padding-bottom: 8px;
    border-bottom: 2px solid var(--sjoranm-line);
    color: var(--sjoranm-navy);
}

.obj_article_details .item { margin-top: 30px; }

/* =================================================================
   10. GALLEYS / BUTTONS / FORMS / TABLES
   ================================================================= */

.obj_galley_link,
.cmp_button,
.pkp_button,
button,
input[type="submit"],
input[type="button"] {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
    border-radius: 3px;
}

.obj_galley_link {
    color: var(--sjoranm-petrol) !important;
    border-color: var(--sjoranm-petrol) !important;
    background: #ffffff !important;
    font-weight: 700;
    text-decoration: none !important;
}

.obj_galley_link:hover,
.obj_galley_link:focus {
    color: #ffffff !important;
    background: var(--sjoranm-petrol) !important;
    border-color: var(--sjoranm-petrol) !important;
}

.cmp_button,
.pkp_button,
button:not(.close),
input[type="submit"],
input[type="button"] {
    background: var(--sjoranm-petrol);
    color: #ffffff;
    border: 1px solid var(--sjoranm-petrol);
    font-weight: 600;
}

.cmp_button:hover,
.pkp_button:hover,
button:not(.close):hover,
input[type="submit"]:hover,
input[type="button"]:hover {
    background: #005f66;
    border-color: #005f66;
    color: #ffffff;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="url"],
input[type="search"],
textarea,
select {
    border: 1px solid #cfd9df;
    border-radius: 3px;
    background: #ffffff;
    color: var(--sjoranm-text);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
textarea:focus,
select:focus {
    border-color: var(--sjoranm-petrol);
    box-shadow: 0 0 0 2px rgba(0,123,130,0.10);
}

.pkp_structure_main table {
    width: 100%;
    border-collapse: collapse;
}

.pkp_structure_main th {
    color: var(--sjoranm-navy);
    font-weight: 700;
    background: var(--sjoranm-wash);
}

.pkp_structure_main th,
.pkp_structure_main td { border-color: var(--sjoranm-line); }

/* =================================================================
   11. BREADCRUMBS / STATIC PAGE HELPERS
   ================================================================= */

.cmp_breadcrumbs {
    color: var(--sjoranm-muted);
    font-size: 13px;
}
.cmp_breadcrumbs a { color: var(--sjoranm-muted); }
.cmp_breadcrumbs a:hover,
.cmp_breadcrumbs a:focus { color: var(--sjoranm-petrol); }

.sjoranm-page {
    max-width: 920px;
    margin: 0 auto;
    color: var(--sjoranm-text);
}

.sjoranm-intro {
    margin: 0 0 42px 0;
    padding: 28px 32px;
    background: var(--sjoranm-wash);
    border-left: 5px solid var(--sjoranm-petrol);
}

.sjoranm-intro-label {
    margin: 0 0 8px 0;
    color: var(--sjoranm-petrol);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.sjoranm-intro-text {
    margin: 0 0 14px 0;
    color: var(--sjoranm-navy);
    font-size: 20px;
    line-height: 1.5;
}

.sjoranm-section {
    margin: 0 0 44px 0;
    padding: 0 0 38px 0;
    border-bottom: 1px solid var(--sjoranm-line);
}

.sjoranm-section-title {
    margin: 0 0 24px 0;
    padding: 10px 16px;
    border-left: 4px solid var(--sjoranm-petrol);
    background: #f7f9fa;
    color: var(--sjoranm-navy);
    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
}

.sjoranm-info-box {
    margin: 0 0 24px 0;
    padding: 24px 26px;
    background: #f5f8f8;
    border: 1px solid #dde5e8;
    border-top: 3px solid var(--sjoranm-petrol);
}

.sjoranm-editor-box {
    margin: 0 0 22px 0;
    padding: 24px 27px;
    background: var(--sjoranm-navy);
    border-left: 5px solid #49b7bc;
    color: #d9e4ea;
}
.sjoranm-editor-box strong { color: #ffffff; }

.sjoranm-language-divider {
    margin: 70px 0 52px 0;
    padding: 30px 32px;
    background: var(--sjoranm-navy);
    border-left: 5px solid #49b7bc;
    color: #ffffff;
}

/* Subtle interaction for policy accordions. Inline page styles remain authoritative. */
.pkp_structure_main details {
    transition: box-shadow 0.18s ease, border-color 0.18s ease;
}

.pkp_structure_main details:hover {
    box-shadow: 0 3px 10px rgba(0,0,0,0.055);
}

.pkp_structure_main summary {
    transition: color 0.15s ease;
}

/* =================================================================
   12. EDITORIAL TEAM
   ================================================================= */

.page_editorial_team .sjoranm-editor,
.page_editorial_team .editor,
.page_editorial_team [class*="editor-card"] {
    border-radius: 5px;
}

.page_editorial_team h2,
.page_editorial_team h3 { margin-top: 34px; }

/* =================================================================
   13. FOOTER / PKP BRANDING
   ================================================================= */

.pkp_structure_footer_wrapper {
    background: var(--sjoranm-navy);
    color: #d9e2e8;
}

.pkp_structure_footer { max-width: 1280px; }
.pkp_structure_footer a { color: #ffffff; }
.pkp_structure_footer a:hover,
.pkp_structure_footer a:focus { color: var(--sjoranm-teal); }

.sjoranm-footer {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    background: var(--sjoranm-navy);
    color: #d9e2e8;
}

.sjoranm-footer-journal {
    color: #ffffff !important;
    font-size: 26px !important;
    line-height: 1.25 !important;
    font-weight: 700 !important;
}

.sjoranm-footer-label {
    color: #91a3b0;
    font-size: 12px;
}

.sjoranm-footer-value { color: #ffffff; }
.sjoranm-footer-service {
    color: #ffffff !important;
    border-color: rgba(255,255,255,0.22);
}

.sjoranm-footer-trademark-name {
    color: var(--sjoranm-navy) !important;
    font-weight: 800 !important;
}

.sjoranm-footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 1.20fr 1.35fr 0.85fr;
    gap: 34px;
}

.sjoranm-footer-column { min-width: 0; }
.sjoranm-footer-column:first-child { min-width: 170px; }
.sjoranm-footer-column h3 {
    overflow-wrap: normal;
    word-break: normal;
}
.sjoranm-footer-value { overflow-wrap: normal; }

.pkp_brand_footer {
    opacity: 0.32;
    transition: opacity 0.15s ease;
}

.pkp_brand_footer:hover { opacity: 0.55; }
.pkp_brand_footer img,
.pkp_brand_footer svg {
    max-width: 120px !important;
    height: auto !important;
}

/* =================================================================
   14. SMALL VISUAL REFINEMENTS
   ================================================================= */

hr {
    border: 0;
    border-top: 1px solid var(--sjoranm-line);
}

blockquote {
    margin: 24px 0;
    padding: 18px 22px;
    background: var(--sjoranm-wash);
    border-left: 4px solid var(--sjoranm-petrol);
    color: #455766;
}

::selection { background: rgba(0,123,130,0.18); }

.pkp_structure_main img {
    max-width: 100%;
    height: auto;
}

/* =================================================================
   15. FULL ISSUE OPEN ACCESS GALLEY FIX — retained from v1.3
   OJS may incorrectly render a full-issue galley with the "restricted"
   class even when the journal/file is publicly accessible.
   Scope is deliberately limited to full-issue galleys in issue TOCs.
   ================================================================= */

.obj_issue_toc .galleys .obj_galley_link.restricted {
    border-color: #007b82 !important;
    color: #007b82 !important;
    background: #ffffff !important;
}

.obj_issue_toc .galleys .obj_galley_link.restricted.pdf::before {
    content: "\f1c1" !important;
    color: #007b82 !important;
    font-family: FontAwesome !important;
    font-style: normal !important;
    font-weight: normal !important;
    margin-right: 0.35em;
}

.obj_issue_toc .galleys .obj_galley_link.restricted:not(.pdf)::before {
    content: "\f0f6" !important;
    color: #007b82 !important;
    font-family: FontAwesome !important;
    font-style: normal !important;
    font-weight: normal !important;
    margin-right: 0.35em;
}

.obj_issue_toc .galleys .obj_galley_link.restricted .pkp_screen_reader {
    display: none !important;
}

.obj_issue_toc .galleys .obj_galley_link.restricted:hover,
.obj_issue_toc .galleys .obj_galley_link.restricted:focus {
    border-color: #007b82 !important;
    background: #007b82 !important;
    color: #ffffff !important;
}

.obj_issue_toc .galleys .obj_galley_link.restricted:hover::before,
.obj_issue_toc .galleys .obj_galley_link.restricted:focus::before {
    color: #ffffff !important;
}

/* =================================================================
   16. RESPONSIVE
   ================================================================= */

@media (max-width: 1050px) {
    .sjoranm-home-facts,
    .sjoranm-landing-facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sjoranm-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px 36px;
    }
}

@media (max-width: 992px) {
    .pkp_site_name {
        padding-top: 14px;
        padding-bottom: 13px;
    }

    .pkp_structure_content,
    .pkp_structure_content.has_sidebar {
        max-width: 100%;
    }

    .sjoranm-intro { padding: 24px 26px; }
}

@media (max-width: 768px) {
    .pkp_structure_content,
    .pkp_structure_content.has_sidebar {
        width: 100%;
        padding-left: 16px;
        padding-right: 16px;
        box-sizing: border-box;
    }

    .pkp_structure_main,
    .pkp_structure_content.has_sidebar .pkp_structure_main {
        width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    body { font-size: 15px; }
    .pkp_site_name .is_text { font-size: 21px; }
    .pkp_structure_main h1,
    .page h1 { font-size: 28px; }
    .pkp_structure_main h2,
    .page h2 { font-size: 22px; }

    .obj_article_summary {
        margin-bottom: 22px;
        padding-bottom: 20px;
    }

    .sjoranm-intro { padding: 22px 20px; }
    .sjoranm-intro-text { font-size: 18px; }
    .sjoranm-section-title {
        font-size: 20px;
        padding: 9px 13px;
    }
    .sjoranm-editor-box { padding: 22px 20px; }
    .sjoranm-language-divider {
        margin-top: 50px;
        padding: 24px 22px;
    }

    .sjoranm-home-about-hero { padding: 24px 21px; }
    .sjoranm-home-about-title { font-size: 25px; }

    .sjoranm-home-facts,
    .sjoranm-landing-facts {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .sjoranm-home-fact,
    .sjoranm-landing-fact {
        min-height: auto;
        padding: 14px 16px;
    }

    .sjoranm-home-actions,
    .sjoranm-landing-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .sjoranm-home-action,
    .sjoranm-landing-action {
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
        margin-bottom: 0.2rem;
    }

    .sjoranm-footer-grid { grid-template-columns: 1fr; }
    .sjoranm-footer-journal { font-size: 22px !important; }
}

@media (max-width: 650px) {
    .sjoranm-landing-hero { padding: 27px 22px 25px 22px; }
    .sjoranm-landing-title { font-size: 30px; }
    .sjoranm-landing-lead { font-size: 15px; }

    /* Editorial Board: convert inline two-column profile cards to one column. */
    .pkp_structure_main details > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }

    .pkp_structure_main details > summary {
        flex-wrap: wrap !important;
        gap: 0.6rem !important;
    }

    .pkp_structure_main details > summary > span:last-child {
        flex-wrap: wrap !important;
        gap: 0.8rem !important;
    }
}

/* =================================================================
   17. ACCESSIBILITY — REDUCED MOTION
   ================================================================= */

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .sjoranm-home-action:hover,
    .sjoranm-landing-action:hover {
        transform: none !important;
    }
}

/* END SJORANM v1.4 */
