:root {
	--color-primary: #4f63ff;
	--color-primary-dark: #2636b8;
	--color-text: #17203c;
	--color-muted: #66708f;
	--color-border: #dfe4f4;
	--color-surface: #ffffff;
	--color-soft: #f6f8ff;
	--shadow-card: 0 18px 50px rgba(23, 32, 60, .08);
	--container: 1180px;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
	color: var(--color-text);
	background: #fff;
	line-height: 1.65;
}

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

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

html {
	scroll-behavior: auto !important;
}

#smooth-wrapper,
#smooth-content {
	transform: none !important;
	overflow: visible !important;
}

#sub-feature.is-open,
#sub-feature:hover {
	display: block;
	box-shadow: 0 20px 30px rgba(1, 6, 20, .1);
	border-radius: 30px;
}

.popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .2);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transition: all .4s ease;
}

.popup-overlay.active {
	opacity: 1;
	visibility: visible;
}

.popup-content {
	border-radius: 20px;
	max-width: 800px;
	overflow: hidden;
	position: relative;
	transform: scale(.8);
	transition: transform .4s ease;
}

.popup-overlay.active .popup-content {
	transform: scale(1);
}

.popup-close {
	position: absolute;
	top: 4px;
	right: 0;
	width: 40px;
	height: 40px;
	background: #e74c3c;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-size: 1.5rem;
	cursor: pointer;
	z-index: 10;
	transition: all .3s ease;
}

.popup-close:hover {
	background: #c0392b;
	transform: rotate(90deg);
}

.popup-image {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

#languageLoader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, .9);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	transition: opacity .3s ease;
}

.loader-content {
	text-align: center;
}

.loader-spinner {
	width: 50px;
	height: 50px;
	border: 5px solid #fff;
	border-top: 5px solid #4a6ee0;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin: 0 auto 20px;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.loader-text {
	font-size: 18px;
	color: #333;
	font-weight: 500;
}

.content-hidden {
	opacity: .5;
	transition: opacity .2s ease;
}

.content-visible {
	opacity: 1;
}

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

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

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, .94);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid rgba(223, 228, 244, .8);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 76px;
}

.site-logo img,
.footer-logo img {
	max-width: 148px;
}

.primary-nav {
	display: flex;
	align-items: center;
	gap: 22px;
	font-size: 15px;
	font-weight: 650;
}

.primary-nav a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--color-muted);
}

.primary-nav a.active,
.primary-nav a:hover {
	color: var(--color-primary);
}

.primary-nav em {
	font-style: normal;
	font-size: 12px;
	line-height: 1;
	padding: 4px 6px;
	border-radius: 999px;
	background: #ffe9b7;
	color: #8c5a00;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.login-link {
	font-weight: 650;
	color: var(--color-muted);
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 18px;
	border-radius: 8px;
	font-weight: 700;
	border: 1px solid transparent;
}

.button-primary {
	background: var(--color-primary);
	color: #fff;
}

.button-secondary {
	background: #fff;
	color: var(--color-primary);
	border-color: var(--color-border);
}

.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 1px solid var(--color-border);
	border-radius: 8px;
	background: #fff;
	padding: 10px;
}

.menu-toggle span:not(.screen-reader-text) {
	display: block;
	height: 2px;
	background: var(--color-text);
	margin: 5px 0;
}

