:root {
	--brand-950: #071d43;
	--brand-900: #092b59;
	--brand-800: #0d3b78;
	--brand-700: #165dff;
	--brand-600: #2b78ed;
	--brand-100: #eaf3ff;
	--cyan-600: #1389a4;
	--ink-950: #102b49;
	--ink-800: #213d5c;
	--ink-700: #48637d;
	--ink-500: #6e8296;
	--ink-300: #aab8c6;
	--line-strong: #c9d8e7;
	--line: #dfe8f1;
	--line-soft: #edf3f8;
	--canvas: #f3f7fb;
	--surface: #ffffff;
	--surface-tint: #f7fbff;
	--success: #1b8d6c;
	--shadow-sm: 0 6px 18px rgba(19, 57, 99, 0.08);
	--shadow-md: 0 16px 34px rgba(19, 57, 99, 0.12);
	--shadow-lg: 0 24px 54px rgba(7, 29, 67, 0.18);
	--radius-sm: 8px;
	--radius-md: 14px;
	--radius-lg: 20px;
	--content-width: 1320px;
	--ease: cubic-bezier(0.2, 0.75, 0.25, 1);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--ink-950);
	background:
		linear-gradient(180deg, rgba(234, 243, 255, 0.72), transparent 350px),
		var(--canvas);
	font-size: 15px;
	line-height: 1.7;
}

body.is-locked {
	overflow: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input {
	font: inherit;
}

button {
	border: 0;
	cursor: pointer;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
	outline: 3px solid rgba(22, 93, 255, 0.28);
	outline-offset: 3px;
}

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

.site-shell {
	min-width: 0;
	overflow: hidden;
}

.container {
	width: min(var(--content-width), calc(100% - 64px));
	margin: 0 auto;
}

.header-surface {
	position: relative;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(241, 248, 255, 0.94)),
		url("../images/header-lines.png") center / cover;
	border-bottom: 1px solid var(--line);
}

.header-main {
	min-height: 112px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	min-width: 320px;
}

.brand img {
	width: auto;
	height: 62px;
}

.brand-wordmark {
	width: 300px;
}

.brand-wordmark strong,
.brand-wordmark small {
	display: block;
}

.brand-wordmark strong {
	color: var(--brand-800);
	font-size: 25px;
	font-weight: 760;
	letter-spacing: 0.06em;
	line-height: 1.2;
}

.brand-wordmark small {
	margin-top: 5px;
	color: var(--brand-600);
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.16em;
	line-height: 1.4;
}

.header-tools {
	display: flex;
	align-items: center;
	gap: 14px;
}

.search-box {
	width: 338px;
	height: 44px;
	display: flex;
	align-items: center;
	border: 1px solid var(--line-strong);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.88);
	box-shadow: 0 4px 12px rgba(29, 75, 122, 0.06);
	overflow: hidden;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-box:focus-within {
	border-color: var(--brand-600);
	box-shadow: 0 0 0 4px rgba(22, 93, 255, 0.1);
}

.search-box input {
	width: 100%;
	height: 100%;
	padding: 0 18px;
	border: 0;
	outline: 0;
	color: var(--ink-950);
	background: transparent;
}

.search-box input::placeholder {
	color: var(--ink-300);
}

.search-box button {
	display: grid;
	place-items: center;
	width: 52px;
	height: 100%;
	color: var(--brand-800);
	background: transparent;
}

.search-box button img {
	width: 19px;
	height: 19px;
}

.tool-icon {
	display: inline-grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border: 1px solid var(--line);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.72);
}

.tool-icon img {
	width: 19px;
	height: 19px;
}

.nav-bar {
	position: relative;
	z-index: 10;
	background: var(--brand-950);
	border-bottom: 4px solid var(--brand-700);
	box-shadow: 0 10px 24px rgba(7, 29, 67, 0.15);
}

.nav-inner {
	min-height: 62px;
	display: flex;
	align-items: center;
}

.home-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 66px;
	flex: 0 0 66px;
	color: #fff;
}

.home-link img {
	width: 25px;
	height: 25px;
	filter: brightness(0) invert(1);
	opacity: 0.92;
}

.main-nav {
	width: 100%;
}

.main-nav ul {
	display: grid;
	grid-template-columns: repeat(9, 1fr);
	gap: 2px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.main-nav a {
	position: relative;
	display: block;
	padding: 15px 6px 13px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 16px;
	font-weight: 620;
	text-align: center;
	transition: color 0.2s ease, background 0.2s ease;
}

.main-nav a::after {
	position: absolute;
	right: 25%;
	bottom: -4px;
	left: 25%;
	height: 3px;
	content: "";
	background: transparent;
	transition: background 0.2s ease, transform 0.2s ease;
	transform: scaleX(0.3);
}

.main-nav a:hover,
.main-nav a.is-active {
	color: #fff;
	background: rgba(255, 255, 255, 0.08);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
	background: #7fb0ff;
	transform: scaleX(1);
}

.mobile-trigger {
	display: none;
	place-items: center;
	width: 44px;
	height: 44px;
	border: 1px solid var(--line);
	border-radius: 50%;
	background: var(--surface);
}

.mobile-trigger img {
	width: 22px;
	height: 22px;
}

.hero-wrap {
	padding-top: 34px;
}

.hero {
	display: grid;
	grid-template-columns: minmax(0, 1.62fr) minmax(360px, 1fr);
	min-height: 494px;
	overflow: hidden;
	border: 1px solid rgba(201, 216, 231, 0.8);
	border-radius: var(--radius-lg);
	background: var(--surface);
	box-shadow: var(--shadow-lg);
}

.hero-stage {
	position: relative;
	min-width: 0;
	overflow: hidden;
	background: var(--brand-950);
}

.hero-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transform: scale(1.035);
	transition: opacity 0.62s ease, transform 5s var(--ease);
}

.hero-slide.is-active {
	opacity: 1;
	transform: scale(1);
}

