
:root {
    --mors-ink: #073149;
    --mors-link: #0068a5;
    --mors-border: #c6dbea;
    --mors-soft: #edf4f8;
    --mors-footer: #003b57;
    --mors-text: #111111;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--mors-text);
    background: #ffffff;
    overflow-x: hidden;
    zoom: 75%;
}

a {
    color: var(--mors-link);
}

img {
    max-width: 100%;
    display: block;
}

.page-shell {
    width: min(100%, 1660px);
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.page-main {
    min-height: 60vh;
}

/* =========================================================
   Header: compact Springer-style MORS version
   ========================================================= */
.mors-link-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    border-top: 2px solid #245f29;
    box-shadow: 0 1px 0 var(--mors-border);
}

.mors-topbar {
    height: 94px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mors-logo {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    color: var(--mors-ink);
    text-decoration: none;
    white-space: nowrap;
}

.mors-logo-main {
    font-size: 38px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.055em;
}

.mors-logo-link {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 38px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.035em;
}

.mors-login {
    position: relative;
    align-self: stretch;
    display: inline-flex;
    align-items: center;
    color: #111111;
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
    text-decoration: none;
}

.mors-nav-wrap {
    border-top: 1px solid var(--mors-border);
}

.mors-nav {
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
}

.mors-primary-nav,
.mors-utility-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    flex-wrap: nowrap;
}

.mors-primary-nav a,
.mors-utility-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 88px;
    color: #111111;
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.mors-utility-nav {
    gap: 32px;
    padding-left: 32px;
    border-left: 1px solid var(--mors-border);
}

.mors-utility-link {
    gap: 12px;
}

/* Header blue hover line for all header links */
.mors-primary-nav a::after,
.mors-utility-link::after,
.mors-login::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 8px;
    background: var(--mors-link);
    border-radius: 4px 4px 0 0;
    opacity: 0;
    transform: scaleX(.84);
    transform-origin: center;
    transition: opacity .14s ease, transform .14s ease;
    pointer-events: none;
}

.mors-primary-nav a:hover::after,
.mors-primary-nav a:focus::after,
.mors-utility-link:hover::after,
.mors-utility-link:focus::after,
.mors-login:hover::after,
.mors-login:focus::after {
    opacity: 1;
    transform: scaleX(1);
}

.mors-login:hover,
.mors-login:focus,
.mors-primary-nav a:hover,
.mors-primary-nav a:focus,
.mors-utility-link:hover,
.mors-utility-link:focus {
    color: #111111;
    text-decoration: none;
}

/* Header icons */
.mors-icon {
    display: inline-block;
    position: relative;
    flex: 0 0 auto;
    color: currentColor;
}

.mors-icon-search {
    width: 26px;
    height: 26px;
    border: 3px solid currentColor;
    border-radius: 50%;
}

.mors-icon-search::after {
    content: "";
    position: absolute;
    width: 13px;
    height: 3px;
    right: -9px;
    bottom: -4px;
    background: currentColor;
    border-radius: 999px;
    transform: rotate(45deg);
}

.mors-icon-bookmark {
    width: 22px;
    height: 34px;
    border: 3px solid currentColor;
    border-bottom: 0;
    border-radius: 3px 3px 0 0;
}

.mors-icon-bookmark::after {
    content: "";
    position: absolute;
    left: -3px;
    right: -3px;
    bottom: -12px;
    margin: auto;
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 14px solid currentColor;
}

.mors-icon-cart {
    width: 29px;
    height: 20px;
    border-bottom: 3px solid currentColor;
}

.mors-icon-cart::before {
    content: "";
    position: absolute;
    left: 2px;
    top: -8px;
    width: 20px;
    height: 3px;
    background: currentColor;
    transform: skew(-15deg);
}

.mors-icon-cart::after {
    content: "";
    position: absolute;
    left: 4px;
    bottom: -9px;
    width: 6px;
    height: 6px;
    background: currentColor;
    border-radius: 50%;
    box-shadow: 17px 0 0 currentColor;
}

