@charset "UTF-8";
/* ============================================================
   OJS-UK Theme — Design tokens + Header
   UK academic publishing style: deep navy, engraved serif,
   vermilion accent, teal rule.
   ============================================================ */

:root {
    --uk-navy: #022343;            /* main header */
    --uk-navy-dark: #042646;       /* utility bar */
    --uk-navy-footer: #022744;     /* footer */
    --uk-ink: #0d1f3f;             /* display headings */
    --uk-text: #1b2740;            /* body text */
    --uk-text-muted: #4f5d76;
    --uk-teal: #0487a3;            /* short rule under hero headings */
    --uk-red: #e14f38;             /* accent: buttons, links */
    --uk-red-dark: #c13e28;
    --uk-red-deep: #b03c2f;        /* solid deep red (covers) */
    --uk-border: #d7d9dd;
    --uk-bg: #fbf9f8;
    --uk-bg-section: #fbf9f8;
    --uk-serif: 'Times New Roman', Times, Georgia, serif;
    --uk-sans: 'Segoe UI', -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

body {
    margin: 0;
    background: var(--uk-bg);
    color: var(--uk-text);
    font-family: var(--uk-serif);
    font-size: 16px;
    line-height: 1.65;
}

/* Full-width layout: the icy blue shows as the content background,
   white panels float on top of it */
.site-frame {
    width: 100%;
    background: transparent;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-frame > .main-content {
    flex: 1;
}

a {
    color: var(--uk-navy);
    text-decoration: none;
}

a:hover {
    color: var(--uk-red);
    text-decoration: none;
}

img {
    max-width: 100%;
}

/* ---------- Skip links ---------- */
.skip-links {
    position: absolute;
    top: -200px;
}

.skip-links a {
    position: absolute;
    left: -9999px;
    background: var(--uk-navy);
    color: #fff;
    padding: 8px 16px;
    white-space: nowrap;
}

.skip-links a:focus {
    left: 0;
    top: 200px;
    z-index: 9999;
}

/* ---------- Utility bar ---------- */
.utility-bar {
    background: var(--uk-navy-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

/* Standard centered page width, same as ojs-style (~1200px) —
   overrides Bootstrap 3's breakpoint widths with one fluid cap */
.container {
    width: 100%;
    max-width: 1200px;
}

/* All shell containers reuse Bootstrap's .container so every page
   edge lines up at every breakpoint; clearfix pseudo-elements must
   be removed when the container becomes a flex/grid box */
.utility-bar .utility-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 34px;
}

.utility-inner::before,
.utility-inner::after,
.header-container::before,
.header-container::after,
.uk-hero-inner::before,
.uk-hero-inner::after {
    content: none;
}

.utility-bar .utility-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}

.utility-bar a,
.utility-bar span {
    font-family: var(--uk-sans);
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.02em;
}

.utility-bar a:hover {
    color: #fff;
    text-decoration: underline;
}

.utility-bar .utility-links > a,
.utility-bar .utility-links > span {
    padding: 5px 12px;
    position: relative;
}

.utility-bar .utility-links > a:not(:last-child)::after,
.utility-bar .utility-links > span:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 12px;
    width: 1px;
    background: rgba(255, 255, 255, 0.25);
}

.utility-bar .utility-links > a:first-child,
.utility-bar .utility-links > span:first-child {
    padding-left: 0;
}

/* ---------- Main header ---------- */
/* Sticky header, turns white with dark text on scroll
   (reference: bd.meridianpub.com) */
.site-header {
    background: var(--uk-navy);
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 900;
    transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
    /* Match the page background tone (#fbf9f8) */
    background: rgba(251, 249, 248, 0.96);
    backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 rgba(2, 35, 67, 0.10), 0 12px 35px rgba(2, 35, 67, 0.08);
}

/* Scrolled state: dark text, logo back to its original colours */
.site-header.is-scrolled .logo-image {
    filter: none;
}

.site-header.is-scrolled .logo-text-main {
    color: var(--uk-ink);
}

.site-header.is-scrolled .logo-text-sub {
    color: var(--uk-text-muted);
}

.site-header.is-scrolled .nav-menu > li > a,
.site-header.is-scrolled .nav-menu > li > .mobile-nav-label,
.site-header.is-scrolled .nav-menu > li > .nav-label {
    color: var(--uk-ink);
}

.site-header.is-scrolled .nav-menu > li > a:hover,
.site-header.is-scrolled .nav-menu > li:hover > .nav-label {
    color: var(--uk-red);
}

.site-header.is-scrolled .nav-caret {
    border-color: rgba(13, 31, 63, 0.55);
}

.site-header.is-scrolled .nav-menu > li:hover .nav-caret {
    border-color: var(--uk-red);
}

.site-header.is-scrolled .mobile-menu-toggle {
    color: var(--uk-ink);
}

.header-container {
    display: flex;
    align-items: center;
    min-height: 76px;
    gap: 28px;
}

/* Wordmark / logo */
.header-logo {
    flex-shrink: 0;
}

.header-logo .logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.header-logo {
    display: flex;
    align-items: center;
}

.header-logo .logo-image {
    max-height: 40px;
    width: auto;
    display: block;
    /* Tenant logos are designed for light backgrounds — render as a
       white wordmark on the navy header (v2 style) */
    filter: brightness(0) invert(1);
}

.logo-text {
    line-height: 1.15;
}

.logo-text-main {
    font-family: var(--uk-serif);
    font-size: 27px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.01em;
}

.logo-text-sub {
    font-family: var(--uk-sans);
    font-size: 10.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.32em;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Primary navigation */
.header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    /* Allow the nav to shrink below its content so overflowing items
       can be measured and collapsed into "More" (priority nav) */
    min-width: 0;
}

/* Priority nav — overflowing top-level items collapse into a "More"
   dropdown that reveals them on hover (same as sub-columns) */
.nav-more {
    position: relative;
}

.nav-more-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background: #fff;
    border: 1px solid var(--uk-border);
    border-top: 2px solid var(--uk-red);
    box-shadow: 0 10px 24px rgba(2, 35, 67, 0.16);
    list-style: none;
    margin: 0;
    padding: 6px 0;
    min-width: 210px;
    z-index: 990;
}