.hero-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-slide::after {
	position: absolute;
	inset: 0;
	content: "";
	background: linear-gradient(180deg, rgba(4, 20, 48, 0.04), rgba(4, 20, 48, 0.3));
	pointer-events: none;
}

.hero-caption {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	min-height: 104px;
	padding: 18px 24px 17px;
	color: #fff;
	background: linear-gradient(180deg, transparent, rgba(3, 19, 45, 0.92));
}

.hero-caption strong {
	display: block;
	max-width: 90%;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.55;
}

.hero-list {
	display: grid;
	grid-template-rows: repeat(4, 1fr);
	background: var(--surface-tint);
}

.hero-list-item {
	display: grid;
	grid-template-columns: 128px minmax(0, 1fr);
	align-items: center;
	gap: 16px;
	padding: 12px 14px;
	cursor: pointer;
	border-bottom: 1px solid var(--line);
	transition: background 0.25s ease, color 0.25s ease, padding 0.25s ease;
}

.hero-list-item:last-child {
	border-bottom: 0;
}

.hero-list-item:hover {
	padding-left: 20px;
	background: var(--brand-100);
}

.hero-list-item.is-active {
	color: #fff;
	background: var(--brand-800);
}

.hero-list-item img {
	width: 122px;
	height: 76px;
	object-fit: cover;
	border-radius: var(--radius-sm);
	box-shadow: 0 5px 12px rgba(10, 41, 82, 0.16);
}

.hero-list-item span {
	display: block;
	flex: 1 1 0;
	width: 0;
	max-width: 100%;
	min-width: 0;
	overflow: hidden;
	font-size: 15px;
	font-weight: 620;
	line-height: 1.65;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.hero-list-copy {
	flex: 1 1 0;
	min-width: 0;
}

.hero-list-copy span {
	width: auto;
	flex: none;
}

.hero-list-copy {
	min-width: 0;
}

.hero-list-item small {
	display: -webkit-box;
	margin-top: 3px;
	overflow: hidden;
	color: var(--ink-500);
	font-size: 12px;
	font-weight: 400;
	line-height: 1.5;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.hero-list-item.is-active small {
	color: rgba(255, 255, 255, 0.78);
}

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

.module-card,
.content-card,
.article-card,
.list-card,
.article-side,
.side-menu,
.about-intro,
.leader-card,
.political-list,
.academic-showcase,
.mini-card,
.service-panel,
.consult-panel {
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	background: var(--surface);
	box-shadow: var(--shadow-sm);
}

.module-card,
.content-card {
	overflow: hidden;
	transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
}

.module-card:hover,
.content-card:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-2px);
}

.module-head,
.content-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 68px;
	padding: 0 22px;
	border-bottom: 1px solid var(--line);
	background:
		linear-gradient(90deg, rgba(234, 243, 255, 0.82), rgba(255, 255, 255, 0)),
		var(--surface);
}

.module-head h2,
.content-head h2 {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	color: var(--brand-800);
	font-size: 20px;
	font-weight: 760;
	letter-spacing: 0.02em;
}

.section-icon {
	display: inline-block;
	width: 21px;
	height: 17px;
	filter: saturate(1.2);
}

.module-more,
.content-more {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	color: var(--brand-600);
	font-size: 13px;
	font-weight: 680;
}

.module-more:hover,
.content-more:hover {
	color: var(--brand-800);
}

.inline-arrow,
.more-icon {
	display: inline-block;
	width: 18px !important;
	height: 18px !important;
}

.news-list,
.simple-list,
.documents-list,
.timeline-list {
	margin: 0;
	padding: 14px 22px 18px;
	list-style: none;
}

.timeline-list li {
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr);
	gap: 14px;
	padding: 11px 0;
	border-bottom: 1px dashed var(--line-strong);
}

.timeline-list li:last-child {
	border-bottom: 0;
}

.news-list li,
.simple-list li,
.documents-list li {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 14px;
	padding: 10px 0;
	border-bottom: 1px dashed var(--line-strong);
}

.news-list li:last-child,
.simple-list li:last-child,
.documents-list li:last-child {
	border-bottom: 0;
}

.news-list a,
.simple-list a,
.documents-list a {
	min-width: 0;
	overflow: hidden;
	color: var(--ink-800);
	font-size: 14px;
	font-weight: 540;
	white-space: nowrap;
	text-overflow: ellipsis;
	transition: color 0.2s ease;
}

.news-list a:hover,
.simple-list a:hover,
.documents-list a:hover {
	color: var(--brand-700);
}

.date {
	flex: 0 0 auto;
	color: var(--ink-500);
	font-size: 12px;
	font-variant-numeric: tabular-nums;
}

.tabs-module {
	overflow: hidden;
}

.tab-title {
	display: flex;
	gap: 2px;
	margin: 0;
	padding: 0 22px;
	list-style: none;
	border-bottom: 1px solid var(--line);
	background: var(--surface-tint);
}

.tab-title button {
	position: relative;
	min-height: 48px;
	padding: 12px 14px 9px;
	color: var(--ink-500);
	background: transparent;
	font-size: 14px;
	font-weight: 640;
	transition: color 0.2s ease;
}

.tab-title button::after {
	position: absolute;
	right: 12px;
	bottom: -1px;
	left: 12px;
	height: 3px;
	content: "";
	background: transparent;
}

.tab-title button:hover,
.tab-title button.is-active {
	color: var(--brand-700);
}

.tab-title button.is-active::after {
	background: var(--brand-700);
}

.tab-content {
	padding: 20px 22px 22px;
}

.tab-panel {
	display: none;
}

.tab-panel.is-active {
	display: block;
}

.feature-story {
	display: grid;
	grid-template-columns: 37% 1fr;
	gap: 20px;
	margin-bottom: 0;
}

.feature-story img {
	width: 100%;
	height: 128px;
	object-fit: cover;
	border-radius: var(--radius-sm);
}

.feature-story h3 {
	margin: 0 0 8px;
	color: var(--ink-950);
	font-size: 17px;
	line-height: 1.5;
}

