/* 全局变量与基础重置 */
*, *::before, *::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary: #009fe8;
	--primary-hover: #0087c5;
	--primary-light: #e6f4fe;
	--navy: #009fe8;
	--blue: #009fe8;
	--blue-mid: #0087c5;
	--blue-light: #e6f4fe;
	--blue-pale: #f4f9fd;
	--gray-dark: #1a1d20;
	--gray: #6c757d;
	--gray-light: #94A3B8;
	--border: #eaedf1;
	--white: #FFFFFF;
	--rule: #eaedf1;
	--shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
	--shadow-md: 0 12px 28px rgba(0, 0, 0, 0.07);
	--shadow-lg: 0 24px 48px rgba(0, 0, 0, 0.12);
	--footer-bg: #0d1b2a;
	--footer-text: #e8edf2;
	--footer-muted: #9aaebf;
}

body {
	font-family: 'Inter', sans-serif;
	color: var(--gray-dark);
	background: var(--white);
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

.inner {
	max-width: 1400px;
	margin: 0 auto;
	width: 100%;
	padding: 0 40px;
}

@media (max-width: 1100px) {
	.inner { padding: 0 28px; }
}

@media (max-width: 640px) {
	.inner { padding: 0 20px; }
}

.s-tag {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--blue);
	margin-bottom: 10px;
}

.s-tag::before {
	content: '';
	width: 20px;
	height: 2px;
	background: var(--blue);
	flex-shrink: 0;
}

.s-title {
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 800;
	font-size: clamp(28px, 3.5vw, 46px);
	color: var(--navy);
	letter-spacing: 2px;
	text-transform: uppercase;
	line-height: 1.05;
}

.s-title b {
	color: var(--blue);
	font-weight: 800;
}

.link-more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--blue);
	text-decoration: none;
	border-bottom: 1px solid var(--rule);
	padding-bottom: 2px;
	transition: gap .2s;
}

.link-more:hover {
	gap: 14px;
}

.reveal {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity .6s ease, transform .6s ease;
}

.reveal.in {
	opacity: 1;
	transform: translateY(0);
}

/* 全站主按钮 */
.btn-primary {
	display: inline-block;
	background-color: var(--primary);
	color: #fff;
	padding: 16px 36px;
	border-radius: 8px;
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	font-size: 1rem;
	line-height: 1.3;
	text-decoration: none;
	transition: all 0.3s;
	border: none;
	cursor: pointer;
	box-shadow: 0 4px 14px rgba(0, 159, 232, 0.3);
}

.btn-primary:hover,
.btn-primary:focus-visible {
	background-color: var(--primary-hover);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 159, 232, 0.4);
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

.site-main {
	min-height: 40vh;
}

/* 经典编辑器图片对齐（alignleft / aligncenter / alignright） */
img.alignleft,
.wp-caption.alignleft,
figure.alignleft {
	float: left;
	margin: 0.5em 1.5em 1em 0;
}

img.alignright,
.wp-caption.alignright,
figure.alignright {
	float: right;
	margin: 0.5em 0 1em 1.5em;
}

img.aligncenter,
.wp-caption.aligncenter,
figure.aligncenter {
	display: block;
	float: none;
	margin-left: auto;
	margin-right: auto;
	margin-top: 0.5em;
	margin-bottom: 1em;
}

img.alignnone {
	margin: 0.5em 0 1em;
}

.aligncenter {
	clear: both;
	text-align: center;
}

.wp-caption {
	max-width: 100%;
}

.wp-caption img {
	display: block;
	max-width: 100%;
	height: auto;
}

.wp-caption-text,
.wp-caption-dd {
	margin-top: 0.5em;
	font-size: 0.9em;
	color: var(--gray);
	text-align: center;
}

img.size-full,
img.size-large,
img.size-medium,
img.size-thumbnail {
	max-width: 100%;
	height: auto;
}