.nav-more:hover .nav-more-menu {
    display: block;
}

.nav-more-menu > li > a,
.nav-more-menu > li > .nav-label {
    display: block;
    padding: 9px 18px;
    font-family: var(--uk-sans);
    font-size: 13.5px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    color: var(--uk-text);
    white-space: nowrap;
    cursor: pointer;
    border-bottom: none;
}

.nav-more-menu > li > a::after,
.nav-more-menu > li > .nav-label::after {
    display: none;
}

.nav-more-menu > li > a:hover,
.nav-more-menu > li:hover > .nav-label {
    background: var(--uk-bg-section);
    color: var(--uk-red);
}

.nav-more-menu .nav-caret {
    display: none;
}

/* A moved item that itself has children — show them inline (indented) */
.nav-more-menu .nav-submenu {
    position: static;
    display: block;
    border: none;
    box-shadow: none;
    padding: 0;
    min-width: 0;
}

.nav-more-menu .nav-submenu li a {
    padding: 7px 18px 7px 32px;
    font-size: 13px;
    color: var(--uk-text-muted);
    white-space: nowrap;
}

.nav-more-menu .nav-submenu li a:hover {
    background: var(--uk-bg-section);
    color: var(--uk-red);
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu > li {
    position: relative;
}

/* Reference: bd.meridianpub.com — normal case, 600 weight, red
   underline growing from the centre on hover */
.nav-menu > li > a,
.nav-menu > li > .mobile-nav-label,
.nav-menu > li > .nav-label {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--uk-sans);
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: none;
    color: rgba(255, 255, 255, 0.94);
    padding: 9px 1px;
    cursor: pointer;
    white-space: nowrap;
}

.nav-menu > li > a::after,
.nav-menu > li > .nav-label::after {
    content: "";
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: 0;
    height: 2px;
    background: var(--uk-red);
    transition: left 0.2s ease, right 0.2s ease;
}

.nav-menu > li > a:hover,
.nav-menu > li > .mobile-nav-label:hover,
.nav-menu > li:hover > .nav-label {
    color: #fff;
}

.nav-menu > li > a:hover::after,
.nav-menu > li:hover > .nav-label::after {
    left: 0;
    right: 0;
}

/* Thin chevron for items with a submenu */
.nav-caret {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-right: 1.5px solid rgba(255, 255, 255, 0.65);
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.65);
    transform: rotate(45deg) translateY(-2px);
}

.nav-menu > li:hover .nav-caret {
    border-color: #fff;
}
/* Desktop dropdown for journal menus in the navy header */
.header-nav-desktop .nav-menu > li {
    position: relative;
}

