/* Homepage section order */
body.page_index {
    display: flex;
    flex-direction: column;
}

body.page_index > header.main-header {
    order: 1;
}

body.page_index > aside {
    display: contents;
}

body.page_index > aside .additional-home-content {
    display: contents;
}

/* 1. Intro */
body.page_index > aside .stel-home-intro-section {
    order: 2;
}

/* 2. Calls for Papers */
body.page_index > aside .stel-cfp-section {
    order: 3;
}

/* 3. Announcements */
body.page_index > main#immersion_content_main {
    order: 4;
    width: 100%;
}

/* 4. Recent Special Issues */
body.page_index > aside .stel-issues-grid-section {
    order: 5;
}

body.page_index > footer.main-footer {
    order: 6;
}

body.page_index > #loginModal {
    order: 7;
}

/* Width wrapper */
.stel-page-width {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 576px) {
    .stel-page-width {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .stel-page-width {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .stel-page-width {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .stel-page-width {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .stel-page-width {
        max-width: 1320px;
    }
}

/* Intro + LinkedIn section */
.stel-home-intro-section {
    width: 100%;
    padding: 2.5rem 0 2rem;
}

.stel-intro-with-sidebar {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.stel-intro-main {
    flex: 1 1 auto;
    min-width: 0;
}

.stel-intro-main p {
    font: inherit;
    color: inherit;
    line-height: inherit;
    margin: 0 0 1em 0;
}

/* Ensure consistent body text across sections */
.stel-cfp-content p,
.stel-issues-grid-section p {
    font: inherit;
    color: inherit;
    line-height: inherit;
    margin: 0 0 1em 0;
}

.stel-intro-sidebar {
    flex: 0 0 320px;
    max-width: 320px;
    width: 100%;
    padding-top: 0.5rem;
}

.stel-intro-sidebar iframe {
    display: block;
    width: 100%;
    height: 460px;
    border: 0;
}

.stel-intro-with-sidebar {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.stel-intro-main {
    padding-top: 2rem;
}

/* Announcements */
.announcements.section_dark {
    margin: 0;
}


/* Hide the Current Issue block on the journal landing page only */
body.page_index main#immersion_content_main > section.issue {
    display: none !important;
}

/* Shared heading styling */
.stel-issues-grid-section .stel-special-issues-heading,
.stel-cfp-section .stel-special-issues-heading {
    font-family: 'Spectral', serif !important;
    font-size: 1.75rem !important;
    font-weight: 700 !important;
    letter-spacing: -0.025em !important;
    margin: 3.5rem 0 1.5rem 0 !important;
    color: #000 !important;
}

/* Calls for papers */
.stel-cfp-section {
    width: 100%;
    padding: 3rem 0;
    background: #ffffff;
}

.stel-cfp-panel {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.stel-cfp-image {
    flex: 0 0 300px;
    max-width: 300px;
    width: 100%;
}

.stel-cfp-image img {
    display: block;
    width: 100%;
    height: auto;
}

.stel-cfp-content {
    flex: 1 1 auto;
    min-width: 0;
}

.stel-cfp-title {
    font-family: 'Spectral', serif;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 0.75rem 0;
}

.stel-cfp-editors {
    font-weight: 600;
    margin: 0 0 1rem 0;
}

.stel-cfp-button {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.65rem 1.2rem;
    background: #1F5F73;
    color: #ffffff !important;
    text-decoration: none !important;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: background 0.2s ease;
}

.stel-cfp-button:hover {
    background: #174c5c;
}

/* Special issues */
.stel-issues-grid-section {
    width: 100%;
    padding: 3rem 0;
    margin-top: 2.5rem;
    background: #f7f9fa;
}

.stel-issues-grid-intro {
    margin-bottom: 2rem;
}

/* Grid */
.stel-issues-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stel-issue-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ffffff;
    border: 1px solid #d7e0e5;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    text-decoration: none !important;
}

.stel-issue-card img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.stel-issue-card-title {
    padding: 1rem;
    font-size: 0.98rem;
    font-weight: 600;
    text-align: center;
}

/* Responsive */
@media (max-width: 991px) {
    .stel-intro-with-sidebar {
        display: block;
    }

    .stel-intro-sidebar {
        margin-top: 1.5rem;
        max-width: 100%;
    }

    .stel-issues-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stel-cfp-panel {
        flex-direction: column;
    }
}

@media (max-width: 575px) {
    .stel-issues-grid {
        grid-template-columns: 1fr;
    }
}

/* Article pages */
/*
 * All rules in this section are restricted to article pages. The existing
 * homepage layout and styling above remain unchanged.
 */

/* General article-page canvas */
body.page_article main#immersion_content_main {
    max-width: 1320px;
    padding-top: 3.5rem;
    padding-bottom: 4.5rem;
    background: #ffffff !important;
    color: #000000 !important;
}

body.page_article main#immersion_content_main > .row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    column-gap: 4rem;
    row-gap: 0;
    align-items: start;
    margin-right: 0;
    margin-left: 0;
}

/*
 * Let the principal article elements participate directly in the page grid.
 * This makes it possible to place the cover, PDF link and publication details
 * together in the right-hand column without editing an OJS template.
 */
body.page_article .article-page,
body.page_article .article-sidebar {
    display: contents;
}

/* Main-column placement */
body.page_article .article-page__header,
body.page_article .article-page > h3.label,
body.page_article .article-page > h3.label + p,
body.page_article .article-page > ol.references {
    grid-column: 1;
}

body.page_article .article-page__header {
    grid-row: 1 / span 4;
    padding: 0;
    margin: 0 0 2.75rem;
    background: transparent !important;
    color: #000000 !important;
}

/* Sidebar placement */
body.page_article .article-sidebar > figure {
    grid-column: 2;
    grid-row: 1;
    margin: 0 0 1.5rem;
}

body.page_article .article-page__galleys {
    grid-column: 2;
    grid-row: 2;
    margin: 0 0 1.5rem;
}

body.page_article .article-page > .article-page__meta {
    grid-column: 2;
    grid-row: 3;
    margin: 0 0 1.75rem;
}

body.page_article .article-sidebar > .article-side__title {
    grid-column: 2;
    grid-row: 4;
}

body.page_article .article-sidebar > .article-side__title + ul {
    grid-column: 2;
    grid-row: 5;
}

body.page_article .article-sidebar > .copyright-info {
    grid-column: 2;
    grid-row: 6;
    align-self: start;
}

body.page_article .article-page > h3.label:first-of-type {
    grid-row: 5;
    transform: translateY(-10rem);
    margin-bottom: -10rem;
    position: relative;
    z-index: 2;
}

body.page_article .article-page > h3.label:first-of-type + p {
    grid-row: 5;
    padding-top: 5.1rem;
    transform: translateY(-10rem);
    margin-bottom: -10rem;
    position: relative;
    z-index: 1;
}

/* References follow the abstract in the main reading column.
   Heading and list share one grid row so sidebar content cannot create
   unwanted space between the heading and the first reference. */
body.page_article .article-page > h3.label:nth-of-type(2) {
    grid-row: 6;
    position: relative;
    z-index: 2;
}

body.page_article .article-page > ol.references {
    grid-row: 6;
    position: relative;
    z-index: 1;
}

/* Cover image */
body.page_article .article-sidebar figure img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border: 1px solid #ead0d2;
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Article hierarchy */
body.page_article .article-page,
body.page_article .article-page h1,
body.page_article .article-page h2,
body.page_article .article-page h3,
body.page_article .article-page h4,
body.page_article .article-page p,
body.page_article .article-page li,
body.page_article .article-page dt,
body.page_article .article-page dd,
body.page_article .article-page .article-page__meta,
body.page_article .article-page .label,
body.page_article .article-sidebar,
body.page_article .article-sidebar h2,
body.page_article .article-sidebar li {
    color: #000000 !important;
}

body.page_article .article-page__header > p.article-page__meta:first-of-type {
    margin: 0 0 0.65rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

body.page_article .article-page__header > p.article-page__meta:nth-of-type(2) {
    max-width: 760px;
    margin: 0 0 1.5rem;
    font-size: 0.95rem;
    line-height: 1.55;
}

body.page_article .article-page__title {
    max-width: 900px;
    margin: 0 0 1.6rem;
    font-family: 'Spectral', serif;
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.035em;
    color: #000000 !important;
}

/* Authors and affiliations */
body.page_article .authors-string {
    margin: 0;
    padding: 0;
}

body.page_article .authors-string__item {
    font-size: 1.08rem;
    font-weight: 600;
}

body.page_article .article-details__author.hidden {
    display: block !important;
}

body.page_article .article-details__author {
    margin-top: 0.55rem;
    font-size: 0.94rem;
    line-height: 1.5;
}

body.page_article .article-details__author-orcid {
    margin-top: 0.25rem;
}

body.page_article .author-symbol {
    display: none !important;
}

/* Ordinary links are black; the PDF control remains white. */
body.page_article .article-page a,
body.page_article .article-sidebar a {
    color: #000000 !important;
    text-decoration-color: rgba(0, 0, 0, 0.4);
    text-underline-offset: 0.15em;
}

body.page_article .article-page a:hover,
body.page_article .article-page a:focus,
body.page_article .article-sidebar a:hover,
body.page_article .article-sidebar a:focus {
    color: #000000 !important;
    text-decoration-color: #000000;
}

/* PDF control */
body.page_article .article-page__galleys .list-galleys {
    margin: 0;
    padding: 0;
}

body.page_article .article-page__galleys .list-galleys li {
    width: 100%;
}

body.page_article .article-page a.article__btn.pdf,
body.page_article .article-page a.article__btn.pdf:hover,
body.page_article .article-page a.article__btn.pdf:focus {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 3rem;
    padding: 0.75rem 1.25rem;
    border: 0;
    border-radius: 5px;
    background: #B5121B !important;
    color: #ffffff !important;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none !important;
    box-shadow: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

body.page_article .article-page a.article__btn.pdf::before {
    content: "↓";
    margin-right: 0.55rem;
    font-size: 1.15em;
    line-height: 1;
}

body.page_article .article-page a.article__btn.pdf:hover,
body.page_article .article-page a.article__btn.pdf:focus {
    background: #8F0E15 !important;
    transform: translateY(-1px);
}

/* DOI and publication information */
body.page_article .article-page > .article-page__meta dl {
    display: grid;
    grid-template-columns: max-content minmax(0, 1fr);
    gap: 0.65rem 0.9rem;
    margin: 0;
    padding: 1.1rem 0;
    border-top: 1px solid #e4b9bc;
    border-bottom: 1px solid #e4b9bc;
    font-size: 0.9rem;
    line-height: 1.45;
}

body.page_article .article-page > .article-page__meta dl dt,
body.page_article .article-page > .article-page__meta dl dd {
    margin: 0;
    min-width: 0;
}

body.page_article .article-page > .article-page__meta dl dt {
    font-weight: 700;
}

body.page_article .article-page > .article-page__meta dl dd {
    min-width: 0;
    max-width: 100%;
}

/* Allow long DOI URLs to wrap cleanly within the metadata column. */
body.page_article .article-page > .article-page__meta dl dd a[href^="https://doi.org/"],
body.page_article .article-page > .article-page__meta dl dd a[href^="http://doi.org/"],
body.page_article .article-page > .article-page__meta dl dd a[href^="http://dx.doi.org/"],
body.page_article .article-page > .article-page__meta dl dd a[href^="https://dx.doi.org/"] {
    display: block !important;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-wrap: break-word !important;
    word-break: break-word !important;
    hyphens: none;
}

/* Give the DOI row the full sidebar width instead of squeezing it beside its label. */
body.page_article .article-page > .article-page__meta dl > dt:first-of-type,
body.page_article .article-page > .article-page__meta dl > dd:first-of-type {
    grid-column: 1 / -1;
}

body.page_article .article-page > .article-page__meta dl > dt:first-of-type {
    margin-bottom: -0.35rem;
}

body.page_article .article-page > .article-page__meta dl > dd:first-of-type {
    width: 100%;
    max-width: 100%;
}

/* Match the Published row to the full-width DOI style. */
body.page_article .article-page > .article-page__meta dl > dt:nth-of-type(3),
body.page_article .article-page > .article-page__meta dl > dd:nth-of-type(3) {
    grid-column: 1 / -1;
}

body.page_article .article-page > .article-page__meta dl > dt:nth-of-type(3) {
    margin-top: 0.35rem;
    margin-bottom: -0.35rem;
}

body.page_article .article-page > .article-page__meta dl > dd:nth-of-type(3) {
    width: 100%;
    max-width: 100%;
}

/* Hide the Submitted label and its corresponding date. */
body.page_article .article-page > .article-page__meta dl > dt:nth-of-type(2),
body.page_article .article-page > .article-page__meta dl > dd:nth-of-type(2) {
    display: none !important;
}

/* Abstract panel */
body.page_article .article-page > h3.label:first-of-type {
    margin-top: 0;
    padding: 1.35rem 1.75rem 0;
    border-top: 1px solid #ead0d2;
    border-right: 1px solid #ead0d2;
    border-left: 5px solid #B5121B;
    border-radius: 6px 6px 0 0;
    background: transparent !important;
    font-family: 'Spectral', serif;
    font-size: 1.55rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

body.page_article .article-page > h3.label:first-of-type + p {
    margin-top: 0;
    padding-right: 1.75rem;
    padding-bottom: 1.75rem;
    padding-left: 1.75rem;
    border-right: 1px solid #ead0d2;
    border-bottom: 1px solid #ead0d2;
    border-left: 5px solid #B5121B;
    border-radius: 0 0 6px 6px;
    background: #fff7f7 !important;
    font-size: 1.02rem;
    line-height: 1.75;
}

/* References section */
body.page_article .article-page > h3.label:nth-of-type(2) {
    margin: 2.75rem 0 1.25rem;
    padding: 0 0 0.7rem;
    border: 0;
    border-bottom: 3px solid #B5121B;
    border-radius: 0;
    background: transparent !important;
    font-family: 'Spectral', serif;
    font-size: 1.55rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #B5121B !important;
    transform: none;
}

body.page_article .article-page > ol.references {
    margin: 0 0 1rem;
    padding-top: 7rem;
    padding-left: 2.2rem;
    font-size: 0.96rem;
    line-height: 1.65;
}

body.page_article .article-page > ol.references li {
    margin: 0 0 1rem;
    padding-left: 0.35rem;
    overflow-wrap: anywhere;
}

body.page_article .article-page > ol.references li::marker {
    color: #B5121B;
    font-weight: 700;
}

body.page_article .article-page > ol.references a {
    color: #000000 !important;
    overflow-wrap: anywhere;
}

body.page_article .article-page > ol.references a:hover,
body.page_article .article-page > ol.references a:focus {
    color: #B5121B !important;
}

/* Copyright and licence card */
body.page_article .article-sidebar > .copyright-info {
    margin: 1.5rem 0 0;
    padding: 1.15rem 1.2rem 1.2rem;
    border: 1px solid #ead0d2;
    border-left: 4px solid #B5121B;
    border-radius: 6px;
    background: #fff7f7 !important;
    color: #000000 !important;
    font-size: 0.86rem;
    line-height: 1.5;
}

body.page_article .article-sidebar > .copyright-info::before {
    content: "Copyright & licence";
    display: block;
    margin: 0 0 0.8rem;
    font-family: 'Spectral', serif;
    font-size: 1.12rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.015em;
    color: #B5121B;
}

body.page_article .article-sidebar > .copyright-info p {
    margin: 0 0 0.85rem;
    color: #000000 !important;
    font-size: inherit;
    line-height: inherit;
}

body.page_article .article-sidebar > .copyright-info p:last-child {
    margin-bottom: 0;
}

body.page_article .article-sidebar > .copyright-info > a[rel="license"] {
    display: inline-block;
    margin: 0 0 0.8rem;
    line-height: 1;
    text-decoration: none !important;
}

body.page_article .article-sidebar > .copyright-info img {
    display: block;
    width: 88px;
    max-width: 100%;
    height: auto;
    margin: 0;
    border: 0;
    box-shadow: none;
}

body.page_article .article-sidebar > .copyright-info a {
    color: #000000 !important;
    overflow-wrap: anywhere;
    word-break: normal;
}

body.page_article .article-sidebar > .copyright-info a:hover,
body.page_article .article-sidebar > .copyright-info a:focus {
    color: #B5121B !important;
    text-decoration-color: #B5121B;
}

/* Keyword tags */
body.page_article .article-sidebar > .article-side__title {
    margin: 0 0 0.9rem;
    font-family: 'Spectral', serif;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

body.page_article .article-sidebar > .article-side__title + ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

body.page_article .article-sidebar > .article-side__title + ul li {
    margin: 0;
    padding: 0.4rem 0.7rem;
    border: 1px solid #e4b9bc;
    border-radius: 999px;
    background: #fff2f3;
    font-size: 0.82rem;
    line-height: 1.25;
}


/* Red journal accents */
body.page_article .article-page__header > p.article-page__meta:first-of-type,
body.page_article .article-side__title,
body.page_article .article-page > h3.label {
    color: #B5121B !important;
}

body.page_article .article-page__header > p.article-page__meta:nth-of-type(2) a:hover,
body.page_article .article-page__header > p.article-page__meta:nth-of-type(2) a:focus,
body.page_article .authors-string__item a:hover,
body.page_article .authors-string__item a:focus,
body.page_article .article-details__author-orcid a:hover,
body.page_article .article-details__author-orcid a:focus {
    color: #B5121B !important;
    text-decoration-color: #B5121B;
}

/* Responsive article layout */
@media (max-width: 991px) {
    body.page_article main#immersion_content_main {
        padding-top: 2.5rem;
        padding-bottom: 3.5rem;
    }

    body.page_article main#immersion_content_main > .row {
        grid-template-columns: minmax(0, 1fr) 240px;
        column-gap: 2.5rem;
    }

    body.page_article .article-page__title {
        font-size: clamp(2rem, 5vw, 2.7rem);
    }
}

@media (max-width: 767px) {
    body.page_article main#immersion_content_main > .row {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    body.page_article .article-page,
    body.page_article .article-sidebar {
        display: block;
        width: 100%;
        max-width: none;
        padding: 0;
    }

    body.page_article .article-page__header {
        margin-bottom: 2rem;
    }

    body.page_article .article-sidebar {
        order: 2;
        margin-top: 2.5rem;
    }

    body.page_article .article-sidebar > figure {
        max-width: 320px;
        margin: 0 auto 1.5rem;
    }

    body.page_article .article-page__galleys,
    body.page_article .article-page > .article-page__meta {
        width: 100%;
        max-width: 420px;
        margin: 0 0 1.5rem;
    }

    body.page_article .article-page > h3.label:first-of-type {
        margin-top: 2.5rem;
        margin-bottom: 0;
        transform: none;
    }

    body.page_article .article-page > h3.label:first-of-type + p {
        margin-bottom: 0;
        padding-top: 0.55rem;
        transform: none;
    }

    body.page_article .article-page__title {
        font-size: clamp(2rem, 9vw, 2.65rem);
    }

    body.page_article .article-page > h3.label:nth-of-type(2) {
        margin-top: 2.5rem;
    }

    body.page_article .article-page > ol.references {
        padding-top: 0;
        padding-left: 1.9rem;
    }

    body.page_article .article-sidebar > .copyright-info {
        margin-top: 1.5rem;
    }
}

@media (max-width: 575px) {
    body.page_article main#immersion_content_main {
        padding-top: 2rem;
        padding-right: 18px;
        padding-left: 18px;
    }

    body.page_article .article-page > h3.label:first-of-type {
        padding: 1.25rem 1.25rem 0;
    }

    body.page_article .article-page > h3.label:first-of-type + p {
        padding: 0.55rem 1.25rem 1.35rem;
        font-size: 1rem;
        line-height: 1.68;
    }
}


/* =========================================================
   Issue pages
   ========================================================= */

/* General issue-page canvas */
body.page_issue main#immersion_content_main {
    padding: 3.5rem 0 4.5rem;
    background: #ffffff !important;
    color: #000000 !important;
}

body.page_issue main#immersion_content_main .container {
    width: 100%;
    max-width: 1320px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
}

/* Issue header */
body.page_issue .issue > .container:first-of-type {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 240px;
    grid-template-areas:
        "header cover"
        "description description";
    column-gap: 4rem;
    row-gap: 2.75rem;
    align-items: start;
    margin-bottom: 3.25rem;
}

body.page_issue .issue__header {
    grid-area: header;
    max-width: none;
    margin: 0;
    padding: 0 0 2rem;
    border-bottom: 1px solid #e4b9bc;
    background: transparent !important;
    color: #000000 !important;
}

body.page_issue .issue__title {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.25rem 0.45rem;
    max-width: none;
    margin: 0 0 1.5rem;
    padding: 0;
    font-family: 'Spectral', serif;
    font-size: clamp(2.3rem, 4vw, 3.35rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.035em;
    color: #000000 !important;
}

body.page_issue .issue__volume,
body.page_issue .issue__number {
    font-family: inherit;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: #B5121B !important;
}

body.page_issue .issue__localized_name {
    flex-basis: 100%;
    display: block;
    margin-top: 0.35rem;
    color: #000000 !important;
}

body.page_issue .issue__doi,
body.page_issue .issue__meta {
    max-width: 760px;
    margin: 0;
    color: #000000 !important;
    font-size: 0.94rem;
    line-height: 1.5;
}

body.page_issue .issue__doi {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.1rem;
    margin-bottom: 0.85rem;
}

body.page_issue .issue__doi .type {
    display: block;
    margin: 0;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #B5121B !important;
}

body.page_issue .issue__doi .id {
    display: block;
    min-width: 0;
}

body.page_issue .issue__doi a {
    display: inline-block;
    max-width: 100%;
    color: #000000 !important;
    text-decoration-color: rgba(0, 0, 0, 0.4);
    text-underline-offset: 0.15em;
    white-space: normal !important;
    overflow-wrap: anywhere;
    word-break: break-word;
}

body.page_issue .issue__doi a:hover,
body.page_issue .issue__doi a:focus {
    color: #B5121B !important;
    text-decoration-color: #B5121B;
}

body.page_issue .issue__meta {
    margin-top: 0.2rem;
    padding-top: 0.75rem;
    border-top: 1px solid #f0d6d8;
    font-weight: 600;
}

/* Issue cover + description */
body.page_issue .issue-desc {
    display: contents;
    margin: 0;
}

body.page_issue .issue-desc > a[class*="col-"] {
    grid-area: cover;
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 240px;
    margin: 0;
    padding: 0;
    align-self: start;
    text-decoration: none !important;
}

body.page_issue .issue-desc > a[class*="col-"] img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border: 1px solid #ead0d2;
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform-origin: top right;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

body.page_issue .issue-desc > a[class*="col-"]:hover,
body.page_issue .issue-desc > a[class*="col-"]:focus {
    z-index: 20;
}

body.page_issue .issue-desc > a[class*="col-"]:hover img,
body.page_issue .issue-desc > a[class*="col-"]:focus img {
    transform: scale(1.8);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

body.page_issue .issue-desc > div[class*="col-"] {
    grid-area: description;
    width: 100%;
    max-width: 940px;
    margin: 0;
    padding: 1.6rem 1.8rem 1.75rem;
    border-top: 1px solid #ead0d2;
    border-right: 1px solid #ead0d2;
    border-bottom: 1px solid #ead0d2;
    border-left: 5px solid #B5121B;
    border-radius: 6px;
    background: #fff7f7 !important;
}

body.page_issue .issue-desc__title {
    margin: 0 0 0.75rem;
    padding: 0;
    font-family: 'Spectral', serif;
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: #B5121B !important;
}

body.page_issue .issue-desc__content,
body.page_issue .issue-desc__content p,
body.page_issue .issue-desc__content li {
    color: #000000 !important;
    font-size: 1.02rem;
    line-height: 1.75;
}

body.page_issue .issue-desc__content p {
    margin: 0 0 1em;
}

body.page_issue .issue-desc__content ul,
body.page_issue .issue-desc__content ol {
    margin: 0.6rem 0 1.2rem;
    padding-left: 1.35rem;
}

body.page_issue .issue-desc__content li {
    margin: 0 0 0.35rem;
}

body.page_issue .issue-desc__content li p {
    margin: 0;
}

body.page_issue .issue-desc__content p:last-child {
    margin-bottom: 0;
}

/* Section headings */
body.page_issue .issue-section {
    margin: 0;
    padding: 0;
    background: transparent !important;
}

body.page_issue .issue-section + .issue-section {
    margin-top: 3.5rem;
}

body.page_issue .issue-section__header {
    display: block;
    margin: 0 0 1.25rem;
}

body.page_issue .issue-section__title {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 0 0.75rem;
    border-bottom: 3px solid #B5121B;
    font-family: 'Spectral', serif;
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: #B5121B !important;
}

/* Article list */
body.page_issue .issue-section__toc {
    margin: 0;
    padding: 0;
    list-style: none;
}

body.page_issue .issue-section__toc-item {
    margin: 0;
    padding: 0;
    list-style: none;
    border-bottom: 1px solid #ead0d2;
}

body.page_issue .issue-section__toc-item:first-child {
    border-top: 1px solid #ead0d2;
}

body.page_issue .issue-section__toc-item::marker {
    content: "";
}

body.page_issue .issue-section__toc .article {
    margin: 0;
    padding: 1.75rem 0;
    background: #ffffff !important;
    color: #000000 !important;
}

body.page_issue .issue-section__toc .article > .row {
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
    margin: 0;
}

body.page_issue .issue-section__toc .article > .row > [class*="col-"] {
    width: auto;
    max-width: none;
    flex: none;
    padding: 0;
}

/* Article cover */
body.page_issue .article__img {
    margin: 0;
}

body.page_issue .article__img a {
    display: block;
    text-decoration: none !important;
}

body.page_issue .article__img img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border: 1px solid #ead0d2;
    border-radius: 6px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.10);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.page_issue .article__img a:hover img,
body.page_issue .article__img a:focus img {
    transform: translateY(-2px);
    box-shadow: 0 9px 22px rgba(0, 0, 0, 0.14);
}

/* Article text */
body.page_issue .article__meta {
    margin: 0 0 0.55rem;
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: 0.055em;
    text-transform: uppercase;
    color: #B5121B !important;
}

body.page_issue .article__title {
    max-width: 900px;
    margin: 0 0 1.15rem;
    font-family: 'Spectral', serif;
    font-size: clamp(1.4rem, 2.2vw, 1.85rem);
    font-weight: 700;
    line-height: 1.28;
    letter-spacing: -0.02em;
}

body.page_issue .article__title a {
    color: #000000 !important;
    text-decoration: none !important;
}

body.page_issue .article__title a:hover,
body.page_issue .article__title a:focus {
    color: #B5121B !important;
    text-decoration: underline !important;
    text-decoration-color: #B5121B !important;
    text-underline-offset: 0.16em;
}

/* Issue-page PDF button */
body.page_issue .article__btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

body.page_issue .article__btn-group li {
    margin: 0;
    padding: 0;
    list-style: none;
}

body.page_issue a.article__btn.pdf,
body.page_issue a.article__btn.pdf:hover,
body.page_issue a.article__btn.pdf:focus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 6.5rem;
    min-height: 2.65rem;
    padding: 0.65rem 1.05rem;
    border: 0;
    border-radius: 5px;
    background: #B5121B !important;
    color: #ffffff !important;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
    text-decoration: none !important;
    box-shadow: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

body.page_issue a.article__btn.pdf::before {
    content: "↓";
    margin-right: 0.5rem;
    font-size: 1.08em;
    line-height: 1;
}

body.page_issue a.article__btn.pdf:hover,
body.page_issue a.article__btn.pdf:focus {
    background: #8F0E15 !important;
    transform: translateY(-1px);
}

/* Responsive issue layout */
@media (max-width: 991px) {
    body.page_issue main#immersion_content_main {
        padding-top: 2.75rem;
        padding-bottom: 3.75rem;
    }

    body.page_issue .issue > .container:first-of-type {
        grid-template-columns: minmax(0, 1fr) 200px;
        column-gap: 2.5rem;
        row-gap: 2.4rem;
    }

    body.page_issue .issue-desc > a[class*="col-"] {
        max-width: 200px;
    }

    body.page_issue .issue-section__toc .article > .row {
        grid-template-columns: 145px minmax(0, 1fr);
        gap: 1.6rem;
    }

    body.page_issue .article__title {
        font-size: clamp(1.3rem, 2.8vw, 1.7rem);
    }
}

@media (max-width: 767px) {
    body.page_issue main#immersion_content_main {
        padding-top: 2.25rem;
        padding-bottom: 3.25rem;
    }

    body.page_issue .issue > .container:first-of-type {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-areas:
            "header"
            "cover"
            "description";
        row-gap: 2rem;
    }

    body.page_issue .issue__title {
        font-size: clamp(2rem, 8vw, 2.75rem);
    }

    body.page_issue .issue-desc > a[class*="col-"] {
        justify-self: start;
        width: 220px;
        max-width: 100%;
    }

    body.page_issue .issue-desc > div[class*="col-"] {
        max-width: none;
        padding: 1.4rem 1.35rem 1.55rem;
    }

    body.page_issue .issue-section__toc .article {
        padding: 1.5rem 0;
    }

    body.page_issue .issue-section__toc .article > .row {
        grid-template-columns: 115px minmax(0, 1fr);
        gap: 1.25rem;
    }

    body.page_issue .article__meta {
        font-size: 0.78rem;
    }

    body.page_issue .article__title {
        margin-bottom: 0.95rem;
        font-size: 1.35rem;
    }
}

@media (max-width: 575px) {
    body.page_issue main#immersion_content_main .container {
        padding-right: 18px;
        padding-left: 18px;
    }

    body.page_issue .issue > .container:first-of-type {
        margin-bottom: 2.5rem;
        row-gap: 1.75rem;
    }

    body.page_issue .issue__header {
        padding-bottom: 1.6rem;
    }

    body.page_issue .issue__title {
        font-size: clamp(1.85rem, 10vw, 2.45rem);
    }

    body.page_issue .issue-desc > a[class*="col-"] {
        width: 180px;
    }

    body.page_issue .issue-desc > div[class*="col-"] {
        padding: 1.25rem 1.15rem 1.35rem;
    }

    body.page_issue .issue-desc__title {
        font-size: 1.4rem;
    }

    body.page_issue .issue-desc__content,
    body.page_issue .issue-desc__content p {
        font-size: 1rem;
        line-height: 1.68;
    }

    body.page_issue .issue-section__title {
        font-size: 1.5rem;
    }

    body.page_issue .issue-section__toc .article > .row {
        grid-template-columns: 88px minmax(0, 1fr);
        gap: 1rem;
    }

    body.page_issue .article__img img {
        border-radius: 4px;
    }

    body.page_issue .article__meta {
        margin-bottom: 0.4rem;
        font-size: 0.72rem;
        letter-spacing: 0.04em;
    }

    body.page_issue .article__title {
        margin-bottom: 0.8rem;
        font-size: 1.18rem;
        line-height: 1.3;
    }

    body.page_issue a.article__btn.pdf,
    body.page_issue a.article__btn.pdf:hover,
    body.page_issue a.article__btn.pdf:focus {
        min-width: 5.8rem;
        min-height: 2.4rem;
        padding: 0.58rem 0.9rem;
        font-size: 0.82rem;
    }
}