/* Search panel */
.mors-search-panel {
    display: none;
    background: var(--mors-soft);
    border-top: 1px solid #d9e8f2;
}

.mors-search-panel:target {
    display: block;
}

.mors-search-panel-inner {
    width: min(100%, 1140px);
    margin: 0 auto;
    padding: 36px 20px 34px;
}

.mors-search-panel-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 16px;
}

.mors-search-panel h2 {
    margin: 0;
    color: #111111;
    font-size: 26px;
    line-height: 1.25;
    font-weight: 700;
}

.mors-search-close {
    display: inline-grid;
    place-items: center;
    width: 32px;
    height: 32px;
    color: var(--mors-link);
    font-size: 28px;
    line-height: 1;
    font-weight: 400;
    text-decoration: none;
}

.mors-top-search-form {
    display: grid;
    grid-template-columns: 1fr 68px;
    height: 56px;
    width: 100%;
    background: #ffffff;
    border: 4px solid #0787ce;
}

.mors-top-search-form input {
    min-width: 0;
    width: 100%;
    border: 0;
    outline: none;
    padding: 8px 12px;
    background: #ffffff;
    color: #111111;
    font-size: 22px;
}

.mors-top-search-form button {
    display: grid;
    place-items: center;
    border: 0;
    background: #ffffff;
    color: #222222;
    cursor: pointer;
}

/* =========================================================
   Compact hero section exactly like the intended view
   ========================================================= */
.mors-hero {
    min-height: 424px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(0,61,86,.98) 0%, rgba(0,61,86,.94) 40%, rgba(0,61,86,.62) 66%, rgba(0,61,86,.08) 100%),
        url("../img/mors-springer-reference-hero.5faa1b2b36d3.png") center right / cover no-repeat,
        #003f5d;
}

.mors-hero-inner {
    padding-top: 42px;
    padding-bottom: 34px;
    color: #ffffff;
}

.mors-hero h1 {
    margin: 0 0 24px;
    font-size: 44px;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 0 rgba(0,0,0,.35);
}

.mors-hero p {
    margin: 0 0 14px;
    font-size: 21px;
    line-height: 1.28;
    font-weight: 700;
    text-shadow: 0 2px 0 rgba(0,0,0,.35);
}

.mors-hero-search {
    display: grid;
    grid-template-columns: 1fr 74px;
    width: min(1040px, 100%);
    height: 64px;
    background: #ffffff;
    border: 1px solid #1d4255;
    border-radius: 4px;
    overflow: hidden;
}

.mors-hero-search input {
    border: 0;
    outline: none;
    padding: 12px 16px;
    font-size: 20px;
}

.mors-hero-search button {
    display: grid;
    place-items: center;
    border: 0;
    border-left: 1px solid #d8e4ec;
    background: #ffffff;
    color: #0787ce;
    cursor: pointer;
}

.mors-advanced {
    display: inline-block;
    margin-top: 14px;
    color: #ffffff !important;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
    text-decoration: underline;
}

.mors-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 72px;
    margin-top: 34px;
}

.mors-stats a {
    color: #ffffff;
    text-decoration: none;
}

.mors-stats strong {
    display: block;
    margin-bottom: 5px;
    font-size: 27px;
    line-height: 1;
    font-weight: 700;
}

.mors-stats span {
    display: block;
    font-size: 19px;
    line-height: 1.16;
    font-weight: 700;
}

/* Three image cards */
.mors-cards-section {
    padding-top: 54px;
    padding-bottom: 18px;
    background: #ffffff;
}

.mors-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.mors-image-card {
    display: block;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #bfd5e4;
    border-radius: 10px;
    color: #111111;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(13,40,64,.08);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.mors-image-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 24px rgba(13,40,64,.14);
    border-color: #91b8cf;
    text-decoration: none;
}

.mors-image-card img {
    width: 100%;
    height: 285px;
    max-height: 285px;
    object-fit: cover;
}

