/*
Theme Name: 商见网
Theme URI: https://www.epr.ink/
Description: 为商见网定制的商业资讯与品牌内容主题。强调克制、可信、清晰的信息层级与长期可读性。
Version: 4.0.0
Author: 暗传播 杨小乐
Author URI: https://www.epr.ink/
*/

:root {
	--sj-brand: #147b78;
	--sj-brand-dark: #0f6663;
	--sj-ink: #15181c;
	--sj-title: #101317;
	--sj-text: #4f555c;
	--sj-secondary: #737980;
	--sj-muted: #979ca2;
	--sj-line: #e8e9e7;
	--sj-line-strong: #d9dbd8;
	--sj-soft: #f7f8f6;
	--sj-width: 1180px;
	--sj-reading: 860px;
}

/* ========== Base ========== */
html {
	box-sizing: border-box;
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

*, *::before, *::after { box-sizing: inherit; }

body {
	margin: 0;
	background: #fff;
	color: var(--sj-text);
	font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
	font-size: 15px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body.sj-menu-open { overflow: hidden; }

img { max-width: 100%; height: auto; vertical-align: middle; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
figure, p, h1, h2, h3, h4, h5, h6, ul, ol, blockquote { margin-top: 0; }

::selection { background: rgba(20, 123, 120, .15); color: var(--sj-title); }

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

.sj-container {
	width: var(--sj-width);
	max-width: calc(100% - 48px);
	margin: 0 auto;
}

.sj-main { min-height: 55vh; }

/* ========== Header ========== */
.sj-site-header {
	position: relative;
	z-index: 100;
	background: rgba(255,255,255,.98);
	border-bottom: 1px solid var(--sj-line);
}

.sj-site-header--sticky {
	position: sticky;
	top: 0;
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}

.sj-header-inner {
	display: flex;
	align-items: center;
	height: 78px;
}

.sj-logo-wrap { flex: 0 0 auto; }
.sj-logo { display: inline-flex; align-items: center; }
.sj-logo img { display: block; width: auto; max-width: 190px; max-height: 42px; }
.sj-logo-text {
	color: var(--sj-title);
	font-size: 30px;
	font-weight: 700;
	letter-spacing: 1.5px;
	line-height: 1;
}

.sj-desktop-nav { margin-left: auto; height: 100%; }
.sj-main-menu,
.sj-main-menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.sj-main-menu {
	display: flex;
	align-items: stretch;
	gap: 36px;
	height: 100%;
}

.sj-main-menu > li { position: relative; display: flex; align-items: stretch; }
.sj-main-menu > li > a {
	position: relative;
	display: flex;
	align-items: center;
	height: 100%;
	color: #42474d;
	font-size: 14px;
	font-weight: 500;
	white-space: nowrap;
	transition: color .2s ease;
}

.sj-main-menu > li > a:hover,
.sj-main-menu > .current-menu-item > a,
.sj-main-menu > .current-menu-parent > a,
.sj-main-menu > .current-post-ancestor > a { color: var(--sj-title); }

.sj-main-menu > .current-menu-item > a::after,
.sj-main-menu > .current-menu-parent > a::after,
.sj-main-menu > .current-post-ancestor > a::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -1px;
	width: 24px;
	height: 2px;
	background: var(--sj-brand);
	transform: translateX(-50%);
}

.sj-main-menu .sub-menu {
	position: absolute;
	top: calc(100% + 1px);
	right: -18px;
	min-width: 150px;
	padding: 10px 0;
	background: #fff;
	border: 1px solid var(--sj-line);
	box-shadow: 0 12px 30px rgba(18, 28, 30, .07);
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.sj-main-menu li:hover > .sub-menu,
.sj-main-menu li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.sj-main-menu .sub-menu a { display: block; padding: 9px 18px; font-size: 13px; color: var(--sj-text); white-space: nowrap; }
.sj-main-menu .sub-menu a:hover { color: var(--sj-brand); background: var(--sj-soft); }

.sj-mobile-menu-toggle {
	display: none;
	width: 42px;
	height: 42px;
	margin-left: auto;
	padding: 9px;
	border: 0;
	background: transparent;
}

.sj-mobile-menu-toggle span {
	display: block;
	width: 22px;
	height: 1.5px;
	margin: 5px auto;
	background: var(--sj-title);
}

/* ========== Home / Archive heading ========== */
.sj-home,
.sj-archive-page,
.sj-search-page { padding: 42px 0 76px; }

.sj-section-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 30px;
	padding-bottom: 17px;
	border-bottom: 1px solid #1c1f22;
}

.sj-section-heading h1 {
	margin: 0;
	color: var(--sj-title);
	font-size: 27px;
	font-weight: 650;
	line-height: 1.15;
	letter-spacing: -.35px;
}

.sj-section-heading > p,
.sj-archive-description {
	margin: 0;
	max-width: 520px;
	color: var(--sj-muted);
	font-size: 12px;
	line-height: 1.7;
	text-align: right;
}

.sj-archive-description p { margin: 0; }
.sj-eyebrow {
	margin: 0 0 8px !important;
	color: var(--sj-brand) !important;
	font-size: 11px !important;
	font-weight: 600;
	letter-spacing: .08em;
	text-align: left !important;
}

/* ========== News list ========== */
.sj-news-list { width: 100%; }

.sj-news-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 54px;
	padding: 29px 0;
	border-bottom: 1px solid var(--sj-line);
}

.sj-news-copy { flex: 1 1 auto; min-width: 0; }
.sj-news-item--text-only .sj-news-copy { max-width: 930px; }

.sj-news-meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 9px;
	font-size: 11px;
	line-height: 1.4;
}