/* =========================================================
   Issue page background fixes
   ========================================================= */

/* Remove the Immersion theme's dark backgrounds */
body.page_issue,
body.page_issue main,
body.page_issue .issue,
body.page_issue .issue-section,
body.page_issue .issue > .container,
body.page_issue .issue-section > .container,
body.page_issue .issue-section .row,
body.page_issue .issue-section__header,
body.page_issue .issue-section__toc,
body.page_issue .issue-section__toc-item,
body.page_issue .article,
body.page_issue .article > .row {
    background: #ffffff !important;
    color: #000000 !important;
}

/* Make links and headings match the article pages */
body.page_issue h1,
body.page_issue h2,
body.page_issue h3,
body.page_issue h4,
body.page_issue p,
body.page_issue li,
body.page_issue a {
    color: #000000 !important;
}

body.page_issue .issue-section__title,
body.page_issue .issue-desc__title,
body.page_issue .article__meta {
    color: #B5121B !important;
}

/* Ensure no inherited dark blocks remain */
body.page_issue [class*="section_dark"],
body.page_issue .section_dark {
    background: #ffffff !important;
}


@media (max-width: 767px) {
    body.page_issue .issue-desc > a[class*="col-"]:hover img,
    body.page_issue .issue-desc > a[class*="col-"]:focus img {
        transform: none;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    }
}