.mors-image-card span {
    display: flex;
    align-items: center;
    min-height: 82px;
    padding: 18px 22px;
    font-size: 30px;
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #111111;
    background: #ffffff;
}

/* Our brands */
.mors-brands {
    padding-top: 34px;
    padding-bottom: 30px;
    border-top: 1px solid #d5e3ec;
}

.mors-brands h2 {
    margin: 0 0 28px;
    color: #10293d;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 700;
}

.mors-brand-row {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    align-items: center;
    gap: 34px;
}

.mors-brand-row .brand {
    position: relative;
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 16px;
    color: #10293d;
    text-decoration: none;
    transition: color .16s ease, transform .16s ease;
}

.mors-brand-row .brand::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 7px;
    background: var(--mors-link);
    border-radius: 4px 4px 0 0;
    opacity: 0;
    transform: scaleX(.72);
    transition: opacity .16s ease, transform .16s ease;
}

.mors-brand-row .brand:hover,
.mors-brand-row .brand:focus {
    color: var(--mors-link);
    transform: translateY(-2px);
    text-decoration: none;
}

.mors-brand-row .brand:hover::after,
.mors-brand-row .brand:focus::after {
    opacity: 1;
    transform: scaleX(1);
}

.brand-journals i,
.brand-discover i {
    display: inline-block;
    position: relative;
    flex: 0 0 auto;
}

.brand-journals i {
    width: 28px;
    height: 28px;
    border: 2px solid #0b4b7a;
    border-radius: 3px 14px 3px 14px;
    transform: rotate(-20deg);
}

.brand-journals i::after {
    content: "";
    position: absolute;
    left: -2px;
    right: -2px;
    bottom: -7px;
    height: 3px;
    background: #ee8b2c;
    border-radius: 4px;
    transform: rotate(20deg);
}

.brand-portfolio .stacked {
    display: inline-flex;
    flex-direction: column;
    line-height: .95;
    color: #111111;
}