.header-nav-desktop .nav-submenu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background: #fff;
    border: 1px solid var(--uk-border);
    border-top: 2px solid var(--uk-red);
    box-shadow: 0 10px 24px rgba(2, 35, 67, 0.16);
    list-style: none;
    margin: 0;
    padding: 6px 0;
    min-width: 220px;
    z-index: 990;
}

.header-nav-desktop .nav-menu > li:hover .nav-submenu {
    display: block;
}

.header-nav-desktop .nav-submenu li a {
    display: block;
    padding: 9px 18px;
    font-family: var(--uk-sans);
    font-size: 13.5px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    color: var(--uk-text);
    border-bottom: none;
}

.header-nav-desktop .nav-submenu li a:hover {
    background: var(--uk-bg-section);
    color: var(--uk-red);
    border-bottom: none;
}

/* Submit a manuscript — red outlined button in the main header (v2) */
.submit-manuscript-btn {
    flex-shrink: 0;
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--uk-sans);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--uk-red);
    background: transparent;
    border: 1px solid var(--uk-red);
    padding: 9px 22px;
    white-space: nowrap;
    transition: background 0.15s ease, color 0.15s ease;
}

.submit-manuscript-btn:hover {
    background: var(--uk-red);
    color: #fff;
}

/* Sign in / user chip lives in the utility bar (v2) */
.header-login {
    flex-shrink: 0;
}

.login-button {
    display: inline-flex;
    align-items: center;
    font-family: var(--uk-sans);
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.85);
    background: transparent;
    border: none;
    padding: 5px 0 5px 12px;
    cursor: pointer;
}

.login-button:hover {
    color: #fff;
    text-decoration: underline;
}

.login-icon {
    display: none;
}

/* Logged-in user chip (markup injected by header.js) */
.user-info-wrapper {
    position: relative;
}

.user-info-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--uk-sans);
    font-size: 12.5px;
    padding: 3px 0 3px 12px;
}

.user-avatar,
.user-avatar-placeholder {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--uk-red);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 12px;
}

.user-name {
    color: rgba(255, 255, 255, 0.9);
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Journal pages carry two navs: tenant links on desktop, the journal
   menu inside the mobile hamburger */
.header-nav-mobile {
    display: none;
}

/* Email + Sign in items live in the hamburger menu on mobile only */
.nav-menu-utility {
    display: none;
}

.dropdown-arrow {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.6);
}

.user-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    background: #fff;
    border: 1px solid var(--uk-border);
    border-radius: 3px;
    box-shadow: 0 10px 28px rgba(2, 35, 67, 0.20);
    min-width: 160px;
    padding: 6px;
    z-index: 1000;
}

/* Small caret pointing at the user chip */
.user-dropdown::before {
    content: "";
    position: absolute;
    top: -5px;
    right: 16px;
    width: 8px;
    height: 8px;
    background: #fff;
    border-left: 1px solid var(--uk-border);
    border-top: 1px solid var(--uk-border);
    transform: rotate(45deg);
}

.user-dropdown.show {
    display: block;
}

.logout-button {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 12px;
    border-radius: 3px;
    font-family: var(--uk-sans);
    font-size: 13px;
    color: var(--uk-text);
    white-space: nowrap;
}

/* The utility bar paints its links/spans white — restore dark text
   inside the white dropdown panel */
.utility-bar .user-dropdown a,
.utility-bar .user-dropdown span {
    color: var(--uk-text);
    font-size: 13px;
}

.utility-bar .user-dropdown a:hover,
.utility-bar .user-dropdown a:hover span {
    color: var(--uk-red);
    text-decoration: none;
}

.logout-button .logout-icon {
    color: var(--uk-text-muted);
}

.logout-button:hover {
    background: #faf1ee;
    color: var(--uk-red);
}

.logout-button:hover .logout-icon {
    color: var(--uk-red);
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    padding: 6px 10px;
}

/* ---------- Journal breadcrumb band ---------- */
.journal-header-bar {
    background: transparent;
    border-bottom: 1px solid var(--uk-border);
}

.journal-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 46px;
}

/* Bootstrap 3 .container clearfix pseudo-elements become flex items
   and push the single child to the center — neutralize them here */
.journal-header-container::before,
.journal-header-container::after {
    content: none;
}