.feature-story p {
	margin: 0;
	color: var(--ink-500);
	font-size: 13px;
	line-height: 1.8;
}

.tab-news-list {
	padding: 12px 0 0;
}

.specials {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
	padding: 18px 22px 22px;
}

.specials a {
	overflow: hidden;
	border-radius: var(--radius-sm);
}

.specials img {
	width: 100%;
	height: 126px;
	margin: 0;
	object-fit: cover;
	transition: transform 0.35s var(--ease);
}

.specials a:hover img {
	transform: scale(1.04);
}

.service-strip {
	position: relative;
	display: grid;
	grid-template-columns: minmax(250px, 0.82fr) 1.45fr;
	min-height: 176px;
	margin-top: 34px;
	overflow: hidden;
	border-radius: var(--radius-md);
	color: #fff;
	background: var(--brand-900) url("../images/service-bg.png") center / cover;
	box-shadow: var(--shadow-md);
}

.service-title {
	display: flex;
	align-items: center;
	padding: 0 34px;
	background: rgba(3, 24, 59, 0.46);
	font-size: 22px;
	font-weight: 760;
	line-height: 1.45;
}

.service-links {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0 28px;
	align-content: center;
	margin: 0;
	padding: 18px 30px;
	list-style: none;
}

.service-links li,
.icon-list li {
	min-width: 0;
}

.service-links a {
	display: block;
	min-width: 0;
	overflow: hidden;
	padding: 8px 0;
	color: rgba(255, 255, 255, 0.88);
	font-size: 14px;
	white-space: nowrap;
	text-overflow: ellipsis;
	transition: transform 0.2s ease, color 0.2s ease;
}

.service-links a:hover {
	color: #c5ecff;
	transform: translateX(5px);
}

.service-icon {
	display: inline-block;
	width: 22px;
	height: 22px;
	margin-right: 8px;
	vertical-align: -5px;
	filter: brightness(0) invert(1);
}

.exchange-layout {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 24px;
	margin-top: 34px;
}

.exchange-feature {
	display: grid;
	grid-template-columns: 52% 1fr;
	gap: 20px;
	padding: 20px 22px 22px;
}

.exchange-feature img {
	width: 100%;
	height: 230px;
	object-fit: cover;
	border-radius: var(--radius-sm);
}

.exchange-feature h3 {
	margin: 0 0 8px;
	font-size: 17px;
	line-height: 1.5;
}

.exchange-feature .simple-list {
	margin: 0;
	padding: 0;
}

.exchange-feature .simple-list li {
	padding-left: 0;
}

.exchange-feature .simple-list li::before {
	display: none;
}

.link-band {
	margin-top: 42px;
	padding: 24px 0 28px;
	border-top: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.4);
}

.link-band strong {
	display: inline-block;
	margin-right: 24px;
	color: var(--brand-800);
	font-size: 16px;
	font-weight: 760;
}

.link-band a {
	display: inline-block;
	margin: 4px 18px 4px 0;
	color: var(--ink-500);
	font-size: 13px;
	transition: color 0.2s ease;
}

.link-band a:hover {
	color: var(--brand-700);
}

.footer {
	margin-top: 0;
	padding: 34px 0;
	color: var(--ink-500);
	background:
		linear-gradient(rgba(244, 248, 252, 0.94), rgba(239, 246, 251, 0.98)),
		url("../images/header-lines.png") center / cover;
	border-top: 1px solid var(--line);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1fr 2fr 1fr;
	align-items: center;
	gap: 28px;
}

.footer-brand {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--brand-800);
}

.footer-brand img {
	width: auto;
	height: 48px;
}

.footer-brand strong {
	font-size: 15px;
}

.footer-copy {
	font-size: 12px;
	line-height: 1.9;
}

.footer-report {
	justify-self: end;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--ink-700);
	font-size: 13px;
}

.report-icon {
	display: inline-block;
	width: 20px;
	height: 20px;
}

.to-top {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 10;
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	color: #fff;
	background: var(--brand-700);
	border: 3px solid rgba(255, 255, 255, 0.8);
	border-radius: 50%;
	box-shadow: var(--shadow-md);
	opacity: 0;
	pointer-events: none;
	transform: translateY(8px);
	transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease;
}

.to-top:hover {
	background: var(--brand-800);
}

.to-top img {
	width: 20px;
	height: 20px;
	filter: brightness(0) invert(1);
}

.to-top.is-visible {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.page-banner {
	position: relative;
	height: 260px;
	overflow: hidden;
	background: var(--brand-900);
}

.page-banner::after {
	position: absolute;
	inset: 0;
	content: "";
	background: linear-gradient(90deg, rgba(5, 25, 57, 0.68), rgba(5, 25, 57, 0.08));
	pointer-events: none;
}

.page-banner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.page-banner-copy {
	position: absolute;
	top: 50%;
	left: max(32px, calc((100% - var(--content-width)) / 2));
	z-index: 1;
	color: #fff;
	transform: translateY(-50%);
}

.page-banner-copy small {
	display: block;
	margin-bottom: 8px;
	color: #b9d8ff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.18em;
}

.page-banner-copy h1 {
	margin: 0;
	font-size: 38px;
	font-weight: 780;
	letter-spacing: 0.12em;
}

.page-body {
	padding: 42px 0 64px;
}

.breadcrumb {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 24px;
	color: var(--ink-500);
	font-size: 13px;
}

.breadcrumb a:hover {
	color: var(--brand-700);
}

.article-layout {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(260px, 0.8fr);
	gap: 24px;
}

.article-card {
	padding: 34px 42px 48px;
}

.article-card h2 {
	margin: 0;
	color: var(--ink-950);
	font-size: 27px;
	font-weight: 780;
	line-height: 1.45;
}

.article-meta {
	margin: 10px 0 28px;
	padding-bottom: 18px;
	color: var(--ink-500);
	font-size: 13px;
	border-bottom: 1px solid var(--line);
}

.article-copy {
	color: var(--ink-700);
	font-size: 16px;
	line-height: 2.08;
}

.article-copy p {
	margin: 0 0 20px;
}

.article-copy h3 {
	margin: 28px 0 10px;
	color: var(--brand-800);
	font-size: 19px;
}

.article-side {
	align-self: start;
	overflow: hidden;
	background: var(--surface-tint);
}

.article-side h3 {
	margin: 0;
	padding: 18px 20px;
	color: #fff;
	background: var(--brand-800);
	font-size: 18px;
}

.article-side ul {
	margin: 0;
	padding: 14px 20px 20px;
	list-style: none;
}

.article-side li {
	padding: 9px 0;
	color: var(--ink-700);
	border-bottom: 1px dashed var(--line-strong);
	font-size: 13px;
}

.article-side li:last-child {
	border-bottom: 0;
}

.article-side a:hover {
	color: var(--brand-700);
}

.list-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 292px;
	gap: 24px;
}