.sj-news-meta time { color: var(--sj-muted); }
.sj-news-category { color: var(--sj-brand); font-weight: 600; }
.sj-news-category:hover { color: var(--sj-brand-dark); }

.sj-sticky-badge {
	display: inline-flex;
	align-items: center;
	height: 19px;
	padding: 0 7px;
	background: var(--sj-title);
	color: #fff;
	font-size: 10px;
	font-weight: 500;
	letter-spacing: .03em;
}

.sj-news-title {
	margin: 0;
	max-width: 820px;
	font-size: 19px;
	font-weight: 620;
	line-height: 1.52;
	letter-spacing: -.12px;
}

.sj-news-title a { color: var(--sj-title); transition: color .18s ease; }
.sj-news-title a:hover { color: var(--sj-brand); }

.sj-news-excerpt {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	max-width: 820px;
	margin: 9px 0 0;
	color: var(--sj-secondary);
	font-size: 13px;
	line-height: 1.82;
}

.sj-news-thumb {
	display: block;
	flex: 0 0 210px;
	width: 210px;
	height: 126px;
	overflow: hidden;
	background: var(--sj-soft);
}

.sj-news-thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .35s ease;
}

.sj-news-item:hover .sj-news-thumb img { transform: scale(1.025); }

/* ========== Pagination ========== */
.sj-pagination-wrap { margin-top: 42px; }
.sj-pagination-wrap .navigation { margin: 0; }
.sj-pagination-wrap .nav-links { display: flex; align-items: center; justify-content: center; gap: 5px; }
.sj-pagination-wrap .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	height: 36px;
	padding: 0 10px;
	border: 1px solid transparent;
	color: #777c81;
	font-size: 12px;
	line-height: 1;
	transition: color .18s ease, border-color .18s ease, background .18s ease;
}