/* =========================================================
   Archives page
   ========================================================= */

/*
 * The Archives page uses body.page_issue.op_archive, so these rules are
 * deliberately more specific than the general issue-page rules above.
 * This keeps ordinary issue pages unchanged.
 */

/* Archives page canvas */
body.page_issue.op_archive {
    background: #ffffff !important;
    color: #000000 !important;
}

body.page_issue.op_archive main#immersion_content_main {
    width: 100%;
    max-width: 1320px;
    margin-right: auto;
    margin-left: auto;
    padding: 3.5rem 15px 4.5rem;
    background: #ffffff !important;
    color: #000000 !important;
}

/* Archives heading */
body.page_issue.op_archive .main__header {
    margin: 0 0 2.75rem;
    padding: 0;
    background: transparent !important;
}

body.page_issue.op_archive .main__title {
    margin: 0;
    padding: 0 0 0.85rem;
    border-bottom: 3px solid #B5121B;
    font-family: 'Spectral', serif;
    font-size: clamp(2.5rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.035em;
    color: #000000 !important;
}

body.page_issue.op_archive .main__title span {
    color: #000000 !important;
}

/* Replace the Bootstrap thumbnail row with a spacious editorial grid */
body.page_issue.op_archive main#immersion_content_main > .row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 2rem;
    row-gap: 3rem;
    margin: 0;
    padding: 0;
    background: #ffffff !important;
}

/* Individual archived issue */
body.page_issue.op_archive .archived-issue {
    display: flex;
    flex-direction: column;
    width: auto;
    max-width: none;
    min-width: 0;
    margin: 0;
    padding: 0;
    background: #ffffff !important;
    color: #000000 !important;
}

/* Reorder the text visually: cover -> volume/number -> title -> publication date */
body.page_issue.op_archive .archived-issue > .issue-summary__link.img-wrapper {
    order: 1;
}

body.page_issue.op_archive .archived-issue > .series {
    order: 2;
}

body.page_issue.op_archive .archived-issue > .issue-summary__link:not(.img-wrapper) {
    order: 3;
}

body.page_issue.op_archive .archived-issue > .archived-issue__date {
    order: 4;
}

/* Issue cover */
body.page_issue.op_archive .archived-issue > .issue-summary__link.img-wrapper {
    display: block;
    position: relative;
    margin: 0 0 1.15rem;
    padding: 0;
    border: 0;
    background: transparent !important;
    text-decoration: none !important;
}

body.page_issue.op_archive .archived-issue > .issue-summary__link.img-wrapper img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border: 1px solid #ead0d2;
    border-radius: 6px;
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.11);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

body.page_issue.op_archive .archived-issue > .issue-summary__link.img-wrapper:hover img,
body.page_issue.op_archive .archived-issue > .issue-summary__link.img-wrapper:focus img {
    transform: translateY(-3px);
    box-shadow: 0 11px 27px rgba(0, 0, 0, 0.16);
}

/* Volume / issue metadata */
body.page_issue.op_archive .archived-issue .series {
    margin: 0 0 0.55rem;
    padding: 0;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.075em;
    text-transform: uppercase;
    color: #B5121B !important;
}

body.page_issue.op_archive .archived-issue .series span {
    color: #B5121B !important;
}

/* Issue title */
body.page_issue.op_archive .archived-issue > .issue-summary__link:not(.img-wrapper) {
    display: block;
    margin: 0;
    padding: 0;
    color: #000000 !important;
    text-decoration: none !important;
}