.brand-portfolio .stacked b:first-child {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.brand-portfolio .stacked b:last-child {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.brand-open em {
    width: 32px;
    height: 32px;
    display: inline-block;
    background: linear-gradient(45deg, #293b69 0 50%, transparent 50% 100%);
    position: relative;
}

.brand-open em::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 0 50%, #44d6e8 50% 100%);
}

.brand-open span {
    color: #293b69;
    font-size: 24px;
    font-weight: 800;
}

.brand-academic span {
    display: inline-flex;
    flex-direction: column;
    color: #4d4d4d;
    line-height: .95;
}

.brand-academic b {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -0.03em;
}

.brand-academic small {
    font-size: 22px;
    font-weight: 400;
}

.brand-discover i {
    width: 34px;
    height: 34px;
    border: 4px solid #0b3d69;
    border-radius: 50%;
}

.brand-discover i::before {
    content: "";
    position: absolute;
    inset: 4px;
    border: 3px solid #0b3d69;
    border-radius: 50%;
}

.brand-books span {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #111111;
}

/* Call for papers */
.mors-call-section {
    margin-top: 44px;
    padding: 52px 0 56px;
    background: var(--mors-soft);
}

.mors-call-heading h2 {
    margin: 0 0 20px;
    color: #10293d;
    font-size: 36px;
    line-height: 1.15;
    font-weight: 700;
}

.mors-call-heading p {
    margin: 0 0 32px;
    font-size: 22px;
    line-height: 1.35;
}

.mors-call-section .mors-call-heading a {
    font-weight: 400;
    text-decoration-line: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    transition: font-weight .12s ease, text-decoration-thickness .12s ease, color .12s ease;
}

.mors-call-section .mors-call-heading a:hover,
.mors-call-section .mors-call-heading a:focus {
    color: #004f7c;
    font-weight: 800;
    text-decoration-thickness: 4px;
}

.mors-call-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.mors-call-card {
    display: flex;
    flex-direction: column;
    min-height: 430px;
    padding: 28px 28px 30px;
    border: 1px solid #bfd5e4;
    border-radius: 10px;
    background: #ffffff;
    color: #111111;
    text-decoration: none;
    transition: background .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.mors-call-card:hover {
    background: #f7fbfe;
    border-color: #8bb5ce;
    box-shadow: 0 14px 24px rgba(13,40,64,.12);
    transform: translateY(-3px);
    text-decoration: none;
}

.mors-call-label {
    display: block;
    margin-bottom: 18px;
    font-size: 18px;
    font-weight: 700;
    color: #111111;
}

.mors-call-card h3 {
    margin: 0 0 18px;
    color: #10293d;
    font-size: 29px;
    line-height: 1.18;
    font-weight: 700;
}

.mors-call-card p {
    margin: 0;
    color: #1d2d3a;
    font-size: 18px;
    line-height: 1.45;
}

.mors-call-divider {
    margin-top: auto;
    margin-bottom: 22px;
    border-top: 1px solid var(--mors-border);
}

.mors-call-date-label {
    display: block;
    margin-bottom: 10px;
    color: #111111;
    font-size: 18px;
}

.mors-call-card strong {
    color: #111111;
    font-size: 18px;
}

.mors-call-button {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-top: 28px;
    padding: 16px 34px;
    border: 3px solid var(--mors-link);
    border-radius: 999px;
    background: #ffffff;
    color: var(--mors-link);
    font-size: 19px;
    font-weight: 700;
    text-decoration: none;
    transition: background .18s ease, color .18s ease, transform .18s ease;
}

.mors-call-button:hover {
    background: var(--mors-link);
    color: #ffffff;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Generic sections */
.mors-trending-section,
.mors-subjects,
.mors-about {
    padding: 56px 0 64px;
    background: #ffffff;
}

.mors-featured-journals-section,
.mors-featured-books-section {
    padding: 58px 0 66px;
    background: var(--mors-soft);
}

.mors-trending-section h2,
.mors-featured-journals-section h2,
.mors-subjects h2,
.mors-featured-books-section h2,
.mors-about h2 {
    margin: 0 0 28px;
    color: #10293d;
    font-size: 36px;
    line-height: 1.15;
    font-weight: 700;
}

.mors-subject-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0 26px;
}

.mors-subject-item {
    min-height: 64px;
    display: flex;
    align-items: center;
    border-top: 1px solid var(--mors-border);
}

.mors-subject-item a {
    color: var(--mors-link);
    font-size: 20px;
    line-height: 1.25;
    text-decoration-line: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color .16s ease, text-decoration-thickness .16s ease;
}

.mors-subject-item a:hover,
.mors-subject-item a:focus {
    color: #004e7c;
    text-decoration-thickness: 3px;
}

/* Footer */
.mors-footer {
    background: var(--mors-footer);
    color: #ffffff;
    margin-top: 8px;
    padding-top: 44px;
}

.mors-footer a {
    color: #ffffff;
    text-decoration: underline;
}

.footer-top-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 34px;
    padding-bottom: 32px;
}

.footer-top-grid h3 {
    margin: 0 0 18px;
    font-size: 21px;
}

.footer-top-grid a {
    display: block;
    margin-bottom: 14px;
    font-size: 16px;
}

.footer-meta {
    border-top: 2px solid rgba(255,255,255,.88);
    padding-top: 22px;
    padding-bottom: 40px;
}

.footer-meta-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 28px;
    margin-bottom: 26px;
}

.footer-meta-links a {
    font-size: 15px;
}

.footer-endnote {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
}

.footer-brand {
    font-size: 20px;
    letter-spacing: .02em;
}

/* Responsive */
@media (max-width: 1100px) {
    .mors-primary-nav a,
    .mors-utility-link {
        font-size: 20px;
    }

    .mors-primary-nav,
    .mors-utility-nav {
        gap: 22px;
    }

    .mors-card-grid,
    .mors-call-grid,
    .mors-brand-row,
    .mors-subject-grid,
    .footer-top-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    body {
        zoom: 100%;
    }

    .mors-topbar {
        height: 76px;
    }

    .mors-logo-main,
    .mors-logo-link {
        font-size: 32px;
    }

    .mors-nav {
        height: auto;
        flex-direction: column;
        align-items: flex-start;
        padding-top: 18px;
        padding-bottom: 18px;
    }

    .mors-utility-nav {
        border-left: 0;
        padding-left: 0;
    }

    .mors-primary-nav,
    .mors-utility-nav {
        flex-wrap: wrap;
    }

    .mors-primary-nav a,
    .mors-utility-link {
        min-height: 42px;
    }

    .mors-primary-nav a::after,
    .mors-utility-link::after,
    .mors-login::after {
        height: 5px;
    }

    .mors-hero {
        min-height: auto;
    }

    .mors-hero-inner {
        padding-top: 30px;
        padding-bottom: 32px;
    }

    .mors-hero h1 {
        font-size: 34px;
    }

    .mors-card-grid,
    .mors-call-grid,
    .mors-brand-row,
    .mors-subject-grid,
    .footer-top-grid {
        grid-template-columns: 1fr;
    }

    .mors-image-card img {
        height: 220px;
        max-height: 220px;
    }
}

/* === MORS LOWER HOMEPAGE SECTIONS COMPACT RESTORE START === */
/* This section restores only the homepage content from Trending research downward.
   It is intentionally scoped to lower homepage section classes. */

/* ---------- Trending research ---------- */
.mors-trending-section {
    padding: 56px 0 64px !important;
    background: #ffffff !important;
    overflow: hidden;
}

.mors-trending-section h2 {
    margin: 0 0 28px !important;
    color: #10293d !important;
    font-size: 36px !important;
    line-height: 1.15 !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em;
}

.mors-trending-row {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 20px !important;
    align-items: stretch !important;
    width: 100% !important;
    overflow: visible !important;
}

.mors-trending-card {
    display: flex !important;
    flex-direction: column !important;
    min-width: 0 !important;
    overflow: hidden !important;
    background: #ffffff !important;
    border: 1px solid #bfd5e4 !important;
    border-radius: 10px !important;
    color: #111111 !important;
    box-shadow: none !important;
}

.mors-trending-thumb {
    height: 168px !important;
    max-height: 168px !important;
    min-height: 168px !important;
    overflow: hidden !important;
    background: #e8eef2 !important;
    border-bottom: 1px solid #d6e5ee !important;
}

.mors-trending-thumb img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 168px !important;
    object-fit: cover !important;
    display: block !important;
    pointer-events: none !important;
    user-select: none !important;
}