.list-card {
	padding: 0 28px 24px;
}

.list-card h2 {
	margin: 0 -28px 12px;
	padding: 18px 28px;
	color: var(--brand-800);
	background:
		linear-gradient(90deg, rgba(234, 243, 255, 0.9), transparent),
		var(--surface);
	border-bottom: 1px solid var(--line);
	font-size: 22px;
	font-weight: 760;
}

.result-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.result-item {
	display: grid;
	grid-template-columns: 90px minmax(0, 1fr) 54px;
	gap: 18px;
	align-items: center;
	min-height: 112px;
	padding: 16px 0;
	border-bottom: 1px dashed var(--line-strong);
}

.result-item:last-child {
	border-bottom: 0;
}

.result-date {
	padding: 10px 8px;
	color: var(--brand-700);
	text-align: center;
	background: var(--brand-100);
	border-radius: var(--radius-sm);
}

.result-date strong {
	display: block;
	font-size: 29px;
	font-weight: 780;
	line-height: 1;
	font-variant-numeric: tabular-nums;
}

.result-date span {
	display: block;
	margin-top: 5px;
	color: var(--ink-500);
	font-size: 12px;
	font-variant-numeric: tabular-nums;
}

.result-body h3 {
	margin: 0 0 4px;
	color: var(--ink-950);
	font-size: 17px;
	line-height: 1.5;
}

.result-body h3 a:hover {
	color: var(--brand-700);
}

.result-body p {
	margin: 0;
	color: var(--ink-500);
	font-size: 13px;
	line-height: 1.7;
}

.result-arrow {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border: 1px solid var(--line);
	border-radius: 50%;
	background: var(--surface-tint);
	transition: background 0.2s ease, transform 0.2s ease;
}

.result-arrow:hover {
	background: var(--brand-100);
	transform: translateX(3px);
}

.result-arrow img {
	width: 21px;
	height: 21px;
}

.side-menu {
	align-self: start;
	overflow: hidden;
	background: var(--surface-tint);
}

.side-menu h3 {
	margin: 0;
	padding: 18px 20px;
	color: #fff;
	background: var(--brand-800);
	font-size: 18px;
}

.side-menu a {
	display: block;
	padding: 12px 20px;
	color: var(--ink-700);
	border-bottom: 1px solid var(--line);
	transition: color 0.2s ease, background 0.2s ease, padding 0.2s ease;
}

.side-menu a:hover,
.side-menu a.is-active {
	padding-left: 24px;
	color: var(--brand-700);
	background: var(--brand-100);
}

.about-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
	gap: 24px;
}

.about-intros {
	display: grid;
	gap: 18px;
}

.about-intro {
	display: grid;
	grid-template-columns: 160px 1fr;
	gap: 20px;
	padding: 20px;
}

.about-intro img {
	width: 160px;
	height: 155px;
	object-fit: cover;
	border-radius: var(--radius-sm);
}

.about-intro h3 {
	margin: 0 0 8px;
	color: var(--ink-950);
	font-size: 18px;
}

.about-intro p {
	margin: 0 0 12px;
	color: var(--ink-700);
	font-size: 13px;
	line-height: 1.8;
}

.leader-card {
	overflow: hidden;
}

.leader-show {
	display: grid;
	grid-template-columns: 96px 1fr;
	gap: 16px;
	min-height: 134px;
	padding: 20px;
}

.leader-show img {
	width: 96px;
	height: 120px;
	object-fit: cover;
	border-radius: var(--radius-sm);
}

.leader-show h3 {
	margin: 0 0 4px;
	color: var(--brand-800);
}

.leader-show p {
	margin: 0;
	color: var(--ink-700);
	font-size: 13px;
	line-height: 1.75;
}

.leader-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 0 20px 18px;
}

.leader-tabs button {
	min-height: 36px;
	padding: 7px 10px;
	color: var(--ink-700);
	background: var(--canvas);
	border: 1px solid var(--line);
	border-radius: 6px;
	font-size: 12px;
	line-height: 1.4;
	white-space: nowrap;
	transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.leader-tabs button.is-active {
	color: #fff;
	background: var(--brand-700);
	border-color: var(--brand-700);
}

.political-grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 24px;
}

.political-feature {
	min-height: 360px;
	padding: 34px;
	overflow: hidden;
	border-radius: var(--radius-md);
	color: #fff;
	background: var(--brand-900) url("../images/political.png") center / cover;
	box-shadow: var(--shadow-md);
}

.political-feature h2 {
	margin: 0 0 12px;
	font-size: 27px;
}

.political-feature p {
	max-width: 560px;
	margin: 0;
	color: #d6e8ff;
	line-height: 1.9;
}

.political-list {
	padding: 0 24px;
}

.political-list h2 {
	margin: 0 -24px;
	padding: 18px 24px;
	color: var(--brand-800);
	border-bottom: 1px solid var(--line);
	font-size: 21px;
}