.sj-pagination-wrap a.page-numbers:hover { color: var(--sj-brand); border-color: var(--sj-line-strong); }
.sj-pagination-wrap .page-numbers.current { background: var(--sj-brand); color: #fff; border-color: var(--sj-brand); }

/* ========== Search ========== */
.sj-search-box { padding: 26px 0 4px; border-bottom: 1px solid var(--sj-line); }
.sj-search-form { display: flex; align-items: stretch; max-width: 620px; }
.sj-search-field {
	flex: 1;
	min-width: 0;
	height: 44px;
	padding: 0 15px;
	border: 1px solid var(--sj-line-strong);
	border-right: 0;
	outline: 0;
	background: #fff;
	color: var(--sj-title);
	font-size: 13px;
}
.sj-search-field:focus { border-color: var(--sj-brand); }
.sj-search-submit {
	height: 44px;
	padding: 0 20px;
	border: 1px solid var(--sj-brand);
	background: var(--sj-brand);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
}
.sj-search-submit:hover { background: var(--sj-brand-dark); border-color: var(--sj-brand-dark); }

/* ========== Empty / 404 ========== */
.sj-empty-state { padding: 72px 0; border-bottom: 1px solid var(--sj-line); text-align: center; }
.sj-empty-state h2 { margin: 0 0 8px; color: var(--sj-title); font-size: 20px; }
.sj-empty-state p { margin: 0; color: var(--sj-muted); font-size: 13px; }

.sj-not-found-page { padding: 90px 0 110px; }
.sj-not-found { max-width: 760px; text-align: center; }
.sj-not-found-code { margin: 0 0 8px; color: var(--sj-brand); font-size: 13px; font-weight: 700; letter-spacing: .18em; }
.sj-not-found h1 { margin: 0 0 14px; color: var(--sj-title); font-size: 40px; font-weight: 650; }
.sj-not-found > p:not(.sj-not-found-code) { margin: 0; color: var(--sj-secondary); font-size: 14px; }
.sj-not-found-search { max-width: 520px; margin: 30px auto 22px; }
.sj-not-found-search .sj-search-form { max-width: none; }
.sj-text-link { color: var(--sj-brand); font-size: 13px; }

/* ========== Single / Page ========== */
.sj-single-page,
.sj-page-page { padding: 0 24px; }

.sj-article-wrap {
	width: var(--sj-reading);
	max-width: 100%;
	margin: 0 auto;
	padding: 58px 0 88px;
}

.sj-article-header {
	padding-bottom: 30px;
	border-bottom: 1px solid var(--sj-line);
}

.sj-article-kicker {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 15px;
	font-size: 12px;
}

.sj-article-kicker a { color: var(--sj-brand); font-weight: 600; }
.sj-article-kicker time { color: var(--sj-muted); }

.sj-article-title {
	margin: 0;
	color: var(--sj-title);
	font-size: 38px;
	font-weight: 650;
	line-height: 1.35;
	letter-spacing: -.55px;
}

.sj-article-meta {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-top: 17px;
	color: var(--sj-muted);
	font-size: 12px;
}

.sj-page-header { padding-bottom: 28px; }

.sj-entry-content {
	padding-top: 34px;
	color: #343a40;
	font-size: 17px;
	line-height: 2;
	word-break: break-word;
}

.sj-entry-content > *:first-child { margin-top: 0; }
.sj-entry-content p { margin: 0 0 1.55em; }
.sj-entry-content h2,
.sj-entry-content h3,
.sj-entry-content h4 {
	color: var(--sj-title);
	font-weight: 650;
	line-height: 1.45;
}
.sj-entry-content h2 { margin: 2em 0 .8em; font-size: 27px; }
.sj-entry-content h3 { margin: 1.8em 0 .7em; font-size: 22px; }
.sj-entry-content h4 { margin: 1.6em 0 .6em; font-size: 18px; }
.sj-entry-content strong { color: #20252a; font-weight: 650; }
.sj-entry-content a { color: var(--sj-brand); border-bottom: 1px solid rgba(20,123,120,.25); }
.sj-entry-content a:hover { border-bottom-color: var(--sj-brand); }
.sj-entry-content ul,
.sj-entry-content ol { margin: 0 0 1.6em; padding-left: 1.55em; }
.sj-entry-content ul { list-style: disc; }
.sj-entry-content ol { list-style: decimal; }
.sj-entry-content li { margin: .35em 0; }
.sj-entry-content blockquote {
	margin: 1.8em 0;
	padding: 18px 22px;
	border-left: 3px solid var(--sj-brand);
	background: var(--sj-soft);
	color: #555c62;
}
.sj-entry-content blockquote p:last-child { margin-bottom: 0; }
.sj-entry-content img { display: block; max-width: 100%; margin-left: auto; margin-right: auto; }
.sj-entry-content figure { margin: 2em auto; }
.sj-entry-content figcaption,
.sj-entry-content .wp-caption-text { margin-top: 9px; color: var(--sj-muted); font-size: 12px; line-height: 1.6; text-align: center; }
.sj-entry-content iframe,
.sj-entry-content video { max-width: 100%; }
.sj-entry-content table { width: 100%; margin: 1.8em 0; border-collapse: collapse; font-size: 14px; line-height: 1.65; }
.sj-entry-content th,
.sj-entry-content td { padding: 11px 13px; border: 1px solid var(--sj-line-strong); text-align: left; vertical-align: top; }
.sj-entry-content th { background: var(--sj-soft); color: var(--sj-title); font-weight: 650; }
.sj-entry-content pre,
.sj-entry-content code { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; }
.sj-entry-content pre { overflow: auto; padding: 18px; background: #f4f5f3; font-size: 13px; line-height: 1.7; }

.alignleft { float: left; margin: .4em 1.5em 1em 0; }
.alignright { float: right; margin: .4em 0 1em 1.5em; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }

.sj-article-tags {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 42px;
	padding-top: 22px;
	border-top: 1px solid var(--sj-line);
}
.sj-article-tags > span { margin-right: 4px; color: var(--sj-muted); font-size: 12px; }
.sj-article-tags a { padding: 5px 9px; background: var(--sj-soft); color: #666d73; font-size: 12px; }
.sj-article-tags a:hover { color: var(--sj-brand); }

.sj-post-nav {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	margin-top: 34px;
	padding-top: 25px;
	border-top: 1px solid var(--sj-line);
}
.sj-post-nav-item { min-width: 0; }
.sj-post-nav-item > span { display: block; margin-bottom: 6px; color: var(--sj-muted); font-size: 11px; }
.sj-post-nav-item a { display: block; overflow: hidden; color: #4c5258; font-size: 13px; line-height: 1.6; text-overflow: ellipsis; white-space: nowrap; }
.sj-post-nav-item a:hover { color: var(--sj-brand); }
.sj-post-nav-next { text-align: right; }

/* ========== Comments ========== */
.sj-comments { margin-top: 54px; padding-top: 30px; border-top: 1px solid var(--sj-line); }
.sj-comments-header h2,
.sj-comment-form-title { margin: 0 0 24px; color: var(--sj-title); font-size: 20px; font-weight: 650; }
.sj-comment-list { margin: 0 0 38px; padding: 0; list-style: none; }
.sj-comment-list .children { margin: 18px 0 0 48px; padding: 0; list-style: none; }
.sj-comment-list li.comment { margin: 0; padding: 22px 0; border-bottom: 1px solid var(--sj-line); }
.sj-comment-list .comment-body { position: relative; }
.sj-comment-list .comment-author { display: flex; align-items: center; gap: 10px; }
.sj-comment-list .avatar { border-radius: 50%; }
.sj-comment-list .fn { color: var(--sj-title); font-size: 13px; font-style: normal; font-weight: 600; }
.sj-comment-list .says { display: none; }
.sj-comment-list .comment-metadata { margin: 5px 0 10px 50px; color: var(--sj-muted); font-size: 11px; }
.sj-comment-list .comment-content { margin-left: 50px; color: #555c62; font-size: 13px; line-height: 1.8; }
.sj-comment-list .comment-content p:last-child { margin-bottom: 0; }
.sj-comment-list .reply { margin: 8px 0 0 50px; }
.sj-comment-list .reply a { color: var(--sj-brand); font-size: 11px; }
.sj-comment-note { color: var(--sj-muted); font-size: 12px; }
.comment-form p { margin: 0 0 14px; }
.comment-form label { display: block; margin-bottom: 6px; color: #656b71; font-size: 12px; }
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	width: 100%;
	padding: 11px 12px;
	border: 1px solid var(--sj-line-strong);
	background: #fff;
	color: var(--sj-title);
	outline: 0;
	font-size: 13px;
}
.comment-form textarea { min-height: 150px; resize: vertical; }
.comment-form input:focus,
.comment-form textarea:focus { border-color: var(--sj-brand); }
.sj-comment-submit {
	padding: 10px 20px;
	border: 0;
	background: var(--sj-brand);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
}
.sj-comment-submit:hover { background: var(--sj-brand-dark); }

/* ========== Footer ========== */
.sj-site-footer {
	border-top: 1px solid var(--sj-line);
	background: #fafbf9;
}

.sj-footer-brand-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	padding: 30px 0 22px;
}

.sj-footer-brand { display: flex; align-items: baseline; gap: 15px; }
.sj-footer-brand strong { color: var(--sj-title); font-size: 17px; font-weight: 700; }
.sj-footer-brand span { color: var(--sj-muted); font-size: 11px; }
.sj-footer-home-link { color: var(--sj-secondary); font-size: 12px; }
.sj-footer-home-link:hover { color: var(--sj-brand); }

.sj-footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 18px 0 28px;
	border-top: 1px solid var(--sj-line);
	color: var(--sj-muted);
	font-size: 11px;
	line-height: 1.7;
}

.sj-footer-records { display: flex; align-items: center; justify-content: flex-end; gap: 14px; flex-wrap: wrap; }
.sj-footer-records a:hover { color: var(--sj-brand); }
.sj-gaba-icon { width: 14px; height: 14px; margin-right: 4px; vertical-align: -2px; }

/* ========== Mobile drawer / Backtop ========== */
.sj-mobile-overlay {
	position: fixed;
	inset: 0;
	z-index: 998;
	background: rgba(10, 16, 18, .28);
	opacity: 0;
	visibility: hidden;
	transition: opacity .22s ease, visibility .22s ease;
}

.sj-mobile-drawer {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 999;
	width: min(86vw, 340px);
	padding: 0 24px 34px;
	background: #fff;
	box-shadow: -12px 0 35px rgba(12, 24, 27, .08);
	transform: translateX(101%);
	transition: transform .25s ease;
	overflow-y: auto;
}

body.sj-menu-open .sj-mobile-overlay { opacity: 1; visibility: visible; }
body.sj-menu-open .sj-mobile-drawer { transform: translateX(0); }

.sj-mobile-drawer-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 68px;
	border-bottom: 1px solid var(--sj-line);
}
.sj-mobile-drawer-head strong { color: var(--sj-title); font-size: 17px; }
.sj-mobile-close { width: 36px; height: 36px; padding: 0; border: 0; background: transparent; color: var(--sj-title); font-size: 27px; font-weight: 300; line-height: 1; }
.sj-mobile-menu,
.sj-mobile-menu ul { margin: 0; padding: 0; list-style: none; }
.sj-mobile-menu > li { border-bottom: 1px solid var(--sj-line); }
.sj-mobile-menu > li > a { display: block; padding: 15px 0; color: var(--sj-title); font-size: 15px; font-weight: 550; }
.sj-mobile-menu .sub-menu { padding: 0 0 10px 14px; }
.sj-mobile-menu .sub-menu a { display: block; padding: 8px 0; color: var(--sj-secondary); font-size: 13px; }
.sj-mobile-widgets { margin-top: 24px; }
.sj-mobile-widgets .widget { margin-bottom: 24px; }
.sj-mobile-widgets .widget_title { margin: 0 0 10px; color: var(--sj-title); font-size: 14px; }

.sj-backtop {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 90;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	padding: 0;
	border: 1px solid var(--sj-line-strong);
	background: rgba(255,255,255,.94);
	color: var(--sj-secondary);
	font-size: 18px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity .18s ease, visibility .18s ease, transform .18s ease, color .18s ease;
}
.sj-backtop.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.sj-backtop:hover { color: var(--sj-brand); }

/* ========== WordPress defaults ========== */
.wp-caption { max-width: 100%; }
.gallery { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
.gallery-item { margin: 0; }
.sticky {}
.bypostauthor {}

/* ========== Responsive ========== */
@media (max-width: 980px) {
	.sj-container { max-width: calc(100% - 40px); }
	.sj-header-inner { height: 72px; }
	.sj-logo img { max-width: 170px; max-height: 38px; }
	.sj-main-menu { gap: 25px; }
	.sj-main-menu > li > a { font-size: 13px; }
	.sj-news-item { gap: 34px; }
	.sj-news-thumb { flex-basis: 190px; width: 190px; height: 114px; }
	.sj-article-title { font-size: 34px; }
}

@media (max-width: 760px) {
	.sj-container { max-width: calc(100% - 32px); }
	.sj-header-inner { height: 64px; }
	.sj-logo img { max-width: 156px; max-height: 32px; }
	.sj-logo-text { font-size: 24px; }
	.sj-desktop-nav { display: none; }
	.sj-mobile-menu-toggle { display: block; }

	.sj-home,
	.sj-archive-page,
	.sj-search-page { padding: 28px 0 54px; }

	.sj-section-heading { align-items: flex-start; padding-bottom: 14px; }
	.sj-section-heading h1 { font-size: 23px; }
	.sj-section-heading > p,
	.sj-archive-description { display: none; }
	.sj-eyebrow { margin-bottom: 6px !important; }

	.sj-news-item { align-items: flex-start; gap: 16px; padding: 22px 0; }
	.sj-news-meta { margin-bottom: 8px; font-size: 10px; }
	.sj-news-title { font-size: 17px; line-height: 1.55; }
	.sj-news-excerpt { margin-top: 7px; font-size: 12px; line-height: 1.75; -webkit-line-clamp: 2; }
	.sj-news-thumb { flex: 0 0 112px; width: 112px; height: 76px; margin-top: 24px; }
	.sj-news-item--text-only .sj-news-copy { max-width: none; }

	.sj-pagination-wrap { margin-top: 30px; }
	.sj-pagination-wrap .page-numbers { min-width: 32px; height: 32px; padding: 0 8px; font-size: 11px; }

	.sj-search-box { padding-top: 20px; }
	.sj-search-form { max-width: none; }

	.sj-single-page,
	.sj-page-page { padding: 0 16px; }
	.sj-article-wrap { padding: 36px 0 62px; }
	.sj-article-header { padding-bottom: 23px; }
	.sj-article-kicker { margin-bottom: 12px; font-size: 11px; }
	.sj-article-title { font-size: 28px; line-height: 1.42; letter-spacing: -.25px; }
	.sj-article-meta { margin-top: 13px; font-size: 11px; }
	.sj-entry-content { padding-top: 26px; font-size: 16px; line-height: 1.95; }
	.sj-entry-content h2 { font-size: 23px; }
	.sj-entry-content h3 { font-size: 20px; }
	.sj-post-nav { grid-template-columns: 1fr; gap: 20px; }
	.sj-post-nav-next { text-align: left; }

	.sj-footer-brand-row { align-items: flex-start; padding: 25px 0 18px; }
	.sj-footer-brand { flex-direction: column; gap: 4px; }
	.sj-footer-home-link { display: none; }
	.sj-footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; padding: 16px 0 24px; }
	.sj-footer-records { justify-content: flex-start; }

	.sj-backtop { right: 16px; bottom: 18px; width: 36px; height: 36px; }
	.sj-not-found-page { padding: 65px 0 80px; }
	.sj-not-found h1 { font-size: 32px; }
	.sj-comment-list .children { margin-left: 20px; }
}

@media (max-width: 420px) {
	.sj-news-thumb { flex-basis: 100px; width: 100px; height: 68px; }
	.sj-news-excerpt { -webkit-line-clamp: 2; }
	.sj-search-submit { padding: 0 16px; }
}

/* ========== Links page ========== */
.sj-links-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	padding-top: 30px;
}
.sj-link-item a {
	display: block;
	padding: 14px 16px;
	border: 1px solid var(--sj-line);
	color: #4f555b;
	font-size: 13px;
	transition: border-color .18s ease, color .18s ease, background .18s ease;
}
.sj-link-item a:hover { border-color: rgba(20,123,120,.35); background: var(--sj-soft); color: var(--sj-brand); }
@media (max-width: 760px) { .sj-links-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; } }