body.page_issue.op_archive .archived-issue__title {
    min-height: 4.9em;
    margin: 0 0 0.75rem;
    padding: 0;
    font-family: 'Spectral', serif;
    font-size: 1.28rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.018em;
    color: #000000 !important;
}

body.page_issue.op_archive .archived-issue__title span {
    color: #000000 !important;
}

body.page_issue.op_archive .archived-issue > .issue-summary__link:not(.img-wrapper):hover .archived-issue__title,
body.page_issue.op_archive .archived-issue > .issue-summary__link:not(.img-wrapper):focus .archived-issue__title,
body.page_issue.op_archive .archived-issue > .issue-summary__link:not(.img-wrapper):hover .archived-issue__title span,
body.page_issue.op_archive .archived-issue > .issue-summary__link:not(.img-wrapper):focus .archived-issue__title span {
    color: #B5121B !important;
    text-decoration: underline;
    text-decoration-color: #B5121B;
    text-underline-offset: 0.14em;
}

/* Publication date */
body.page_issue.op_archive .archived-issue__date {
    margin: auto 0 0;
    padding-bottom: 0.7rem;
    border-bottom: 1px solid #f0d6d8;
    color: #555555 !important;
    font-size: 0.86rem;
    line-height: 1.4;
}

body.page_issue.op_archive .archived-issue__date small {
    color: #555555 !important;
    font-size: inherit;
}

/* Pagination */
body.page_issue.op_archive .issue__pagination {
    grid-column: 1 / -1;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 1rem 0 0;
}

/* Ensure archive links do not inherit unwanted theme colours */
body.page_issue.op_archive .archived-issue a {
    color: #000000 !important;
}

body.page_issue.op_archive .archived-issue .series,
body.page_issue.op_archive .archived-issue .series span {
    color: #B5121B !important;
}

/* Responsive archives grid */
@media (max-width: 1199px) {
    body.page_issue.op_archive main#immersion_content_main > .row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        column-gap: 1.75rem;
        row-gap: 2.75rem;
    }

    body.page_issue.op_archive .archived-issue__title {
        min-height: 4.9em;
        font-size: 1.24rem;
    }
}

@media (max-width: 991px) {
    body.page_issue.op_archive main#immersion_content_main {
        padding-top: 2.75rem;
        padding-bottom: 3.75rem;
    }

    body.page_issue.op_archive main#immersion_content_main > .row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 1.75rem;
        row-gap: 2.5rem;
    }

    body.page_issue.op_archive .archived-issue__title {
        min-height: 0;
        font-size: 1.3rem;
    }
}

@media (max-width: 575px) {
    body.page_issue.op_archive main#immersion_content_main {
        padding-top: 2.25rem;
        padding-right: 18px;
        padding-bottom: 3.25rem;
        padding-left: 18px;
    }

    body.page_issue.op_archive .main__header {
        margin-bottom: 2rem;
    }

    body.page_issue.op_archive .main__title {
        font-size: clamp(2.1rem, 10vw, 2.65rem);
    }

    body.page_issue.op_archive main#immersion_content_main > .row {
        grid-template-columns: 1fr;
        row-gap: 2.5rem;
    }

    body.page_issue.op_archive .archived-issue {
        width: 100%;
        max-width: 360px;
        margin-right: auto;
        margin-left: auto;
    }

    body.page_issue.op_archive .archived-issue__title {
        min-height: 0;
        font-size: 1.28rem;
    }
}


/* =========================================================
   Homepage visual refresh
   ========================================================= */

/*
 * These rules update the homepage so that it uses the same visual language
 * as the article, issue and archive pages: Spectral headings, STEL red
 * accents, pale-red rules, generous white space, and consistent cover
 * treatment. They are restricted to body.page_index.
 */

/* General homepage canvas */
body.page_index {
    background: #ffffff !important;
    color: #000000 !important;
}

body.page_index .stel-home-intro-section,
body.page_index .announcements,
body.page_index .stel-cfp-section,
body.page_index .stel-issues-grid-section {
    background: #ffffff !important;
    color: #000000 !important;
}

/* ---------------------------------------------------------
   1. Journal introduction + LinkedIn
   --------------------------------------------------------- */

body.page_index .stel-home-intro-section {
    padding: 3.5rem 0 3.25rem;
}

body.page_index .stel-intro-with-sidebar {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

body.page_index .stel-intro-main {
    flex: 1 1 auto;
    min-width: 0;
    padding-top: 0;
}

body.page_index .stel-intro-main p {
    margin: 0 0 1.05rem;
    color: #000000 !important;
    font-size: 1.02rem;
    line-height: 1.75;
}

body.page_index .stel-intro-main p:first-child > strong:first-child {
    display: block;
    margin: 0 0 1.15rem;
    padding: 0;
    font-family: 'Spectral', serif;
    font-size: clamp(2.1rem, 3.4vw, 2.7rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.035em;
    color: #000000 !important;
}

body.page_index .stel-intro-main a {
    color: #000000 !important;
    text-decoration-color: rgba(0, 0, 0, 0.4);
    text-underline-offset: 0.15em;
}

body.page_index .stel-intro-main a:hover,
body.page_index .stel-intro-main a:focus {
    color: #B5121B !important;
    text-decoration-color: #B5121B;
}

/* Frame the LinkedIn embed so it feels integrated with the journal design */
body.page_index .stel-intro-sidebar {
    flex: 0 0 320px;
    width: 100%;
    max-width: 320px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid #ead0d2;
    border-radius: 6px;
    background: #ffffff !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
}

body.page_index .stel-intro-sidebar iframe {
    display: block;
    width: 100%;
    height: 460px;
    margin: 0;
    border: 0;
}

/* ---------------------------------------------------------
   Shared homepage section headings
   --------------------------------------------------------- */

body.page_index .announcements > .container > header.row,
body.page_index .stel-cfp-section .stel-page-width > header.row,
body.page_index .stel-issues-grid-section .stel-page-width > header.row {
    margin: 0 0 1.6rem;
}

body.page_index .announcements > .container > header.row > h3,
body.page_index .stel-cfp-section .stel-special-issues-heading,
body.page_index .stel-issues-grid-section .stel-special-issues-heading {
    width: 100% !important;
    max-width: none !important;
    flex: 0 0 100% !important;
    margin: 0 !important;
    padding: 0 0 0.75rem !important;
    border-bottom: 3px solid #B5121B;
    font-family: 'Spectral', serif !important;
    font-size: 1.75rem !important;
    font-weight: 700 !important;
    line-height: 1.25;
    letter-spacing: -0.02em !important;
    color: #B5121B !important;
}

/* ---------------------------------------------------------
   3. Announcements
   --------------------------------------------------------- */

body.page_index .announcements {
    margin: 0;
    padding: 3rem 0;
    background: #ffffff !important;
}

body.page_index .announcements > .container {
    width: 100%;
    max-width: 1320px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
}

body.page_index .announcement-section__toc {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

body.page_index .announcement-section__toc > li {
    width: auto;
    max-width: none;
    flex: none;
    margin: 0;
    padding: 0 0 1.5rem;
    border-bottom: 1px solid #ead0d2;
    list-style: none;
    color: #000000 !important;
}

body.page_index .announcement__date {
    margin: 0 0 0.55rem;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.075em;
    text-transform: uppercase;
    color: #B5121B !important;
}

body.page_index .announcement__title {
    margin: 0 0 0.75rem;
    font-family: 'Spectral', serif;
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1.28;
    letter-spacing: -0.02em;
    color: #000000 !important;
}

body.page_index .announcement__title a {
    color: #000000 !important;
    text-decoration: none !important;
}

body.page_index .announcement__title a:hover,
body.page_index .announcement__title a:focus {
    color: #B5121B !important;
    text-decoration: underline !important;
    text-decoration-color: #B5121B !important;
    text-underline-offset: 0.15em;
}

body.page_index .announcement-section__toc > li p:not(.announcement__date) {
    max-width: 900px;
    margin: 0 0 0.9rem;
    color: #000000 !important;
    font-size: 0.98rem;
    line-height: 1.7;
}

body.page_index .announcement-section__toc > li p:last-child {
    margin-bottom: 0;
}

body.page_index .announcement-section__toc > li a:not(.announcement__title a) {
    color: #000000 !important;
    text-decoration-color: rgba(0, 0, 0, 0.4);
    text-underline-offset: 0.15em;
}

body.page_index .announcement-section__toc > li a:not(.announcement__title a):hover,
body.page_index .announcement-section__toc > li a:not(.announcement__title a):focus {
    color: #B5121B !important;
    text-decoration-color: #B5121B;
}

/* ---------------------------------------------------------
   2. Calls for Papers
   --------------------------------------------------------- */

body.page_index .stel-cfp-section {
    width: 100%;
    margin: 0;
    padding: 3.25rem 0;
    background: #ffffff !important;
}

body.page_index .stel-cfp-panel {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 3rem;
    align-items: start;
}

body.page_index .stel-cfp-image {
    width: 100%;
    max-width: 240px;
    margin: 0;
}

body.page_index .stel-cfp-image img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border: 1px solid #ead0d2;
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

body.page_index .stel-cfp-content {
    min-width: 0;
}

body.page_index .stel-cfp-title {
    margin: 0 0 0.7rem;
    font-family: 'Spectral', serif;
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 1.28;
    letter-spacing: -0.02em;
    color: #000000 !important;
}

body.page_index .stel-cfp-editors {
    margin: 0 0 1.15rem;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.065em;
    text-transform: uppercase;
    color: #B5121B !important;
}

body.page_index .stel-cfp-content p {
    max-width: 880px;
    margin: 0 0 1rem;
    color: #000000 !important;
    font-size: 1rem;
    line-height: 1.72;
}

body.page_index .stel-cfp-content p:last-child {
    margin-bottom: 0;
}

body.page_index .stel-cfp-button,
body.page_index .stel-cfp-button:visited {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: auto !important;
    max-width: max-content;
    min-height: 2.65rem;
    margin-top: 0.4rem;
    padding: 0.65rem 1.1rem;
    border: 0 !important;
    border-radius: 5px;
    background: #B5121B !important;
    color: #ffffff !important;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
    white-space: nowrap !important;
    overflow: visible;
    text-decoration: none !important;
    text-decoration-line: none !important;
    text-decoration-color: transparent !important;
    box-shadow: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

body.page_index .stel-cfp-button::before,
body.page_index .stel-cfp-button::after {
    content: none !important;
    display: none !important;
}

body.page_index .stel-cfp-button:hover,
body.page_index .stel-cfp-button:focus {
    background: #8F0E15 !important;
    color: #ffffff !important;
    text-decoration: none !important;
    text-decoration-line: none !important;
    transform: translateY(-1px);
}

/* ---------------------------------------------------------
   4. Recent Special Issues
   --------------------------------------------------------- */

/*
 * Homepage-only issue cards.
 *
 * Dedicated stel-recent-* class names are used here rather than OJS's
 * archived-issue / issue-summary__link classes. This prevents Immersion's
 * own archive layout rules from changing the visual order on the homepage.
 *
 * Required order:
 * cover -> volume/number -> clickable title -> publication date
 */

body.page_index .stel-issues-grid-section {
    width: 100%;
    margin: 0;
    padding: 3.25rem 0 4rem;
    background: #ffffff !important;
}

body.page_index .stel-issues-grid-intro {
    width: 100%;
    max-width: none;
    margin: 0 0 2rem;
    color: #000000 !important;
    font-size: 1rem;
    line-height: 1.7;
}

body.page_index .stel-issues-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 2rem;
    row-gap: 3rem;
    width: 100%;
    margin: 0;
    padding: 0;
    background: #ffffff !important;
}

/* Individual issue */
body.page_index .stel-recent-issue {
    display: flex !important;
    flex-direction: column !important;
    width: auto;
    max-width: none;
    min-width: 0;
    height: 100%;
    margin: 0;
    padding: 0;
    background: #ffffff !important;
    color: #000000 !important;
}

/*
 * Explicit order is reinforced with !important so no theme rule can
 * move the title above the cover.
 */
body.page_index .stel-recent-issue > .stel-recent-issue-cover-link {
    order: 1 !important;
}

body.page_index .stel-recent-issue > .stel-recent-issue-series {
    order: 2 !important;
}

body.page_index .stel-recent-issue > .stel-recent-issue-title-link {
    order: 3 !important;
}

body.page_index .stel-recent-issue > .stel-recent-issue-date {
    order: 4 !important;
}

/* Cover: same appearance as the Archives page */
body.page_index .stel-recent-issue-cover-link,
body.page_index .stel-recent-issue-cover-link:visited,
body.page_index .stel-recent-issue-cover-link:hover,
body.page_index .stel-recent-issue-cover-link:focus,
body.page_index .stel-recent-issue-cover-link:active {
    display: block !important;
    position: static !important;
    width: 100%;
    margin: 0 0 1.15rem;
    padding: 0 !important;
    border: 0 !important;
    border-bottom: 0 !important;
    outline-offset: 3px;
    background: transparent !important;
    background-image: none !important;
    color: #000000 !important;
    line-height: 0 !important;
    text-decoration: none !important;
    text-decoration-line: none !important;
    text-decoration-color: transparent !important;
    box-shadow: none !important;
}

body.page_index .stel-recent-issue-cover-link::before,
body.page_index .stel-recent-issue-cover-link::after {
    content: none !important;
    display: none !important;
}

body.page_index .stel-recent-issue-cover {
    display: block !important;
    position: static !important;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid #ead0d2;
    border-bottom: 1px solid #ead0d2 !important;
    border-radius: 6px;
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.11);
    text-decoration: none !important;
    vertical-align: top;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

body.page_index .stel-recent-issue-cover-link:hover .stel-recent-issue-cover,
body.page_index .stel-recent-issue-cover-link:focus .stel-recent-issue-cover {
    transform: translateY(-3px);
    box-shadow: 0 11px 27px rgba(0, 0, 0, 0.16);
}

/* Clickable title directly beneath the cover */
body.page_index .stel-recent-issue-title-link,
body.page_index .stel-recent-issue-title-link:visited {
    display: block !important;
    position: static !important;
    margin: 0;
    padding: 0;
    color: #000000 !important;
    text-decoration: none !important;
}

body.page_index .stel-recent-issue-title {
    display: block;
    min-height: 4.9em;
    margin: 0 0 0.75rem;
    padding: 0;
    font-family: 'Spectral', serif;
    font-size: 1.28rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.018em;
    text-align: left;
    color: #000000 !important;
}

body.page_index .stel-recent-issue-title-link:hover .stel-recent-issue-title,
body.page_index .stel-recent-issue-title-link:focus .stel-recent-issue-title {
    color: #B5121B !important;
    text-decoration: underline;
    text-decoration-color: #B5121B;
    text-underline-offset: 0.14em;
}

/* Volume / number metadata */
body.page_index .stel-recent-issue-series {
    margin: 0 0 0.55rem;
    padding: 0;
    color: #B5121B !important;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.075em;
    text-transform: uppercase;
}

/* Publication date and separator */
body.page_index .stel-recent-issue-date {
    margin: auto 0 0;
    padding-bottom: 0.7rem;
    border-bottom: 1px solid #f0d6d8;
    color: #555555 !important;
    font-size: 0.86rem;
    line-height: 1.4;
}

/*
 * Archive action.
 * It deliberately also uses .stel-cfp-button so its visual treatment is
 * identical to the red "Read more >" CFP button above.
 */
body.page_index .stel-issues-archive-button-wrap {
    margin: 2.1rem 0 0;
    padding: 0;
}

body.page_index .stel-issues-archive-button {
    margin-top: 0 !important;
}

/* ---------------------------------------------------------
   Responsive homepage refresh
   --------------------------------------------------------- */

@media (max-width: 1199px) {
    body.page_index .stel-intro-with-sidebar {
        gap: 2.75rem;
    }

    body.page_index .stel-issues-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 1.75rem;
        row-gap: 2.75rem;
    }

    body.page_index .stel-recent-issue-title {
        min-height: 4.9em;
        font-size: 1.24rem;
    }
}

@media (max-width: 991px) {
    body.page_index .stel-home-intro-section {
        padding-top: 2.75rem;
        padding-bottom: 2.75rem;
    }

    body.page_index .stel-intro-with-sidebar {
        display: block;
    }

    body.page_index .stel-intro-sidebar {
        width: 100%;
        max-width: 520px;
        margin-top: 2rem;
    }

    body.page_index .stel-cfp-panel {
        grid-template-columns: 210px minmax(0, 1fr);
        gap: 2.25rem;
    }

    body.page_index .stel-cfp-image {
        max-width: 210px;
    }

    body.page_index .stel-issues-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 1.75rem;
        row-gap: 2.5rem;
    }

    body.page_index .stel-recent-issue-title {
        min-height: 0;
        font-size: 1.3rem;
    }
}

@media (max-width: 767px) {
    body.page_index .announcements,
    body.page_index .stel-cfp-section,
    body.page_index .stel-issues-grid-section {
        padding-top: 2.5rem;
        padding-bottom: 2.75rem;
    }

    body.page_index .stel-cfp-panel {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    body.page_index .stel-cfp-image {
        width: 220px;
        max-width: 100%;
    }
}

@media (max-width: 575px) {
    body.page_index .stel-page-width,
    body.page_index .announcements > .container {
        padding-right: 18px;
        padding-left: 18px;
    }

    body.page_index .stel-home-intro-section {
        padding-top: 2.25rem;
        padding-bottom: 2.4rem;
    }

    body.page_index .stel-intro-main p:first-child > strong:first-child {
        font-size: clamp(1.9rem, 9vw, 2.35rem);
    }

    body.page_index .stel-intro-sidebar {
        max-width: 100%;
    }

    body.page_index .announcement-section__toc {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    body.page_index .announcements > .container > header.row > h3,
    body.page_index .stel-cfp-section .stel-special-issues-heading,
    body.page_index .stel-issues-grid-section .stel-special-issues-heading {
        font-size: 1.55rem !important;
    }

    body.page_index .stel-cfp-title {
        font-size: 1.4rem;
    }

    body.page_index .stel-issues-grid {
        grid-template-columns: 1fr;
        row-gap: 2.5rem;
    }

    body.page_index .stel-recent-issue {
        width: 100%;
        max-width: 360px;
        margin-right: auto;
        margin-left: auto;
    }

    body.page_index .stel-recent-issue-title {
        min-height: 0;
        font-size: 1.28rem;
    }
}


/* =========================================================
   Aims and Scope page
   ========================================================= */

/*
 * The Aims and Scope page is a reading-focused information page.
 * These rules apply the same STEL visual language used across the
 * homepage, article, issue and archive pages while preserving a
 * comfortable centred reading width.
 */

body.page_aims-and-scope {
    background: #ffffff !important;
    color: #000000 !important;
}

/* General page canvas */
body.page_aims-and-scope main#immersion_content_main {
    width: 100%;
    max-width: 1320px;
    margin-right: auto;
    margin-left: auto;
    padding: 3.5rem 15px 4.5rem;
    background: #ffffff !important;
    color: #000000 !important;
}

body.page_aims-and-scope main#immersion_content_main > .row {
    margin: 0;
}

body.page_aims-and-scope main#immersion_content_main > .row > div {
    width: 100%;
    max-width: 900px;
    margin-right: auto;
    margin-left: auto;
    padding: 0;
    flex: none;
}