.mors-trending-body {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 1 auto !important;
    padding: 18px 22px 20px !important;
    background: #ffffff !important;
}

.mors-trending-type {
    display: block !important;
    margin-bottom: 14px !important;
    color: #333333 !important;
    font-size: 18px !important;
    line-height: 1.2 !important;
    font-weight: 400 !important;
}

.mors-trending-body h3 {
    margin: 0 0 24px !important;
    color: #10293d !important;
    font-size: 25px !important;
    line-height: 1.15 !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em !important;
}

.mors-trending-body h3 a {
    color: #10293d !important;
    text-decoration: underline !important;
    text-decoration-thickness: 1px !important;
    text-underline-offset: 3px !important;
}

.mors-trending-body h3 a:hover,
.mors-trending-body h3 a:focus {
    color: #005e93 !important;
    text-decoration-thickness: 3px !important;
}

.mors-trending-links {
    margin-top: auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}

.mors-trending-links a {
    display: inline-block !important;
    width: max-content !important;
    max-width: 100% !important;
    color: #586574 !important;
    font-size: 18px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    border-bottom: 1px solid #8fa0ac !important;
}

.mors-trending-links a:hover,
.mors-trending-links a:focus {
    color: #005e93 !important;
    border-bottom-color: #005e93 !important;
}

/* ---------- Featured journals ---------- */
.mors-featured-journals-section {
    padding: 58px 0 66px !important;
    background: #edf4f8 !important;
}

