:root {
    --ink: #111827;
    --muted: #5f6b7a;
    --line: #d8dde6;
    --soft: #f6f7f4;
    --brand: #0a4f93;
    --brand-dark: #082f57;
    --brand-deep: #061b31;
    --teal: #068a91;
    --accent: #d4461f;
    --paper: #ffffff;
    --font-site: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--font-site);
    line-height: 1.6;
}

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

a:hover {
    color: var(--accent);
}

.announcement-bar {
    padding: 10px 0;
    color: #ffffff;
    background: #111111;
    font-size: 13px;
    font-weight: 700;
}

.announcement-bar a {
    color: #8fc6ff;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255, 255, 255, .97);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 10px 28px rgba(17, 24, 39, .06);
}

.navbar {
    min-height: 72px;
}

.brand img {
    width: 210px;
    max-width: 58vw;
    height: auto;
}

.navbar-nav {
    gap: 4px;
}

.nav-link {
    color: var(--ink);
    font-family: var(--font-site);
    font-size: 14px;
    font-weight: 700;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--brand);
}

.btn-brand,
.button.primary,
.card-actions a:first-child {
    color: #ffffff;
    background: var(--brand);
    border: 1px solid var(--brand);
}

.btn-brand:hover,
.button.primary:hover,
.card-actions a:first-child:hover {
    color: #ffffff;
    background: var(--brand-dark);
    border-color: var(--brand-dark);
}

.home-hero {
    position: relative;
}

.hero-slide {
    height: 560px;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 56px 0 92px;
    color: #ffffff;
    background:
        linear-gradient(90deg, rgba(6, 27, 49, .96) 0%, rgba(6, 27, 49, .85) 44%, rgba(10, 79, 147, .5) 100%),
        radial-gradient(circle at 74% 22%, rgba(6, 138, 145, .75), transparent 28%),
        linear-gradient(135deg, #061b31 0%, #0a4f93 100%);
}

.hero-slide-alt {
    background:
        linear-gradient(90deg, rgba(6, 27, 49, .96) 0%, rgba(6, 27, 49, .86) 48%, rgba(212, 70, 31, .45) 100%),
        linear-gradient(135deg, #061b31 0%, #81411f 100%);
}

.hero-slide-deep {
    background:
        linear-gradient(90deg, rgba(6, 27, 49, .97) 0%, rgba(6, 27, 49, .84) 52%, rgba(6, 138, 145, .42) 100%),
        linear-gradient(135deg, #061b31 0%, #055f66 100%);
}

.eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--accent);
    font-family: var(--font-site);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.home-hero .eyebrow,
.journal-hero .eyebrow {
    color: #78d0d3;
}

h1,
h2,
h3 {
    font-family: var(--font-site);
    line-height: 1.15;
}

h1 {
    max-width: 900px;
    margin: 0;
    font-size: clamp(38px, 4.5vw, 60px);
    font-weight: 700;
    letter-spacing: 0;
}

.hero-slide p {
    max-width: 650px;
    margin-top: 18px;
    color: rgba(255, 255, 255, .88);
    font-size: 17px;
}

.hero-actions,
.card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.hero-actions .btn,
.button,
.card-actions a {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-site);
    min-height: 44px;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 800;
}

.btn-outline-light:hover {
    color: var(--brand-deep);
}

.research-visual {
    position: relative;
    display: grid;
    gap: 12px;
    max-width: 400px;
    margin-left: auto;
}

.research-visual::before {
    content: "";
    position: absolute;
    inset: -20px 38px 22px -20px;
    border: 1px solid rgba(255, 255, 255, .24);
    background: rgba(255, 255, 255, .08);
}

.visual-card,
.hero-stat-panel {
    position: relative;
    padding: 20px;
    color: #ffffff;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .22);
    backdrop-filter: blur(10px);
}

.visual-card-main,
.hero-stat-panel {
    padding: 28px;
    background: rgba(255, 255, 255, .95);
    color: var(--ink);
}

.visual-card span,
.hero-stat-panel span,
.article-type {
    display: block;
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.visual-card strong,
.hero-stat-panel strong {
    display: block;
    margin-top: 8px;
    font-family: var(--font-site);
    font-size: 20px;
    line-height: 1.2;
}

.hero-stat-panel p {
    color: var(--muted);
}

.carousel-control-prev,
.carousel-control-next {
    width: 7%;
}

.carousel-indicators {
    bottom: 68px;
}

.quick-links-wrap {
    position: relative;
    z-index: 4;
    margin-top: -54px;
}

.quick-links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
    background: #3f3a38;
    box-shadow: 0 18px 44px rgba(17, 24, 39, .18);
}

.quick-link {
    display: flex;
    gap: 14px;
    align-items: center;
    font-family: var(--font-site);
    min-height: 108px;
    padding: 22px 28px;
    color: #ffffff;
    border-right: 1px solid rgba(255, 255, 255, .14);
}

.quick-link.active,
.quick-link:hover {
    color: var(--ink);
    background: #ffffff;
}

.quick-link span {
    color: var(--accent);
    font-weight: 900;
}

.page-hero,
.journal-hero {
    padding: clamp(38px, 6vw, 74px) 0;
    color: #ffffff;
    background:
        linear-gradient(90deg, rgba(6, 27, 49, .94), rgba(10, 79, 147, .76)),
        linear-gradient(135deg, #061b31, #0a4f93);
}

.page-hero h1,
.journal-hero h1 {
    font-size: clamp(32px, 4.2vw, 54px);
}

.journal-hero p {
    margin-top: 16px;
    color: rgba(255, 255, 255, .82);
}

.journal-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 44px;
    align-items: center;
}

.journal-hero-copy {
    max-width: 920px;
}

.journal-hero-meta,
.journal-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.journal-hero-meta {
    margin-top: 22px;
}

.journal-hero-meta span {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    padding: 7px 13px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 999px;
    background: rgba(255, 255, 255, .1);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.journal-hero-actions {
    margin-top: 26px;
}

.journal-hero-actions a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    padding: 9px 16px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, .32);
    border-radius: 999px;
    font-weight: 800;
}

