:root {
    --sidebar-width: 256px;
    --topbar-height: 68px;
    --navy-950: #111b2e;
    --navy-900: #17243d;
    --navy-800: #223451;
    --blue-600: #2563eb;
    --blue-500: #3b82f6;
    --teal-600: #0f9f8f;
    --amber-500: #e6a02f;
    --violet-500: #7656d8;
    --green-600: #16835b;
    --red-500: #d6455d;
    --ink: #1c2638;
    --muted: #6b7689;
    --line: #dde3eb;
    --line-soft: #edf0f4;
    --canvas: #f3f5f8;
    --surface: #ffffff;
    --radius: 7px;
    --shadow: 0 2px 10px rgba(20, 31, 49, .055);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--canvas);
    color: var(--ink);
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    font-size: 15px;
    letter-spacing: 0;
}
button, input, select { font: inherit; }
a { color: inherit; text-decoration: none; }

.app-shell { min-height: 100vh; }
.app-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 1040;
    width: var(--sidebar-width);
    min-height: 100vh;
    flex-direction: column;
    background: var(--navy-950);
    color: #d9e2f0;
    border-right: 1px solid rgba(255,255,255,.06);
}
.app-brand {
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: var(--topbar-height);
    padding: 11px 18px;
    color: white;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.app-brand:hover { color: white; }
.app-brand__mark {
    display: grid;
    width: 39px;
    height: 39px;
    place-items: center;
    flex: 0 0 auto;
}
.app-brand__mark img { display: block; max-width: 39px; max-height: 39px; }
.app-brand > span:last-child { display: flex; min-width: 0; flex-direction: column; line-height: 1.15; }
.app-brand strong { font-size: 15px; font-weight: 750; }
.app-brand small { margin-top: 4px; color: #93a2ba; font-size: 10px; white-space: nowrap; }
.sidebar-label {
    padding: 23px 20px 8px;
    color: #65758d;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .11em;
    text-transform: uppercase;
}
.sidebar-nav { display: grid; gap: 3px; padding: 0 10px; }
.sidebar-nav a {
    position: relative;
    display: flex;
    min-height: 42px;
    align-items: center;
    gap: 12px;
    padding: 9px 11px;
    color: #b8c4d6;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
}
.sidebar-nav a::before {
    position: absolute;
    inset: 7px auto 7px -10px;
    width: 3px;
    background: var(--teal-600);
    content: "";
    opacity: 0;
}
.sidebar-nav a:hover { background: rgba(255,255,255,.055); color: white; }
.sidebar-nav a.is-active { background: #223553; color: white; }
.sidebar-nav a.is-active::before { opacity: 1; }
.sidebar-nav i { width: 20px; color: #8494ad; font-size: 16px; text-align: center; }
.sidebar-nav a.is-active i { color: #5ed4c7; }
.sidebar-nav em {
    margin-left: auto;
    padding: 2px 5px;
    background: rgba(255,255,255,.08);
    color: #8090a8;
    border-radius: 3px;
    font-size: 9px;
    font-style: normal;
    text-transform: uppercase;
}
.sidebar-system {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: auto 14px 0;
    padding: 12px;
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.065);
    border-radius: 6px;
}
.status-dot { width: 8px; height: 8px; flex: 0 0 auto; background: #48c78e; border-radius: 50%; box-shadow: 0 0 0 4px rgba(72,199,142,.12); }
.sidebar-system div { display: flex; flex-direction: column; }
.sidebar-system strong { color: #dfe7f3; font-size: 12px; }
.sidebar-system small { margin-top: 2px; color: #76869d; font-size: 10px; }
.sidebar-university {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 48px;
    margin: 8px 14px 14px;
    padding: 0 12px;
    color: #8393aa;
    font-size: 12px;
}
.sidebar-university:hover { color: white; }
.sidebar-credits {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin: -2px 13px 13px;
    padding-top: 11px;
    border-top: 1px solid rgba(255,255,255,.08);
    color: #8193ad;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}
.sidebar-credits > span { display: flex; align-items: center; gap: 5px; }
.sidebar-credits > span i { color: #5ed4c7; font-size: 10px; }
.sidebar-credits__logo {
    display: flex;
    width: 100%;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    background: #f8fafc;
    border: 1px solid rgba(255,255,255,.8);
    border-radius: 8px;
    box-shadow: 0 5px 14px rgba(4,13,27,.18);
}
.sidebar-credits__logo img {
    width: 92px;
    max-height: 30px;
    object-fit: contain;
}

.collaboration-panel { overflow: hidden; }
.network-controls { display: flex; gap: 5px; }
.network-controls button { display: grid; width: 32px; height: 32px; place-items: center; background: #f4f7fb; color: #47617f; border: 1px solid #dce5ef; border-radius: 7px; }
.network-controls button:hover { background: #eaf2ff; color: var(--blue-600); }
.collaboration-network { position: relative; min-height: 660px; overflow: hidden; background: radial-gradient(circle at center, #fff 0, #f8fbff 55%, #f2f6fa 100%); border-top: 1px solid #e7edf4; border-bottom: 1px solid #e7edf4; cursor: grab; }
.collaboration-network:active { cursor: grabbing; }
.collaboration-network svg { display: block; width: 100%; height: 660px; touch-action: none; }
.network-edge { stroke: #9fc2d8; stroke-opacity: .62; transition: stroke-opacity .2s; }
.network-node { will-change: transform; }
.network-node.is-center { cursor: move; }
.network-node__circle { fill: #fff; stroke: #6fb6bc; stroke-width: 3; filter: drop-shadow(0 4px 5px rgba(20,48,72,.22)); }
.network-node.is-center .network-node__circle { stroke: #2563eb; stroke-width: 5; }
.network-node.is-external .network-node__circle { fill: #e8f5f5; stroke: #83c9c7; }
.network-node:not(.is-center) { cursor: grab; }
.network-node:not(.is-center):active { cursor: grabbing; }
.network-node.is-clickable:hover .network-node__circle { stroke: #2563eb; stroke-width: 5; }
.network-node__initials { fill: #327c84; font-size: 14px; font-weight: 800; pointer-events: none; }
.network-node__label { fill: #23344a; font-size: 10px; font-weight: 750; paint-order: stroke; stroke: #fff; stroke-width: 3px; stroke-linejoin: round; pointer-events: none; }
.network-node__count { fill: #718198; font-size: 8px; paint-order: stroke; stroke: #fff; stroke-width: 3px; pointer-events: none; }
.collaboration-legend { display: flex; flex-wrap: wrap; gap: 16px; padding: 12px 16px; color: #718198; font-size: 10px; }
.collaboration-legend span { display: flex; align-items: center; gap: 6px; }
.collaboration-legend i { width: 9px; height: 9px; border: 2px solid #6fb6bc; border-radius: 50%; }
.collaboration-legend i.is-internal { border-color: #2563eb; }
@media (max-width: 767.98px) { .collaboration-network, .collaboration-network svg { min-height: 500px; height: 500px; }.collaboration-panel .panel-header { align-items: flex-start; }.collaboration-legend { gap: 8px 14px; } }

.app-main { min-height: 100vh; margin-left: var(--sidebar-width); }
.app-topbar {
    position: sticky;
    top: 0;
    z-index: 1030;
    display: flex;
    height: var(--topbar-height);
    align-items: center;
    justify-content: space-between;
    padding: 0 26px;
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(10px);
}
.global-search-trigger {
    display: flex;
    width: min(430px, 40vw);
    height: 38px;
    align-items: center;
    gap: 10px;
    padding: 0 12px;
    background: #f5f7fa;
    color: #788396;
    border: 1px solid #e1e6ed;
    border-radius: 5px;
    text-align: left;
}
.global-search-trigger:hover { background: white; border-color: #bfc8d5; }
.global-search-trigger span { overflow: hidden; flex: 1; font-size: 13px; text-overflow: ellipsis; white-space: nowrap; }
.global-search-trigger kbd { padding: 2px 7px; background: white; color: #8490a1; border: 1px solid #d7dde6; border-radius: 4px; box-shadow: none; font-size: 10px; }
.topbar-actions { display: flex; align-items: center; gap: 12px; }
.icon-button {
    display: inline-grid;
    width: 38px;
    height: 38px;
    place-items: center;
    padding: 0;
    background: transparent;
    color: #596578;
    border: 1px solid #dce2e9;
    border-radius: 5px;
    font-size: 17px;
}
.icon-button:hover { background: #f4f6f9; color: var(--ink); }
.notification-dot { position: absolute; top: 7px; right: 8px; width: 6px; height: 6px; background: var(--red-500); border: 1px solid white; border-radius: 50%; }
.topbar-divider { width: 1px; height: 28px; background: var(--line); }
.institution-chip { display: flex; align-items: center; gap: 9px; }
.institution-chip > span { display: grid; width: 34px; height: 34px; place-items: center; background: var(--navy-900); color: white; border-radius: 5px; font-size: 10px; font-weight: 800; }
.institution-chip div { display: flex; flex-direction: column; }
.institution-chip strong { font-size: 12px; }
.institution-chip small { color: var(--muted); font-size: 10px; }
.system-dropdown { width: 300px; padding: 16px; border-color: var(--line); box-shadow: 0 12px 30px rgba(22,32,49,.12); }
.system-dropdown h6 { margin-bottom: 12px; font-size: 12px; font-weight: 750; }
.system-dropdown p { display: flex; align-items: flex-start; gap: 9px; margin: 0; padding: 9px 0; color: #5d687a; border-top: 1px solid var(--line-soft); font-size: 11px; line-height: 1.4; }
.system-dropdown p > i { margin-top: 2px; font-size: 13px; }
.system-dropdown p span { display: grid; gap: 2px; }
.system-dropdown p strong { color: #354257; font-size: 11px; }
.system-dropdown p small { color: #8390a1; font-size: 9px; }

.content-area { min-height: calc(100vh - var(--topbar-height)); padding: 22px 26px 30px; }
.page-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 18px; }
.page-heading > div:first-child { min-width: 0; }
.page-heading .breadcrumb {
    display: flex;
    width: fit-content;
    max-width: 100%;
    align-items: center;
    gap: 3px;
    margin: 0 0 10px;
    padding: 5px 8px;
    overflow-x: auto;
    background: #eef2f6;
    border: 1px solid #e0e5eb;
    border-radius: 4px;
    scrollbar-width: thin;
    white-space: nowrap;
}
.page-heading .breadcrumb::-webkit-scrollbar { height: 3px; }
.page-heading .breadcrumb::-webkit-scrollbar-thumb { background: #c0c8d3; border-radius: 3px; }
.page-heading .breadcrumb-item {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    color: #7d8999;
    font-size: 10px;
    font-weight: 650;
}
.page-heading .breadcrumb-item + .breadcrumb-item::before {
    padding: 0 5px 0 2px;
    color: #a0a9b5;
    content: "›";
    font-size: 12px;
    font-weight: 500;
}
.page-heading .breadcrumb-item a { color: #52627a; }
.page-heading .breadcrumb-item a:hover { color: var(--blue-600); }
.page-heading .breadcrumb-item.active {
    max-width: min(420px, 52vw);
    overflow: hidden;
    color: #2d3b50;
    text-overflow: ellipsis;
}
.page-heading .breadcrumb-item.active[aria-current="page"]::after {
    width: 5px;
    height: 5px;
    margin-left: 6px;
    background: var(--teal-600);
    border-radius: 50%;
    content: "";
}
.page-heading h1 { margin: 0; color: #1a2638; font-size: clamp(22px, 2vw, 28px); font-weight: 750; line-height: 1.15; }
.page-heading p { margin: 6px 0 0; color: var(--muted); font-size: 13px; }
.record-id-badge { display: inline-flex; align-items: center; gap: 6px; margin-top: 8px; padding: 5px 8px; background: #e8eef8; color: #526784; border: 1px solid #cbd8ea; border-radius: 5px; font-size: 9px; font-weight: 700; }
.record-id-badge i { color: var(--blue-600); }
.record-id-badge strong { padding-left: 6px; color: #173f78; border-left: 1px solid #bdcde3; font-size: 10px; font-weight: 800; }
.page-actions { display: flex; align-items: center; gap: 9px; }
.page-actions .btn { height: 36px; font-size: 12px; font-weight: 650; }
.update-chip { display: inline-flex; align-items: center; gap: 6px; padding: 7px 9px; background: #e8eef8; color: #405a82; border: 1px solid #cbd8ea; border-radius: 5px; font-size: 11px; font-weight: 700; white-space: nowrap; }
.btn-primary { background-color: var(--blue-600); border-color: var(--blue-600); }
.btn-outline-secondary { color: #586476; border-color: #cfd6df; }
.btn-outline-secondary:hover, .btn-outline-secondary.is-active, .btn-outline-secondary.active { background: var(--navy-900); border-color: var(--navy-900); color: white; }
.btn-link { color: var(--blue-600); text-decoration: none; }

.filter-bar {
    display: flex;
    align-items: flex-end;
    gap: 14px;
    margin-bottom: 16px;
    padding: 12px 14px;
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.filter-bar__title { display: flex; align-items: center; align-self: center; gap: 8px; min-width: 130px; color: #4d596b; font-size: 12px; font-weight: 700; }
.filter-bar__title i { color: var(--blue-600); }
.filter-bar label { display: grid; min-width: 145px; gap: 5px; }
.filter-bar label > span { color: #7c8798; font-size: 10px; font-weight: 700; text-transform: uppercase; }
.filter-bar .form-select { min-height: 32px; color: #3d485a; border-color: #d8dee7; font-size: 11px; }

.kpi-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 12px; margin-bottom: 16px; }
.kpi-card {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 108px;
    align-items: center;
    gap: 11px;
    padding: 15px 13px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.kpi-card::after { position: absolute; inset: auto 0 0; height: 2px; background: #dfe5ec; content: ""; }
.kpi-card__icon { display: grid; width: 37px; height: 37px; place-items: center; flex: 0 0 auto; background: #eaf1ff; color: var(--blue-600); border-radius: 6px; font-size: 16px; }
.kpi-card__icon.is-teal { background: #e4f7f4; color: var(--teal-600); }
.kpi-card__icon.is-amber { background: #fff3dc; color: #c98112; }
.kpi-card__icon.is-violet { background: #f0ebff; color: var(--violet-500); }
.kpi-card__icon.is-green { background: #e6f5ee; color: var(--green-600); }
.kpi-card__icon.is-blue { background: #e8f3fb; color: #2477a8; }
.kpi-card__body { display: flex; min-width: 0; flex-direction: column; }
.kpi-card__body > span { overflow: hidden; color: #667286; font-size: 10px; font-weight: 700; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.kpi-card__body strong { margin: 2px 0 1px; color: #1c293d; font-size: 24px; font-weight: 750; line-height: 1.1; }
.kpi-card__body small { overflow: hidden; color: #8d97a5; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.kpi-card__menu { position: absolute; top: 7px; right: 4px; padding: 4px; background: none; color: #a4acb8; border: 0; font-size: 12px; }

.dashboard-grid { display: grid; gap: 12px; margin-bottom: 12px; }
.dashboard-grid--analytics { grid-template-columns: minmax(0, 2.1fr) minmax(270px, .9fr) minmax(255px, .75fr); }
.dashboard-grid--staff { grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); }
.staff-classification { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px; padding: 12px 13px 0; }
.staff-classification > div { display: grid; grid-template-columns: 27px minmax(0, 1fr) auto; align-items: center; gap: 8px; padding: 9px; background: #f7f9fc; border: 1px solid var(--line-soft); border-radius: 5px; }
.staff-classification i { display: grid; width: 27px; height: 27px; place-items: center; background: #e8eef8; color: var(--blue-600); border-radius: 4px; font-size: 11px; }
.staff-classification span, .staff-classification small { display: block; }
.staff-classification span { color: #4d5b70; font-size: 8px; font-weight: 750; }
.staff-classification small { margin-top: 2px; color: #929ba8; font-size: 6px; font-weight: 500; }
.staff-classification strong { color: #263449; font-size: 16px; }
.dashboard-grid--tables, .dashboard-grid--lower { grid-template-columns: minmax(0, 2.15fr) minmax(300px, .85fr); }
.dashboard-grid--single { grid-template-columns: minmax(0, 1fr); }
.panel {
    min-width: 0;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.panel-header {
    display: flex;
    min-height: 61px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 13px 16px;
    border-bottom: 1px solid var(--line-soft);
}
.panel-header h2 { margin: 2px 0 0; color: #253146; font-size: 15px; font-weight: 750; }
.section-kicker { display: block; color: #8993a2; font-size: 10px; font-weight: 750; letter-spacing: .075em; text-transform: uppercase; }
.source-badge { padding: 5px 8px; background: #e7efff; color: #2457a6; border: 1px solid #c7d8f6; border-radius: 5px; box-shadow: 0 2px 5px rgba(37,99,235,.06); font-size: 9px; font-weight: 800; text-transform: uppercase; }
.badge.meta-badge, .badge.text-bg-light.border { padding: 5px 8px; background: #e8eef8 !important; color: #405a82 !important; border: 1px solid #cbd8ea !important; font-weight: 750; }
.badge.text-bg-primary { padding: 5px 8px; background: #315fbd !important; color: white !important; border: 1px solid #2853aa; font-weight: 800; }
.badge.count-badge { padding: 6px 9px; background: #e8f3fb; color: #176b9b; border: 1px solid #c2dfef; font-weight: 800; }
.scope-badge { padding: 5px 8px; border: 1px solid transparent; font-weight: 750; letter-spacing: .01em; }
.scope-badge.is-international { background: #ede9fe; color: #5b3db5; border-color: #d8cefb; }
.scope-badge.is-national { background: #e0f4ec; color: #14745c; border-color: #bce5d6; }
.panel-header__icon { color: #77b79c; font-size: 18px; }
.panel-body { padding: 10px 14px 12px; }
.panel-footer { 
    display: flex;
    min-height: 42px;
    align-items: center;
    justify-content: space-between;
    padding: 8px 15px;
    color: #8791a0;
    border-top: 1px solid var(--line-soft);
    font-size: 10px;
}
.panel-footer .btn { padding: 0; font-size: 11px; }
.panel-tools { display: flex; align-items: center; gap: 7px; }
.table-search { width: 210px; }
.table-search .input-group-text { background: #f6f8fa; color: #8791a0; border-color: #dce1e8; }
.table-search .form-control { border-color: #dce1e8; font-size: 11px; }
.panel-tabs { gap: 2px; padding: 2px; background: #f1f4f7; border-radius: 5px; }
.panel-tabs .nav-link { padding: 5px 9px; color: #697588; border-radius: 4px; font-size: 10px; font-weight: 700; }
.panel-tabs .nav-link.active { background: white; color: #243146; box-shadow: 0 1px 3px rgba(20,30,45,.1); }

.chart { width: 100%; }
.chart--trend { height: 270px; }
.chart--donut { height: 190px; }
.chart--radial { height: 210px; }
.chart--units { height: 285px; }
.chart--profile { height: 295px; }
.output-chart-layout { display: grid; min-height: 275px; align-content: center; }
.chart-legend { display: grid; gap: 8px; padding: 0 10px 6px; }
.chart-legend > div { display: grid; grid-template-columns: 8px 1fr auto; align-items: center; gap: 7px; color: #687487; font-size: 9px; }
.chart-legend strong { color: #2d394b; font-size: 10px; }
.legend-dot { width: 7px; height: 7px; background: var(--blue-600); border-radius: 2px; }
.legend-dot.is-teal { background: var(--teal-600); }
.legend-dot.is-amber { background: var(--amber-500); }
.legend-dot.is-violet { background: var(--violet-500); }
.panel-note { margin: -5px 8px 9px; color: #8993a1; font-size: 10px; line-height: 1.5; text-align: center; }

.data-table { color: #3d485a; font-size: 11px; }
.data-table thead th { padding: 10px 13px; background: #f7f8fa; color: #7a8596; border-color: var(--line-soft); font-size: 9px; font-weight: 750; letter-spacing: .04em; text-transform: uppercase; white-space: nowrap; }
.data-table tbody td { padding: 11px 13px; border-color: var(--line-soft); vertical-align: middle; }
.data-table tbody tr:hover td { background: #fafbfd; }
.data-table td:nth-child(2) { min-width: 300px; }
.table-title { display: -webkit-box; overflow: hidden; color: #29364a; font-size: 11px; line-height: 1.45; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.publication-table .table-title, #latestPublications .table-title, .directory-table .table-title { color: #17243d; font-size: 12px; font-weight: 800; line-height: 1.5; }
.publication-summary { display: grid; grid-template-columns: 35px minmax(0, 1fr); align-items: center; gap: 9px; }
.publication-summary__info { min-width: 0; }
.publication-summary__info small { display: block; }
.data-table small, .data-table em { display: block; overflow: hidden; max-width: 620px; margin-top: 3px; color: #8490a1; font-size: 9px; font-style: normal; text-overflow: ellipsis; white-space: nowrap; }
.data-table .venue-badge { display: inline-flex; max-width: 100%; align-items: center; gap: 5px; margin-top: 6px; padding: 4px 7px; background: #fff1d8; color: #98620d; border: 1px solid #ecd39f; border-radius: 4px; font-size: 8px; font-weight: 700; }
.venue-badge i, .event-badge i, .book-badge i, .publisher-badge i { flex: 0 0 auto; }
.data-table em { color: #66758b; }
.year-badge { display: inline-grid; min-width: 40px; min-height: 27px; place-items: center; background: #e3edff; color: #174ea6; border: 1px solid #bfd2f5; border-radius: 5px; box-shadow: 0 2px 5px rgba(37,99,235,.08); font-size: 10px; font-weight: 800; }
.btn-icon { display: inline-grid; width: 29px; height: 29px; place-items: center; padding: 0; color: #5e6d82; border: 1px solid #d7dde5; border-radius: 4px; }
.btn-icon:hover { background: var(--navy-900); color: white; border-color: var(--navy-900); }

.researcher-list { display: grid; }
.researcher-list > a { display: grid; grid-template-columns: 18px 35px minmax(0, 1fr) auto; min-height: 57px; align-items: center; gap: 9px; padding: 8px 13px; border-bottom: 1px solid var(--line-soft); }
.researcher-list > a:hover { background: #f8fafc; }
.rank { color: #99a2af; font-size: 9px; font-weight: 750; text-align: center; }
.avatar { position: relative; display: grid; width: 34px; height: 34px; overflow: hidden; place-items: center; background: #e9edf2; color: #98a3b2; border-radius: 5px; }
.avatar img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; }
.avatar i { position: absolute; font-size: 15px; }
.avatar--initials { background: #e9f1ff; color: #4168a8; font-size: 10px; font-weight: 800; }
.researcher-list__info { min-width: 0; }
.researcher-list__info strong, .researcher-list__info small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.researcher-list__info strong { color: #2c394c; font-size: 10px; }
.researcher-list__info small { margin-top: 3px; color: #8a94a3; font-size: 8px; }
.researcher-score { text-align: right; }
.researcher-score strong, .researcher-score small { display: block; }
.researcher-score strong { color: #223047; font-size: 12px; }
.researcher-score small { color: #9099a7; font-size: 7px; text-transform: uppercase; }

.source-list { display: grid; padding: 5px 13px 10px; }
.source-list > div { display: grid; grid-template-columns: 33px minmax(0, 1fr) auto; min-height: 52px; align-items: center; gap: 10px; border-bottom: 1px solid var(--line-soft); }
.source-list > div:last-child { border: 0; }
.source-logo.is-okü { background: #1f4d87; color: white; }
.source-overview-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-bottom: 12px; }
.source-overview-card { position: relative; padding: 16px; }
.source-overview-card.is-live::before { position: absolute; inset: 12px auto 12px 0; width: 4px; background: linear-gradient(180deg, var(--blue-600), var(--teal-600)); border-radius: 0 4px 4px 0; content: ""; }
.source-overview-card__head { display: grid; grid-template-columns: 38px minmax(0, 1fr) auto; align-items: center; gap: 11px; }
.source-overview-card__head .source-logo { width: 38px; height: 38px; }
.source-overview-card__head h2 { margin: 2px 0 0; color: #223047; font-size: 15px; font-weight: 800; }
.source-overview-card > p { min-height: 38px; margin: 13px 0; color: #6d798b; font-size: 9px; line-height: 1.6; }
.source-capabilities { display: flex; flex-wrap: wrap; gap: 5px; }
.source-capabilities span { padding: 5px 7px; background: #e8eef8; color: #405a82; border: 1px solid #cbd8ea; border-radius: 4px; font-size: 7px; font-weight: 750; }
.source-coverage { display: flex; align-items: baseline; gap: 8px; padding-top: 10px; border-top: 1px solid var(--line-soft); }
.source-coverage strong { color: #173f78; font-size: 20px; }
.source-coverage span { color: #7d8999; font-size: 8px; }
.source-inventory-panel, .source-notes-panel { margin-bottom: 12px; }
.source-inventory-grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 8px; padding: 13px; }
.source-inventory-grid article { padding: 12px; background: #f7f9fc; border: 1px solid var(--line-soft); border-radius: 5px; }
.source-inventory-grid span, .source-inventory-grid strong, .source-inventory-grid small { display: block; }
.source-inventory-grid span { color: #687589; font-size: 8px; font-weight: 750; text-transform: uppercase; }
.source-inventory-grid strong { margin-top: 5px; color: #17243d; font-size: 18px; }
.source-inventory-grid small { margin-top: 2px; color: #929ba8; font-size: 7px; }
.source-notes { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.source-logo { display: grid; width: 30px; height: 30px; place-items: center; background: #eef2f7; color: #46546a; border-radius: 5px; font-size: 8px; font-weight: 800; }
.source-logo.is-yok { background: #fce8eb; color: #ae263c; }
.source-logo.is-scopus { background: #fff0df; color: #cb6e16; }
.source-logo.is-wos { background: #e7efff; color: #2b5fb2; }
.source-logo.is-orcid { background: #e9f5df; color: #5e8b2c; }
.source-logo.is-tr { background: #e4f4f3; color: #14786f; }
.source-list strong, .source-list small { display: block; }
.source-list strong { color: #314055; font-size: 10px; }
.source-list small { margin-top: 2px; color: #8a94a3; font-size: 8px; }
.status-label { display: inline-flex; align-items: center; gap: 5px; width: fit-content; padding: 4px 7px; background: #e8eef8; color: #405a82; border: 1px solid #cbd8ea; border-radius: 999px; font-size: 8px; font-weight: 750; }
.status-label i { width: 6px; height: 6px; background: #6685b5; border-radius: 50%; }
.status-label.is-live { background: #e4f5ed; color: var(--green-600); border-color: #bfe4d2; }
.status-label.is-live i { background: #38ad7c; }
.status-label.is-partial { background: #fff2d9; color: #a96c0d; border-color: #efd9ad; }
.status-label.is-partial i { background: var(--amber-500); }

.project-table { display: grid; }
.project-table article { display: grid; grid-template-columns: 110px minmax(250px, 1fr) 105px 105px 30px; min-height: 68px; align-items: center; gap: 13px; padding: 10px 15px; border-bottom: 1px solid var(--line-soft); }
.project-table article:last-child { border: 0; }
.project-table article:hover { background: #fafbfd; }
.project-table article > div { min-width: 0; }
.project-table article strong, .project-table article small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.project-table article strong { color: #2f3d51; font-size: 10px; }
.project-table article small, .project-table article > span:not(.project-status) { margin-top: 4px; color: #8792a2; font-size: 8px; }
.project-status { display: flex; width: fit-content; align-items: center; gap: 6px; padding: 4px 7px; background: #e4f5ed; color: var(--green-600); border: 1px solid #bfe4d2; border-radius: 999px; font-size: 8px; font-weight: 750; }
.project-status i { width: 6px; height: 6px; background: #39ac7c; border-radius: 50%; }
.profile-project__main > a { display: block; color: #17243d; }
.profile-project__main > a:hover { color: var(--blue-600); }
.profile-project__main > span { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 7px; }
.project-type-badge, .project-role-badge { display: inline-flex; width: fit-content; padding: 4px 7px; border-radius: 4px; font-size: 7px; font-weight: 750; }
.project-type-badge { background: #ede9fe; color: #5b3db5; border: 1px solid #d8cefb; }
.project-role-badge { background: #e8eef8; color: #405a82; border: 1px solid #cbd8ea; }
.profile-project__date { display: inline-flex; align-items: center; gap: 5px; }
.profile-project__date i { color: var(--blue-600); }
.topic-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 8px; }
.topic-list button { display: flex; min-width: 0; min-height: 40px; align-items: center; justify-content: space-between; gap: 8px; padding: 8px; background: transparent; color: #536074; border: 0; border-bottom: 1px solid var(--line-soft); text-align: left; }
.topic-list button:hover { background: #f5f8fb; color: var(--blue-600); }
.topic-list button span { overflow: hidden; font-size: 9px; text-overflow: ellipsis; white-space: nowrap; }
.topic-list button strong { color: #818b9a; font-size: 8px; }

.profile-command {
    position: relative;
    display: grid;
    grid-template-columns: minmax(360px, 1.4fr) minmax(420px, 1fr) auto;
    align-items: center;
    gap: 22px;
    margin-bottom: 13px;
    padding: 18px;
    overflow: hidden;
    background: linear-gradient(112deg, #ffffff 0%, #fbfdff 54%, #f3f7fd 100%);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(30,48,76,.07);
}
.profile-command::before { position: absolute; inset: 14px auto 14px 0; width: 4px; background: linear-gradient(180deg, var(--blue-600), var(--teal-600)); border-radius: 0 4px 4px 0; content: ""; }
.profile-command__identity { display: flex; min-width: 0; align-items: center; gap: 15px; }
.profile-photo { position: relative; display: grid; width: 78px; height: 88px; overflow: hidden; place-items: center; flex: 0 0 auto; background: #e8edf3; color: #9aa5b4; border: 2px solid white; border-radius: 7px; box-shadow: 0 0 0 1px #cbd8e8, 0 6px 16px rgba(32,54,86,.12); }
.profile-photo img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; }
.profile-photo > i { position: absolute; font-size: 28px; }
.profile-title { color: var(--blue-600); font-size: 9px; font-weight: 800; text-transform: uppercase; }
.profile-command__identity h2 { margin: 3px 0 5px; color: #1c293d; font-size: 23px; font-weight: 750; }
.profile-command__identity p { margin: 0; color: #4e5c70; font-size: 10px; font-weight: 650; }
.profile-command__identity p i { margin-right: 4px; color: #8994a5; }
.profile-command__identity small { display: block; margin-top: 4px; color: #8994a4; font-size: 9px; }
.profile-command__sources { padding-left: 20px; border-left: 1px solid #dce5f0; }
.profile-command__sources > div { display: flex; gap: 7px; margin-top: 7px; }
.identity-button { display: grid; grid-template-columns: 27px minmax(0, 1fr) 12px; min-width: 125px; align-items: center; gap: 6px; padding: 7px 8px; background: rgba(255,255,255,.82); border: 1px solid #d6e0ed; border-radius: 5px; box-shadow: 0 2px 6px rgba(35,54,82,.035); }
.identity-button:hover { background: white; border-color: #b9c3d0; box-shadow: 0 3px 9px rgba(20,30,45,.06); }
.identity-button > strong { display: grid; width: 25px; height: 25px; place-items: center; color: white; background: #56647a; border-radius: 4px; font-size: 7px; }
.identity-button.is-orcid > strong { background: #85b737; }
.identity-button.is-scopus > strong { background: #e47d23; }
.identity-button.is-yok > strong { background: #bc3044; }
.identity-button.is-network > strong { background: #167f88; }
.identity-button span { overflow: hidden; color: #344156; font-size: 8px; font-weight: 750; white-space: nowrap; }
.identity-button small { display: block; overflow: hidden; max-width: 92px; margin-top: 2px; color: #929ba8; font-size: 7px; font-weight: 500; text-overflow: ellipsis; }
.identity-button > i { color: #9aa3b0; font-size: 9px; }
.profile-command__status { display: flex; align-items: flex-end; flex-direction: column; gap: 5px; padding-left: 20px; border-left: 1px solid #dce5f0; }
.verified-badge { display: inline-flex; align-items: center; gap: 5px; padding: 5px 7px; background: #e4f5ed; color: var(--green-600); border: 1px solid #bfe4d2; border-radius: 4px; font-size: 8px; font-weight: 750; white-space: nowrap; }
.profile-command__status small { color: #929ba8; font-size: 8px; }
.kpi-grid--profile { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.kpi-grid--profile .kpi-card { min-height: 92px; }
.kpi-grid--profile .kpi-card__body strong { font-size: 21px; }
.kpi-grid--four { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.directory-layout {
    display: grid;
    grid-template-columns: minmax(0, 2.3fr) minmax(280px, .7fr);
    gap: 12px;
}
.directory-main, .directory-aside { min-width: 0; }
.directory-aside { display: grid; align-content: start; gap: 12px; }
.directory-filter {
    display: grid;
    grid-template-columns: minmax(260px, 1.5fr) minmax(135px, .55fr) minmax(170px, .7fr) auto;
    align-items: end;
    gap: 10px;
    padding: 13px 15px;
    background: #f8fafc;
    border-bottom: 1px solid var(--line-soft);
}
.directory-filter label { display: grid; min-width: 0; gap: 5px; }
.directory-filter label > span {
    color: #758194;
    font-size: 8px;
    font-weight: 750;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.directory-filter .form-control, .directory-filter .form-select, .directory-filter .input-group-text {
    min-height: 35px;
    border-color: #d8dee7;
    font-size: 10px;
}
.directory-filter .input-group-text { background: white; color: #8390a2; }
.directory-filter .btn { min-height: 35px; font-size: 10px; font-weight: 700; white-space: nowrap; }
.result-count {
    display: inline-flex;
    align-items: center;
    min-height: 25px;
    padding: 0 8px;
    background: #edf2f8;
    color: #5f6d82;
    border-radius: 4px;
    font-size: 8px;
    font-weight: 750;
}
.directory-table td:nth-child(2) { min-width: 390px; }
.directory-pagination {
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 9px 15px;
    color: #7b8798;
    border-top: 1px solid var(--line-soft);
    font-size: 9px;
}
.directory-pagination .btn { font-size: 9px; }
.academic-directory { margin-bottom: 12px; }
.academic-directory__filter { grid-template-columns: repeat(12, minmax(0, 1fr)); }
.academic-directory__filter > label { grid-column: span 4; }
.academic-directory__filter > label:nth-of-type(4) { grid-column: span 3; }
.academic-directory__filter > .directory-filter__expertise { grid-column: span 6; }
.academic-directory__filter > .btn { grid-column: span 3; }
.academic-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 9px; padding: 13px; }
.academic-card { display: grid; grid-template-columns: 58px minmax(0, 1fr) auto; min-height: 132px; align-items: start; gap: 11px; padding: 12px; background: #fff; border: 1px solid var(--line-soft); border-radius: 6px; box-shadow: 0 3px 12px rgba(32,45,66,.035); transition: border-color .2s, box-shadow .2s, transform .2s; }
.academic-card:hover { border-color: #b9c8db; box-shadow: 0 8px 22px rgba(32,45,66,.09); transform: translateY(-1px); }
.academic-card__photo { position: relative; display: grid; width: 56px; height: 66px; overflow: hidden; place-items: center; background: #e9edf2; color: #99a4b2; border-radius: 5px; }
.academic-card__photo img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; }
.academic-card__photo > i { position: absolute; font-size: 21px; }
.academic-card__content { display: block; min-width: 0; }
.academic-card__content > small, .academic-card__content > strong, .academic-card__content > em, .academic-card__content > span:not(.academic-card__topics) { display: block; }
.academic-card__content > small { color: var(--blue-600); font-size: 8px; font-weight: 800; text-transform: uppercase; }
.academic-card__content > strong { margin-top: 3px; overflow: hidden; color: #263449; font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.academic-card__content > em { margin-top: 6px; color: #647186; font-size: 8px; font-style: normal; font-weight: 650; line-height: 1.4; }
.academic-card__content > span:not(.academic-card__topics) { margin-top: 2px; color: #929ba8; font-size: 7px; line-height: 1.4; }
.academic-card__topics { display: flex; flex-wrap: wrap; gap: 3px; margin-top: 8px; }
.academic-card__topics b { padding: 3px 5px; background: #f1f5f8; color: #69768a; border-radius: 3px; font-size: 6px; font-weight: 650; }
.academic-card__identities { display: flex; align-items: center; flex-direction: column; gap: 5px; color: #9aa4b1; }
.academic-card__identities i { display: grid; min-width: 19px; height: 19px; place-items: center; border-radius: 50%; font-size: 7px; font-style: normal; font-weight: 800; }
.academic-card__identities .is-orcid { background: #a6ce39; color: white; }
.academic-card__identities .is-scopus { background: #ef7b24; color: white; }
.academic-card__identities .bi-chevron-right { margin-top: auto; }
.academic-directory__empty { grid-column: 1 / -1; }
.chart--directory { height: 290px; }
.chart--units-large { height: 460px; }
.unit-inventory-summary { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 9px; margin-bottom: 12px; }
.unit-inventory-summary article { display: flex; min-height: 66px; align-items: center; gap: 11px; padding: 11px 13px; background: #fff; border: 1px solid var(--line-soft); border-radius: 6px; box-shadow: 0 3px 12px rgba(32,45,66,.035); }
.unit-inventory-summary article > i { display: grid; width: 38px; height: 38px; flex: 0 0 38px; place-items: center; border-radius: 5px; font-size: 15px; }
.unit-inventory-summary .is-thesis { background: #e2f5f2; color: #12766d; }
.unit-inventory-summary .is-patent { background: #fff1d8; color: #98620d; }
.unit-inventory-summary .is-topic { background: #e8eef8; color: #405a82; }
.unit-inventory-summary span, .unit-inventory-summary small, .unit-inventory-summary strong { display: block; }
.unit-inventory-summary small { color: #8490a0; font-size: 8px; font-weight: 750; text-transform: uppercase; }
.unit-inventory-summary strong { margin-top: 4px; color: #2f3d52; font-size: 11px; }
.unit-research-output-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.unit-output-list { display: grid; }
.unit-output-list > a { display: grid; grid-template-columns: 30px minmax(0, 1fr) auto; min-height: 60px; align-items: center; gap: 9px; padding: 9px 13px; color: inherit; border-bottom: 1px solid var(--line-soft); }
.unit-output-list > a:last-child { border-bottom: 0; }
.unit-output-list > a:hover { background: #fafbfd; }
.unit-output-list > a > i:first-child { display: grid; width: 28px; height: 28px; place-items: center; border-radius: 4px; font-size: 11px; }
.unit-output-list > a > .is-thesis { background: #e2f5f2; color: #12766d; }
.unit-output-list > a > .is-patent { background: #fff1d8; color: #98620d; }
.unit-output-list > a > i:last-child { color: #9ba5b3; font-size: 9px; }
.unit-output-list span, .unit-output-list strong, .unit-output-list small { display: block; min-width: 0; }
.unit-output-list strong { display: -webkit-box; overflow: hidden; color: #354257; font-size: 9px; line-height: 1.45; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.unit-output-list small { margin-top: 3px; overflow: hidden; color: #8994a3; font-size: 7px; text-overflow: ellipsis; white-space: nowrap; }
.unit-output-list > .empty-inline { padding: 18px 13px; }
.recent-updates-panel { margin-top: 12px; }
.recent-update-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.recent-update-list > a { display: grid; grid-template-columns: 34px minmax(0, 1fr) auto 76px 10px; min-height: 66px; align-items: center; gap: 9px; padding: 10px 13px; color: inherit; border-right: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.recent-update-list > a:nth-child(2n) { border-right: 0; }
.recent-update-list > a:hover { background: #fafbfd; }
.recent-update-list > a > i:first-child { display: grid; width: 32px; height: 32px; place-items: center; background: #e8eef8; color: #405a82; border-radius: 5px; font-size: 12px; }
.recent-update-list > a > i.is-project { background: #ede9fe; color: #5b3db5; }
.recent-update-list > a > i.is-person { background: #e2f5f2; color: #12766d; }
.recent-update-list span, .recent-update-list strong, .recent-update-list small { display: block; min-width: 0; }
.recent-update-list strong, .recent-update-list small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.recent-update-list strong { color: #344156; font-size: 9px; }
.recent-update-list small { margin-top: 3px; color: #8b96a5; font-size: 7px; }
.recent-update-list b { padding: 4px 6px; background: #eef2f7; color: #647186; border-radius: 999px; font-size: 7px; font-weight: 750; white-space: nowrap; }
.recent-update-list time { color: #788598; font-size: 7px; text-align: right; }
.recent-update-list > a > i:last-child { color: #9ba5b3; font-size: 8px; }
.network-method-note { display: flex; align-items: flex-start; gap: 9px; margin-bottom: 12px; padding: 11px 13px; background: #edf5ff; color: #50627b; border: 1px solid #d4e4f7; border-radius: 6px; }
.network-method-note > i { margin-top: 1px; color: var(--blue-600); }
.network-method-note p { margin: 0; font-size: 9px; line-height: 1.55; }
.network-method-note strong { color: #35465e; }
.network-search { display: flex; gap: 8px; padding: 12px 13px; background: #f8fafc; border-bottom: 1px solid var(--line-soft); }
.network-search .input-group { max-width: 440px; }
.network-search .form-control, .network-search .input-group-text, .network-search .btn { min-height: 36px; font-size: 10px; }
.network-search .input-group-text { background: white; color: #8390a2; }
.research-network-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; padding: 13px; }
.research-network-card { display: grid; min-width: 0; overflow: hidden; background: white; border: 1px solid var(--line-soft); border-radius: 6px; box-shadow: 0 3px 12px rgba(32,45,66,.035); }
.research-network-card__head { display: grid; grid-template-columns: 36px minmax(0, 1fr); align-items: center; gap: 9px; min-height: 73px; padding: 11px; background: linear-gradient(135deg,#f8fbff,#f4f8fc); border-bottom: 1px solid var(--line-soft); }
.research-network-card__head > span { display: grid; width: 34px; height: 34px; place-items: center; background: #e5edfa; color: #405f91; border-radius: 5px; }
.research-network-card__head h3 { margin: 0; color: #29384d; font-size: 11px; line-height: 1.4; }
.research-network-card__head p { margin: 4px 0 0; color: #7f8b9c; font-size: 7px; }
.network-members { display: grid; padding: 5px 10px; }
.network-members > a { display: grid; grid-template-columns: 30px minmax(0, 1fr) 9px; align-items: center; gap: 8px; min-height: 48px; color: inherit; border-bottom: 1px solid var(--line-soft); }
.network-members > a:last-child { border-bottom: 0; }
.network-members > a:hover { background: #fafbfd; }
.network-member-photo { position: relative; display: grid; width: 28px; height: 32px; overflow: hidden; place-items: center; background: #e8edf3; color: #9aa5b3; border-radius: 4px; }
.network-member-photo img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; }
.network-member-photo i { position: absolute; }
.network-members span, .network-members strong, .network-members small { display: block; min-width: 0; }
.network-members strong, .network-members small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.network-members strong { color: #3a475a; font-size: 8px; }
.network-members small { margin-top: 3px; color: #8c97a6; font-size: 6px; }
.network-members > a > i { color: #9ca6b3; font-size: 8px; }
.research-network-card footer { display: flex; min-height: 42px; align-items: center; justify-content: space-between; gap: 8px; padding: 8px 11px; background: #fafbfd; border-top: 1px solid var(--line-soft); }
.research-network-card footer span { color: #8b96a5; font-size: 7px; }
.research-network-card footer a { color: var(--blue-600); font-size: 8px; font-weight: 750; }
.research-network-empty { grid-column: 1 / -1; }
.archive-method-note { display: flex; align-items: flex-start; gap: 9px; margin-bottom: 12px; padding: 11px 13px; background: #eff8f5; color: #506b64; border: 1px solid #d2e9e2; border-radius: 6px; }
.archive-method-note > i { margin-top: 1px; color: var(--teal-600); }
.archive-method-note p { margin: 0; font-size: 9px; line-height: 1.55; }
.archive-method-note strong { color: #34564d; }
.archive-filter { display: grid; grid-template-columns: minmax(260px,1.5fr) minmax(150px,.55fr) minmax(130px,.45fr) auto auto; align-items: end; gap: 9px; padding: 12px 13px; background: #f8fafc; border-bottom: 1px solid var(--line-soft); }
.archive-filter label { display: grid; min-width: 0; gap: 5px; }
.archive-filter label > span { color: #758194; font-size: 8px; font-weight: 750; letter-spacing: .04em; text-transform: uppercase; }
.archive-filter .form-control, .archive-filter .form-select, .archive-filter .input-group-text, .archive-filter .btn { min-height: 36px; font-size: 10px; }
.archive-filter .input-group-text { background: white; color: #8390a2; }
.archive-record-list { display: grid; }
.archive-record-list > article { display: grid; grid-template-columns: 42px minmax(0,1fr) auto; align-items: center; gap: 11px; min-height: 112px; padding: 13px 15px; border-bottom: 1px solid var(--line-soft); }
.archive-record-list > article:hover { background: #fafbfd; }
.archive-record__icon { display: grid; width: 40px; height: 40px; place-items: center; background: #e8eef8; color: #405a82; border: 1px solid #cbd8ea; border-radius: 5px; font-size: 14px; }
.archive-record__icon.is-conference { background: #e2f5f2; color: #12766d; border-color: #bee5df; }
.archive-record__icon.is-book { background: #fff1d8; color: #98620d; border-color: #ecd39f; }
.archive-record__body { min-width: 0; }
.archive-record__body > div { display: flex; align-items: center; gap: 5px; }
.archive-record__body h3 { margin: 7px 0 0; color: #28374c; font-size: 11px; line-height: 1.4; }
.archive-record__body p { margin: 4px 0 0; overflow: hidden; color: #677489; font-size: 8px; text-overflow: ellipsis; white-space: nowrap; }
.archive-record__body small { display: block; margin-top: 4px; overflow: hidden; color: #8b96a5; font-size: 7px; text-overflow: ellipsis; white-space: nowrap; }
.archive-record__body time { margin-left: auto; color: #758398; font-size: 8px; font-weight: 750; }
.archive-type-badge, .archive-scope-badge { padding: 4px 6px; border-radius: 999px; font-size: 7px; font-weight: 750; }
.archive-type-badge { background: #e8eef8; color: #405a82; border: 1px solid #cbd8ea; }
.archive-type-badge.is-conference { background: #e2f5f2; color: #12766d; border-color: #bee5df; }
.archive-type-badge.is-book { background: #fff1d8; color: #98620d; border-color: #ecd39f; }
.archive-scope-badge { background: #f2f4f7; color: #687589; border: 1px solid #dfe4ea; }
.archive-record__actions { display: flex; align-items: center; gap: 6px; }
.archive-record__actions .btn { font-size: 8px; font-weight: 700; white-space: nowrap; }
.sdg-method-note { display: flex; align-items: flex-start; gap: 9px; margin-bottom: 12px; padding: 11px 13px; background: #fff8e8; color: #6d6249; border: 1px solid #eee0bd; border-radius: 6px; }
.sdg-method-note > i { margin-top: 1px; color: #b98013; }
.sdg-method-note p { margin: 0; font-size: 9px; line-height: 1.55; }
.sdg-method-note strong { color: #594d34; }
.sdg-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 9px; padding: 13px; }
.sdg-card { position: relative; display: grid; grid-template-columns: 40px minmax(0,1fr) auto; min-height: 72px; align-items: center; gap: 9px; overflow: hidden; padding: 10px; color: inherit; border: 1px solid var(--line-soft); border-radius: 6px; box-shadow: 0 3px 12px rgba(32,45,66,.035); }
.sdg-card::before { position: absolute; inset: 0 auto 0 0; width: 4px; background: var(--sdg-color); content: ''; }
.sdg-card:hover, .sdg-card.is-selected { border-color: var(--sdg-color); box-shadow: 0 7px 20px rgba(32,45,66,.1); transform: translateY(-1px); }
.sdg-card > span { display: grid; width: 38px; height: 38px; place-items: center; background: var(--sdg-color); color: white; border-radius: 5px; font-size: 14px; font-weight: 850; }
.sdg-card div, .sdg-card strong, .sdg-card small { display: block; min-width: 0; }
.sdg-card strong { color: #304055; font-size: 9px; line-height: 1.35; }
.sdg-card small { margin-top: 4px; color: #8792a1; font-size: 7px; }
.sdg-card > b { display: grid; min-width: 28px; height: 24px; place-items: center; padding: 0 5px; background: color-mix(in srgb,var(--sdg-color) 12%,white); color: var(--sdg-color); border-radius: 4px; font-size: 8px; }
.sdg-selected { margin-top: 12px; scroll-margin-top: calc(var(--topbar-height) + 18px); }
.sdg-record-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); }
.sdg-record-list > a { display: grid; grid-template-columns: 30px minmax(0,1fr) auto 36px 9px; min-height: 62px; align-items: center; gap: 8px; padding: 9px 12px; color: inherit; border-right: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.sdg-record-list > a:nth-child(2n) { border-right: 0; }
.sdg-record-list > a:hover { background: #fafbfd; }
.sdg-record-list > a > i:first-child { display: grid; width: 28px; height: 28px; place-items: center; background: #e8eef8; color: #405a82; border-radius: 4px; }
.sdg-record-list span, .sdg-record-list strong, .sdg-record-list small { display: block; min-width: 0; }
.sdg-record-list strong, .sdg-record-list small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sdg-record-list strong { color: #354257; font-size: 8px; }
.sdg-record-list small { margin-top: 3px; color: #8994a3; font-size: 7px; }
.sdg-record-list b { padding: 4px 6px; background: #eef2f7; color: #647186; border-radius: 999px; font-size: 7px; }
.sdg-record-list time { color: #7b8798; font-size: 7px; text-align: right; }
.sdg-record-list > a > i:last-child { color: #9ba5b3; font-size: 8px; }
.info-list { display: grid; padding: 8px 14px 14px; }
.info-list > div {
    display: grid;
    grid-template-columns: 17px 1fr;
    gap: 7px;
    padding: 10px 1px;
    color: #657286;
    border-bottom: 1px solid var(--line-soft);
    font-size: 9px;
    line-height: 1.5;
}
.info-list > div:last-child { border: 0; }
.info-list i { color: #41a57e; }
.info-list .bi-info-circle-fill { color: var(--blue-600); }

.project-directory { display: grid; }
.project-directory > article {
    display: grid;
    grid-template-columns: 115px minmax(0, 1fr) 150px;
    gap: 15px;
    padding: 16px;
    border-bottom: 1px solid var(--line-soft);
}
.project-directory > article:hover { background: #fafbfd; }
.project-directory__status { display: flex; align-items: flex-start; flex-direction: column; gap: 7px; }
.project-directory__status small {
    display: block;
    color: #8993a2;
    font-size: 8px;
    line-height: 1.4;
}
.project-directory__body { min-width: 0; }
.project-directory__body h3 {
    margin: 0;
    color: #2b394d;
    font-size: 11px;
    font-weight: 750;
    line-height: 1.45;
}
.project-directory__body p {
    display: -webkit-box;
    overflow: hidden;
    margin: 6px 0 0;
    color: #758194;
    font-size: 9px;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.project-directory__meta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 9px; }
.project-directory__meta span {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    gap: 5px;
    color: #7f8a9a;
    font-size: 8px;
}
.project-directory__meta i { color: #6e7d91; }
.project-directory__side { display: flex; align-items: flex-end; flex-direction: column; gap: 7px; text-align: right; }
.project-directory__side span { color: #69768a; font-size: 8px; }
.project-directory__side strong { color: #364459; font-size: 9px; }

.unit-analysis-grid { grid-template-columns: minmax(0, 2.1fr) minmax(290px, .75fr); }
.unit-ranking { display: grid; padding: 5px 13px 11px; }
.unit-ranking a {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr) auto;
    min-height: 49px;
    align-items: center;
    gap: 9px;
    border-bottom: 1px solid var(--line-soft);
}
.unit-ranking a:hover { background: #fafbfd; }
.unit-ranking a > span { color: #9aa3b0; font-size: 9px; font-weight: 750; text-align: center; }
.unit-ranking strong, .unit-ranking small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.unit-ranking strong { color: #354257; font-size: 9px; }
.unit-ranking small { margin-top: 3px; color: #9099a7; font-size: 7px; }
.unit-ranking b {
    display: grid;
    min-width: 34px;
    height: 25px;
    place-items: center;
    background: #e8f5f2;
    color: #178477;
    border-radius: 4px;
    font-size: 9px;
}
.unit-table-full td:nth-child(2) { min-width: 260px; }
.unit-table-full tbody tr { scroll-margin-top: 125px; }
.productivity-badge {
    display: inline-grid;
    min-width: 38px;
    height: 25px;
    place-items: center;
    background: #e0f4ec;
    color: #14745c;
    border: 1px solid #bce5d6;
    border-radius: 4px;
    font-size: 8px;
    font-weight: 750;
}

.publication-identity {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 150px;
    gap: 24px;
    align-items: center;
    margin-bottom: 12px;
    padding: 22px;
    overflow: hidden;
    background: linear-gradient(112deg, #ffffff 0%, #fbfdff 58%, #f3f7fd 100%);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(30,48,76,.07);
}
.publication-identity::before { position: absolute; inset: 14px auto 14px 0; width: 4px; background: linear-gradient(180deg, var(--blue-600), var(--teal-600)); border-radius: 0 4px 4px 0; content: ""; }
.publication-badges { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }
.publication-identity__main h2 {
    max-width: 1050px;
    margin: 12px 0 8px;
    color: #1c293d;
    font-size: clamp(18px, 2vw, 25px);
    font-weight: 750;
    line-height: 1.35;
}
.publication-identity__main p { margin: 0; color: #697589; font-size: 10px; line-height: 1.55; }
.publication-identity__main > strong {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 11px;
    color: #445268;
    font-size: 10px;
}
.publication-identity__main > strong i { color: var(--blue-600); }
.publication-identity__metric {
    display: flex;
    min-height: 108px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #f5f8fb;
    border-left: 3px solid var(--amber-500);
    border-radius: 5px;
}
.publication-identity__metric span { color: #7d8899; font-size: 8px; font-weight: 750; text-transform: uppercase; }
.publication-identity__metric strong { margin: 3px 0; color: #263449; font-size: 29px; font-weight: 800; }
.publication-identity__metric small { color: #919aa8; font-size: 8px; }
.publication-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.75fr) minmax(300px, .65fr);
    gap: 12px;
}
.publication-detail-main, .publication-detail-aside { display: grid; min-width: 0; align-content: start; gap: 12px; }
.publication-facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 0; }
.publication-facts > div {
    display: grid;
    grid-template-columns: 125px minmax(0, 1fr);
    gap: 12px;
    min-height: 47px;
    align-items: center;
    padding: 8px 15px;
    border-right: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
}
.publication-facts > div:nth-child(2n) { border-right: 0; }
.publication-facts dt { color: #8791a0; font-size: 8px; font-weight: 700; text-transform: uppercase; }
.publication-facts dd { margin: 0; overflow-wrap: anywhere; color: #354257; font-size: 9px; font-weight: 650; }
.publication-classification { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.publication-classification > div { padding: 16px; border-right: 1px solid var(--line-soft); }
.publication-classification > div:last-child { border-right: 0; }
.publication-classification span { color: #8993a2; font-size: 8px; font-weight: 750; text-transform: uppercase; }
.publication-classification p { margin: 6px 0 0; color: #48566b; font-size: 9px; line-height: 1.6; }
.publication-researchers { display: grid; padding: 5px 12px 10px; }
.publication-researchers > a {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr) auto;
    min-height: 53px;
    align-items: center;
    gap: 9px;
    padding: 7px 2px;
    border-bottom: 1px solid var(--line-soft);
}
.publication-researchers > a:last-child { border: 0; }
.publication-researchers > a:hover { background: #fafbfd; }
.publication-researchers > a > span:nth-child(2) { min-width: 0; }
.publication-researchers strong, .publication-researchers small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.publication-researchers strong { color: #344156; font-size: 9px; }
.publication-researchers small { margin-top: 3px; color: #8c96a5; font-size: 7px; }
.publication-researchers > a > i { color: #9ba4b1; font-size: 9px; }
.publication-links { display: grid; padding: 6px 12px 11px; }
.publication-links > a, .publication-links > button {
    display: grid;
    grid-template-columns: 25px minmax(0, 1fr) auto;
    min-height: 48px;
    align-items: center;
    gap: 8px;
    padding: 7px 2px;
    background: transparent;
    color: inherit;
    border: 0;
    border-bottom: 1px solid var(--line-soft);
    text-align: left;
}
.publication-links > a:last-child, .publication-links > button:last-child { border: 0; }
.publication-links > a:hover, .publication-links > button:hover { background: #fafbfd; }
.publication-links > a > i:first-child, .publication-links > button > i:first-child { color: var(--blue-600); font-size: 14px; text-align: center; }
.publication-links span { min-width: 0; }
.publication-links strong, .publication-links small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.publication-links strong { color: #3b485c; font-size: 9px; }
.publication-links small { margin-top: 3px; color: #929ba8; font-size: 7px; }
.publication-links > a > i:last-child, .publication-links > button > i:last-child { color: #9aa4b1; font-size: 9px; }
.related-publications { display: grid; }
.related-publications > a {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 55px 12px;
    min-height: 60px;
    align-items: center;
    gap: 10px;
    padding: 9px 15px;
    border-bottom: 1px solid var(--line-soft);
}
.related-publications > a:last-child { border: 0; }
.related-publications > a:hover { background: #fafbfd; }
.related-publications > a > span { color: #718096; font-size: 9px; font-weight: 750; }
.related-publications div { min-width: 0; }
.related-publications strong, .related-publications small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.related-publications strong { color: #344156; font-size: 9px; }
.related-publications small { margin-top: 3px; color: #9099a7; font-size: 7px; }
.related-publications b { color: #6e7b8f; font-size: 8px; font-weight: 650; text-align: right; }
.related-publications > a > i { color: #9ba4b1; font-size: 9px; }
.table-title:hover { color: var(--blue-600); }
.project-period {
    display: flex;
    min-height: 118px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    padding: 12px;
    background: #f5f8fb;
    border-left: 3px solid var(--violet-500);
    border-radius: 5px;
    text-align: center;
}
.project-period span { color: #7d8899; font-size: 8px; font-weight: 750; text-transform: uppercase; }
.project-period strong { color: #344156; font-size: 10px; }
.project-period i { color: #9aa4b1; font-size: 10px; }
.project-directory__body h3 a:hover { color: var(--blue-600); }
.unit-profile-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(300px, .65fr);
    gap: 12px;
}
.unit-profile-main, .unit-profile-aside { display: grid; min-width: 0; align-content: start; gap: 12px; }
.unit-researcher-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 7px 12px 12px; }
.unit-researcher-grid > a {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr) 12px;
    min-height: 55px;
    align-items: center;
    gap: 9px;
    padding: 8px;
    border-bottom: 1px solid var(--line-soft);
}
.unit-researcher-grid > a:nth-child(odd) { border-right: 1px solid var(--line-soft); }
.unit-researcher-grid > a:hover { background: #fafbfd; }
.unit-researcher-grid > a > span:nth-child(2) { min-width: 0; }
.unit-researcher-grid strong, .unit-researcher-grid small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.unit-researcher-grid strong { color: #354257; font-size: 9px; }
.unit-researcher-grid small { margin-top: 3px; color: #8e98a6; font-size: 7px; }
.unit-researcher-grid > a > i { color: #9aa4b1; font-size: 9px; }
.unit-project-list { display: grid; padding: 5px 13px 11px; }
.unit-project-list > a { display: grid; gap: 5px; padding: 11px 2px; border-bottom: 1px solid var(--line-soft); }
.unit-project-list > a:last-child { border: 0; }
.unit-project-list > a:hover { background: #fafbfd; }
.unit-project-list strong { color: #354257; font-size: 9px; line-height: 1.45; }
.unit-project-list small { color: #8d97a5; font-size: 7px; }

.profile-tabs {
    position: sticky;
    top: var(--topbar-height);
    z-index: 1020;
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
    padding: 4px;
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.profile-tabs a { display: flex; min-height: 36px; align-items: center; gap: 7px; padding: 0 13px; color: #6b7789; border-radius: 4px; font-size: 9px; font-weight: 700; }
.profile-tabs a:hover, .profile-tabs a.active { background: var(--navy-900); color: white; }
.profile-tabs a span { display: inline-grid; min-width: 18px; height: 18px; place-items: center; padding: 0 4px; background: rgba(120,130,145,.12); border-radius: 3px; font-size: 7px; }
.profile-dashboard { display: grid; grid-template-columns: minmax(0, 2fr) minmax(290px, .8fr); gap: 12px; margin-bottom: 12px; scroll-margin-top: 120px; }
.profile-dashboard__aside { display: grid; gap: 12px; }
.quality-list { display: grid; padding: 7px 14px 12px; }
.quality-list > div { display: flex; min-height: 37px; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line-soft); font-size: 9px; }
.quality-list > div:last-child { border: 0; }
.quality-list span { color: #647084; }
.quality-list i { margin-right: 6px; color: #3fa67d; }
.quality-list .bi-dash-circle { color: #c1a058; }
.quality-list strong { color: #354257; font-size: 8px; }
.profile-topics { display: flex; flex-wrap: wrap; gap: 6px; padding: 13px; }
.profile-topics button { padding: 6px 8px; background: #f1f5f8; color: #536176; border: 1px solid #e1e6ec; border-radius: 4px; font-size: 8px; }
.profile-topics button:hover { background: var(--navy-900); color: white; border-color: var(--navy-900); }
.empty-inline { color: #8a94a4; font-size: 9px; }
.profile-section { margin-bottom: 12px; scroll-margin-top: 120px; }
.profile-output-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-bottom: 12px; }
.output-inventory__list { display: grid; max-height: 390px; overflow: auto; padding: 5px 14px 11px; }
.output-inventory__list > div { display: grid; grid-template-columns: 42px minmax(0, 1fr); gap: 10px; align-items: start; padding: 11px 2px; border-bottom: 1px solid var(--line-soft); }
.output-inventory__list > div:last-child { border-bottom: 0; }
.output-inventory__list p { min-width: 0; margin: 0; }
.output-inventory__list strong, .output-inventory__list small { display: block; }
.output-inventory__list strong { color: #17243d; font-size: 10.5px; font-weight: 800; line-height: 1.5; }
.output-inventory__list small { margin-top: 4px; color: #8993a1; font-size: 8px; line-height: 1.45; }
.inventory-badges { display: flex !important; flex-wrap: wrap; gap: 5px; margin-top: 7px !important; }
.event-badge, .book-badge, .publisher-badge, .inventory-badges .scope-badge { display: inline-flex; align-items: center; gap: 5px; width: fit-content; max-width: 100%; padding: 4px 7px; border-radius: 4px; font-size: 7px; font-weight: 750; line-height: 1.4; }
.event-badge { background: #e2f5f2; color: #12766d; border: 1px solid #bee5df; }
.book-badge { background: #ede9fe; color: #5b3db5; border: 1px solid #d8cefb; }
.publisher-badge { background: #e8eef8; color: #405a82; border: 1px solid #cbd8ea; }
.teaching-profile__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; padding: 13px; }
.teaching-profile__grid article { padding: 12px; background: #f8fafc; border: 1px solid var(--line-soft); border-radius: 5px; }
.teaching-profile__grid span { color: var(--blue-600); font-size: 8px; font-weight: 750; text-transform: uppercase; }
.teaching-profile__grid p { margin: 6px 0 0; color: #526075; font-size: 9px; line-height: 1.6; }
.publication-tools .table-search { width: 260px; }
.publication-type-tabs { gap: 5px; padding: 10px 13px; background: #f8fafc; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.publication-type-tabs .nav-link { display: flex; align-items: center; gap: 7px; padding: 7px 11px; color: #647186; font-size: 9px; font-weight: 700; }
.publication-type-tabs .nav-link span { display: grid; min-width: 20px; height: 18px; place-items: center; padding: 0 5px; background: #e8edf3; color: #687589; border-radius: 3px; font-size: 7px; }
.publication-type-tabs .nav-link.active { background: var(--navy-900); color: white; }
.publication-type-tabs .nav-link.active span { background: rgba(255,255,255,.16); color: white; }
.publication-type-content { min-height: 260px; }
.publication-tools--tab { display: flex; justify-content: flex-end; gap: 8px; padding: 10px 13px; border-bottom: 1px solid var(--line-soft); }
.publication-tab-footer { padding: 9px 13px; color: #8993a1; border-top: 1px solid var(--line-soft); font-size: 8px; }
.publication-type-content .output-inventory__list { max-height: 520px; }
.publication-table td:nth-child(2) { min-width: 420px; }
.badge-stack { display: flex; flex-wrap: wrap; gap: 4px; }
.badge-stack .badge { font-size: 7px; font-weight: 650; }
.table-empty { padding: 28px; color: #8b95a4; font-size: 10px; text-align: center; }
.table-empty i { margin-right: 5px; }
.activity-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(300px, .8fr); gap: 12px; scroll-margin-top: 120px; }
.activity-tabs { max-height: 420px; overflow: auto; padding: 7px 14px 12px; }
.activity-row { display: grid; grid-template-columns: 92px minmax(0, 1fr); gap: 15px; padding: 11px 3px; border-bottom: 1px solid var(--line-soft); }
.activity-row > span { color: #7c8797; font-size: 8px; font-weight: 700; }
.activity-row strong, .activity-row small { display: block; }
.activity-row strong { color: #354257; font-size: 10px; }
.activity-row small { margin-top: 4px; color: #8993a1; font-size: 8px; }
.activity-summary { display: grid; padding: 7px 13px 13px; }
.activity-summary > button { display: flex; min-height: 43px; align-items: center; justify-content: space-between; padding: 0 5px; background: transparent; color: #4f5d71; border: 0; border-bottom: 1px solid var(--line-soft); font-size: 9px; font-weight: 650; text-align: left; }
.activity-summary > button i { width: 22px; color: #7a8799; }
.activity-summary > button strong { display: grid; min-width: 25px; height: 22px; place-items: center; background: #eff3f7; color: #536176; border-radius: 4px; font-size: 8px; }
.activity-summary .collapse, .activity-summary .collapsing { background: #f8fafc; }
.activity-summary p { margin: 0; padding: 9px; border-bottom: 1px solid #e8ecf1; }
.activity-summary p strong, .activity-summary p span { display: block; }
.activity-summary p strong { color: #435065; font-size: 8px; }
.activity-summary p span { margin-top: 3px; color: #8b95a4; font-size: 7px; }

.search-modal .modal-content { border: 0; border-radius: 7px; box-shadow: 0 24px 60px rgba(17,27,46,.25); }
.search-modal .modal-header { align-items: flex-start; padding: 18px 20px; border-bottom-color: var(--line-soft); }
.search-modal .modal-title { margin-top: 2px; font-size: 17px; font-weight: 750; }
.search-modal .modal-body { padding: 17px 20px 20px; }
.search-field { display: flex; height: 45px; align-items: center; gap: 10px; padding: 0 13px; background: #f5f7fa; border: 1px solid #dce2e9; border-radius: 5px; }
.search-field i { color: #788598; }
.search-field input { width: 100%; background: transparent; color: #263449; border: 0; outline: 0; font-size: 12px; }
.search-results { display: grid; max-height: 520px; margin-top: 10px; overflow: auto; }
.search-initial, .search-loading, .search-empty { display: flex; min-height: 115px; align-items: center; justify-content: center; gap: 9px; color: #8b95a4; font-size: 10px; }
.search-result { display: grid; grid-template-columns: 42px minmax(0, 1fr) auto; align-items: center; gap: 12px; padding: 10px 5px; border-bottom: 1px solid var(--line-soft); }
.search-result:hover { background: #f8fafc; }
.search-result__photo { position: relative; display: grid; width: 40px; height: 40px; overflow: hidden; place-items: center; background: #e9edf2; color: #98a3b2; border-radius: 5px; }
.search-result__photo img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; }
.search-result__photo i { position: absolute; }
.search-result__icon { display: grid !important; width: 40px; height: 40px; margin: 0 !important; place-items: center; background: #e8eef8; color: #405a82 !important; border: 1px solid #cbd8ea; border-radius: 5px; font-size: 14px !important; }
.search-result__icon.is-project { background: #ede9fe; color: #5b3db5 !important; border-color: #d8cefb; }
.search-result__icon.is-patent { background: #fff1d8; color: #98620d !important; border-color: #ecd39f; }
.search-result__icon.is-thesis { background: #e2f5f2; color: #12766d !important; border-color: #bee5df; }
.search-result__icon.is-award { background: #fce8ee; color: #a93d60 !important; border-color: #f0c8d5; }
.search-result strong, .search-result span, .search-result small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.search-result strong { color: #2e3b4f; font-size: 10px; }
.search-result span { margin-top: 3px; color: #687589; font-size: 8px; }
.search-result small { margin-top: 2px; color: #929ba8; font-size: 7px; }
.search-result > i { color: #9aa4b2; }
.search-result__type { width: fit-content; margin: 0 !important; padding: 4px 7px; background: #e8eef8; color: #405a82 !important; border: 1px solid #cbd8ea; border-radius: 999px; font-size: 7px !important; font-weight: 750; }
.search-result-group__title { position: sticky; top: 0; z-index: 2; display: flex; min-height: 29px; align-items: center; justify-content: space-between; padding: 0 5px; background: #f4f7fa; color: #657287; border-bottom: 1px solid #dfe5ec; font-size: 8px; font-weight: 800; text-transform: uppercase; }
.search-result-group__title strong { display: grid; min-width: 19px; height: 18px; margin: 0; place-items: center; background: white; color: #52627a; border: 1px solid #d6dee8; border-radius: 3px; font-size: 7px; }

.mobile-nav { width: min(310px, 86vw) !important; background: var(--navy-950); color: white; }
.mobile-nav .offcanvas-header { padding: 0 12px 0 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-nav .app-brand { flex: 1; border: 0; }
.mobile-nav .sidebar-nav { margin-top: 10px; }
.app-footer { display: flex; align-items: center; justify-content: space-between; padding: 18px 2px 0; color: #9099a7; font-size: 8px; }
.empty-state { display: flex; min-height: calc(100vh - 150px); align-items: center; justify-content: center; flex-direction: column; text-align: center; }
.empty-state > i { color: #a3acb9; font-size: 42px; }
.empty-state > span { margin-top: 10px; color: var(--red-500); font-size: 10px; font-weight: 800; }
.empty-state h1 { margin: 5px 0; font-size: 22px; }
.empty-state p { color: var(--muted); font-size: 11px; }
.empty-state > div { display: flex; gap: 8px; margin-top: 8px; }

@media (max-width: 1399.98px) {
    .kpi-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .dashboard-grid--analytics { grid-template-columns: minmax(0, 1.55fr) minmax(260px, .75fr); }
    .dashboard-grid--analytics > .panel:last-child { grid-column: 1 / -1; }
    .dashboard-grid--analytics > .panel:last-child .panel-body { display: grid; grid-template-columns: 320px 1fr; align-items: center; }
    .dashboard-grid--analytics > .panel:last-child .panel-body { grid-template-columns: minmax(0, 300px) 1fr; }
    .profile-command { grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); }
    .profile-command__status { grid-column: 1 / -1; align-items: center; flex-direction: row; justify-content: flex-end; padding: 12px 0 0; border-top: 1px solid #dce5f0; border-left: 0; }
}

@media (max-width: 1199.98px) {
    .dashboard-page .filter-bar label { min-width: 125px; }
    .research-network-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sdg-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
    .dashboard-grid--tables, .dashboard-grid--lower, .dashboard-grid--staff { grid-template-columns: 1fr; }
    .profile-command { grid-template-columns: 1fr; }
    .profile-command__sources { padding: 14px 0 0; border-top: 1px solid #dce5f0; border-left: 0; }
    .profile-command__status { grid-column: auto; justify-content: flex-start; }
    .profile-command__sources > div { flex-wrap: wrap; }
    .profile-dashboard, .activity-grid, .profile-output-grid { grid-template-columns: 1fr; }
    .profile-dashboard__aside { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .directory-layout { grid-template-columns: 1fr; }
    .academic-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .directory-aside { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .unit-analysis-grid { grid-template-columns: 1fr; }
    .publication-detail-grid { grid-template-columns: 1fr; }
    .publication-detail-aside { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .source-inventory-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .unit-profile-grid { grid-template-columns: 1fr; }
    .unit-profile-aside { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 991.98px) {
    .app-main { margin-left: 0; }
    .app-topbar { padding: 0 16px; }
    .content-area { padding: 18px 16px 25px; }
    .global-search-trigger { width: min(420px, 55vw); }
    .page-heading { align-items: flex-start; }
    .filter-bar { flex-wrap: wrap; }
    .filter-bar__title { width: 100%; }
    .filter-bar label { flex: 1 1 180px; }
    .dashboard-grid--analytics { grid-template-columns: 1fr 1fr; }
    .dashboard-grid--analytics > .panel--wide { grid-column: 1 / -1; }
    .dashboard-grid--analytics > .panel:last-child { grid-column: auto; }
    .dashboard-grid--analytics > .panel:last-child .panel-body { display: block; }
    .project-table article { grid-template-columns: 95px minmax(230px, 1fr) 90px 90px 30px; }
    .directory-filter { grid-template-columns: minmax(0, 1fr) minmax(130px, 150px) minmax(150px, 180px); }
    .academic-directory__filter { grid-template-columns: minmax(0, 1fr) minmax(180px, .7fr) minmax(150px, .55fr); }
    .academic-directory__filter > label, .academic-directory__filter > label:nth-of-type(4), .academic-directory__filter > .directory-filter__expertise { grid-column: auto; }
    .archive-filter { grid-template-columns: minmax(0,1fr) minmax(140px,.5fr) minmax(120px,.4fr); }
    .archive-filter .btn { grid-column: auto; }
    .sdg-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .directory-filter .btn { grid-column: 1 / -1; }
}

@media (max-width: 767.98px) {
    :root { --topbar-height: 60px; }
    .app-topbar { height: var(--topbar-height); }
    .institution-chip div, .topbar-divider, .global-search-trigger kbd { display: none; }
    .global-search-trigger { width: min(270px, calc(100vw - 150px)); }
    .global-search-trigger span { font-size: 10px; }
    .content-area { padding: 14px 10px 22px; }
    .page-heading { align-items: stretch; flex-direction: column; gap: 12px; }
    .page-heading .breadcrumb { width: 100%; margin-bottom: 8px; }
    .page-heading .breadcrumb-item.active { max-width: 58vw; }
    .page-actions { justify-content: space-between; }
    .update-chip { display: none; }
    .filter-bar { gap: 9px; padding: 11px; }
    .filter-bar label { min-width: 0; flex: 1 1 calc(50% - 9px); }
    .filter-bar .btn { flex: 1 1 100%; }
    .kpi-grid, .kpi-grid--profile { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
    .kpi-grid--four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .kpi-card { min-height: 86px; padding: 10px; }
    .kpi-card__icon { width: 32px; height: 32px; font-size: 14px; }
    .kpi-card__body strong { font-size: 19px; }
    .dashboard-grid--analytics { grid-template-columns: 1fr; }
    .dashboard-grid--analytics > .panel--wide, .dashboard-grid--analytics > .panel:last-child { grid-column: auto; }
    .chart--trend { height: 230px; }
    .chart--units { height: 260px; }
    .panel-header { min-height: 56px; padding: 11px; }
    .panel-header--stack-mobile { align-items: stretch; flex-direction: column; }
    .panel-tools, .publication-tools { width: 100%; }
    .publication-tools { align-items: stretch; flex-direction: column; }
    .table-search, .publication-tools .table-search { width: 100%; }
    .project-table { min-width: 720px; }
    .panel:has(.project-table) { overflow-x: auto; }
    .topic-list { grid-template-columns: 1fr; }
    .profile-command { gap: 15px; padding: 13px; }
    .profile-command__identity { align-items: flex-start; }
    .profile-photo { width: 66px; height: 76px; }
    .profile-command__identity h2 { font-size: 18px; }
    .profile-command__sources > div { display: grid; grid-template-columns: 1fr; }
    .publication-tools--tab { align-items: stretch; flex-direction: column; }
    .publication-tools--tab .table-search { width: 100%; }
    .identity-button { width: 100%; }
    .profile-command__status { align-items: flex-start; flex-direction: column; }
    .profile-tabs { top: var(--topbar-height); overflow-x: auto; }
    .profile-tabs a { flex: 0 0 auto; }
    .profile-dashboard__aside { grid-template-columns: 1fr; }
    .teaching-profile__grid { grid-template-columns: 1fr; }
    .chart--profile { height: 250px; }
    .activity-row { grid-template-columns: 72px minmax(0, 1fr); }
    .app-footer { align-items: flex-start; flex-direction: column; gap: 4px; }
    .directory-aside { grid-template-columns: 1fr; }
    .directory-filter { grid-template-columns: 1fr; }
    .academic-card-grid { grid-template-columns: 1fr; }
    .source-overview-grid, .source-notes { grid-template-columns: 1fr; }
    .source-inventory-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .staff-classification { grid-template-columns: 1fr; }
    .directory-filter .btn { grid-column: auto; }
    .directory-table td:nth-child(2) { min-width: 330px; }
    .project-directory > article { grid-template-columns: 1fr; gap: 9px; }
    .project-directory__side { align-items: flex-start; text-align: left; }
    .chart--units-large { height: 420px; }
    .publication-identity { grid-template-columns: 1fr; padding: 15px; }
    .publication-identity__metric { min-height: 85px; }
    .publication-detail-aside { grid-template-columns: 1fr; }
    .publication-facts { grid-template-columns: 1fr; }
    .publication-facts > div, .publication-facts > div:nth-child(2n) { border-right: 0; }
    .publication-classification { grid-template-columns: 1fr; }
    .publication-classification > div { border-right: 0; border-bottom: 1px solid var(--line-soft); }
    .related-publications > a { grid-template-columns: 38px minmax(0, 1fr) 12px; }
    .related-publications b { display: none; }
    .unit-profile-aside { grid-template-columns: 1fr; }
    .unit-inventory-summary, .unit-research-output-grid { grid-template-columns: 1fr; }
    .recent-update-list { grid-template-columns: 1fr; }
    .recent-update-list > a { grid-template-columns: 32px minmax(0, 1fr) 10px; border-right: 0; }
    .recent-update-list b, .recent-update-list time { display: none; }
    .research-network-grid { grid-template-columns: 1fr; }
    .network-search { align-items: stretch; flex-direction: column; }
    .network-search .input-group { max-width: none; }
    .archive-filter { grid-template-columns: 1fr; }
    .archive-record-list > article { grid-template-columns: 36px minmax(0,1fr); align-items: start; padding: 12px; }
    .archive-record__actions { grid-column: 1 / -1; justify-content: flex-end; }
    .sdg-grid, .sdg-record-list { grid-template-columns: 1fr; }
    .sdg-record-list > a { grid-template-columns: 28px minmax(0,1fr) 9px; border-right: 0; }
    .sdg-record-list b, .sdg-record-list time { display: none; }
    .unit-researcher-grid { grid-template-columns: 1fr; }
    .unit-researcher-grid > a:nth-child(odd) { border-right: 0; }
}

/* V5 institutional report pages. */
.report-year-filter { display: grid; min-width: 160px; gap: 6px; }
.report-year-filter label { color: #7b8798; font-size: 10px; font-weight: 750; text-transform: uppercase; }
.report-year-filter .form-select { min-height: 38px; border-color: #d9e0e8; border-radius: 8px; font-size: 12px; }
.report-toolbar { display: flex; align-items: end; gap: 8px; }
.report-export { display: grid; gap: 6px; }
.report-export > span { color: #7b8798; font-size: 10px; font-weight: 750; text-transform: uppercase; }
.report-export > .btn { min-height: 38px; font-size: 10px; font-weight: 700; }
.report-export .dropdown-menu { min-width: 210px; padding: 6px; border-color: #dce3eb; box-shadow: 0 12px 30px rgba(24,36,56,.14); }
.report-export .dropdown-item { display: flex; align-items: center; gap: 8px; padding: 8px 9px; color: #536176; border-radius: 4px; font-size: 9px; }
.report-export .dropdown-item i { width: 16px; color: var(--blue-600); text-align: center; }
.report-kpis { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 12px; margin-bottom: 16px; }
.report-kpi { position: relative; display: flex; min-height: 112px; flex-direction: column; justify-content: center; padding: 15px; overflow: hidden; background: white; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); }
.report-kpi > i { position: absolute; right: 12px; top: 12px; color: #dbe5f3; font-size: 26px; }
.report-kpi span { color: #748094; font-size: 10px; font-weight: 750; text-transform: uppercase; }
.report-kpi strong { margin: 5px 0 2px; color: #223047; font-size: 25px; }
.report-kpi small { color: #96a0ae; font-size: 9px; }
.report-kpi.is-teal { border-top: 3px solid var(--teal-600); }.report-kpi.is-amber { border-top: 3px solid var(--amber-500); }.report-kpi.is-violet { border-top: 3px solid var(--violet-500); }.report-kpi.is-green { border-top: 3px solid var(--green-600); }.report-kpi.is-blue { border-top: 3px solid var(--blue-600); }
.report-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 12px; margin-bottom: 12px; }
.chart--report { height: 330px; }.chart--specialization { height: 390px; }
.report-facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.report-facts > div { display: flex; min-height: 76px; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 18px; border-right: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.report-facts span { color: #69768a; font-size: 11px; }.report-facts strong { color: #223047; font-size: 20px; }
.report-facts--citations { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 1199.98px) { .report-kpis { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 767.98px) { .report-kpis { grid-template-columns: repeat(2, minmax(0, 1fr)); }.report-grid { grid-template-columns: 1fr; }.report-facts--citations { grid-template-columns: repeat(2,minmax(0,1fr)); }.report-page .page-heading { align-items: stretch; flex-direction: column; }.report-toolbar { align-items: stretch; flex-direction: column; }.report-year-filter, .report-export, .report-export > .btn { width: 100%; } }

@media (max-width: 419.98px) {
    .institution-chip { display: none; }
    .topbar-actions { gap: 6px; }
    .global-search-trigger { width: calc(100vw - 142px); }
    .global-search-trigger span { max-width: 145px; }
    .page-actions { align-items: stretch; flex-direction: column; }
    .filter-bar label { flex-basis: 100%; }
    .kpi-card { align-items: flex-start; flex-direction: column; }
    .kpi-card__body strong { font-size: 18px; }
    .profile-command__identity { flex-direction: column; }
}

/* Dashboard visual refinement — intentionally scoped to the V5 home page. */
.dashboard-page {
    --dashboard-radius: 14px;
    --dashboard-shadow: 0 10px 30px rgba(26, 42, 68, .065);
    padding-top: 20px;
    background:
        radial-gradient(circle at 88% 2%, rgba(37, 99, 235, .055), transparent 27rem),
        var(--canvas);
}
body:has(.dashboard-page) { overflow-x: hidden; }
.dashboard-page .page-heading {
    position: relative;
    min-height: 168px;
    align-items: center;
    margin: 0;
    padding: 28px 30px 50px;
    overflow: hidden;
    background:
        radial-gradient(circle at 90% 10%, rgba(37, 99, 235, .06), transparent 19rem),
        linear-gradient(125deg, #ffffff 0%, #fbfdff 65%, #f6f9fc 100%);
    border: 1px solid #e3eaf2;
    border-left: 4px solid #4f86df;
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(41, 65, 98, .06);
}
.dashboard-page .page-heading::before,
.dashboard-page .page-heading::after {
    position: absolute;
    border: 1px solid rgba(37, 99, 235, .09);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}
.dashboard-page .page-heading::before { right: -60px; bottom: -125px; width: 310px; height: 310px; }
.dashboard-page .page-heading::after { right: 115px; top: -105px; width: 220px; height: 220px; }
.dashboard-page .page-heading > * { position: relative; z-index: 1; }
.dashboard-page .page-heading .breadcrumb {
    margin-bottom: 13px;
    background: #f5f8fc;
    border-color: #e1e8f0;
}

/* OKUERA visual language: a clear institutional canvas with a brighter navy shell. */
:root {
    --sidebar-width: 270px;
    --topbar-height: 64px;
    --navy-950: #071a33;
    --navy-900: #0d2b50;
    --navy-800: #164775;
    --blue-600: #2f80ed;
    --blue-500: #579af3;
    --teal-600: #119b83;
    --ink: #263548;
    --muted: #718096;
    --line: #e4eaf2;
    --line-soft: #eef2f6;
    --canvas: #f4f7fb;
    --radius: 10px;
    --shadow: 0 10px 32px rgba(20, 46, 80, .07);
}
body {
    background: radial-gradient(circle at 86% -12%, rgba(47,128,237,.10), transparent 31rem), var(--canvas);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}
.app-sidebar {
    overflow: hidden auto;
    background: linear-gradient(165deg, var(--navy-950) 0%, var(--navy-900) 56%, var(--navy-800) 100%);
    border-right: 0;
}
.app-sidebar::before {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 10% 12%, rgba(96,165,250,.16), transparent 15rem), linear-gradient(120deg, transparent 55%, rgba(255,255,255,.025));
    content: "";
}
.app-sidebar > * { position: relative; }
.app-brand { min-height: 79px; padding: 18px 20px 15px; border-color: rgba(255,255,255,.10); }
.app-brand__mark { width: 43px; height: 43px; padding: 4px; background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.18); border-radius: 11px; }
.app-brand__mark img { max-width: 35px; max-height: 35px; }
.app-brand strong { font-size: 16px; font-weight: 800; letter-spacing: -.02em; }
.app-brand small { color: rgba(255,255,255,.58); font-size: 10px; line-height: 1.25; white-space: normal; }
.sidebar-label { padding: 19px 20px 7px; color: rgba(255,255,255,.42); font-size: 10px; letter-spacing: .09em; }
.sidebar-nav { gap: 2px; padding: 0 13px; }
.sidebar-nav a { min-height: 40px; gap: 11px; padding: 8px 11px; color: rgba(255,255,255,.74); border-radius: 9px; font-size: 13px; font-weight: 650; transition: color .18s ease, background-color .18s ease, transform .18s ease; }
.sidebar-nav a::before { display: none; }
.sidebar-nav a:hover, .sidebar-nav a.is-active { background: rgba(255,255,255,.13); color: #fff; transform: translateX(2px); }
.sidebar-nav i, .sidebar-nav a.is-active i { color: #b9d7ff; font-size: 15px; }
.sidebar-nav a:hover i { color: #fff; }
.sidebar-system { margin: 18px 14px 0; background: rgba(4,20,39,.20); border-color: rgba(255,255,255,.10); border-radius: 9px; }
.sidebar-university { margin: 8px 14px 12px; color: rgba(255,255,255,.58); }
.sidebar-credits { margin: auto 0 0; padding: 13px 15px 15px; border-top-color: rgba(255,255,255,.10); background: rgba(4,20,39,.20); }
.sidebar-credits__logo { max-width: 195px; min-height: 44px; border-radius: 10px; box-shadow: 0 8px 22px rgba(0,0,0,.14); }
.app-topbar { height: var(--topbar-height); padding: 0 28px; background: rgba(255,255,255,.92); border-color: var(--line); box-shadow: 0 4px 18px rgba(20,46,80,.025); }
.global-search-trigger { height: 40px; background: #f8fafc; border-color: #e1e8f0; border-radius: 8px; }
.global-search-trigger:hover { border-color: #b9cbe1; box-shadow: 0 4px 12px rgba(47,128,237,.07); }
.icon-button { width: 38px; height: 38px; border-color: #e0e7ef; border-radius: 8px; }
.institution-chip > span { background: linear-gradient(135deg, #0d2b50, #2f80ed); border-radius: 9px; box-shadow: 0 5px 12px rgba(13,43,80,.15); }
.content-area { padding: 25px 28px 34px; }
.page-heading { margin-bottom: 20px; }
.page-heading h1 { color: #203149; font-weight: 800; letter-spacing: -.025em; }
.page-heading .breadcrumb { background: #f8fafc; border-color: #e4eaf2; border-radius: 6px; }
.filter-bar, .panel { border-color: var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.filter-bar { padding: 13px 16px; }
.kpi-card { border-color: var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.kpi-card::after { height: 3px; background: linear-gradient(90deg, var(--blue-600), #7db4ff); border-radius: 0 3px 3px 0; opacity: .75; }
.panel-header { min-height: 64px; padding: 14px 17px; }
.panel-header h2 { color: #263548; font-weight: 800; letter-spacing: -.01em; }
.section-kicker { color: #7f8da0; font-size: 9px; }
.data-table thead th { background: #f8fafc; }
.data-table tbody tr:hover td { background: #f7faff; }
.dashboard-page .page-heading .breadcrumb-item,
.dashboard-page .page-heading .breadcrumb-item a { color: #64748b; }
.dashboard-page .page-heading .breadcrumb-item.active { color: #245bb3; }
.dashboard-page .page-heading .breadcrumb-item + .breadcrumb-item::before { color: #9aa8b9; }
.dashboard-page .page-heading h1 {
    color: #15243a;
    font-size: clamp(26px, 2.5vw, 36px);
    font-weight: 780;
    letter-spacing: -.025em;
}
.dashboard-page .page-heading p { max-width: 590px; margin-top: 9px; color: #69788d; font-size: 14px; }
.dashboard-page .page-actions { align-self: flex-start; margin-top: 8px; }
.dashboard-page .update-chip { background: #fff; color: #52647b; border-color: #d9e3ee; box-shadow: 0 5px 14px rgba(41,65,98,.06); }
.dashboard-page .filter-bar {
    position: relative;
    z-index: 2;
    margin: -29px 18px 20px;
    padding: 14px 16px;
    background: rgba(255,255,255,.97);
    border: 0;
    border-radius: 12px;
    box-shadow: 0 12px 34px rgba(17, 27, 46, .14);
    backdrop-filter: blur(14px);
}
.dashboard-page .filter-bar__title { color: #334258; }
.dashboard-page .filter-bar .form-select { min-height: 35px; background-color: #f8fafc; border-color: #e3e8ef; border-radius: 8px; }
.dashboard-page .filter-bar .btn-light { min-height: 35px; background: #eef2f7; border: 0; border-radius: 8px; color: #536176; }
.dashboard-page .filter-bar.is-loading { opacity: .68; pointer-events: none; }
.dashboard-page .filter-bar.is-loading::after {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.7), transparent);
    content: "";
    animation: dashboard-filter-loading 1s linear infinite;
}
.dashboard-page .filter-bar.has-error { box-shadow: 0 0 0 2px rgba(214,69,93,.25), 0 12px 34px rgba(17,27,46,.14); }
@keyframes dashboard-filter-loading { from { transform: translateX(-100%); } to { transform: translateX(100%); } }
.dashboard-page .kpi-grid { gap: 14px; margin-bottom: 18px; }
.dashboard-page .kpi-card {
    min-height: 116px;
    padding: 17px 16px;
    border: 0;
    border-radius: var(--dashboard-radius);
    box-shadow: var(--dashboard-shadow);
    transition: transform .2s ease, box-shadow .2s ease;
}
.dashboard-page .kpi-card:hover { transform: translateY(-3px); box-shadow: 0 16px 35px rgba(26,42,68,.11); }
.dashboard-page .kpi-card::after { inset: 0 auto 0 0; width: 3px; height: auto; background: var(--blue-600); border-radius: 14px 0 0 14px; }
.dashboard-page .kpi-card:nth-child(2)::after { background: var(--teal-600); }
.dashboard-page .kpi-card:nth-child(3)::after { background: var(--amber-500); }
.dashboard-page .kpi-card:nth-child(4)::after { background: var(--violet-500); }
.dashboard-page .kpi-card:nth-child(5)::after { background: var(--green-600); }
.dashboard-page .kpi-card:nth-child(6)::after { background: #2477a8; }
.dashboard-page .kpi-card__icon { width: 42px; height: 42px; border-radius: 11px; font-size: 18px; }
.dashboard-page .kpi-card__body > span { color: #718096; letter-spacing: .035em; }
.dashboard-page .kpi-card__body strong { margin: 4px 0 2px; font-size: 25px; letter-spacing: -.02em; }
.dashboard-page .panel {
    border: 0;
    border-radius: var(--dashboard-radius);
    box-shadow: var(--dashboard-shadow);
}
.dashboard-page .panel-header { min-height: 66px; padding: 15px 18px; }
.dashboard-page .panel-header h2 { font-size: 16px; letter-spacing: -.01em; }
.dashboard-page .section-kicker { color: #8491a4; letter-spacing: .09em; }
.dashboard-page .panel-footer { padding-right: 18px; padding-left: 18px; }

@media (max-width: 991.98px) {
    .dashboard-page .page-heading { min-height: 185px; align-items: flex-start; padding: 24px 24px 54px; }
    .dashboard-page .page-actions { margin-top: 4px; }
    .dashboard-page .filter-bar { margin-right: 12px; margin-left: 12px; }
}
@media (max-width: 767.98px) {
    .dashboard-page { padding: 12px 12px 24px; }
    .dashboard-page .page-heading { min-height: 225px; padding: 22px 20px 58px; border-radius: 15px; }
    .dashboard-page .page-heading p { font-size: 12px; }
    .dashboard-page .page-actions { align-items: flex-start; }
    .dashboard-page .filter-bar { margin: -35px 10px 16px; padding: 14px; }
    .dashboard-page .kpi-card { min-height: 106px; }
}

/* Readability pass: keep compact cockpit density without sub-10px body copy. */
.data-table tbody td,
.project-table article,
.directory-table tbody td,
.unit-table-full tbody td {
    line-height: 1.45;
}
.researcher-list__info strong,
.source-list strong,
.project-table article strong,
.unit-ranking strong,
.unit-researcher-grid strong,
.unit-project-list strong,
.publication-researchers strong,
.related-publications strong,
.activity-row strong {
    font-size: 11px;
}
.researcher-list__info small,
.source-list small,
.project-table article small,
.project-table article > span:not(.project-status),
.unit-ranking small,
.unit-researcher-grid small,
.unit-project-list small,
.publication-researchers small,
.related-publications small,
.activity-row small {
    font-size: 9px;
}
.status-label,
.project-status,
.result-count,
.directory-pagination,
.info-list > div,
.project-directory__body p {
    font-size: 10px;
}
.project-directory__body h3 {
    font-size: 13px;
}
.project-directory__meta span,
.project-directory__side span,
.project-directory__side strong,
.publication-facts dd,
.publication-classification p,
.project-period strong {
    font-size: 10px;
}
.publication-facts dt,
.publication-classification span,
.project-period span {
    font-size: 9px;
}
.profile-title,
.profile-command__identity p {
    font-size: 11px;
}
.profile-command__identity small,
.profile-command__status small {
    font-size: 10px;
}
.identity-button span,
.verified-badge {
    font-size: 9px;
}
.identity-button small {
    font-size: 8px;
}
.profile-tabs a {
    font-size: 10px;
}
.quality-list > div,
.empty-inline,
.activity-summary > button {
    font-size: 10px;
}
.quality-list strong,
.activity-summary p strong {
    font-size: 9px;
}
.profile-topics button,
.badge-stack .badge {
    font-size: 9px;
}
.publication-links strong,
.related-publications > a > span {
    font-size: 10px;
}
.publication-links small,
.related-publications small,
.activity-summary p span {
    font-size: 8px;
}
.publication-identity__metric span,
.publication-identity__metric small,
.publication-researchers small,
.related-publications b,
.project-period span,
.unit-researcher-grid small,
.unit-project-list small,
.activity-row > span,
.activity-row small,
.search-result span,
.search-result small {
    font-size: 9px;
}
.researcher-score small,
.unit-ranking small,
.profile-tabs a span,
.badge-stack .badge {
    font-size: 8px;
}
.app-footer {
    font-size: 10px;
}

@media (max-width: 767.98px) {
    .global-search-trigger span { font-size: 11px; }
    .page-heading .breadcrumb-item { font-size: 10px; }
    .panel-header h2 { font-size: 14px; }
    .section-kicker { font-size: 9px; }
    .data-table { font-size: 11px; }
    .data-table thead th { font-size: 9px; }
    .table-title { font-size: 11px; }
    .data-table small, .data-table em { font-size: 9px; }
    .kpi-card__body > span { font-size: 10px; }
    .kpi-card__body small { font-size: 9px; }
    .directory-filter label > span { font-size: 9px; }
    .directory-filter .form-control,
    .directory-filter .form-select,
    .directory-filter .input-group-text,
    .directory-filter .btn {
        font-size: 11px;
    }
    .project-directory__body h3 { font-size: 13px; }
    .project-directory__body p,
    .project-directory__meta span,
    .project-directory__side span,
    .project-directory__side strong {
        font-size: 10px;
    }
}

@media (max-width: 419.98px) {
    .global-search-trigger span { font-size: 10px; }
    .page-heading h1 { font-size: 22px; }
    .page-heading p { font-size: 12px; }
    .kpi-card__body > span { font-size: 9px; }
    .kpi-card__body small { font-size: 9px; }
    .panel-header h2 { font-size: 13px; }
}

/* Secondary institutional indicators and multi-metric researcher ranking. */
.insight-strip { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; margin-bottom: 18px; }
.insight-metric {
    display: flex;
    min-width: 0;
    min-height: 70px;
    align-items: center;
    gap: 11px;
    padding: 12px 14px;
    background: rgba(255,255,255,.78);
    border: 1px solid #e5eaf0;
    border-radius: 12px;
}
.insight-metric > i { display: grid; width: 34px; height: 34px; place-items: center; flex: 0 0 auto; background: #eef3ff; color: var(--blue-600); border-radius: 9px; }
.insight-metric div { display: flex; min-width: 0; flex-direction: column; }
.insight-metric span { overflow: hidden; color: #748094; font-size: 9px; font-weight: 700; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.insight-metric strong { margin-top: 3px; color: #243146; font-size: 19px; line-height: 1; }
.insight-metric.is-amber > i { background: #fff3dc; color: #c98112; }
.insight-metric.is-violet > i { background: #f0ebff; color: var(--violet-500); }
.insight-metric.is-teal > i { background: #e4f7f4; color: var(--teal-600); }
.insight-metric.is-green > i { background: #e6f5ee; color: var(--green-600); }
.ranking-tabs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; padding: 8px 10px; background: #f6f8fb; border-bottom: 1px solid var(--line-soft); }
.ranking-tabs button { padding: 6px 4px; background: transparent; color: #718096; border: 0; border-radius: 6px; font-size: 9px; font-weight: 700; }
.ranking-tabs button:hover { color: var(--navy-900); }
.ranking-tabs button.is-active { background: white; color: var(--blue-600); box-shadow: 0 2px 8px rgba(30,45,70,.09); }
.ranking-list[hidden] { display: none; }

@media (max-width: 991.98px) {
    .insight-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 767.98px) {
    .insight-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
    .insight-metric:last-child { grid-column: 1 / -1; }
}

/* Full-page OKUERA adaptation: directories, detail records and reports share one surface system. */
.content-area > .container-fluid > .page-heading:not(.dashboard-page .page-heading) {
    position: relative;
    padding: 19px 21px;
    background: linear-gradient(125deg, #fff 0%, #fbfdff 68%, #f3f8ff 100%);
    border: 1px solid #e2eaf3;
    border-left: 4px solid var(--blue-600);
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(20,46,80,.055);
}
.page-heading h2.h4 { margin: 0 !important; color: #203149; font-size: clamp(22px, 2vw, 28px); font-weight: 800 !important; letter-spacing: -.025em; }
.page-heading > .page-actions { align-self: center; }
.page-actions .btn, .page-actions .update-chip { border-radius: 8px; }
.update-chip { background: #f6f9fd; border-color: #d9e5f2; color: #365577; }
.btn-primary { background: linear-gradient(135deg, #2f80ed, #1d67c7); border-color: #2f80ed; box-shadow: 0 5px 12px rgba(47,128,237,.17); }
.btn-primary:hover, .btn-primary:focus { background: #1d67c7; border-color: #1d67c7; }
.btn-outline-secondary { border-color: #d7e1ec; border-radius: 8px; }
.btn-outline-secondary:hover, .btn-outline-secondary.is-active, .btn-outline-secondary.active { background: #0d2b50; border-color: #0d2b50; }
.kpi-grid { gap: 14px; margin-bottom: 18px; }
.kpi-grid.kpi-grid--four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.kpi-card { min-height: 110px; overflow: hidden; border: 0; box-shadow: 0 8px 24px rgba(20,46,80,.065); transition: transform .18s ease, box-shadow .18s ease; }
.kpi-card:hover { transform: translateY(-2px); box-shadow: 0 15px 30px rgba(20,46,80,.11); }
.kpi-card::after { inset: 0 auto 0 0; width: 3px; height: auto; background: var(--blue-600); border-radius: 10px 0 0 10px; opacity: .85; }
.kpi-card:nth-child(2)::after { background: var(--teal-600); }.kpi-card:nth-child(3)::after { background: var(--amber-500); }.kpi-card:nth-child(4)::after { background: var(--violet-500); }
.kpi-card__icon { width: 40px; height: 40px; border-radius: 10px; }
.kpi-card__body strong { color: #203149; font-weight: 800; letter-spacing: -.02em; }
.panel { border: 0; border-radius: 12px; box-shadow: 0 9px 26px rgba(20,46,80,.065); }
.panel-header { min-height: 65px; padding: 15px 18px; background: linear-gradient(180deg, #fff, #fcfdff); }
.panel-header h2 { color: #263548; font-weight: 800; }
.panel-footer { padding-right: 18px; padding-left: 18px; }
.section-kicker { color: #73859b; letter-spacing: .09em; }
.directory-filter, .archive-filter, .report-filter, .network-search {
    padding: 14px 16px;
    background: #f8fafc;
    border-color: #e6edf4;
}
.directory-filter .form-control, .directory-filter .form-select, .directory-filter .input-group-text,
.archive-filter .form-control, .archive-filter .form-select, .archive-filter .input-group-text,
.report-filter .form-control, .report-filter .form-select {
    background-color: #fff;
    border-color: #dce6f0;
    border-radius: 7px;
}
.directory-filter .input-group > .form-control { border-left: 0; border-radius: 0 7px 7px 0; }
.directory-filter .input-group > .input-group-text { border-radius: 7px 0 0 7px; }
.data-table thead th { padding-top: 12px; padding-bottom: 12px; background: #f7faff; color: #6f8196; }
.data-table tbody td { padding-top: 13px; padding-bottom: 13px; }
.data-table tbody tr:hover td, .project-directory > article:hover, .archive-record-list > article:hover, .unit-output-list > a:hover, .sdg-record-list > a:hover { background: #f6faff; }
.academic-card, .unit-inventory-summary article, .sdg-card, .source-inventory-grid article, .insight-metric {
    border-color: #e2eaf3;
    border-radius: 10px;
    box-shadow: 0 5px 16px rgba(20,46,80,.045);
}
.academic-card:hover, .sdg-card:hover { border-color: #b7d2f2; box-shadow: 0 11px 24px rgba(20,46,80,.10); }
.project-directory > article { padding: 14px 18px; }
.project-directory__body h3 { color: #24364d; font-weight: 800; }
.project-directory__status small, .project-directory__side span { color: #73859a; }
.profile-command, .publication-identity { border: 0; border-radius: 14px; box-shadow: 0 10px 28px rgba(20,46,80,.075); }
.profile-command::before, .publication-identity::before { width: 4px; border-radius: 14px 0 0 14px; }
.profile-tabs { padding: 7px; background: #f6f9fd; border: 1px solid #e2eaf3; border-radius: 10px; }
.profile-tabs a { border-radius: 7px; }.profile-tabs a:hover, .profile-tabs a.active { background: #0d2b50; }
.publication-type-tabs, .ranking-tabs { background: #f7faff; }
.publication-type-tabs .nav-link.active { background: #0d2b50; border-radius: 7px; }
.archive-method-note, .sdg-method-note { border-radius: 10px; box-shadow: 0 5px 16px rgba(20,46,80,.035); }
.archive-record__icon, .source-logo, .year-badge { border-radius: 8px; }
.search-modal .modal-content { border-radius: 14px; }
.search-field { background: #f8fafc; border-color: #dce6f0; border-radius: 9px; }
.app-footer { color: #7c8b9d; }

@media (max-width: 767.98px) {
    .content-area { padding: 16px 14px 26px; }
    .content-area > .container-fluid > .page-heading:not(.dashboard-page .page-heading) { padding: 16px; border-radius: 11px; }
    .page-heading > .page-actions { align-self: stretch; }
    .kpi-grid.kpi-grid--four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Shared typography scale — prevents each module from inheriting old micro-type rules. */
body { font-size: 14px; }
.page-heading h1, .page-heading h2.h4 { font-size: clamp(25px, 2vw, 29px) !important; line-height: 1.18; }
.page-heading p { font-size: 13px; line-height: 1.55; }
.page-heading .breadcrumb-item, .page-heading .breadcrumb-item a { font-size: 10px; }
.section-kicker, .kpi-card__body > span, .directory-filter label > span, .archive-filter label > span, .filter-bar label > span { font-size: 10px; }
.panel-header h2 { font-size: 16px; }
.panel-header .result-count, .result-count { font-size: 10px; }
.kpi-card__body strong { font-size: 25px; }
.kpi-card__body small { font-size: 11px; }
.kpi-card__icon { font-size: 17px; }
.form-control, .form-select, .input-group-text, .directory-filter .btn, .archive-filter .btn, .filter-bar .form-select { font-size: 12px; }
.data-table { font-size: 12px; }
.data-table thead th { font-size: 10px; }
.data-table small, .data-table em { font-size: 10px; }
.table-title, .publication-table .table-title, #latestPublications .table-title, .directory-table .table-title { font-size: 13px; }
.project-directory__body h3, .project-directory__body h3 a { font-size: 14px; line-height: 1.42; }
.project-directory__body p, .project-directory__meta span, .project-directory__side span, .project-directory__side strong { font-size: 11px; }
.project-directory__status small, .project-status, .status-label { font-size: 10px; }
.academic-card__content small, .academic-card__content em, .academic-card__content > span { font-size: 10px; }
.academic-card__content strong { font-size: 13px; }
.academic-card__topics b, .academic-card__identities i { font-size: 9px; }
.archive-method-note p, .sdg-method-note p { font-size: 11px; }
.archive-record__body h3 { font-size: 13px; line-height: 1.45; }
.archive-record__body p { font-size: 11px; }
.archive-record__body small, .archive-record__body time { font-size: 10px; }
.archive-type-badge, .archive-scope-badge { font-size: 9px; }
.archive-record__actions .btn { font-size: 10px; }
.sdg-card strong, .sdg-record-list strong, .unit-output-list strong, .unit-project-list strong { font-size: 11px; }
.sdg-card small, .sdg-record-list small, .unit-output-list small, .unit-project-list small { font-size: 10px; }
.sdg-record-list b, .sdg-record-list time { font-size: 9px; }
.source-list strong, .source-overview-card > p, .source-inventory-grid span { font-size: 11px; }
.source-list small, .source-inventory-grid small, .source-coverage span { font-size: 10px; }
.source-capabilities span { font-size: 9px; }
.publication-identity__main p, .publication-facts dd, .publication-classification p { font-size: 11px; }
.publication-facts dt, .publication-classification span, .publication-identity__metric span, .publication-identity__metric small { font-size: 10px; }
.publication-researchers strong, .publication-links strong, .activity-row strong { font-size: 11px; }
.publication-researchers small, .publication-links small, .activity-row small, .activity-row > span { font-size: 10px; }
.profile-title, .profile-command__identity p, .profile-command__identity small, .profile-command__status small { font-size: 11px; }
.profile-tabs a, .profile-topics button { font-size: 11px; }
.profile-tabs a span { font-size: 9px; }
.researcher-list__info strong, .unit-researcher-grid strong, .unit-ranking strong { font-size: 12px; }
.researcher-list__info small, .unit-researcher-grid small, .unit-ranking small { font-size: 10px; }
.network-method-note p { font-size: 11px; line-height: 1.55; }
.network-search .form-control, .network-search .input-group-text, .network-search .btn { font-size: 12px; }
.research-network-card { border-color: #e2eaf3; border-radius: 11px; box-shadow: 0 6px 18px rgba(20,46,80,.05); }
.research-network-card__head { min-height: 78px; padding: 13px; background: linear-gradient(135deg, #f8fbff, #f2f7fd); }
.research-network-card__head h3 { font-size: 13px; font-weight: 800; }
.research-network-card__head p { font-size: 10px; }
.network-members { padding: 6px 12px; }
.network-members > a { min-height: 54px; grid-template-columns: 33px minmax(0, 1fr) 10px; }
.network-member-photo { width: 31px; height: 36px; border-radius: 6px; }
.network-members strong { font-size: 11px; }
.network-members small { margin-top: 3px; font-size: 10px; }
.network-members > a > i { font-size: 10px; }
.research-network-card footer { min-height: 45px; padding: 9px 13px; }
.research-network-card footer span { font-size: 10px; }
.research-network-card footer a { font-size: 11px; }
.chart--units-large { height: 520px; }
.archive-record-list > article { grid-template-columns: 48px minmax(0,1fr) auto; min-height: 126px; padding: 16px 18px; }
.archive-record__icon { width: 44px; height: 44px; border-radius: 9px; font-size: 16px; }
.archive-record__body h3 { margin-top: 8px; font-size: 14px; font-weight: 800; line-height: 1.45; }
.archive-record__body p { margin-top: 5px; color: #64758a; font-size: 11px; line-height: 1.45; }
.archive-record__body small { margin-top: 7px; font-size: 10px; }
.archive-record__actions { align-self: center; }
.archive-record__year { color: #62748b; font-size: 11px; font-weight: 750; }
.archive-record__venue { display: inline-flex; align-items: center; gap: 5px; max-width: 100%; padding: 4px 7px; background: #fff4df; color: #96600b; border: 1px solid #eddbb1; border-radius: 5px; }
.archive-record__venue i { color: #be7c12; }
.report-kpi { display: grid; grid-template-columns: 42px minmax(0,1fr); grid-template-rows: auto auto auto; align-items: center; column-gap: 12px; min-height: 112px; padding: 15px 16px; overflow: hidden; border: 0; box-shadow: 0 8px 24px rgba(20,46,80,.065); }
.report-kpi::before { position: absolute; inset: 0 auto 0 0; width: 3px; background: var(--blue-600); border-radius: 12px 0 0 12px; content: ""; }
.report-kpi > i { position: static; display: grid; grid-row: 1 / 4; width: 42px; height: 42px; place-items: center; background: #eaf1ff; color: var(--blue-600); border-radius: 10px; font-size: 18px; }
.report-kpi span, .report-kpi strong, .report-kpi small { grid-column: 2; }
.report-kpi span { font-size: 10px; }.report-kpi strong { margin: 3px 0 1px; font-size: 25px; }.report-kpi small { font-size: 11px; }
.report-kpi:nth-child(2)::before { background: var(--teal-600); }.report-kpi:nth-child(2) > i { background: #e4f7f4; color: var(--teal-600); }
.report-kpi:nth-child(3)::before { background: var(--amber-500); }.report-kpi:nth-child(3) > i { background: #fff3dc; color: #c98112; }
.report-kpi:nth-child(4)::before { background: var(--violet-500); }.report-kpi:nth-child(4) > i { background: #f0ebff; color: var(--violet-500); }
.report-kpi:nth-child(5)::before { background: var(--green-600); }.report-kpi:nth-child(5) > i { background: #e6f5ee; color: var(--green-600); }
.report-kpi:nth-child(6)::before { background: #2477a8; }.report-kpi:nth-child(6) > i { background: #e8f3fb; color: #2477a8; }
.panel-tabs { gap: 5px; padding: 4px; background: #edf3fa; border: 1px solid #dce6f1; border-radius: 9px; }
.panel-tabs .nav-link { min-height: 32px; padding: 6px 11px; color: #52677f; border: 1px solid transparent; border-radius: 6px; font-size: 11px; font-weight: 750; transition: color .16s ease, background-color .16s ease, box-shadow .16s ease; }
.panel-tabs .nav-link:not(.active) { background: rgba(255,255,255,.72); border-color: #e0e8f1; }
.panel-tabs .nav-link:hover:not(.active) { background: #fff; color: #1d5eaf; border-color: #bcd2ec; }
.panel-tabs .nav-link.active { background: #0d2b50; color: #fff; border-color: #0d2b50; box-shadow: 0 5px 12px rgba(13,43,80,.20); }
.publication-type-tabs { gap: 6px; padding: 11px 14px; background: #f5f8fc; }
.publication-type-tabs .nav-link { min-height: 34px; padding: 7px 12px; background: #fff; border: 1px solid #dfe8f2; border-radius: 7px; color: #52677f; font-size: 11px; font-weight: 750; }
.publication-type-tabs .nav-link:hover { color: #1d5eaf; border-color: #bcd2ec; }
.publication-type-tabs .nav-link.active { background: #0d2b50; color: #fff; border-color: #0d2b50; box-shadow: 0 5px 12px rgba(13,43,80,.18); }
.publication-type-tabs .nav-link span { font-size: 9px; }

@media (max-width: 767.98px) {
    body { font-size: 14px; }
    .page-heading h1, .page-heading h2.h4 { font-size: 24px !important; }
    .panel-header h2 { font-size: 15px; }
    .kpi-card__body strong { font-size: 21px; }
    .kpi-card__body small { font-size: 10px; }
    .archive-record__body h3, .project-directory__body h3, .project-directory__body h3 a { font-size: 12px; }
    .research-network-card__head h3 { font-size: 12px; }
    .network-members strong { font-size: 10px; }
    .network-members small, .research-network-card footer span { font-size: 9px; }
}