.academic-showcase {
	display: grid;
	grid-template-columns: 40% 1fr;
	gap: 24px;
	padding: 20px;
}

.academic-showcase img {
	width: 100%;
	height: 300px;
	object-fit: cover;
	border-radius: var(--radius-sm);
}

.academic-showcase h2 {
	margin: 8px 0 10px;
	color: var(--brand-800);
	font-size: 25px;
}

.academic-showcase p {
	margin: 0 0 18px;
	color: var(--ink-700);
	line-height: 1.9;
}

.mini-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin-top: 22px;
}

.mini-card {
	padding: 18px 20px;
}

.mini-card h3 {
	margin: 0 0 7px;
	color: var(--brand-800);
	font-size: 17px;
}

.mini-card p {
	margin: 0;
	color: var(--ink-700);
	font-size: 13px;
}

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

.service-panel,
.consult-panel {
	min-height: 310px;
	padding: 26px;
	background:
		linear-gradient(135deg, rgba(234, 243, 255, 0.72), rgba(255, 255, 255, 0.92) 46%),
		var(--surface);
}

.service-panel h2,
.consult-panel h2 {
	margin: 0 0 12px;
	color: var(--brand-800);
	font-size: 22px;
}

.service-panel p,
.consult-panel p {
	margin: 0 0 16px;
	color: var(--ink-700);
}

.icon-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.icon-list a {
	display: block;
	min-height: 44px;
	overflow: hidden;
	padding: 11px 13px;
	color: var(--ink-700);
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	white-space: nowrap;
	text-overflow: ellipsis;
	transition: color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.icon-list a:hover {
	color: var(--brand-700);
	border-color: #a9c6f5;
	box-shadow: var(--shadow-sm);
}

.toast {
	position: fixed;
	top: 24px;
	left: 50%;
	z-index: 20;
	padding: 11px 18px;
	color: #fff;
	background: rgba(7, 29, 67, 0.94);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	box-shadow: var(--shadow-md);
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, -10px);
	transition: opacity 0.25s ease, transform 0.25s ease;
}

.toast.is-visible {
	opacity: 1;
	transform: translate(-50%, 0);
}

.js-ready [data-section-view],
.js-ready [data-article-view] {
	display: none;
}

.js-ready [data-section-view].is-active,
.js-ready [data-article-view].is-active {
	display: block;
}

.section-jump {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 18px;
}