.journal-page-title {
    margin: 0;
    font-family: var(--uk-sans);
    font-size: 13px;
    font-weight: 400;
    color: var(--uk-text-muted);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.journal-page-title a {
    color: #4a6ab8;
}

.journal-page-title a:hover {
    color: var(--uk-red);
    text-decoration: underline;
}

.journal-page-title .fh {
    color: #a8b1bd;
    font-size: 12px;
}

.journal-page-title > span:last-child {
    color: #8f959d;
}

/* ---------- Journal tab navigation ---------- */
.journal-nav-bar {
    background: transparent;
    border-bottom: 1px solid var(--uk-border);
}

.journal-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.journal-nav-menu > li {
    position: relative;
}

.journal-nav-menu > li > a,
.journal-nav-menu > li > .journal-nav-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--uk-sans);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--uk-ink);
    padding: 15px 18px 13px;
    border-bottom: 2px solid transparent;
    cursor: pointer;
}

/* First tab flush with the shared content edge */
.journal-nav-menu > li:first-child > a,
.journal-nav-menu > li:first-child > .journal-nav-label {
    padding-left: 0;
}

.journal-nav-menu > li > a:hover,
.journal-nav-menu > li:hover > .journal-nav-label {
    color: var(--uk-red);
    border-bottom-color: var(--uk-red);
}

.journal-nav-arrow::after {
    content: "\25BE";
    font-size: 10px;
    color: #a8b1bd;
}

.journal-nav-submenu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background: #fff;
    border: 1px solid var(--uk-border);
    border-top: 2px solid var(--uk-red);
    box-shadow: 0 10px 24px rgba(2, 35, 67, 0.14);
    list-style: none;
    margin: 0;
    padding: 6px 0;
    min-width: 220px;
    z-index: 900;
}

.journal-nav-menu > li:hover .journal-nav-submenu {
    display: block;
}

.journal-nav-submenu li a {
    display: block;
    padding: 9px 18px;
    font-family: var(--uk-sans);
    font-size: 13.5px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    color: var(--uk-text);
}

.journal-nav-submenu li a:hover {
    background: var(--uk-bg-section);
    color: var(--uk-red);
}

/* ---------- Breadcrumb (partial) ---------- */
.breadcrumb-nav .breadcrumb {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
    padding: 0;
    background: none;
    font-family: var(--uk-sans);
    font-size: 13px;
}

.breadcrumb-nav .breadcrumb-item {
    display: flex;
    align-items: center;
    color: var(--uk-text-muted);
}

.breadcrumb-nav .breadcrumb-item + .breadcrumb-item::before {
    content: "\203A";
    margin: 0 8px;
    color: #a8b1bd;
}

/* Breadcrumb links in royal blue, current page in grey (v2 board) */
.breadcrumb-nav .breadcrumb-item a {
    color: #4a6ab8;
}

.breadcrumb-nav .breadcrumb-item a:hover {
    color: var(--uk-red);
    text-decoration: underline;
}

.breadcrumb-nav .breadcrumb-item.active span {
    color: #8f959d;
}

/* ---------- Back to top ---------- */
.back-to-top {
    position: fixed;
    right: 26px;
    bottom: 26px;
    width: 42px;
    height: 42px;
    background: var(--uk-navy);
    color: #fff;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(2, 35, 67, 0.3);
    z-index: 950;
}

.back-to-top.show,
.back-to-top.visible {
    display: inline-flex;
}

.back-to-top:hover {
    background: var(--uk-red);
}