.hero-shell {
	padding: 110px 0 90px;
	background: linear-gradient(180deg, #f6f8ff 0%, #ffffff 100%);
}

.hero-shell .container {
	max-width: 900px;
}

.eyebrow {
	margin: 0 0 12px;
	font-weight: 800;
	letter-spacing: 0;
	color: var(--color-primary);
}

h1,
h2,
h3 {
	line-height: 1.2;
	letter-spacing: 0;
}

h1 {
	font-size: clamp(36px, 5vw, 60px);
	margin: 0 0 18px;
}

.hero-shell p {
	max-width: 680px;
	font-size: 18px;
	color: var(--color-muted);
}

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

.section-space {
	padding: 86px 0;
	background: var(--color-soft);
}

.narrow-content {
	max-width: 860px;
}

.card,
.page-content,
.single-content,
.error-404 {
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: 8px;
	box-shadow: var(--shadow-card);
	padding: 30px;
}

.article-card + .article-card {
	margin-top: 20px;
}

.entry-meta,
.entry-summary,
.breadcrumb {
	color: var(--color-muted);
}

.breadcrumb {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 20px;
	font-size: 14px;
}

.single-post-page {
	background:
		linear-gradient(180deg, #f3f6ff 0, #ffffff 320px),
		#fff;
	font-family: "PingFang SC", "Microsoft YaHei", "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;
	padding: 118px 0 92px;
}

.scrmceo-single-container {
	max-width: 920px;
}

.scrmceo-single-breadcrumb {
	align-items: center;
	color: #6a748d;
	display: flex;
	flex-wrap: wrap;
	font-size: 14px;
	gap: 8px;
	letter-spacing: 0;
	margin: 0 auto 22px;
	max-width: 820px;
}

.scrmceo-single-breadcrumb a:hover {
	color: #2f65ff;
}

.scrmceo-single-breadcrumb span {
	color: #9aa3b8;
}

.scrmceo-single-hero {
	margin: 0 auto;
	max-width: 820px;
	padding: 0 0 30px;
}

.scrmceo-single-hero h1 {
	color: #050b22;
	font-size: clamp(30px, 3.5vw, 44px);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.28;
	margin: 0 0 16px;
}

.scrmceo-single-meta {
	align-items: center;
	color: #7a849b;
	display: flex;
	flex-wrap: wrap;
	font-size: 14px;
	gap: 8px;
	justify-content: flex-start;
}

.scrmceo-single-meta a {
	color: #1268ff;
}

.scrmceo-single-cover {
	border-radius: 8px;
	margin: 0 auto 34px;
	max-width: 900px;
	overflow: hidden;
}

.scrmceo-single-cover img {
	aspect-ratio: 16 / 7.5;
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.scrmceo-single-content {
	color: #3e4861;
	font-size: 18px;
	letter-spacing: 0;
	line-height: 1.92;
	margin: 0 auto;
	max-width: 820px;
	overflow-wrap: break-word;
	padding: 0;
	text-align: left;
}

.scrmceo-single-content > *:first-child {
	margin-top: 0;
}

.scrmceo-single-content > *:last-child {
	margin-bottom: 0;
}

.scrmceo-single-content p {
	margin: 0 0 22px;
}

.scrmceo-single-content h2,
.scrmceo-single-content h3,
.scrmceo-single-content h4 {
	color: #07122f;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.38;
	margin: 40px 0 16px;
}

.scrmceo-single-content h2 {
	border-left: 5px solid #2f65ff;
	font-size: 28px;
	padding-left: 16px;
}

.scrmceo-single-content h3 {
	font-size: 23px;
	margin-top: 34px;
}

.scrmceo-single-content h4 {
	font-size: 20px;
	margin-top: 28px;
}

.scrmceo-single-content a {
	color: #2f65ff;
	font-weight: 700;
	text-decoration: none;
}

.scrmceo-single-content ul,
.scrmceo-single-content ol {
	margin: 0 0 24px;
	padding-left: 26px;
}

.scrmceo-single-content li {
	margin-bottom: 10px;
	padding-left: 2px;
}

.scrmceo-single-content blockquote {
	background: #f7f9ff;
	border-left: 4px solid #2f65ff;
	border-radius: 8px;
	color: #27315f;
	font-size: 17px;
	font-weight: 500;
	line-height: 1.75;
	margin: 30px 0;
	padding: 22px 24px;
}

.scrmceo-single-content img {
	border-radius: 8px;
	display: block;
	height: auto;
	margin: 22px auto;
	max-width: 100%;
}

.scrmceo-single-content > img,
.scrmceo-single-content p > img,
.scrmceo-single-content figure img,
.scrmceo-single-content .wp-block-image img {
	max-height: 520px;
	object-fit: cover;
	width: 100%;
}

.scrmceo-single-content figure {
	margin: 28px 0;
}

.scrmceo-single-content figcaption {
	color: #7a849f;
	font-size: 14px;
	line-height: 1.6;
	margin-top: 10px;
	text-align: center;
}

.scrmceo-single-content table {
	border-collapse: collapse;
	display: block;
	margin: 28px 0;
	overflow-x: auto;
	width: 100%;
}

.scrmceo-single-content th,
.scrmceo-single-content td {
	border: 1px solid #e5e9f8;
	padding: 12px 14px;
	text-align: left;
}

.scrmceo-single-content th {
	background: #f7f9ff;
	color: #111936;
	font-weight: 800;
}

.scrmceo-post-nav {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin: 48px auto 0;
	max-width: 900px;
}

.scrmceo-post-nav-card {
	border-radius: 8px;
	color: #fff;
	display: block;
	min-height: 108px;
	overflow: hidden;
	padding: 18px 22px;
	position: relative;
	transition: transform .2s ease;
}

.scrmceo-post-nav-card:hover {
	transform: translateY(-2px);
}

.scrmceo-post-nav-card::before {
	background: rgba(0, 0, 0, .45);
	content: "";
	inset: 0;
	position: absolute;
	z-index: 1;
}

.scrmceo-post-nav-card img {
	height: 100%;
	inset: 0;
	object-fit: cover;
	position: absolute;
	width: 100%;
}

.scrmceo-post-nav-card span {
	color: #fff;
	display: block;
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 8px;
	position: relative;
	z-index: 2;
}

.scrmceo-post-nav-card strong {
	color: #fff;
	display: -webkit-box;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.35;
	overflow: hidden;
	position: relative;
	z-index: 2;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.scrmceo-post-nav-card time {
	bottom: 16px;
	color: rgba(255, 255, 255, .9);
	font-size: 14px;
	position: absolute;
	right: 22px;
	z-index: 2;
}

.scrmceo-post-nav-card.is-next {
	text-align: right;
}

.scrmceo-post-nav-card.is-prev time {
	left: auto;
	right: 22px;
}

.scrmceo-related-posts {
	margin: 48px auto 0;
	max-width: 900px;
}

.scrmceo-related-posts h2 {
	border-left: 4px solid #2f65ff;
	color: #050b22;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.35;
	margin: 0 0 22px;
	padding-left: 14px;
}

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

.scrmceo-related-card {
	background: #fff;
	border: 1px solid #e8ebf4;
	border-radius: 8px;
	display: block;
	overflow: hidden;
	transition: transform .2s ease, box-shadow .2s ease;
}

.scrmceo-related-card:hover {
	box-shadow: 0 16px 38px rgba(39, 49, 95, .1);
	transform: translateY(-2px);
}

.scrmceo-related-image {
	aspect-ratio: 16 / 10;
	position: relative;
}

.scrmceo-related-image img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.scrmceo-related-image span {
	background: rgba(0, 0, 0, .58);
	border-radius: 4px;
	color: #fff;
	font-size: 14px;
	left: 18px;
	line-height: 1;
	padding: 7px 10px;
	position: absolute;
	top: 18px;
}

.scrmceo-related-body {
	padding: 18px 18px 16px;
}

.scrmceo-related-body h3 {
	color: #050b22;
	display: -webkit-box;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.45;
	margin: 0 0 22px;
	min-height: calc(1em * 1.45 * 2);
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.scrmceo-related-body p {
	color: #4f5b7c;
	display: -webkit-box;
	font-size: 15px;
	line-height: 1.65;
	margin: -8px 0 20px;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.scrmceo-related-meta {
	align-items: center;
	border-top: 1px solid #edf0f6;
	color: #33405f;
	display: flex;
	font-size: 14px;
	justify-content: space-between;
	padding-top: 14px;
}

/* Single post detail refresh */
.single-post-page {
	background:
		radial-gradient(circle at 16% 0, rgba(47, 101, 255, .10), transparent 30%),
		linear-gradient(180deg, #f4f7ff 0, #fbfcff 360px, #f7f8fb 100%);
	padding: 122px 0 96px;
}

.scrmceo-single-container {
	max-width: 1040px;
}

.scrmceo-single-shell {
	margin: 0 auto;
	max-width: 860px;
}

.scrmceo-single-breadcrumb {
	background: rgba(255, 255, 255, .72);
	border: 1px solid rgba(226, 231, 242, .9);
	border-radius: 8px;
	box-shadow: 0 10px 28px rgba(31, 42, 79, .06);
	margin-bottom: 18px;
	max-width: 860px;
	padding: 10px 14px;
}

.scrmceo-single-hero {
	background: #fff;
	border: 1px solid #e8ecf5;
	border-radius: 8px;
	box-shadow: 0 18px 48px rgba(31, 42, 79, .08);
	margin: 0 auto 14px;
	max-width: 860px;
	padding: 34px 38px 30px;
}

.scrmceo-single-kicker {
	align-items: center;
	background: #eef3ff;
	border-radius: 999px;
	color: #2f65ff;
	display: inline-flex;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 16px;
	padding: 8px 12px;
}

.scrmceo-single-hero h1 {
	font-size: clamp(32px, 3.4vw, 46px);
	line-height: 1.24;
	margin-bottom: 18px;
}

.scrmceo-single-meta {
	background: #f8faff;
	border: 1px solid #edf1f8;
	border-radius: 8px;
	color: #667085;
	gap: 10px;
	padding: 10px 12px;
}

.scrmceo-single-author-card {
	align-items: center;
	background: #fff;
	border: 1px solid #e9edf5;
	border-radius: 8px;
	box-shadow: 0 12px 34px rgba(31, 42, 79, .06);
	display: flex;
	gap: 12px;
	margin: 0 auto 18px;
	max-width: 860px;
	padding: 14px 18px;
}

.scrmceo-single-author-card img {
	border-radius: 50%;
	flex: 0 0 auto;
}

.scrmceo-single-author-card strong {
	color: #101828;
	display: block;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.35;
}

.scrmceo-single-author-card span {
	color: #667085;
	display: block;
	font-size: 13px;
	margin-top: 2px;
}

.scrmceo-single-cover {
	border: 1px solid #e8ecf5;
	box-shadow: 0 18px 42px rgba(31, 42, 79, .08);
	margin-bottom: 18px;
	max-width: 860px;
}

.scrmceo-single-entry-card {
	background: #fff;
	border: 1px solid #e7ebf4;
	border-radius: 8px;
	box-shadow: 0 20px 56px rgba(31, 42, 79, .08);
	margin: 0 auto;
	max-width: 860px;
	padding: 38px 48px 34px;
}

.scrmceo-single-content {
	color: #344054;
	font-size: 17px;
	line-height: 1.9;
	max-width: 760px;
}

.scrmceo-single-content p {
	margin-bottom: 20px;
}

.scrmceo-single-content h2 {
	background: #f6f8ff;
	border-left: 0;
	border-radius: 8px;
	font-size: 26px;
	margin: 38px 0 18px;
	padding: 16px 18px;
}

.scrmceo-single-content h3 {
	font-size: 22px;
	margin-top: 32px;
}

.scrmceo-single-content h2::before,
.scrmceo-single-content h3::before {
	background: #2f65ff;
	border-radius: 999px;
	content: "";
	display: inline-block;
	height: .8em;
	margin-right: 10px;
	vertical-align: -.02em;
	width: 4px;
}

.scrmceo-single-content blockquote {
	background: #f7f9ff;
	border: 1px solid #e5ebff;
	border-left: 4px solid #2f65ff;
	box-shadow: 0 10px 26px rgba(31, 42, 79, .05);
}

.scrmceo-single-content ul,
.scrmceo-single-content ol {
	background: #fbfcff;
	border: 1px solid #eef2f8;
	border-radius: 8px;
	padding: 18px 22px 18px 34px;
}

.scrmceo-single-content img {
	box-shadow: 0 16px 38px rgba(31, 42, 79, .10);
}

.scrmceo-single-notice {
	align-items: flex-start;
	background: #f8fafc;
	border: 1px solid #edf1f7;
	border-radius: 8px;
	color: #667085;
	display: flex;
	gap: 12px;
	line-height: 1.7;
	margin: 34px auto 0;
	max-width: 760px;
	padding: 14px 16px;
}

.scrmceo-single-notice strong {
	color: #101828;
	flex: 0 0 auto;
	font-size: 14px;
}

.scrmceo-single-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 22px auto 0;
	max-width: 760px;
}

.scrmceo-single-actions a {
	align-items: center;
	background: #101828;
	border-radius: 8px;
	color: #fff;
	display: inline-flex;
	font-size: 14px;
	font-weight: 800;
	height: 40px;
	justify-content: center;
	padding: 0 18px;
}

.scrmceo-single-actions a + a {
	background: #eef3ff;
	color: #2f65ff;
}

.scrmceo-post-nav,
.scrmceo-related-posts {
	max-width: 860px;
}

.scrmceo-post-nav-card,
.scrmceo-related-card {
	border: 1px solid #e7ebf4;
	border-radius: 8px;
	box-shadow: 0 14px 34px rgba(31, 42, 79, .07);
}

/* Clean single post reading layout */
.single-post-page {
	background: #f8fafc;
	padding: 118px 0 88px;
}

.scrmceo-single-shell,
.scrmceo-single-breadcrumb,
.scrmceo-single-hero,
.scrmceo-single-cover,
.scrmceo-single-entry-card {
	max-width: 820px;
}

.scrmceo-single-breadcrumb {
	background: transparent;
	border: 0;
	box-shadow: none;
	margin-bottom: 18px;
	padding: 0;
}

.scrmceo-single-hero {
	background: transparent;
	border: 0;
	box-shadow: none;
	margin-bottom: 26px;
	padding: 0;
}

.scrmceo-single-kicker {
	background: #eef3ff;
	margin-bottom: 14px;
}

.scrmceo-single-hero h1 {
	font-size: clamp(31px, 3.2vw, 44px);
	line-height: 1.28;
	margin-bottom: 14px;
}

.scrmceo-single-meta {
	background: transparent;
	border: 0;
	border-radius: 0;
	color: #667085;
	padding: 0;
}

.scrmceo-single-cover {
	box-shadow: none;
	margin-bottom: 24px;
}

.scrmceo-single-entry-card {
	background: #fff;
	border: 1px solid #edf0f5;
	border-radius: 8px;
	box-shadow: none;
	padding: 34px 42px;
}

.scrmceo-single-content {
	max-width: 740px;
}

.scrmceo-single-content h2 {
	background: transparent;
	border-left: 4px solid #2f65ff;
	border-radius: 0;
	font-size: 26px;
	margin: 38px 0 16px;
	padding: 0 0 0 14px;
}

.scrmceo-single-content h3 {
	font-size: 22px;
}

.scrmceo-single-content h2::before,
.scrmceo-single-content h3::before {
	display: none;
}

.scrmceo-single-content ul,
.scrmceo-single-content ol {
	background: transparent;
	border: 0;
	border-radius: 0;
	margin: 0 0 24px;
	padding: 0 0 0 24px;
}

.scrmceo-single-content li {
	margin-bottom: 9px;
	padding-left: 2px;
}

.scrmceo-single-content blockquote,
.scrmceo-single-content img {
	box-shadow: none;
}

.scrmceo-single-notice {
	background: #f8fafc;
	border: 1px solid #edf1f7;
	box-shadow: none;
	max-width: 740px;
}

/* Markdown-like post lists */
.scrmceo-single-content ul,
.scrmceo-single-content ol {
	background: transparent;
	border: 0;
	border-radius: 0;
	list-style-position: outside;
	margin: 0 0 22px;
	padding: 0 0 0 1.45em;
}

.scrmceo-single-content ul {
	list-style-type: "·  ";
}

.scrmceo-single-content ol {
	list-style-type: decimal;
}

.scrmceo-single-content ul ul,
.scrmceo-single-content ol ul {
	list-style-type: "·  ";
	margin: 8px 0 8px;
}

.scrmceo-single-content ul ol,
.scrmceo-single-content ol ol {
	list-style-type: decimal;
	margin: 8px 0 8px;
}

.scrmceo-single-content li {
	display: list-item;
	margin: 0 0 8px;
	padding-left: .1em;
}

.scrmceo-single-content li::marker {
	color: #667085;
	font-weight: 700;
}

.scrmceo-single-content li > p {
	display: inline;
	margin: 0;
}

.scrmceo-single-content li > p + p {
	display: block;
	margin: 8px 0 0;
}

/* Strong fallback: legacy CSS loads after theme.css, so draw post list markers ourselves. */
body.single-post .scrmceo-single-content ul,
body.single-post .scrmceo-single-content ol {
	list-style: none !important;
	padding-left: 2em !important;
}

body.single-post .scrmceo-single-content ul {
	counter-reset: none;
}

body.single-post .scrmceo-single-content ol {
	counter-reset: scrmceo-post-ordered-list;
}

body.single-post .scrmceo-single-content li {
	display: block !important;
	font-size: 16px;
	line-height: 1.82;
	padding-left: 1.9em !important;
	position: relative;
}

body.single-post .scrmceo-single-content ul > li::before {
	color: #667085;
	content: "·";
	font-weight: 800;
	left: .45em;
	position: absolute;
	top: 0;
}

body.single-post .scrmceo-single-content ol > li {
	counter-increment: scrmceo-post-ordered-list;
}

body.single-post .scrmceo-single-content ol > li::before {
	color: #667085;
	content: counter(scrmceo-post-ordered-list) ".";
	font-weight: 700;
	left: .15em;
	position: absolute;
	text-align: right;
	top: 0;
	width: 1.25em;
}

body.single-post .scrmceo-single-content li > ul,
body.single-post .scrmceo-single-content li > ol {
	margin-top: 8px;
}

/* Compact article heading scale */
body.single-post .scrmceo-single-content h1,
body.single-post .scrmceo-single-content h2,
body.single-post .scrmceo-single-content h3,
body.single-post .scrmceo-single-content h4,
body.single-post .scrmceo-single-content h5 {
	color: #101828;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.42;
}

body.single-post .scrmceo-single-content h1 {
	font-size: 28px;
	margin: 34px 0 16px;
}

body.single-post .scrmceo-single-content h2 {
	font-size: 23px;
	margin: 30px 0 14px;
}

body.single-post .scrmceo-single-content h3 {
	font-size: 20px;
	margin: 26px 0 12px;
}

body.single-post .scrmceo-single-content h4 {
	font-size: 18px;
	margin: 24px 0 10px;
}

body.single-post .scrmceo-single-content h5 {
	font-size: 16px;
	margin: 22px 0 8px;
}

.scrmceo-archive-page {
	background: #fff;
	padding: 0 0 90px;
}

body.archive .header-bottom__area,
body.category .header-bottom__area,
body.author .header-bottom__area,
body.tag .header-bottom__area {
	background: #fff !important;
	box-shadow: 0 4px 14px rgba(3, 4, 28, .08);
}

body.archive .header-bottom__main-menu-3 nav ul li > a,
body.category .header-bottom__main-menu-3 nav ul li > a,
body.author .header-bottom__main-menu-3 nav ul li > a,
body.tag .header-bottom__main-menu-3 nav ul li > a,
body.archive .header-bottom__action-2 span,
body.category .header-bottom__action-2 span,
body.author .header-bottom__action-2 span,
body.tag .header-bottom__action-2 span,
body.archive .header-bottom__right .dropdown-toggle,
body.category .header-bottom__right .dropdown-toggle,
body.author .header-bottom__right .dropdown-toggle,
body.tag .header-bottom__right .dropdown-toggle {
	color: var(--tp-common-black, #050018) !important;
}

.scrmceo-archive-container {
	max-width: 1180px;
}

.scrmceo-archive-hero {
	--archive-hero-image: url('../images/bg.jpg');
	background:
		none center / cover no-repeat,
		var(--archive-hero-image),
		linear-gradient(135deg, #625bff 0%, #4da7ff 100%);
	background-position: center;
	background-size: cover;
	color: #fff;
	margin-bottom: 44px;
	padding: 148px 0 78px;
	position: relative;
}

.scrmceo-archive-hero .scrmceo-single-breadcrumb {
	color: rgba(255, 255, 255, .82);
	margin-bottom: 20px;
}

.scrmceo-archive-hero .scrmceo-single-breadcrumb a,
.scrmceo-archive-hero .scrmceo-single-breadcrumb span {
	color: rgba(255, 255, 255, .88);
}

.scrmceo-archive-hero h1 {
	color: #fff;
	font-size: 42px;
	font-weight: 800;
	line-height: 1.25;
	margin: 0 auto;
	max-width: 840px;
	text-align: center;
}

.scrmceo-archive-hero p {
	color: rgba(255, 255, 255, .88);
	font-size: 17px;
	line-height: 1.75;
	margin: 16px auto 0;
	max-width: 720px;
	text-align: center;
}

.scrmceo-archive-grid {
	margin-top: 0;
}

.scrmceo-category-page {
	background: #f6f8ff;
}

.scrmceo-category-filter-section {
	background: #fff;
	border-bottom: 1px solid #e8ebf4;
	margin-bottom: 34px;
	padding: 30px 0 30px;
}

.scrmceo-category-filter-section .scrmceo-single-breadcrumb {
	color: #6f7892;
	margin-bottom: 20px;
}

.scrmceo-category-filter-section .scrmceo-single-breadcrumb a,
.scrmceo-category-filter-section .scrmceo-single-breadcrumb span {
	color: #6f7892;
}

.scrmceo-category-filter-section .scrmceo-page-heading {
	margin: 0 0 24px;
	text-align: left;
}

.scrmceo-category-filter-section .scrmceo-page-heading h1 {
	color: #050b22;
	font-size: 38px;
	font-weight: 800;
	line-height: 1.25;
	margin: 0 0 12px;
}

.scrmceo-category-filter-section .scrmceo-page-heading p {
	color: #5f6b86;
	font-size: 16px;
	line-height: 1.75;
	margin: 0;
}

.scrmceo-category-filter-tabs {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 0;
	padding-top: 2px;
}

.scrmceo-category-filter-tabs a {
	align-items: center;
	background: #f4f7ff;
	border: 1px solid #e3e8f8;
	border-radius: 999px;
	box-shadow: 0 8px 18px rgba(39, 49, 95, .04);
	color: #34405f;
	display: inline-flex;
	font-size: 15px;
	font-weight: 600;
	height: 38px;
	line-height: 1;
	padding: 0 18px;
	text-decoration: none;
	transition: background .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease, transform .2s ease;
	white-space: nowrap;
}

.scrmceo-category-filter-tabs a:hover {
	background: #fff;
	border-color: #aebfff;
	box-shadow: 0 12px 24px rgba(47, 101, 255, .12);
	color: #2f65ff;
	transform: translateY(-1px);
}

.scrmceo-category-filter-tabs a.active {
	background: linear-gradient(135deg, #2f65ff 0%, #6b7cff 100%);
	border-color: transparent;
	box-shadow: 0 14px 26px rgba(47, 101, 255, .22);
	color: #fff;
}

.scrmceo-archive-pagination {
	margin-top: 34px;
}

.scrmceo-archive-pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
}

.scrmceo-archive-pagination .page-numbers {
	align-items: center;
	background: #fff;
	border: 1px solid #e1e6f5;
	border-radius: 8px;
	color: #27315f;
	display: inline-flex;
	font-weight: 700;
	height: 42px;
	justify-content: center;
	min-width: 42px;
	padding: 0 14px;
}

.scrmceo-archive-pagination .page-numbers.current,
.scrmceo-archive-pagination .page-numbers:hover {
	background: #2f65ff;
	border-color: #2f65ff;
	color: #fff;
}

.scrmceo-search-form {
	align-items: center;
	background: rgba(255, 255, 255, .95);
	border: 1px solid rgba(255, 255, 255, .8);
	border-radius: 10px;
	box-shadow: 0 18px 42px rgba(10, 32, 92, .14);
	display: flex;
	gap: 12px;
	margin: 28px auto 0;
	max-width: 620px;
	padding: 8px;
}

.scrmceo-search-form input {
	background: transparent;
	border: 0;
	color: #050b22;
	flex: 1;
	font-size: 16px;
	height: 46px;
	min-width: 0;
	outline: none;
	padding: 0 14px;
}

.scrmceo-search-form input::placeholder {
	color: #8a94ad;
}

.scrmceo-search-form button,
.scrmceo-search-empty a {
	align-items: center;
	background: #2f65ff;
	border: 0;
	border-radius: 8px;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	font-size: 16px;
	font-weight: 700;
	height: 46px;
	justify-content: center;
	line-height: 1;
	padding: 0 24px;
	text-decoration: none;
	white-space: nowrap;
}

.scrmceo-search-form button:hover,
.scrmceo-search-empty a:hover {
	background: #174ce2;
	color: #fff;
}

.scrmceo-search-empty {
	background: #fff;
	border: 1px solid #e8ebf4;
	border-radius: 10px;
	box-shadow: 0 14px 34px rgba(39, 49, 95, .08);
	margin: 0 auto;
	max-width: 760px;
	padding: 44px 32px;
	text-align: center;
}

.scrmceo-search-empty h2 {
	color: #050b22;
	font-size: 28px;
	font-weight: 800;
	margin: 0 0 14px;
}

.scrmceo-search-empty p {
	color: #5f6b86;
	font-size: 16px;
	line-height: 1.8;
	margin: 0 0 24px;
}

.cta-section {
	padding: 72px 0;
	background: #101830;
	color: #fff;
}

.cta-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.cta-inner h2 {
	margin: 0 0 10px;
}

.cta-inner p {
	margin: 0;
	color: rgba(255, 255, 255, .72);
}

.site-footer {
	padding: 60px 0 26px;
	background: #f7f9ff;
	border-top: 1px solid var(--color-border);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 32px;
}

.footer-grid h2 {
	font-size: 16px;
	margin: 0 0 14px;
}

.footer-grid a,
.footer-grid p {
	display: block;
	margin: 0 0 10px;
	color: var(--color-muted);
}

.footer-bottom {
	margin-top: 32px;
	padding-top: 22px;
	border-top: 1px solid var(--color-border);
	color: var(--color-muted);
	font-size: 14px;
}

.floating-contact {
	position: fixed;
	right: 18px;
	bottom: 24px;
	z-index: 60;
	display: grid;
	gap: 10px;
}

.floating-contact__item {
	display: grid;
	place-items: center;
	gap: 4px;
	width: 66px;
	min-height: 66px;
	padding: 8px;
	border-radius: 8px;
	background: #fff;
	box-shadow: var(--shadow-card);
	border: 1px solid var(--color-border);
	font-size: 12px;
	font-weight: 700;
}

.floating-contact__item img {
	width: 28px;
	height: 28px;
	object-fit: contain;
}

.ceoscrm-lang {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 46px;
	height: 46px;
}

.ceoscrm-lang #languageDropdown {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	min-width: 46px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	line-height: 1;
	box-shadow: none;
}

.ceoscrm-lang #languageDropdown::after {
	display: none;
}

.ceoscrm-lang #currentFlag {
	display: block;
	width: 38px;
	height: 38px;
	max-width: none;
	border-radius: 50%;
	object-fit: cover;
	flex: 0 0 auto;
	box-shadow: 0 8px 18px rgba(0, 0, 0, .16);
}

.ceoscrm-lang .ceoscrm-lang-submenu {
	position: absolute;
	top: calc(100% + 12px);
	right: 0;
	min-width: 168px;
	padding: 12px 0;
	border: 0;
	border-radius: 0;
	background: #fff;
	box-shadow: 0 18px 42px rgba(18, 24, 38, .14);
	overflow: visible;
}

.ceoscrm-lang .ceoscrm-lang-submenu ul {
	display: grid;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ceoscrm-lang .ceoscrm-lang-submenu li {
	margin: 0;
}

.ceoscrm-lang .language-option {
	display: flex !important;
	align-items: center;
	gap: 10px;
	min-height: 44px;
	padding: 0 18px !important;
	color: #5b6170;
	font-size: 18px;
	font-weight: 500;
	line-height: 1;
	white-space: nowrap;
	text-decoration: none;
}

.ceoscrm-lang .language-option:hover {
	background: #f7f8fb;
	color: #111827;
}

.ceoscrm-lang .language-option img {
	display: block;
	width: 42px !important;
	height: 42px !important;
	max-width: none;
	margin: 0 !important;
	border-radius: 50%;
	object-fit: cover;
	box-shadow: 0 8px 18px rgba(0, 0, 0, .18);
	flex: 0 0 auto;
}

#header-sticky.header-sticky {
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	z-index: 999 !important;
	width: 100% !important;
	background: #fff !important;
	box-shadow: 0 8px 24px rgba(31, 45, 84, .08) !important;
	animation: fadeInDown 600ms ease-in-out;
}

#header-sticky.header-bottom__area {
	border-bottom: 1px solid rgba(226, 232, 244, .9);
	box-shadow: 0 8px 24px rgba(31, 45, 84, .06);
}

#header-sticky.header-sticky .header-bottom__main-menu-3 nav ul li > a,
#header-sticky.header-sticky .header-bottom__action-2 span,
#header-sticky.header-sticky .header-bottom__right .dropdown-toggle {
	color: var(--tp-common-black, #050018) !important;
}

.header-bottom__area > .container {
	width: min(100% - 40px, 1560px);
	max-width: 1560px;
}

.header-bottom__area .row.g-0 {
	flex-wrap: nowrap;
}

.header-bottom__area .col-xxl-2,
.header-bottom__area .col-xl-2,
.header-bottom__area .col-lg-2 {
	flex: 0 0 150px;
	width: 150px;
	max-width: 150px;
}

.header-bottom__area .col-xxl-7,
.header-bottom__area .col-xl-7,
.header-bottom__area .col-lg-7 {
	flex: 1 1 auto;
	width: auto;
	max-width: none;
	min-width: 0;
}

.header-bottom__area .col-xxl-3,
.header-bottom__area .col-xl-3,
.header-bottom__area .col-lg-3 {
	flex: 0 0 auto;
	width: auto;
	max-width: none;
}

.header-bottom__main-menu-3 nav > ul {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
	gap: 22px;
	margin-left: 0 !important;
	white-space: nowrap;
}

.header-bottom__main-menu-3 nav > ul > li {
	margin: 0 !important;
	flex: 0 0 auto;
}

.header-bottom__main-menu-3 nav > ul > li > a {
	font-size: 15px;
}

.header-bottom__main-menu-3 nav > ul > li > a {
	position: relative;
}

.header-bottom__main-menu-3 nav > ul > li > a.is-active {
	color: #2f65ff !important;
	font-weight: 800;
}

.header-bottom__main-menu-3 nav > ul > li > a.is-active::after {
	background: #2f65ff;
	border-radius: 999px;
	bottom: 30px;
	content: "";
	height: 3px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 22px;
}

#header-sticky.header-sticky .header-bottom__main-menu-3 nav > ul > li > a.is-active {
	color: #2f65ff !important;
}

#header-sticky.header-sticky .header-bottom__main-menu-3 nav > ul > li > a.is-active::after {
	bottom: 22px;
}

@media (max-width: 1399px) {
	.header-bottom__main-menu-3 nav > ul {
		gap: 16px;
	}

	.header-bottom__main-menu-3 nav > ul > li > a {
		font-size: 14px;
	}
}

@media (max-width: 1199px) {
	.header-bottom__area > .container {
		width: min(100% - 24px, 1160px);
	}

	.header-bottom__main-menu-3 nav > ul {
		gap: 12px;
	}
}

@media (max-width: 920px) {
	.header-inner {
		min-height: 68px;
	}

	.primary-nav {
		position: absolute;
		left: 16px;
		right: 16px;
		top: 76px;
		display: none;
		padding: 16px;
		border: 1px solid var(--color-border);
		border-radius: 8px;
		background: #fff;
		box-shadow: var(--shadow-card);
	}

	.primary-nav.is-open {
		display: grid;
	}

	.menu-toggle {
		display: block;
	}

	.login-link,
	.header-actions > .button {
		display: none;
	}

	.cta-inner,
	.footer-grid {
		grid-template-columns: 1fr;
		display: grid;
	}
}

@media (max-width: 640px) {
	.hero-shell {
		padding: 72px 0 58px;
	}

	.floating-contact {
		right: 12px;
		bottom: 14px;
	}

	.floating-contact__item {
		width: 58px;
		min-height: 58px;
	}
}

@media (max-width: 767px) {
	.single-post-page {
		padding: 94px 0 64px;
	}

	.scrmceo-archive-page {
		padding: 0 0 64px;
	}

	.scrmceo-archive-hero {
		margin-bottom: 30px;
		padding: 112px 0 52px;
	}

	.scrmceo-archive-hero h1 {
		font-size: 30px;
	}

	.scrmceo-category-filter-section {
		margin-bottom: 28px;
		padding: 104px 0 24px;
	}

	.scrmceo-category-filter-section .scrmceo-page-heading h1 {
		font-size: 30px;
	}

	.scrmceo-category-filter-tabs {
		flex-wrap: nowrap;
		margin-left: -16px;
		margin-right: -16px;
		overflow-x: auto;
		padding: 2px 16px 8px;
		-webkit-overflow-scrolling: touch;
	}

	.scrmceo-category-filter-tabs::-webkit-scrollbar {
		display: none;
	}

	.scrmceo-category-filter-tabs a {
		font-size: 14px;
		height: 36px;
		padding: 0 15px;
	}

	.scrmceo-search-form {
		align-items: stretch;
		flex-direction: column;
		gap: 8px;
		max-width: 100%;
	}

	.scrmceo-search-form input,
	.scrmceo-search-form button {
		width: 100%;
	}

	.scrmceo-single-hero {
		padding: 24px 20px 22px;
	}

	.scrmceo-single-hero h1 {
		font-size: 28px;
		line-height: 1.32;
	}

	.scrmceo-single-meta {
		font-size: 14px;
	}

	.scrmceo-single-cover img {
		aspect-ratio: 16 / 10;
	}

	.scrmceo-single-content {
		font-size: 16px;
		line-height: 1.86;
		padding: 0;
	}

	.scrmceo-single-breadcrumb,
	.scrmceo-single-shell,
	.scrmceo-single-hero,
	.scrmceo-single-author-card,
	.scrmceo-single-cover,
	.scrmceo-single-entry-card {
		max-width: 100%;
	}

	.scrmceo-single-entry-card {
		padding: 26px 18px 24px;
	}

	.scrmceo-single-meta {
		align-items: center;
		flex-direction: row;
		gap: 8px;
	}

	.scrmceo-single-meta > span {
		display: inline;
	}

	.scrmceo-single-content h2 {
		font-size: 23px;
		margin-top: 34px;
		padding: 0 0 0 12px;
	}

	.scrmceo-single-content h3 {
		font-size: 20px;
	}

	body.single-post .right-s-btn,
	body.single-post #btn-ceoscrm-login,
	body.single-post #btn-ceoscrm-free,
	body.single-post #btn-ceoscrm-fangpian,
	body.single-post #btn-ceoscrm-help,
	body.single-post #ceoscrm-weixin,
	body.single-post #ceoscrm-telegram,
	body.single-post #ceoscrm-whatsapp {
		display: none !important;
	}

	.scrmceo-single-content > img,
	.scrmceo-single-content p > img,
	.scrmceo-single-content figure img,
	.scrmceo-single-content .wp-block-image img {
		max-height: 320px;
	}

	.scrmceo-single-notice {
		display: block;
	}

	.scrmceo-single-notice span {
		display: block;
		margin-top: 4px;
	}

	.scrmceo-single-actions a {
		width: 100%;
	}

	.scrmceo-post-nav {
		grid-template-columns: 1fr;
	}

	.scrmceo-post-nav-card.is-next {
		text-align: left;
	}

	.scrmceo-related-grid {
		grid-template-columns: 1fr;
	}

	.scrmceo-related-body h3 {
		min-height: 0;
	}
}