.mors-featured-journals-section h2 {
    margin: 0 0 30px !important;
    color: #10293d !important;
    font-size: 36px !important;
    line-height: 1.15 !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em;
}

.mors-featured-journals-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 24px !important;
    align-items: stretch !important;
}

.mors-featured-journal-card {
    display: flex !important;
    flex-direction: column !important;
    min-height: 520px !important;
    padding: 28px 28px 26px !important;
    border: 1px solid #bfd5e4 !important;
    border-radius: 10px !important;
    background: #ffffff !important;
    color: #111111 !important;
    text-decoration: none !important;
    transition: background .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease !important;
}

.mors-featured-journal-card:hover,
.mors-featured-journal-card:focus {
    background: #f8fbfd !important;
    border-color: #8bb5ce !important;
    box-shadow: 0 14px 24px rgba(13,40,64,.12) !important;
    transform: translateY(-3px) !important;
    text-decoration: none !important;
}

.mors-featured-journal-head {
    display: grid !important;
    grid-template-columns: 84px 1fr !important;
    gap: 18px !important;
    align-items: start !important;
    margin-bottom: 22px !important;
}

.mors-featured-journal-head img {
    width: 84px !important;
    height: 118px !important;
    max-width: 84px !important;
    max-height: 118px !important;
    object-fit: cover !important;
    border-radius: 12px !important;
    box-shadow: 0 6px 16px rgba(0,0,0,.18) !important;
}

.mors-featured-journal-head h3 {
    margin: 0 !important;
    color: #10293d !important;
    font-size: 26px !important;
    line-height: 1.18 !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em !important;
}

.mors-featured-journal-card p {
    margin: 0 0 24px !important;
    color: #1e2d38 !important;
    font-size: 17px !important;
    line-height: 1.5 !important;
}

.mors-featured-journal-metrics {
    margin-top: auto !important;
}

.mors-featured-journal-metrics .metric-row,
.metric-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 20px !important;
    padding: 14px 0 !important;
    border-top: 1px solid #c6dbea !important;
    color: #1e2d38 !important;
    font-size: 17px !important;
}

.metric-row strong {
    color: #10293d !important;
    font-size: 18px !important;
}

/* ---------- Browse by subject ---------- */
.mors-subjects {
    padding: 54px 0 58px !important;
    background: #ffffff !important;
}

.mors-subjects h2 {
    margin: 0 0 28px !important;
    color: #10293d !important;
    font-size: 34px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em;
}

.mors-subject-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0 26px !important;
}

.mors-subject-item {
    min-height: 64px !important;
    display: flex !important;
    align-items: center !important;
    border-top: 1px solid #c6dbea !important;
}

.mors-subject-item a {
    display: inline !important;
    width: auto !important;
    color: #0068a5 !important;
    font-size: 20px !important;
    line-height: 1.25 !important;
    font-weight: 400 !important;
    text-decoration-line: underline !important;
    text-decoration-thickness: 1px !important;
    text-underline-offset: 3px !important;
    transition: color .16s ease, text-decoration-thickness .16s ease, text-underline-offset .16s ease !important;
}

.mors-subject-item a:hover,
.mors-subject-item a:focus {
    color: #004e7c !important;
    text-decoration-thickness: 3px !important;
    text-underline-offset: 4px !important;
}

/* ---------- Featured books ---------- */
.mors-featured-books-section {
    padding: 58px 0 68px !important;
    background: #edf4f8 !important;
}

.mors-featured-books-section h2 {
    margin: 0 0 30px !important;
    color: #10293d !important;
    font-size: 36px !important;
    line-height: 1.15 !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em;
}

.mors-featured-books-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 24px 26px !important;
    align-items: stretch !important;
}

.mors-featured-book-card {
    display: grid !important;
    grid-template-columns: 86px 1fr !important;
    align-items: start !important;
    gap: 22px !important;
    min-height: 166px !important;
    padding: 22px 26px !important;
    border: 1px solid #bfd5e4 !important;
    border-radius: 10px !important;
    background: #ffffff !important;
    color: #10293d !important;
    text-decoration: none !important;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease !important;
}