/* Main page title */
body.page_aims-and-scope .main__header {
    margin: 0 0 2.4rem;
    padding: 0;
    background: transparent !important;
}

body.page_aims-and-scope .main__title {
    margin: 0;
    padding: 0 0 0.85rem;
    border-bottom: 3px solid #B5121B;
    font-family: 'Spectral', serif;
    font-size: clamp(2.5rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.035em;
    color: #000000 !important;
}

body.page_aims-and-scope .main__title span {
    color: #000000 !important;
}

/* Reading column */
body.page_aims-and-scope .page {
    margin: 0;
    padding: 0;
    background: transparent !important;
    color: #000000 !important;
}

body.page_aims-and-scope .page p,
body.page_aims-and-scope .page li {
    color: #000000 !important;
}

body.page_aims-and-scope .page p {
    margin: 0 0 1.2rem;
    font-size: 1.02rem;
    line-height: 1.75;
}

/* Opening standfirst */
body.page_aims-and-scope .page > p:first-of-type {
    margin-bottom: 1.3rem;
    font-size: 1.13rem;
    font-weight: 500;
    line-height: 1.7;
}

body.page_aims-and-scope .page > p:first-of-type strong {
    font-weight: 700;
}

/* Links */
body.page_aims-and-scope .page a {
    color: #000000 !important;
    text-decoration-color: rgba(0, 0, 0, 0.4);
    text-underline-offset: 0.15em;
    overflow-wrap: anywhere;
}

body.page_aims-and-scope .page a:hover,
body.page_aims-and-scope .page a:focus {
    color: #B5121B !important;
    text-decoration-color: #B5121B;
}

/* ---------------------------------------------------------
   Open Access panel
   --------------------------------------------------------- */

/*
 * In the current OJS markup:
 *   paragraph 3 = "Open Access"
 *   paragraph 4 = open-access explanation
 *   paragraph 5 = Creative Commons licence statement
 *
 * Styling the three paragraphs as a joined panel lets us achieve
 * a proper section treatment without editing the page HTML.
 */

body.page_aims-and-scope .page > p:nth-of-type(3) {
    margin: 2.75rem 0 0;
    padding: 1.35rem 1.75rem 0.7rem;
    border-top: 1px solid #ead0d2;
    border-right: 1px solid #ead0d2;
    border-left: 5px solid #B5121B;
    border-radius: 6px 6px 0 0;
    background: #fff7f7 !important;
    font-family: 'Spectral', serif;
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: #B5121B !important;
}

body.page_aims-and-scope .page > p:nth-of-type(3) strong {
    color: #B5121B !important;
    font-weight: 700;
}

body.page_aims-and-scope .page > p:nth-of-type(4) {
    margin: 0;
    padding: 0.35rem 1.75rem 0.95rem;
    border-right: 1px solid #ead0d2;
    border-left: 5px solid #B5121B;
    background: #fff7f7 !important;
    font-size: 1.02rem;
    line-height: 1.75;
}

body.page_aims-and-scope .page > p:nth-of-type(5) {
    margin: 0 0 3rem;
    padding: 0 1.75rem 1.55rem;
    border-right: 1px solid #ead0d2;
    border-bottom: 1px solid #ead0d2;
    border-left: 5px solid #B5121B;
    border-radius: 0 0 6px 6px;
    background: #fff7f7 !important;
    font-size: 1.02rem;
    line-height: 1.75;
}

/* ---------------------------------------------------------
   Our aims section
   --------------------------------------------------------- */

body.page_aims-and-scope .page > p:nth-of-type(6) {
    margin: 0 0 1.5rem;
    padding: 0 0 0.7rem;
    border-bottom: 3px solid #B5121B;
    font-family: 'Spectral', serif;
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: #B5121B !important;
}

body.page_aims-and-scope .page > p:nth-of-type(6) strong {
    color: #B5121B !important;
    font-weight: 700;
}

body.page_aims-and-scope .page > p:nth-of-type(7) {
    margin-bottom: 1.65rem;
}

/* Editorial treatment for the five stated aims */
body.page_aims-and-scope .page > ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

body.page_aims-and-scope .page > ul > li {
    position: relative;
    margin: 0;
    padding: 1.15rem 0 1.2rem 2rem;
    border-bottom: 1px solid #ead0d2;
    font-size: 1rem;
    line-height: 1.7;
}

body.page_aims-and-scope .page > ul > li:first-child {
    border-top: 1px solid #ead0d2;
}

body.page_aims-and-scope .page > ul > li::before {
    content: "•";
    position: absolute;
    top: 1.08rem;
    left: 0.35rem;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1;
    color: #B5121B;
}

body.page_aims-and-scope .page > ul > li strong {
    color: #B5121B !important;
    font-weight: 700;
}

/* Keep accidental theme backgrounds out of this page */
body.page_aims-and-scope main,
body.page_aims-and-scope .main__content,
body.page_aims-and-scope .main__header,
body.page_aims-and-scope .page,
body.page_aims-and-scope main#immersion_content_main > .row,
body.page_aims-and-scope main#immersion_content_main > .row > div {
    background-color: #ffffff !important;
}