.section-jump a {
	min-height: 40px;
	padding: 8px 11px;
	color: var(--ink-700);
	border: 1px solid var(--line);
	border-radius: 999px;
	background: var(--surface);
	transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.section-jump a:hover,
.section-jump a.is-active {
	color: #fff;
	border-color: var(--brand-700);
	background: var(--brand-700);
}

/* Classic institutional portal treatment */
:root {
	--brand-950: #164680;
	--brand-900: #1d4b87;
	--brand-800: #1662b4;
	--brand-700: #0b6fd0;
	--brand-600: #2c7bc6;
	--brand-100: #eef7fc;
	--ink-950: #222a35;
	--ink-800: #3b4653;
	--ink-700: #596673;
	--ink-500: #7a8792;
	--ink-300: #aeb9c2;
	--line-strong: #cbd9e5;
	--line: #dde7ee;
	--line-soft: #eef3f6;
	--canvas: #ffffff;
	--surface: #ffffff;
	--surface-tint: #f1fbfd;
	--shadow-sm: none;
	--shadow-md: none;
	--shadow-lg: none;
	--radius-sm: 0;
	--radius-md: 0;
	--radius-lg: 0;
	--content-width: 1120px;
}

html *,
html *::before,
html *::after {
	border-radius: 0 !important;
}

body {
	color: var(--ink-950);
	background: #fff;
	font-size: 14px;
	line-height: 1.7;
}

.header-surface {
	background: #fff url("../images/header-lines.png") center / cover;
	border-bottom: 1px solid #edf1f4;
}

.header-main {
	min-height: 96px;
}

.brand {
	gap: 12px;
}

.brand img {
	width: auto;
	height: 54px;
}

.brand-wordmark strong {
	color: #15579c;
	font-size: 23px;
	font-weight: 700;
	letter-spacing: 0.08em;
}

.brand-wordmark small {
	color: #4778aa;
	font-size: 8px;
	letter-spacing: 0.13em;
}

.brand .brand-logo {
	display: block;
	width: auto;
	height: 68px;
}

.header-tools {
	gap: 10px;
}

.search-box {
	width: 306px;
	height: 36px;
	border-color: #d7e0e6;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: none;
}

.search-box:focus-within {
	border-color: var(--brand-700);
	box-shadow: 0 0 0 2px rgba(11, 111, 208, 0.12);
}

.search-box input {
	padding: 0 13px;
	font-size: 13px;
}

.search-box button {
	width: 42px;
}

.tool-icon {
	width: 28px;
	height: 28px;
	border: 0;
	background: transparent;
}

.tool-icon img {
	width: 17px;
	height: 17px;
}

.nav-bar {
	background: #fff;
	border-bottom: 4px solid var(--brand-700);
	box-shadow: none;
}

.nav-inner {
	min-height: 56px;
}

.home-link {
	width: 62px;
	flex-basis: 62px;
	border-right: 1px solid #e7edf2;
}

.home-link img {
	filter: none;
	opacity: 1;
}

.main-nav ul {
	gap: 0;
}

.main-nav a {
	padding: 16px 5px 14px;
	color: #3b4653;
	font-size: 16px;
	font-weight: 500;
}

.main-nav a::after {
	right: 22%;
	bottom: -4px;
	left: 22%;
	height: 4px;
}

.main-nav a:hover,
.main-nav a.is-active {
	color: var(--brand-700);
	background: transparent;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
	background: var(--brand-700);
}

.hero-wrap {
	padding-top: 30px;
}

.hero {
	min-height: 424px;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.hero-stage {
	border: 1px solid #e2eaf0;
}

.hero-slide::after {
	background: linear-gradient(180deg, transparent 50%, rgba(10, 42, 77, 0.62));
}

.hero-caption {
	min-height: 74px;
	padding: 14px 20px;
	background: rgba(13, 76, 148, 0.9);
}

.hero-caption strong {
	font-size: 17px;
	font-weight: 600;
}

.hero-list {
	background: #effafd;
}

.hero-list-item {
	display: flex;
	align-items: flex-start;
	min-height: 106px;
	padding: 18px 22px;
	border-bottom-color: #dcecf3;
	background: #effafd;
}

.hero-list-item:hover {
	padding-left: 22px;
	background: #e3f4f8;
}

.hero-list-item.is-active {
	background: #0866cb;
}

.hero-list-item img {
	display: none;
}

.hero-list-item span {
	display: block;
	flex: 1 1 0;
	width: 0;
	max-width: 100%;
	min-width: 0;
	overflow: hidden;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.75;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.hero-list-copy {
	flex: 1 1 0;
	min-width: 0;
}

.hero-list-copy span {
	width: auto;
	flex: none;
}

.section-grid,
.exchange-layout {
	gap: 24px;
	margin-top: 28px;
}

.module-card,
.content-card,
.article-card,
.list-card,
.article-side,
.side-menu,
.about-intro,
.leader-card,
.political-list,
.academic-showcase,
.mini-card,
.service-panel,
.consult-panel {
	border: 1px solid #edf1f4;
	border-top: 3px solid var(--brand-700);
	background: #fff;
	box-shadow: none;
}

.module-card,
.content-card {
	transition: border-color 0.2s ease;
}

.module-card:hover,
.content-card:hover {
	border-color: #d4e4ef;
	border-top-color: var(--brand-700);
	box-shadow: none;
	transform: none;
}

.module-head,
.content-head {
	min-height: 56px;
	padding: 0 16px;
	border-bottom: 0;
	background: #fff;
}

.module-head h2,
.content-head h2 {
	gap: 8px;
	color: #1e65ad;
	font-size: 19px;
	font-weight: 700;
}

.section-icon {
	display: none;
}

.module-more,
.content-more {
	gap: 0;
	padding: 4px 9px;
	color: #fff;
	background: var(--brand-600);
	font-size: 12px;
	font-weight: 500;
}

.module-more:hover,
.content-more:hover {
	color: #fff;
	background: var(--brand-800);
}

.more-icon {
	display: none;
}

.news-list,
.documents-list,
.timeline-list {
	padding: 0 16px 16px;
}

.simple-list {

	padding: 20px 16px 0;
}

.news-list li,
.simple-list li,
.documents-list li {
	position: relative;
	min-height: 36px;
	padding: 8px 0 8px 12px;
	border-bottom-color: #dfe8ee;
}

.news-list li::before,
.simple-list li::before,
.documents-list li::before {
	position: absolute;
	top: 50%;
	left: 0;
	width: 4px;
	height: 4px;
	content: "";
	background: var(--brand-600);
	transform: translateY(-50%);
}

.news-list a,
.simple-list a,
.documents-list a {
	font-size: 14px;
	font-weight: 400;
}

.date {
	font-size: 12px;
}

.tab-title {
	gap: 0;
	padding: 0 16px;
	background: #f7fafc;
}

.tab-title button {
	min-height: 44px;
	padding: 10px 13px 8px;
	font-weight: 500;
}

.tab-content {
	padding: 16px;
}

.feature-story,
.exchange-feature {
	gap: 16px;
}

.feature-story img {
	height: 132px;
}

.specials {
	grid-template-columns: 1fr;
	gap: 10px;
	padding: 4px 16px 16px;
}

.specials img {
	height: 118px;
}

.service-strip {
	grid-template-columns: minmax(280px, 0.86fr) 1fr;
	min-height: 78px;
	margin-top: 28px;
	border: 1px solid #dce7ef;
	color: var(--ink-700);
	background: #fff;
	box-shadow: none;
}

.service-title {
	padding: 0 24px;
	color: #fff;
	background: var(--brand-700);
	font-size: 16px;
	font-weight: 700;
	white-space: nowrap;
}

.service-links {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0;
	padding: 10px 20px;
}

.service-links a {
	padding: 6px 10px;
	color: var(--ink-700);
	font-size: 13px;
}

.service-links a:hover {
	color: var(--brand-700);
	transform: none;
}

.service-icon {
	display: none;
}

.exchange-feature {
	padding: 4px 16px 16px;
}

.exchange-feature img {
	height: 214px;
}

.link-band {
	margin-top: 36px;
	padding: 14px 0;
	border-top: 1px solid #dce7ef;
	border-bottom: 1px solid #dce7ef;
	background: #fff;
}

.link-band strong {
	margin-right: 20px;
	padding: 8px 14px;
	color: #fff;
	background: var(--brand-700);
	font-size: 14px;
}

.link-band a {
	margin: 4px 14px 4px 0;
	color: var(--ink-500);
}

.footer {
	padding: 30px 0;
	color: rgba(255, 255, 255, 0.74);
	background: #204981;
	border-top: 0;
}

.footer-brand {
	color: #fff;
}

.footer-brand img {
	filter: none;
}

.footer-brand .footer-brand-logo {
	display: block;
	width: auto;
	height: 56px;
}

.footer-copy {
	color: rgba(255, 255, 255, 0.74);
}

.to-top {
	right: 22px;
	bottom: 22px;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(255, 255, 255, 0.55);
	background: var(--brand-700);
	box-shadow: none;
}

.page-banner {
	height: 220px;
	border-bottom: 4px solid var(--brand-700);
}

.page-banner-copy small {
	color: #d6eaff;
	letter-spacing: 0.12em;
}

.page-banner-copy h1 {
	font-size: 34px;
	font-weight: 700;
}

.page-body {
	padding: 30px 0 54px;
}

.article-card {
	padding: 28px 34px 40px;
}

.article-card h2 {
	font-size: 25px;
	font-weight: 700;
}

.article-side h3,
.side-menu h3 {
	padding: 15px 18px;
	background: var(--brand-800);
	font-size: 17px;
}

.list-card {
	padding: 0 22px 20px;
}

.list-card h2 {
	margin: 0 -22px 8px;
	padding: 15px 22px;
	color: var(--brand-800);
	background: #fff;
	font-size: 20px;
	font-weight: 700;
}

.result-date {
	padding: 8px;
	background: #eef8fc;
}

.result-arrow {
	width: 34px;
	height: 34px;
	border-color: #d8e4ed;
	background: #fff;
}

.result-arrow:hover {
	background: #eef8fc;
	transform: none;
}

.side-menu a:hover,
.side-menu a.is-active {
	padding-left: 20px;
	background: #eef8fc;
}

.about-intro,
.academic-showcase,
.mini-card,
.service-panel,
.consult-panel,
.political-feature {
	box-shadow: none;
}

.political-feature {
	position: relative;
	isolation: isolate;
	border-top: 3px solid var(--brand-700);
}

.political-feature::before {
	position: absolute;
	inset: 0;
	z-index: 0;
	content: "";
	background: rgba(4, 43, 92, 0.42);
}

.political-feature>* {
	position: relative;
	z-index: 1;
}

.leader-tabs button,
.icon-list a,
.section-jump a {
	border-radius: 0 !important;
}

.toast {
	box-shadow: none;
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.search-page {
	padding: 28px 32px 36px;
	border: 1px solid #edf1f4;
	border-top: 3px solid var(--brand-700);
	background: #fff;
}

.search-page-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 24px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--line);
}

.search-page-head h2 {
	margin: 0;
	color: var(--brand-800);
	font-size: 22px;
	font-weight: 700;
}

.search-page-head p {
	margin: 0;
	color: var(--ink-500);
	font-size: 13px;
}

.search-page-form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 108px;
	gap: 10px;
	margin-top: 22px;
}

.search-page-form input {
	width: 100%;
	height: 46px;
	padding: 0 14px;
	color: var(--ink-950);
	border: 1px solid #cfdce6;
	outline: 0;
	background: #fff;
}

.search-page-form input:focus {
	border-color: var(--brand-700);
	box-shadow: 0 0 0 2px rgba(11, 111, 208, 0.12);
}

.search-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	min-height: 46px;
	color: #fff;
	background: var(--brand-700);
	font-size: 14px;
	font-weight: 600;
	transition: background 0.2s ease;
}