.mors-featured-book-card:hover,
.mors-featured-book-card:focus {
    transform: translateY(-3px) !important;
    box-shadow: 0 14px 24px rgba(13,40,64,.12) !important;
    border-color: #8bb5ce !important;
    background: #f8fbfd !important;
    text-decoration: none !important;
}

.mors-featured-book-card img {
    width: 82px !important;
    height: 118px !important;
    max-width: 82px !important;
    max-height: 118px !important;
    object-fit: cover !important;
    border-radius: 12px !important;
    box-shadow: 0 6px 16px rgba(0,0,0,.18) !important;
}

.mors-featured-book-card h3 {
    margin: 0 !important;
    color: #10293d !important;
    font-size: 26px !important;
    line-height: 1.14 !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em !important;
}

/* ---------- About section ---------- */
.mors-about {
    padding: 52px 0 56px !important;
    background: #ffffff !important;
}

.mors-about h2 {
    margin: 0 0 26px !important;
    color: #10293d !important;
    font-size: 30px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
}

.mors-about p {
    max-width: 880px !important;
    margin: 0 0 24px !important;
    color: #111111 !important;
    font-size: 17px !important;
    line-height: 1.5 !important;
}

/* ---------- Footer compact professional restore ---------- */
.mors-footer {
    margin-top: 8px !important;
    padding-top: 44px !important;
    background: #003b57 !important;
    color: #ffffff !important;
}

.mors-footer a {
    color: #ffffff !important;
    text-decoration: underline !important;
    text-underline-offset: 4px !important;
}

.footer-top-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 34px !important;
    padding-bottom: 32px !important;
}

.footer-top-grid h3 {
    margin: 0 0 18px !important;
    color: #ffffff !important;
    font-size: 21px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
}

.footer-top-grid a {
    display: block !important;
    margin-bottom: 14px !important;
    color: #ffffff !important;
    font-size: 16px !important;
    line-height: 1.25 !important;
}

.footer-meta {
    border-top: 2px solid rgba(255,255,255,.88) !important;
    padding-top: 22px !important;
    padding-bottom: 40px !important;
}

.footer-meta-links {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 16px 28px !important;
    margin-bottom: 26px !important;
}

.footer-meta-links a {
    color: #ffffff !important;
    font-size: 15px !important;
}

.footer-endnote {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 700 !important;
}

.footer-brand {
    color: #ffffff !important;
    font-size: 20px !important;
    letter-spacing: .02em !important;
}

/* Responsive protection for lower sections */
@media (max-width: 1500px) {
    .mors-trending-row {
        display: flex !important;
        gap: 20px !important;
        overflow-x: auto !important;
        padding-bottom: 8px !important;
        scroll-snap-type: x proximity !important;
    }

    .mors-trending-card {
        flex: 0 0 305px !important;
        scroll-snap-align: start !important;
    }
}

@media (max-width: 1100px) {
    .mors-featured-journals-grid,
    .mors-subject-grid,
    .mors-featured-books-grid,
    .footer-top-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 760px) {
    .mors-trending-section,
    .mors-featured-journals-section,
    .mors-subjects,
    .mors-featured-books-section,
    .mors-about {
        padding-top: 38px !important;
        padding-bottom: 44px !important;
    }

    .mors-featured-journals-grid,
    .mors-subject-grid,
    .mors-featured-books-grid,
    .footer-top-grid {
        grid-template-columns: 1fr !important;
    }

    .mors-featured-book-card {
        grid-template-columns: 74px 1fr !important;
    }

    .mors-featured-book-card img {
        width: 70px !important;
        height: 104px !important;
    }

    .mors-trending-body h3,
    .mors-featured-journal-head h3,
    .mors-featured-book-card h3 {
        font-size: 23px !important;
    }
}
/* === MORS LOWER HOMEPAGE SECTIONS COMPACT RESTORE END === */