/* Restore the intended pale-red Open Access panel after the general reset */
body.page_aims-and-scope .page > p:nth-of-type(3),
body.page_aims-and-scope .page > p:nth-of-type(4),
body.page_aims-and-scope .page > p:nth-of-type(5) {
    background: #fff7f7 !important;
}

/* Responsive Aims and Scope layout */
@media (max-width: 991px) {
    body.page_aims-and-scope main#immersion_content_main {
        padding-top: 2.75rem;
        padding-bottom: 3.75rem;
    }
}

@media (max-width: 767px) {
    body.page_aims-and-scope main#immersion_content_main {
        padding-top: 2.4rem;
        padding-bottom: 3.4rem;
    }

    body.page_aims-and-scope .main__header {
        margin-bottom: 2rem;
    }

    body.page_aims-and-scope .page > p:nth-of-type(3) {
        padding: 1.25rem 1.35rem 0.65rem;
    }

    body.page_aims-and-scope .page > p:nth-of-type(4) {
        padding: 0.35rem 1.35rem 0.9rem;
    }

    body.page_aims-and-scope .page > p:nth-of-type(5) {
        padding: 0 1.35rem 1.4rem;
    }
}

@media (max-width: 575px) {
    body.page_aims-and-scope main#immersion_content_main {
        padding-top: 2.15rem;
        padding-right: 18px;
        padding-bottom: 3.1rem;
        padding-left: 18px;
    }

    body.page_aims-and-scope .main__title {
        font-size: clamp(2.1rem, 10vw, 2.65rem);
    }

    body.page_aims-and-scope .page > p:first-of-type {
        font-size: 1.08rem;
        line-height: 1.68;
    }

    body.page_aims-and-scope .page p {
        font-size: 1rem;
        line-height: 1.7;
    }

    body.page_aims-and-scope .page > p:nth-of-type(3) {
        margin-top: 2.35rem;
        padding: 1.15rem 1.15rem 0.6rem;
        font-size: 1.4rem;
    }

    body.page_aims-and-scope .page > p:nth-of-type(4) {
        padding: 0.3rem 1.15rem 0.85rem;
    }

    body.page_aims-and-scope .page > p:nth-of-type(5) {
        margin-bottom: 2.5rem;
        padding: 0 1.15rem 1.25rem;
    }

    body.page_aims-and-scope .page > p:nth-of-type(6) {
        font-size: 1.5rem;
    }

    body.page_aims-and-scope .page > ul > li {
        padding-top: 1rem;
        padding-bottom: 1.05rem;
        padding-left: 1.75rem;
        font-size: 0.98rem;
        line-height: 1.65;
    }

    body.page_aims-and-scope .page > ul > li::before {
        top: 0.96rem;
        left: 0.25rem;
    }
}


/* =========================================================
   Announcements page
   ========================================================= */

/*
 * The Announcements index is designed as a scalable editorial list.
 * These rules are restricted to the announcement index page so that
 * individual announcement pages and the homepage announcement block
 * remain unaffected.
 */

body.page_announcement.op_index {
    background: #ffffff !important;
    color: #000000 !important;
}

/* General page canvas */
body.page_announcement.op_index main#immersion_content_main {
    width: 100%;
    max-width: 1320px;
    margin-right: auto;
    margin-left: auto;
    padding: 3.5rem 15px 4.5rem;
    background: #ffffff !important;
    color: #000000 !important;
}

body.page_announcement.op_index main#immersion_content_main > .row {
    margin: 0;
}

body.page_announcement.op_index main#immersion_content_main > .row > div {
    width: 100%;
    max-width: 1000px;
    margin-right: auto;
    margin-left: auto;
    padding: 0;
    flex: none;
}

/* ---------------------------------------------------------
   Main page heading
   --------------------------------------------------------- */

body.page_announcement.op_index .main__header {
    position: relative;
    margin: 0 0 2.6rem;
    padding: 0;
    background: transparent !important;
}

body.page_announcement.op_index .main__title {
    margin: 0;
    padding: 0 0 0.85rem;
    border-bottom: 3px solid #B5121B;
    font-family: 'Spectral', serif;
    font-size: clamp(2.5rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.035em;
    color: #000000 !important;
}

body.page_announcement.op_index .main__title span {
    color: #000000 !important;
}

/* Small editor-only control */
body.page_announcement.op_index .cmp_edit_link {
    display: inline-block;
    margin-top: 0.75rem;
    padding: 0;
    border: 0 !important;
    background: transparent !important;
    color: #B5121B !important;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none !important;
    box-shadow: none !important;
}

body.page_announcement.op_index .cmp_edit_link:hover,
body.page_announcement.op_index .cmp_edit_link:focus {
    color: #8F0E15 !important;
    text-decoration: underline !important;
    text-decoration-color: #8F0E15 !important;
    text-underline-offset: 0.14em;
}

/* ---------------------------------------------------------
   Announcement list
   --------------------------------------------------------- */

body.page_announcement.op_index main#immersion_content_main article {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 2rem 0 2.15rem;
    border-bottom: 1px solid #ead0d2;
    background: #ffffff !important;
    color: #000000 !important;
}

body.page_announcement.op_index main#immersion_content_main article:first-of-type {
    border-top: 1px solid #ead0d2;
}

/* Visual order: date -> title -> description -> action */
body.page_announcement.op_index main#immersion_content_main article > .text-muted {
    order: 1;
}

body.page_announcement.op_index main#immersion_content_main article > h2 {
    order: 2;
}

body.page_announcement.op_index main#immersion_content_main article > .announcements__short-description {
    order: 3;
}

body.page_announcement.op_index main#immersion_content_main article > .btn {
    order: 4;
}

/* Date metadata */
body.page_announcement.op_index main#immersion_content_main article > .text-muted {
    margin: 0 0 0.55rem;
    padding: 0;
    color: #B5121B !important;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.075em;
    text-transform: uppercase;
}

/* Announcement title */
body.page_announcement.op_index main#immersion_content_main article > h2 {
    margin: 0 0 0.9rem;
    padding: 0;
    font-family: 'Spectral', serif;
    font-size: clamp(1.5rem, 2.3vw, 1.8rem);
    font-weight: 700;
    line-height: 1.28;
    letter-spacing: -0.02em;
    color: #000000 !important;
}

body.page_announcement.op_index main#immersion_content_main article > h2 a {
    color: #000000 !important;
    text-decoration: none !important;
}

body.page_announcement.op_index main#immersion_content_main article > h2 a:hover,
body.page_announcement.op_index main#immersion_content_main article > h2 a:focus {
    color: #B5121B !important;
    text-decoration: underline !important;
    text-decoration-color: #B5121B !important;
    text-underline-offset: 0.15em;
}

/* Short description */
body.page_announcement.op_index .announcements__short-description {
    max-width: 850px;
    margin: 0 0 1.25rem;
    color: #000000 !important;
}

body.page_announcement.op_index .announcements__short-description p {
    margin: 0 0 0.95rem;
    color: #000000 !important;
    font-size: 1rem;
    line-height: 1.72;
}

body.page_announcement.op_index .announcements__short-description p:last-child {
    margin-bottom: 0;
}

body.page_announcement.op_index .announcements__short-description a {
    color: #000000 !important;
    text-decoration-color: rgba(0, 0, 0, 0.4);
    text-underline-offset: 0.15em;
    overflow-wrap: anywhere;
}

body.page_announcement.op_index .announcements__short-description a:hover,
body.page_announcement.op_index .announcements__short-description a:focus {
    color: #B5121B !important;
    text-decoration-color: #B5121B;
}

/* ---------------------------------------------------------
   Read More button
   --------------------------------------------------------- */

body.page_announcement.op_index main#immersion_content_main article > a.btn,
body.page_announcement.op_index main#immersion_content_main article > a.btn:visited {
    align-self: flex-start;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: auto !important;
    max-width: max-content;
    min-height: 2.5rem;
    margin: 0;
    padding: 0.62rem 1rem;
    border: 0 !important;
    border-radius: 5px;
    background: #B5121B !important;
    color: #ffffff !important;
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
    white-space: nowrap !important;
    overflow: visible;
    text-decoration: none !important;
    text-decoration-line: none !important;
    text-decoration-color: transparent !important;
    box-shadow: none !important;
    transition: background 0.2s ease, transform 0.2s ease;
}

body.page_announcement.op_index main#immersion_content_main article > a.btn::before,
body.page_announcement.op_index main#immersion_content_main article > a.btn::after {
    content: none !important;
    display: none !important;
}

body.page_announcement.op_index main#immersion_content_main article > a.btn:hover,
body.page_announcement.op_index main#immersion_content_main article > a.btn:focus {
    background: #8F0E15 !important;
    color: #ffffff !important;
    text-decoration: none !important;
    text-decoration-line: none !important;
    transform: translateY(-1px);
}

/* Ensure the visible button label stays together */
body.page_announcement.op_index main#immersion_content_main article > a.btn > span[aria-hidden="true"] {
    display: inline !important;
    white-space: nowrap !important;
    color: #ffffff !important;
}

/* ---------------------------------------------------------
   Future-proofing for multiple announcements
   --------------------------------------------------------- */

/*
 * Consecutive articles need no extra selector: every new announcement
 * automatically inherits the same date/title/summary/button hierarchy.
 * The separator and spacing remain consistent regardless of list length.
 */

body.page_announcement.op_index main#immersion_content_main article + article {
    margin-top: 0;
}

/* If OJS adds generic pagination after the announcement articles */
body.page_announcement.op_index .cmp_pagination,
body.page_announcement.op_index .pagination,
body.page_announcement.op_index nav[aria-label*="pagination" i] {
    margin-top: 2.75rem;
    padding-top: 1rem;
    border-top: 1px solid #ead0d2;
}

body.page_announcement.op_index .pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
}

body.page_announcement.op_index .pagination a,
body.page_announcement.op_index .pagination span {
    color: #000000 !important;
}

body.page_announcement.op_index .pagination a:hover,
body.page_announcement.op_index .pagination a:focus,
body.page_announcement.op_index .pagination .active a,
body.page_announcement.op_index .pagination .active span {
    color: #B5121B !important;
}

/* Keep inherited theme backgrounds out of this page */
body.page_announcement.op_index main,
body.page_announcement.op_index .main__content,
body.page_announcement.op_index .main__header,
body.page_announcement.op_index main#immersion_content_main > .row,
body.page_announcement.op_index main#immersion_content_main > .row > div,
body.page_announcement.op_index main#immersion_content_main article,
body.page_announcement.op_index .announcements__short-description {
    background-color: #ffffff !important;
}

/* ---------------------------------------------------------
   Responsive Announcements layout
   --------------------------------------------------------- */

@media (max-width: 991px) {
    body.page_announcement.op_index main#immersion_content_main {
        padding-top: 2.75rem;
        padding-bottom: 3.75rem;
    }

    body.page_announcement.op_index main#immersion_content_main article {
        padding-top: 1.8rem;
        padding-bottom: 1.95rem;
    }
}

@media (max-width: 767px) {
    body.page_announcement.op_index main#immersion_content_main {
        padding-top: 2.4rem;
        padding-bottom: 3.4rem;
    }

    body.page_announcement.op_index .main__header {
        margin-bottom: 2.2rem;
    }

    body.page_announcement.op_index main#immersion_content_main article {
        padding-top: 1.65rem;
        padding-bottom: 1.8rem;
    }
}