.search-submit:hover {
	background: var(--brand-800);
}

.search-submit img {
	width: 16px;
	height: 16px;
	filter: brightness(0) invert(1);
}

.search-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 16px;
}

.search-filters button {
	min-height: 34px;
	padding: 6px 12px;
	color: var(--ink-700);
	border: 1px solid #d8e4ed;
	background: #fff;
	font-size: 13px;
	transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.search-filters button:hover,
.search-filters button.is-active {
	color: #fff;
	border-color: var(--brand-700);
	background: var(--brand-700);
}

.search-summary {
	margin: 22px 0 0;
	padding: 11px 14px;
	color: var(--ink-700);
	border-left: 3px solid var(--brand-700);
	background: #f4f9fc;
	font-size: 13px;
}

.search-results {
	margin-top: 8px;
}

.search-results .result-item {
	grid-template-columns: 72px minmax(0, 1fr) 42px;
	min-height: 106px;
}

.search-result-meta {
	margin: 0 0 6px !important;
	color: var(--brand-600) !important;
	font-size: 12px !important;
}

.search-empty {
	padding: 36px 12px;
	color: var(--ink-500);
	text-align: center;
	border-bottom: 1px dashed var(--line-strong);
}

.news-list a,
.simple-list a,
.documents-list a,
.timeline-list a,
.article-side a,
.side-menu a,
.service-links a {
	display: block;
	min-width: 0;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.timeline-list li,
.result-body {
	min-width: 0;
}

.result-body h3,
.result-body h3 a,
.result-body p {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.result-body h3 a {
	display: block;
}

@media (prefers-reduced-motion: reduce) {

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}

@media (max-width: 1120px) {
	.container {
		width: min(100% - 44px, 940px);
	}

	.brand {
		min-width: 0;
	}

	.brand-wordmark {
		width: 245px;
	}

	.brand-wordmark strong {
		font-size: 21px;
	}

	.search-box {
		width: 260px;
	}

	.main-nav a {
		font-size: 14px;
	}

	.hero {
		grid-template-columns: minmax(0, 1.5fr) minmax(310px, 1fr);
	}

	.hero-list-item {
		grid-template-columns: 104px minmax(0, 1fr);
	}

	.hero-list-item img {
		width: 100px;
		height: 70px;
	}
}

@media (max-width: 820px) {
	.container {
		width: calc(100% - 30px);
	}

	.header-main {
		min-height: 82px;
		gap: 12px;
	}

	.brand {
		gap: 10px;
	}

	.brand img {
		width: auto;
		height: 48px;
	}

	.brand-wordmark {
		width: 178px;
	}

	.brand-wordmark strong {
		font-size: 15px;
		letter-spacing: 0;
	}

	.brand-wordmark small {
		margin-top: 2px;
		font-size: 7px;
		letter-spacing: 0.1em;
	}

	.brand .brand-logo {
		width: auto;
		height: 54px;
	}

	.header-tools {
		gap: 6px;
	}

	.search-box {
		width: 154px;
		height: 38px;
	}

	.search-box input {
		padding: 0 12px;
		font-size: 12px;
	}

	.search-box button {
		width: 38px;
	}

	.tool-icon {
		display: none;
	}

	.nav-inner {
		justify-content: space-between;
		min-height: 54px;
	}

	.home-link {
		width: auto;
		flex: 0 0 auto;
	}

	.home-link img {
		width: 23px;
		height: 23px;
	}

	.mobile-trigger {
		display: grid;
	}

	.main-nav {
		position: fixed;
		top: 0;
		right: -310px;
		z-index: 18;
		width: 300px;
		height: 100dvh;
		padding: 88px 24px 24px;
		background: var(--surface);
		box-shadow: -16px 0 32px rgba(7, 29, 67, 0.2);
		transition: right 0.28s var(--ease);
	}

	.main-nav.is-open {
		right: 0;
	}

	.main-nav ul {
		display: block;
	}

	.main-nav li {
		border-bottom: 1px solid var(--line);
	}

	.main-nav a {
		padding: 13px 0;
		color: var(--ink-800);
		font-size: 16px;
		text-align: left;
	}

	.main-nav a:hover,
	.main-nav a.is-active {
		color: var(--brand-700);
		background: transparent;
	}

	.main-nav a::after {
		right: auto;
		bottom: -1px;
		left: 0;
		width: 36px;
	}

	.nav-backdrop {
		position: fixed;
		inset: 0;
		z-index: 17;
		display: none;
		background: rgba(7, 29, 67, 0.48);
	}

	.nav-backdrop.is-visible {
		display: block;
	}

	.hero-wrap {
		padding-top: 22px;
	}

	.hero {
		display: block;
		min-height: 0;
	}

	.hero-stage {
		height: 270px;
	}

	.hero-list {
		display: none;
	}

	.hero-caption {
		min-height: 78px;
		padding: 12px 15px 13px;
	}

	.hero-caption strong {
		max-width: 100%;
		font-size: 14px;
	}

	.section-grid,
	.exchange-layout,
	.article-layout,
	.list-layout,
	.about-layout,
	.political-grid,
	.academic-showcase,
	.service-layout,
	.consult-layout {
		grid-template-columns: 1fr;
	}

	.section-grid {
		gap: 18px;
		margin-top: 22px;
	}

	.service-strip {
		grid-template-columns: 1fr;
		margin-top: 24px;
	}

	.service-title {
		min-height: 80px;
		padding: 0 22px;
		font-size: 18px;
	}

	.service-links {
		padding: 12px 22px 18px;
	}

	.exchange-layout {
		gap: 18px;
		margin-top: 24px;
	}

	.exchange-feature {
		grid-template-columns: 1fr;
	}

	.exchange-feature img {
		height: 190px;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.footer-report {
		justify-self: start;
	}

	.page-banner {
		height: 188px;
	}

	.page-banner-copy {
		left: 24px;
	}

	.page-banner-copy h1 {
		font-size: 28px;
	}

	.page-body {
		padding: 28px 0 44px;
	}

	.list-card {
		padding: 0 18px 18px;
	}

	.list-card h2 {
		margin-right: -18px;
		margin-left: -18px;
		padding-right: 18px;
		padding-left: 18px;
	}

	.result-item {
		grid-template-columns: 66px minmax(0, 1fr);
		gap: 12px;
	}

	.result-arrow {
		display: none;
	}

	.result-date {
		padding: 9px 5px;
	}

	.result-date strong {
		font-size: 23px;
	}

	.result-body h3 {
		font-size: 15px;
	}

	.result-body p {
		font-size: 12px;
	}

	.about-intro {
		grid-template-columns: 105px 1fr;
		gap: 13px;
		padding: 14px;
	}

	.about-intro img {
		width: 105px;
		height: 120px;
	}

	.article-card {
		padding: 22px 18px 30px;
	}

	.article-card h2 {
		font-size: 22px;
	}

	.article-copy {
		font-size: 15px;
	}

	.article-side,
	.side-menu {
		order: -1;
	}

	.political-feature {
		min-height: 290px;
		padding: 24px;
	}

	.academic-showcase {
		gap: 14px;
		padding: 14px;
	}

	.academic-showcase img {
		height: 220px;
	}
}

@media (max-width: 540px) {
	.header-main {
		align-items: center;
	}

	.brand-wordmark {
		width: 142px;
	}

	.brand-wordmark small {
		max-width: 136px;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
	}

	.brand .brand-logo {
		width: auto;
		height: 40px;
	}

	.search-box {
		width: 38px;
	}

	.search-box input {
		display: none;
	}

	.search-box button {
		width: 38px;
	}

	.hero-stage {
		height: 232px;
	}

	.hero-caption strong {
		font-size: 13px;
	}

	.module-head,
	.content-head {
		min-height: 60px;
		padding: 0 16px;
	}

	.module-head h2,
	.content-head h2 {
		font-size: 17px;
	}

	.news-list,
	.simple-list,
	.documents-list,
	.timeline-list,
	.tab-content {
		padding-right: 16px;
		padding-left: 16px;
	}

	.tab-title {
		padding: 0 12px;
		overflow-x: auto;
	}

	.tab-title button {
		flex: 0 0 auto;
		padding-right: 10px;
		padding-left: 10px;
		font-size: 13px;
	}

	.feature-story {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.feature-story img {
		height: 160px;
	}

	.specials {
		grid-template-columns: 1fr;
		padding: 14px 16px 16px;
	}

	.specials img {
		height: 150px;
	}

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

	.about-intro {
		grid-template-columns: 1fr;
	}

	.about-intro img {
		width: 100%;
		height: 170px;
	}

	.leader-show {
		grid-template-columns: 78px 1fr;
		padding: 16px;
	}

	.leader-show img {
		width: 78px;
		height: 100px;
	}

	.leader-tabs {
		margin-right: 16px;
		margin-left: 16px;
	}

	.icon-list,
	.mini-grid {
		grid-template-columns: 1fr;
	}

	.result-item {
		min-height: 100px;
	}

	.result-body h3 {
		font-size: 14px;
	}

	.page-banner {
		height: 164px;
	}

	.page-banner-copy small {
		font-size: 10px;
	}

	.page-banner-copy h1 {
		font-size: 25px;
	}

	.breadcrumb {
		margin-bottom: 18px;
		font-size: 12px;
	}

	.to-top {
		right: 16px;
		bottom: 16px;
	}
}