/* ---------- Main content shell ---------- */
.main-content {
    min-height: 55vh;
    background: transparent;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: inline-flex;
        order: -1;
    }

    .header-container {
        min-height: 62px;
        gap: 12px;
    }

    .logo-text-main {
        font-size: 21px;
    }

    .logo-text-sub {
        letter-spacing: 0.22em;
    }

    .header-nav,
    .header-nav-mobile {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        background: var(--uk-navy);
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        z-index: 980;
        padding: 8px 0 14px;
    }

    .header-nav-desktop {
        display: none !important;
    }

    .submit-manuscript-btn {
        padding: 6px 10px;
        font-size: 12px;
    }

    .header-container {
        gap: 10px;
        min-height: 56px;
    }

    /* The tenant logo is a wide image — let it shrink to whatever
       space is left between the hamburger and the submit button */
    .mobile-menu-toggle,
    .submit-manuscript-btn {
        flex-shrink: 0;
    }

    .header-logo {
        flex: 0 1 auto;
        min-width: 0;
        overflow: hidden;
    }

    .header-logo .logo-link {
        max-width: 100%;
    }

    .header-logo .logo-image {
        max-height: 36px;
        max-width: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
    }

    .logo-text-main {
        font-size: 17px;
    }

    .logo-text-sub {
        font-size: 8.5px;
        letter-spacing: 0.18em;
    }

    /* Utility bar: stack the two groups, drop the vertical-bar
       separators and horizontal padding that caused the ragged
       indent on wrap */
    .utility-bar .utility-inner {
        flex-direction: column;
        align-items: flex-start;
        flex-wrap: nowrap;
        padding-top: 6px;
        padding-bottom: 6px;
        row-gap: 3px;
        min-height: 0;
    }

    .utility-bar .utility-links {
        flex-wrap: wrap;
        gap: 2px 14px;
    }

    .utility-bar .utility-links > a,
    .utility-bar .utility-links > span {
        padding: 1px 0;
    }

    .utility-bar .utility-links > a::after,
    .utility-bar .utility-links > span::after {
        display: none;
    }

    /* Email + Sign in move into the hamburger menu — hide the utility
       bar's right group, keep only address + phone up top */
    .utility-bar .utility-links:last-child {
        display: none;
    }

    .utility-bar a,
    .utility-bar span {
        font-size: 11.5px;
    }

    /* Utility links appended at the bottom of the mobile menu */
    .nav-menu-utility {
        display: block;
        border-top: 1px solid rgba(255, 255, 255, 0.14);
        margin-top: 6px;
        padding-top: 4px;
    }

    .nav-menu > li.nav-menu-utility > .nav-utility-link {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
        padding: 12px 24px;
        font-family: var(--uk-sans);
        font-size: 13.5px;
        font-weight: 400;
        letter-spacing: 0;
        text-transform: none;
        color: rgba(255, 255, 255, 0.9);
    }

    .nav-utility-link:hover {
        color: #fff;
        background: rgba(255, 255, 255, 0.08);
    }

    .nav-utility-link i {
        color: rgba(255, 255, 255, 0.6);
        width: 16px;
        text-align: center;
    }

    /* Keep the header (hamburger + logo) pinned so navigation stays
       reachable after scrolling on mobile; sticky still establishes
       the containing block the dropdown menu anchors to */
    .site-header {
        position: sticky;
        top: 0;
        z-index: 900;
    }

    /* The header BAR turns light on scroll (same as desktop), but the
       opened dropdown menu keeps its navy background — so its text
       must stay white regardless of is-scrolled, or it goes invisible
       (dark-on-navy). */
    .site-header.is-scrolled .header-nav .nav-menu > li > a,
    .site-header.is-scrolled .header-nav .nav-menu > li > .mobile-nav-label,
    .site-header.is-scrolled .header-nav .nav-menu > li > .nav-label,
    .site-header.is-scrolled .header-nav .nav-utility-link,
    .site-header.is-scrolled .header-nav .mobile-nav-submenu li a {
        color: rgba(255, 255, 255, 0.9);
    }

    .header-nav.active {
        display: block;
    }

    .nav-menu {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .nav-menu > li > a,
    .nav-menu > li > .mobile-nav-label {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 24px;
        border-bottom: none;
        letter-spacing: 0.1em;
    }

    .mobile-nav-toggle {
        font-size: 18px;
        padding: 0 8px;
        transition: transform 0.15s ease;
        display: inline-block;
    }

    .nav-menu > li.active > a .mobile-nav-toggle,
    .nav-menu > li.active > .mobile-nav-label .mobile-nav-toggle {
        transform: rotate(90deg);
    }

    .mobile-nav-submenu {
        display: none;
        list-style: none;
        margin: 0;
        padding: 0 0 6px;
        background: rgba(255, 255, 255, 0.06);
    }

    .nav-menu > li.active .mobile-nav-submenu {
        display: block;
    }

    .mobile-nav-submenu li a {
        display: block;
        padding: 10px 36px;
        font-family: var(--uk-sans);
        font-size: 13.5px;
        color: rgba(255, 255, 255, 0.85);
    }

    .mobile-nav-submenu li a:hover {
        color: #fff;
        background: rgba(255, 255, 255, 0.08);
    }

    .login-button {
        padding: 7px 14px;
        font-size: 13px;
    }

    .journal-nav-bar {
        display: none;
    }
}

@media (min-width: 992px) {
    .mobile-nav-toggle {
        display: none;
    }
}