@media (max-width: 575px) {
    body.page_announcement.op_index main#immersion_content_main {
        padding-top: 2.15rem;
        padding-right: 18px;
        padding-bottom: 3.1rem;
        padding-left: 18px;
    }

    body.page_announcement.op_index .main__title {
        font-size: clamp(2.1rem, 10vw, 2.65rem);
    }

    body.page_announcement.op_index main#immersion_content_main article > h2 {
        font-size: 1.4rem;
    }

    body.page_announcement.op_index .announcements__short-description p {
        font-size: 0.98rem;
        line-height: 1.68;
    }

    body.page_announcement.op_index main#immersion_content_main article > a.btn,
    body.page_announcement.op_index main#immersion_content_main article > a.btn:visited {
        min-height: 2.4rem;
        padding: 0.58rem 0.9rem;
        font-size: 0.84rem;
    }
}


/* =========================================================
   Individual announcement page
   ========================================================= */

/*
 * These rules apply only to individual announcement pages.
 * They mirror the visual hierarchy of the Announcements index:
 * date -> title -> full announcement content.
 */

body.page_announcement.op_view {
    background: #ffffff !important;
    color: #000000 !important;
}

/* General page canvas */
body.page_announcement.op_view main#immersion_content_main {
    width: 100%;
    max-width: 1320px;
    margin-right: auto;
    margin-left: auto;
    padding: 3.5rem 15px 4.5rem;
    background: #ffffff !important;
    color: #000000 !important;
}

body.page_announcement.op_view main#immersion_content_main > .row {
    margin: 0;
}

body.page_announcement.op_view main#immersion_content_main > .row > div {
    width: 100%;
    max-width: 900px;
    margin-right: auto;
    margin-left: auto;
    padding: 0;
    flex: none;
}

/* Announcement article */
body.page_announcement.op_view .obj_announcement_full {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    background: #ffffff !important;
    color: #000000 !important;
}

/* Visual order: date -> title -> content */
body.page_announcement.op_view .obj_announcement_full > .date {
    order: 1;
}

body.page_announcement.op_view .obj_announcement_full > .main__header {
    order: 2;
}

body.page_announcement.op_view .obj_announcement_full > .description {
    order: 3;
}

/* Date metadata */
body.page_announcement.op_view .obj_announcement_full > .date {
    margin: 0 0 0.65rem;
    padding: 0;
    color: #B5121B !important;
    font-size: 0.78rem !important;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.075em;
    text-transform: uppercase;
}

/* Main announcement title */
body.page_announcement.op_view .obj_announcement_full > .main__header {
    margin: 0 0 2.35rem;
    padding: 0;
    background: transparent !important;
}

body.page_announcement.op_view .obj_announcement_full .main__title {
    margin: 0;
    padding: 0 0 0.85rem;
    border-bottom: 3px solid #B5121B;
    font-family: 'Spectral', serif;
    font-size: clamp(2.5rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.035em;
    color: #000000 !important;
}

body.page_announcement.op_view .obj_announcement_full .main__title span {
    color: #000000 !important;
}

/* Full announcement content */
body.page_announcement.op_view .obj_announcement_full > .description {
    margin: 0;
    padding: 0;
    background: transparent !important;
    color: #000000 !important;
}

body.page_announcement.op_view .obj_announcement_full > .description p {
    margin: 0 0 1.2rem;
    color: #000000 !important;
    font-size: 1.02rem;
    line-height: 1.75;
}

/* Opening paragraph as a standfirst */
body.page_announcement.op_view .obj_announcement_full > .description > p:first-child {
    margin-bottom: 1.35rem;
    font-size: 1.13rem;
    font-weight: 500;
    line-height: 1.7;
}

/* Standard STEL links */
body.page_announcement.op_view .obj_announcement_full > .description a {
    color: #000000 !important;
    text-decoration-color: rgba(0, 0, 0, 0.4);
    text-underline-offset: 0.15em;
    overflow-wrap: anywhere;
}

body.page_announcement.op_view .obj_announcement_full > .description a:hover,
body.page_announcement.op_view .obj_announcement_full > .description a:focus {
    color: #B5121B !important;
    text-decoration-color: #B5121B;
}

/* Emphasis */
body.page_announcement.op_view .obj_announcement_full > .description strong {
    font-weight: 700;
    color: #000000 !important;
}

body.page_announcement.op_view .obj_announcement_full > .description em {
    color: #000000 !important;
}

/* Final sign-off */
body.page_announcement.op_view .obj_announcement_full > .description > p:last-child {
    margin-top: 2rem;
    margin-bottom: 0;
    padding-top: 1.15rem;
    border-top: 1px solid #ead0d2;
    color: #555555 !important;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.55;
}

/* Keep inherited theme backgrounds out of the reading page */
body.page_announcement.op_view main,
body.page_announcement.op_view .main__content,
body.page_announcement.op_view .obj_announcement_full,
body.page_announcement.op_view .obj_announcement_full .main__header,
body.page_announcement.op_view .obj_announcement_full > .description,
body.page_announcement.op_view main#immersion_content_main > .row,
body.page_announcement.op_view main#immersion_content_main > .row > div {
    background-color: #ffffff !important;
}

/* Responsive individual announcement layout */
@media (max-width: 991px) {
    body.page_announcement.op_view main#immersion_content_main {
        padding-top: 2.75rem;
        padding-bottom: 3.75rem;
    }
}

@media (max-width: 767px) {
    body.page_announcement.op_view main#immersion_content_main {
        padding-top: 2.4rem;
        padding-bottom: 3.4rem;
    }

    body.page_announcement.op_view .obj_announcement_full > .main__header {
        margin-bottom: 2rem;
    }
}

@media (max-width: 575px) {
    body.page_announcement.op_view main#immersion_content_main {
        padding-top: 2.15rem;
        padding-right: 18px;
        padding-bottom: 3.1rem;
        padding-left: 18px;
    }

    body.page_announcement.op_view .obj_announcement_full .main__title {
        font-size: clamp(2.1rem, 10vw, 2.65rem);
    }

    body.page_announcement.op_view .obj_announcement_full > .description > p:first-child {
        font-size: 1.08rem;
        line-height: 1.68;
    }

    body.page_announcement.op_view .obj_announcement_full > .description p {
        font-size: 1rem;
        line-height: 1.7;
    }

    body.page_announcement.op_view .obj_announcement_full > .description > p:last-child {
        margin-top: 1.75rem;
        padding-top: 1rem;
        font-size: 0.9rem;
    }
}


/* =========================================================
   Submissions page
   ========================================================= */

/*
 * These rules apply only to the public Submissions information page.
 * They preserve the functional character of the page while using the
 * established STEL visual language: black Spectral page titles, red
 * section headings and rules, pale-red callouts, and restrained actions.
 */

body.page_about.op_submissions {
    background: #ffffff !important;
    color: #000000 !important;
}

/* General page canvas */
body.page_about.op_submissions main#immersion_content_main {
    width: 100%;
    max-width: 1320px;
    margin-right: auto;
    margin-left: auto;
    padding: 3.5rem 15px 4.5rem;
    background: #ffffff !important;
    color: #000000 !important;
}

body.page_about.op_submissions main#immersion_content_main > .row {
    margin: 0;
}

body.page_about.op_submissions main#immersion_content_main > .row > div {
    width: 100%;
    max-width: 1000px;
    margin-right: auto;
    margin-left: auto;
    padding: 0;
    flex: none;
}

/* ---------------------------------------------------------
   Main page title
   --------------------------------------------------------- */

body.page_about.op_submissions .main__header {
    margin: 0 0 2.5rem;
    padding: 0;
    background: transparent !important;
}

body.page_about.op_submissions .main__title {
    margin: 0;
    padding: 0 0 0.85rem;
    border-bottom: 3px solid #B5121B;
    font-family: 'Spectral', serif;
    font-size: clamp(2.5rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.035em;
    color: #000000 !important;
}

body.page_about.op_submissions .main__title span {
    color: #000000 !important;
}

/* ---------------------------------------------------------
   Submission actions
   --------------------------------------------------------- */

body.page_about.op_submissions .cmp_notification {
    margin: 0 0 3rem;
    padding: 1.4rem 1.6rem;
    border: 1px solid #ead0d2;
    border-left: 5px solid #B5121B;
    border-radius: 6px;
    background: #fff7f7 !important;
    color: #000000 !important;
    font-size: 0.98rem;
    line-height: 1.6;
}

/* Primary submission action */
body.page_about.op_submissions .cmp_notification a:first-of-type,
body.page_about.op_submissions .cmp_notification a:first-of-type:visited {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: auto !important;
    max-width: max-content;
    min-height: 2.65rem;
    margin: 0 0.45rem 0 0;
    padding: 0.66rem 1.05rem;
    border: 0 !important;
    border-radius: 5px;
    background: #B5121B !important;
    color: #ffffff !important;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
    white-space: nowrap !important;
    text-decoration: none !important;
    text-decoration-line: none !important;
    box-shadow: none !important;
    transition: background 0.2s ease, transform 0.2s ease;
}

body.page_about.op_submissions .cmp_notification a:first-of-type::before,
body.page_about.op_submissions .cmp_notification a:first-of-type::after {
    content: none !important;
    display: none !important;
}

body.page_about.op_submissions .cmp_notification a:first-of-type:hover,
body.page_about.op_submissions .cmp_notification a:first-of-type:focus {
    background: #8F0E15 !important;
    color: #ffffff !important;
    text-decoration: none !important;
    transform: translateY(-1px);
}

/* Secondary pending-submissions link */
body.page_about.op_submissions .cmp_notification a:last-of-type {
    color: #000000 !important;
    font-weight: 600;
    text-decoration-color: rgba(0, 0, 0, 0.4);
    text-underline-offset: 0.15em;
}

body.page_about.op_submissions .cmp_notification a:last-of-type:hover,
body.page_about.op_submissions .cmp_notification a:last-of-type:focus {
    color: #B5121B !important;
    text-decoration-color: #B5121B;
}

/* ---------------------------------------------------------
   Shared section treatment
   --------------------------------------------------------- */

body.page_about.op_submissions .author_guidelines,
body.page_about.op_submissions .submission_checklist {
    margin: 0 0 3rem;
    padding: 0;
    background: #ffffff !important;
    color: #000000 !important;
}

body.page_about.op_submissions .author_guidelines > h2,
body.page_about.op_submissions .submission_checklist > h2,
body.page_about.op_submissions .privacy_statement > h2 {
    position: relative;
    margin: 0 0 1.5rem;
    padding: 0 5rem 0.7rem 0;
    border-bottom: 3px solid #B5121B;
    font-family: 'Spectral', serif;
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: #B5121B !important;
}

/* Logged-in editor controls inside section headings */
body.page_about.op_submissions .author_guidelines > h2 .cmp_edit_link,
body.page_about.op_submissions .submission_checklist > h2 .cmp_edit_link,
body.page_about.op_submissions .privacy_statement > h2 .cmp_edit_link {
    position: absolute;
    right: 0;
    bottom: 0.82rem;
    display: inline-block;
    margin: 0;
    padding: 0;
    border: 0 !important;
    background: transparent !important;
    color: #B5121B !important;
    font-family: inherit;
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    text-decoration: none !important;
    box-shadow: none !important;
}

body.page_about.op_submissions .author_guidelines > h2 .cmp_edit_link:hover,
body.page_about.op_submissions .author_guidelines > h2 .cmp_edit_link:focus,
body.page_about.op_submissions .submission_checklist > h2 .cmp_edit_link:hover,
body.page_about.op_submissions .submission_checklist > h2 .cmp_edit_link:focus,
body.page_about.op_submissions .privacy_statement > h2 .cmp_edit_link:hover,
body.page_about.op_submissions .privacy_statement > h2 .cmp_edit_link:focus {
    color: #8F0E15 !important;
    text-decoration: underline !important;
    text-decoration-color: #8F0E15 !important;
    text-underline-offset: 0.12em;
}

/* Standard reading text */
body.page_about.op_submissions .author_guidelines p,
body.page_about.op_submissions .submission_checklist p,
body.page_about.op_submissions .privacy_statement p {
    max-width: 900px;
    margin: 0 0 1.2rem;
    color: #000000 !important;
    font-size: 1.02rem;
    line-height: 1.75;
}

body.page_about.op_submissions .author_guidelines p:last-child,
body.page_about.op_submissions .submission_checklist p:last-child,
body.page_about.op_submissions .privacy_statement p:last-child {
    margin-bottom: 0;
}

/* Standard STEL links in content sections */
body.page_about.op_submissions .author_guidelines a:not(.cmp_edit_link),
body.page_about.op_submissions .submission_checklist a:not(.cmp_edit_link),
body.page_about.op_submissions .privacy_statement a:not(.cmp_edit_link) {
    color: #000000 !important;
    text-decoration-color: rgba(0, 0, 0, 0.4);
    text-underline-offset: 0.15em;
    overflow-wrap: anywhere;
}

body.page_about.op_submissions .author_guidelines a:not(.cmp_edit_link):hover,
body.page_about.op_submissions .author_guidelines a:not(.cmp_edit_link):focus,
body.page_about.op_submissions .submission_checklist a:not(.cmp_edit_link):hover,
body.page_about.op_submissions .submission_checklist a:not(.cmp_edit_link):focus,
body.page_about.op_submissions .privacy_statement a:not(.cmp_edit_link):hover,
body.page_about.op_submissions .privacy_statement a:not(.cmp_edit_link):focus {
    color: #B5121B !important;
    text-decoration-color: #B5121B;
}

/* ---------------------------------------------------------
   Submission Preparation Checklist
   --------------------------------------------------------- */

body.page_about.op_submissions .submission_checklist > ul {
    margin: 0.35rem 0 0;
    padding: 0;
    list-style: none;
}

body.page_about.op_submissions .submission_checklist > ul > li {
    position: relative;
    margin: 0;
    padding: 1.15rem 0 1.2rem 2.25rem;
    border-bottom: 1px solid #ead0d2;
    color: #000000 !important;
    font-size: 1rem;
    line-height: 1.7;
}

body.page_about.op_submissions .submission_checklist > ul > li:first-child {
    border-top: 1px solid #ead0d2;
}

body.page_about.op_submissions .submission_checklist > ul > li::before {
    content: "✓";
    position: absolute;
    top: 1.12rem;
    left: 0.25rem;
    color: #B5121B;
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.2;
}

/* ---------------------------------------------------------
   Privacy Statement
   --------------------------------------------------------- */

body.page_about.op_submissions .privacy_statement {
    margin: 0;
    padding: 1.35rem 1.6rem 1.55rem;
    border: 1px solid #ead0d2;
    border-left: 5px solid #B5121B;
    border-radius: 6px;
    background: #fff7f7 !important;
    color: #000000 !important;
}

body.page_about.op_submissions .privacy_statement > h2 {
    margin-bottom: 1rem;
    padding-bottom: 0.65rem;
    background: transparent !important;
}

body.page_about.op_submissions .privacy_statement p {
    max-width: none;
}

/* Keep unwanted Immersion backgrounds out of the page */
body.page_about.op_submissions main,
body.page_about.op_submissions .main__content,
body.page_about.op_submissions .main__header,
body.page_about.op_submissions main#immersion_content_main > .row,
body.page_about.op_submissions main#immersion_content_main > .row > div,
body.page_about.op_submissions .author_guidelines,
body.page_about.op_submissions .submission_checklist {
    background-color: #ffffff !important;
}

/* Restore intended callout backgrounds after the general reset */
body.page_about.op_submissions .cmp_notification,
body.page_about.op_submissions .privacy_statement {
    background: #fff7f7 !important;
}

/* ---------------------------------------------------------
   Responsive Submissions layout
   --------------------------------------------------------- */

@media (max-width: 991px) {
    body.page_about.op_submissions main#immersion_content_main {
        padding-top: 2.75rem;
        padding-bottom: 3.75rem;
    }

    body.page_about.op_submissions .author_guidelines,
    body.page_about.op_submissions .submission_checklist {
        margin-bottom: 2.75rem;
    }
}