.journal-hero-actions a:first-child,
.journal-hero-actions a:hover {
    background: #ffffff;
    color: var(--brand-dark);
}

.journal-hero-cover {
    padding: 16px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 8px;
    box-shadow: 0 24px 52px rgba(0, 0, 0, .2);
}

.journal-hero-cover img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 6px;
    background: #ffffff;
}

.content-band,
.journal-layout {
    padding: clamp(34px, 5vw, 64px) 0;
}

.section-title {
    margin-bottom: 30px;
}

.section-title p {
    max-width: 680px;
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 17px;
}

.section-title h2 {
    margin: 0;
    font-size: clamp(28px, 3.4vw, 40px);
    font-weight: 700;
}

.section-title.compact h2 {
    font-size: 30px;
}

.journal-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.journal-catalogue {
    background:
        linear-gradient(180deg, #ffffff 0%, #f7f9fb 100%);
}

.catalogue-head {
    display: flex;
    justify-content: space-between;
    gap: 28px;
    align-items: flex-end;
    margin-bottom: 30px;
}

.catalogue-head .section-title {
    margin-bottom: 0;
}

.catalogue-count {
    min-width: 160px;
    padding: 20px 22px;
    text-align: center;
    background: #ffffff;
    border: 1px solid var(--line);
    border-top: 4px solid var(--accent);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(17, 24, 39, .06);
}

.catalogue-count strong,
.catalogue-count span {
    display: block;
}

.catalogue-count strong {
    color: var(--brand);
    font-size: 34px;
    line-height: 1;
}

.catalogue-count span {
    margin-top: 6px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.journal-list {
    display: grid;
    gap: 22px;
}

.journal-card,
.article-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 16px 36px rgba(17, 24, 39, .07);
}

.journal-card {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    min-height: 250px;
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.journal-card:hover {
    border-color: rgba(10, 79, 147, .28);
    box-shadow: 0 20px 42px rgba(17, 24, 39, .1);
    transform: translateY(-2px);
}

.journal-cover {
    display: block;
    min-height: 250px;
    padding: 18px;
    background: linear-gradient(180deg, #eef3f8 0%, #ffffff 100%);
    border-right: 1px solid var(--line);
}

.journal-cover img {
    width: 100%;
    height: 100%;
    max-height: 300px;
    object-fit: contain;
    background: #ffffff;
    border: 1px solid rgba(216, 221, 230, .8);
    border-radius: 6px;
    box-shadow: 0 10px 26px rgba(17, 24, 39, .08);
}

.journal-card-body {
    display: flex;
    flex-direction: column;
    padding: 28px;
}

.journal-card-top {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 12px;
}

.journal-card h3,
.article-card h3 {
    margin: 0 0 10px;
    font-weight: 700;
}

.journal-card h3 {
    font-size: clamp(22px, 2.4vw, 30px);
}

.journal-card h3 a {
    color: var(--ink);
}

.journal-card h3 a:hover {
    color: var(--brand);
}

.journal-card-body > p {
    max-width: 850px;
    margin: 0;
    color: var(--muted);
}

.journal-label,
.journal-issn {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.journal-label {
    color: #ffffff;
    background: var(--brand);
}

.journal-issn {
    color: var(--brand-dark);
    background: #eef5fb;
    border: 1px solid #d7e7f4;
}

.journal-card-footer {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    margin-top: auto;
    padding-top: 24px;
}

.journal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.journal-links a,
.journal-primary-link {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
}

.journal-links a {
    color: var(--brand);
    background: #ffffff;
    border: 1px solid var(--line);
}

.journal-links a:hover {
    border-color: var(--brand);
}

.journal-primary-link {
    white-space: nowrap;
    color: #ffffff;
    background: var(--brand);
    border: 1px solid var(--brand);
}

.journal-primary-link:hover {
    color: #ffffff;
    background: var(--brand-dark);
}

.meta,
.authors {
    color: var(--muted);
}

.card-actions a {
    min-height: 38px;
    padding: 8px 14px;
    color: var(--brand);
    border: 1px solid var(--brand);
    border-radius: 999px;
    background: #ffffff;
}

.journal-layout-grid {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 40px;
    align-items: start;
}

.journal-sidebar {
    position: sticky;
    top: 116px;
}

.journal-menu-card,
.journal-submit-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(17, 24, 39, .04);
}

.journal-menu-heading {
    padding: 16px 18px 10px;
    color: var(--muted);
    background: #ffffff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.journal-sidebar nav {
    display: grid;
}

.journal-sidebar nav a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 18px;
    color: var(--ink);
    border-top: 1px solid var(--line);
    font-weight: 700;
    transition: color .18s ease, background .18s ease, padding-left .18s ease;
}

.journal-sidebar nav a::after {
    content: "";
    width: 7px;
    height: 7px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    opacity: .45;
    transform: rotate(45deg);
    font-weight: 900;
}

.journal-sidebar nav a:hover,
.journal-sidebar nav a.active {
    color: var(--brand);
    background: #eef5fb;
    padding-left: 22px;
}

.journal-sidebar nav a:hover::after,
.journal-sidebar nav a.active::after {
    opacity: .9;
}

.journal-sidebar nav a:last-child {
    border-bottom: 0;
}

.journal-submit-card {
    margin-top: 18px;
    padding: 20px;
    background: #f7fafc;
}

.journal-submit-card span {
    display: block;
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.journal-submit-card strong {
    display: block;
    margin-top: 8px;
    font-size: 22px;
}

.journal-submit-card p {
    margin: 10px 0 18px;
    color: var(--muted);
}

.journal-submit-card a {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    padding: 8px 14px;
    color: #ffffff;
    background: var(--brand);
    border-radius: 999px;
    font-weight: 800;
}

.journal-content {
    min-width: 0;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.journal-content .prose {
    max-width: none;
}

.journal-content .prose p {
    color: #172033;
    font-size: 16px;
    line-height: 1.75;
}

.journal-overview {
    margin-bottom: 34px;
}

.journal-overview-head {
    margin-bottom: 18px;
    padding-left: 16px;
    border-left: 4px solid var(--accent);
}

.journal-overview-head span {
    display: block;
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.journal-overview-head h2 {
    margin: 4px 0 0;
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 800;
}

.journal-overview-content {
    display: grid;
    gap: 16px;
}

.journal-overview-content > p {
    margin: 0;
    padding: 0 0 0 18px;
    border-left: 1px solid #d7e7f4;
}

.journal-overview-content h3,
.journal-overview-content h4,
.journal-overview-content h5,
.journal-overview-content strong {
    color: var(--brand-deep);
}

.journal-overview-content h3,
.journal-overview-content h4 {
    margin: 12px 0 0;
    padding-top: 8px;
    font-weight: 900;
}

.journal-overview-content ul,
.journal-overview-content ol {
    margin: 0;
    padding: 18px 22px 18px 42px;
    background: #f8fbfd;
    border: 1px solid #d7e7f4;
    border-radius: 8px;
}

.journal-overview-content li + li {
    margin-top: 8px;
}

.journal-overview-content > p:has(strong:first-child) {
    padding: 14px 16px;
    background: #ffffff;
    border: 1px solid #d7e7f4;
    border-left: 4px solid var(--brand);
    border-radius: 8px;
}

.journal-content table {
    width: 100%;
    margin: 10px 0 0;
    overflow: hidden;
    border: 1px solid #cfe1f1 !important;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 8px;
    background: #ffffff !important;
    box-shadow: 0 12px 30px rgba(17, 24, 39, .06);
}

.journal-content table th,
.journal-content table td {
    padding: 16px 18px !important;
    color: #172033 !important;
    border-right: 0 !important;
    border-bottom: 1px solid #d7e7f4 !important;
    background: #ffffff !important;
    vertical-align: top;
}

.journal-content table th,
.journal-content table tr:first-child td {
    color: var(--brand-deep) !important;
    background:
        linear-gradient(90deg, rgba(10, 79, 147, .12), rgba(6, 138, 145, .08)) !important;
    border-bottom: 1px solid #cfe1f1 !important;
    font-size: 16px;
    font-weight: 900;
}

.journal-content table td:last-child,
.journal-content table th:last-child {
    border-right: 0;
}

.journal-content table tr:last-child td {
    border-bottom: 0;
}

.journal-overview-content table {
    border-top: 4px solid var(--brand) !important;
}

.article-list {
    display: grid;
    gap: 0;
    counter-reset: article-list;
    border-top: 1px solid var(--line);
}

.article-card {
    position: relative;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    counter-increment: article-list;
    padding: 26px 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transition: transform .18s ease;
}

.article-marker {
    position: relative;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: var(--brand);
    background: #eef5fb;
    border: 1px solid #d7e7f4;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.article-marker::before {
    content: counter(article-list, decimal-leading-zero);
}

.article-marker::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 38px;
    width: 1px;
    height: calc(100% + 16px);
    background: var(--line);
}

.article-card:hover {
    transform: translateX(4px);
}

.article-card:hover .article-marker {
    color: #ffffff;
    background: var(--brand);
    border-color: var(--brand);
}

.article-card h3 {
    max-width: 760px;
    font-size: 21px;
    line-height: 1.3;
}

.article-card .authors {
    margin: 10px 0 0;
}

.article-card .meta {
    margin: 8px 0 0;
    font-size: 14px;
}

.article-card .card-actions {
    justify-content: flex-end;
    margin-top: 0;
    gap: 8px;
}

.article-card .card-actions a {
    min-height: 34px;
    padding: 7px 12px;
    background: #ffffff;
    font-size: 14px;
}

.article-card .card-actions a:first-child {
    background: var(--brand);
}

.journal-article-section,
.journal-archive-section {
    display: grid;
    gap: 22px;
}

.archive-year-card {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(17, 24, 39, .05);
}

.archive-year-head {
    display: grid;
    align-content: center;
    padding: 22px;
    color: #ffffff;
    background: var(--brand-deep);
}

.archive-year-head span {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity: .78;
}

.archive-year-head strong {
    margin-top: 6px;
    font-size: 34px;
    line-height: 1;
}

.archive-issue-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 18px;
}

.archive-issue-card {
    display: grid;
    gap: 6px;
    padding: 18px;
    color: var(--ink);
    background: #f8fbfd;
    border: 1px solid #d7e7f4;
    border-radius: 8px;
    transition: border-color .18s ease, transform .18s ease;
}

.archive-issue-card:hover {
    color: var(--ink);
    border-color: var(--brand);
    transform: translateY(-2px);
}

.archive-issue-card span {
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.archive-issue-card strong {
    font-size: 18px;
}

.archive-issue-card small {
    color: var(--brand);
    font-weight: 900;
}

.article-hero {
    padding: clamp(54px, 7vw, 92px) 0;
    color: #ffffff;
    background:
        linear-gradient(90deg, rgba(6, 27, 49, .96), rgba(10, 79, 147, .82)),
        linear-gradient(135deg, #061b31, #0a4f93);
}

.article-hero h1 {
    max-width: 980px;
    font-size: clamp(34px, 4.4vw, 58px);
}

.article-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.article-hero-actions a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    padding: 9px 16px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, .32);
    border-radius: 999px;
    font-weight: 800;
}

.article-hero-actions a:first-child,
.article-hero-actions a:hover {
    color: var(--brand-dark);
    background: #ffffff;
}

.article-detail-grid {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 36px;
    align-items: start;
}

.article-meta-card {
    position: sticky;
    top: 116px;
    display: grid;
    gap: 18px;
    padding: 22px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(17, 24, 39, .05);
}

.article-meta-card > span {
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.article-meta-card strong {
    color: var(--ink);
    font-size: 20px;
}

.article-meta-card dt {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.article-meta-card dd {
    margin: 4px 0 0;
    color: #172033;
}

.article-content-card {
    min-width: 0;
}

.article-prose {
    color: #172033;
    font-size: 16px;
    line-height: 1.8;
}

.article-prose p {
    margin-bottom: 18px;
}

.article-prose strong,
.article-prose b {
    color: var(--brand-deep);
}

.journal-article-detail {
    display: grid;
    gap: 18px;
}

.article-inline-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.article-inline-meta span {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    padding: 6px 11px;
    color: var(--brand-dark);
    background: #eef5fb;
    border: 1px solid #d7e7f4;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

.article-inline-authors {
    margin: 0;
    color: var(--muted);
    font-weight: 700;
}

.article-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.article-detail-actions a {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    padding: 8px 14px;
    color: #ffffff;
    background: var(--brand);
    border-radius: 999px;
    font-weight: 800;
}

.editorial-board {
    display: grid;
    gap: 24px;
}

.editorial-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.editor-card {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 20px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(17, 24, 39, .05);
    transition: transform .18s ease, border-color .18s ease;
}

.editor-card:hover {
    border-color: #cfe1f1;
    transform: translateY(-2px);
}

.editor-photo {
    width: 112px;
    height: 132px;
    overflow: hidden;
    background: #eef5fb;
    border-radius: 8px;
}

.editor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.editor-info span {
    display: inline-flex;
    min-height: 26px;
    align-items: center;
    padding: 4px 9px;
    color: var(--brand);
    background: #eef5fb;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.editor-info h3 {
    margin: 10px 0 6px;
    font-size: 21px;
    font-weight: 800;
}

.editor-affiliation {
    margin: 0 0 12px;
    color: var(--accent);
    font-weight: 800;
}

.editor-info dl {
    display: grid;
    gap: 8px;
    margin: 0;
}

.editor-info dt {
    color: var(--muted);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.editor-info dd {
    margin: 1px 0 0;
    color: #172033;
}

.archive-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.archive-list a {
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--soft);
    font-weight: 800;
}

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

.empty-state {
    padding: 24px;
    color: var(--muted);
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.site-footer {
    padding: 46px 0;
    color: rgba(255, 255, 255, .82);
    background: var(--brand-deep);
}

.footer-logo {
    width: 220px;
    max-width: 100%;
    margin-bottom: 18px;
    filter: brightness(0) invert(1);
}

.site-footer h2 {
    color: #ffffff;
    font-family: var(--font-site);
    font-size: 16px;
    font-weight: 800;
}

.site-footer a {
    display: block;
    color: rgba(255, 255, 255, .86);
    margin-bottom: 8px;
}

.site-footer a:hover {
    color: #ffffff;
}

@media (max-width: 1199px) {
    .announcement-bar {
        padding: 7px 0;
        font-size: 12px;
    }

    .navbar {
        min-height: 64px;
    }

    .brand img {
        width: 180px;
    }

    .nav-link {
        font-size: 13px;
        padding-left: 8px !important;
        padding-right: 8px !important;
    }

    .navbar .btn-brand {
        min-height: 38px;
        padding: 7px 13px;
        font-size: 14px;
    }

    .page-hero,
    .journal-hero {
        padding: 44px 0 58px;
    }

    .page-hero h1,
    .journal-hero h1 {
        font-size: 46px;
    }

    .content-band,
    .journal-layout {
        padding: 46px 0;
    }

    .section-title {
        margin-bottom: 22px;
    }

    .section-title h2 {
        font-size: 36px;
    }
}

@media (max-width: 991px) {
    .announcement-bar .container {
        align-items: flex-start !important;
        flex-direction: column;
    }

    .navbar-nav {
        align-items: flex-start !important;
        padding-top: 16px;
    }

    .hero-slide {
        height: auto;
        min-height: auto;
        padding: 58px 0 104px;
    }

    .research-visual {
        margin-left: 0;
    }

    .quick-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .journal-layout-grid,
    .journal-hero-grid,
    .journal-grid,
    .journal-card {
        grid-template-columns: 1fr;
    }

    .catalogue-head,
    .journal-card-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .journal-sidebar {
        position: static;
    }

    .journal-hero-cover {
        max-width: 240px;
    }

    .journal-hero-cover img {
        height: 280px;
    }

    .journal-content {
        padding: 0;
    }

    .article-card {
        grid-template-columns: 38px minmax(0, 1fr);
        align-items: start;
    }

    .article-card .card-actions {
        grid-column: 2;
        justify-content: flex-start;
    }

    .editorial-grid,
    .editor-card,
    .archive-year-card,
    .archive-issue-grid,
    .article-detail-grid {
        grid-template-columns: 1fr;
    }

    .article-meta-card {
        position: static;
    }

    .editor-photo {
        width: 104px;
        height: 124px;
    }

    .journal-cover {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .journal-cover img {
        height: 260px;
    }
}

@media (max-width: 575px) {
    .brand img {
        width: 188px;
    }

    h1 {
        font-size: 34px;
    }

    .quick-links {
        grid-template-columns: 1fr;
    }

    .quick-link {
        min-height: 88px;
        padding: 20px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}