@media (max-width: 767px) {
    body.page_about.op_submissions main#immersion_content_main {
        padding-top: 2.4rem;
        padding-bottom: 3.4rem;
    }

    body.page_about.op_submissions .main__header {
        margin-bottom: 2.2rem;
    }

    body.page_about.op_submissions .cmp_notification {
        padding: 1.25rem 1.3rem;
    }

    body.page_about.op_submissions .author_guidelines > h2,
    body.page_about.op_submissions .submission_checklist > h2,
    body.page_about.op_submissions .privacy_statement > h2 {
        padding-right: 0;
    }

    body.page_about.op_submissions .author_guidelines > h2 .cmp_edit_link,
    body.page_about.op_submissions .submission_checklist > h2 .cmp_edit_link,
    body.page_about.op_submissions .privacy_statement > h2 .cmp_edit_link {
        position: static;
        display: inline-block;
        margin-left: 0.7rem;
        vertical-align: middle;
    }

    body.page_about.op_submissions .privacy_statement {
        padding: 1.25rem 1.3rem 1.4rem;
    }
}

@media (max-width: 575px) {
    body.page_about.op_submissions main#immersion_content_main {
        padding-top: 2.15rem;
        padding-right: 18px;
        padding-bottom: 3.1rem;
        padding-left: 18px;
    }

    body.page_about.op_submissions .main__title {
        font-size: clamp(2.1rem, 10vw, 2.65rem);
    }

    body.page_about.op_submissions .cmp_notification {
        padding: 1.15rem 1.15rem;
        font-size: 0.96rem;
        line-height: 1.65;
    }

    body.page_about.op_submissions .cmp_notification a:first-of-type,
    body.page_about.op_submissions .cmp_notification a:first-of-type:visited {
        display: flex !important;
        width: 100% !important;
        max-width: none;
        margin: 0 0 0.85rem;
    }

    body.page_about.op_submissions .author_guidelines > h2,
    body.page_about.op_submissions .submission_checklist > h2,
    body.page_about.op_submissions .privacy_statement > h2 {
        font-size: 1.5rem;
    }

    body.page_about.op_submissions .author_guidelines p,
    body.page_about.op_submissions .submission_checklist p,
    body.page_about.op_submissions .privacy_statement p {
        font-size: 1rem;
        line-height: 1.7;
    }

    body.page_about.op_submissions .submission_checklist > ul > li {
        padding-top: 1rem;
        padding-bottom: 1.05rem;
        padding-left: 2rem;
        font-size: 0.98rem;
        line-height: 1.65;
    }

    body.page_about.op_submissions .submission_checklist > ul > li::before {
        top: 0.98rem;
        left: 0.2rem;
    }

    body.page_about.op_submissions .privacy_statement {
        padding: 1.15rem 1.15rem 1.3rem;
    }
}


/* =========================================================
   Mobile article-page background fix
   ========================================================= */

/*
 * On desktop, .article-page and .article-sidebar use display: contents,
 * so any background inherited from the Immersion theme is not painted.
 * At mobile widths they become block elements, which can expose the
 * theme's dark article background behind the article top matter and
 * references. These overrides explicitly restore the intended white
 * reading canvas on mobile while leaving the pale-red Abstract panel,
 * red PDF button, keyword tags, and copyright/licence card unchanged.
 */

@media (max-width: 767px) {

    /* Overall article reading canvas */
    body.page_article,
    body.page_article main#immersion_content_main,
    body.page_article main#immersion_content_main > .row,
    body.page_article .article-page,
    body.page_article .article-sidebar {
        background: #ffffff !important;
        background-color: #ffffff !important;
        color: #000000 !important;
    }

    /* Top matter: article type, issue information, title, authors and affiliations */
    body.page_article .article-page__header,
    body.page_article .article-page__header > p,
    body.page_article .article-page__header .authors-string,
    body.page_article .article-page__header .authors-string__item,
    body.page_article .article-page__header .article-details__author,
    body.page_article .article-page__header .article-details__author-orcid {
        background: #ffffff !important;
        background-color: #ffffff !important;
        color: #000000 !important;
    }

    /* Publication metadata beneath the PDF control */
    body.page_article .article-page > .article-page__meta,
    body.page_article .article-page > .article-page__meta dl,
    body.page_article .article-page > .article-page__meta dt,
    body.page_article .article-page > .article-page__meta dd {
        background: #ffffff !important;
        background-color: #ffffff !important;
        color: #000000 !important;
    }

    /*
     * References: force every painted list surface to white. This is
     * deliberately narrower than a blanket descendant reset so links,
     * markers and other established STEL accents retain their styling.
     */
    body.page_article .article-page > h3.label:nth-of-type(2),
    body.page_article .article-page > ol.references,
    body.page_article .article-page > ol.references > li {
        background: #ffffff !important;
        background-color: #ffffff !important;
    }

    body.page_article .article-page > ol.references,
    body.page_article .article-page > ol.references > li {
        color: #000000 !important;
    }

    /*
     * Keep the Abstract treatment exactly as designed. These declarations
     * are repeated here after the white mobile reset so the callout remains
     * pale red rather than becoming white.
     */
    body.page_article .article-page > h3.label:first-of-type {
        background: #fff7f7 !important;
        background-color: #fff7f7 !important;
        color: #B5121B !important;
    }

    body.page_article .article-page > h3.label:first-of-type + p {
        background: #fff7f7 !important;
        background-color: #fff7f7 !important;
        color: #000000 !important;
    }

    /* Keep the PDF action in the established STEL red */
    body.page_article .article-page a.article__btn.pdf,
    body.page_article .article-page a.article__btn.pdf:hover,
    body.page_article .article-page a.article__btn.pdf:focus {
        background: #B5121B !important;
        color: #ffffff !important;
    }

    body.page_article .article-page a.article__btn.pdf:hover,
    body.page_article .article-page a.article__btn.pdf:focus {
        background: #8F0E15 !important;
    }

    /* Preserve the pale-red keyword and copyright/licence treatments */
    body.page_article .article-sidebar > .article-side__title + ul li {
        background: #fff2f3 !important;
        background-color: #fff2f3 !important;
    }

    body.page_article .article-sidebar > .copyright-info {
        background: #fff7f7 !important;
        background-color: #fff7f7 !important;
        color: #000000 !important;
    }
}


/* =========================================================
   Archives page navigation hover/focus colour fix
   ========================================================= */

/*
 * General issue-page rules deliberately force content links to black:
 *     body.page_issue a { color: #000000 !important; }
 *
 * The Archives page also carries body.page_issue, so that rule can override
 * Immersion's normal white text when a primary navigation item acquires its
 * black hover/focus background. Restore the standard navigation behaviour
 * specifically on the Archives page without changing issue-content links.
 */

body.page_issue.op_archive .main-header__nav .main-header__nav-link:hover,
body.page_issue.op_archive .main-header__nav .main-header__nav-link:focus,
body.page_issue.op_archive .main-header__nav .main-header__nav-link:active,
body.page_issue.op_archive #navigationPrimary > .nav-item:hover > .main-header__nav-link,
body.page_issue.op_archive #navigationPrimary > .nav-item:focus-within > .main-header__nav-link {
    color: #ffffff !important;
}

/* Preserve white text if the theme applies the dark state to the parent item. */
body.page_issue.op_archive #navigationPrimary > .nav-item:hover > a,
body.page_issue.op_archive #navigationPrimary > .nav-item:focus-within > a {
    color: #ffffff !important;
}


/* =========================================================
   Homepage recent issue title-link underline fix
   ========================================================= */

/*
 * Match the Archives page more closely by keeping recent issue titles
 * free of underlines in normal, hover, focus and active states.
 * The hover/focus colour change to STEL red is retained.
 */

body.page_index .stel-recent-issue-title-link,
body.page_index .stel-recent-issue-title-link:visited,
body.page_index .stel-recent-issue-title-link:hover,
body.page_index .stel-recent-issue-title-link:focus,
body.page_index .stel-recent-issue-title-link:active,
body.page_index .stel-recent-issue-title-link .stel-recent-issue-title,
body.page_index .stel-recent-issue-title-link:hover .stel-recent-issue-title,
body.page_index .stel-recent-issue-title-link:focus .stel-recent-issue-title,
body.page_index .stel-recent-issue-title-link:active .stel-recent-issue-title {
    text-decoration: none !important;
    text-decoration-line: none !important;
    text-decoration-color: transparent !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
}

body.page_index .stel-recent-issue-title-link::before,
body.page_index .stel-recent-issue-title-link::after {
    content: none !important;
    display: none !important;
}
