:root {
	--color-bg: #f3f6f9;
	--color-surface: #fff;
	--color-text: #17182c;
	--color-muted: #5f6477;
	--color-soft: #8b90a1;
	--color-border: #e6e8ee;
	--color-primary: #1e3a5f;
	--color-primary-dark: #16304f;
	--color-accent: #d4a853;
	--color-accent-soft: #fbf1dc;
	--color-green: #2f8f4e;
	--color-red: #d74444;
	--shadow-sm: 0 1px 3px rgba(18, 24, 40, .05);
	--shadow-md: 0 8px 22px rgba(18, 24, 40, .08);
	--shadow-lg: 0 18px 45px rgba(18, 24, 40, .12);
	--radius-sm: 8px;
	--radius-md: 12px;
	--container: 1200px;
	--gap: 24px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--color-bg);
	color: var(--color-text);
	font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
	font-size: 16px;
	line-height: 1.72;
}

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

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

button,
input,
textarea,
select {
	font: inherit;
}

.container {
	width: min(100% - 48px, var(--container));
	margin-inline: 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: var(--color-primary);
	color: #fff;
	box-shadow: 0 1px 0 rgba(255, 255, 255, .08);
}

.site-header__inner {
	max-width: 1400px;
	min-height: 72px;
	margin: 0 auto;
	padding: 0 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
}

.site-branding {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
}

.site-title {
	display: inline-flex;
	align-items: center;
	gap: 12px;
}

.site-title__mark {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	background: var(--color-accent);
	color: var(--color-primary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 900;
	line-height: 1;
}

.site-title__text {
	font-size: 22px;
	font-weight: 900;
	letter-spacing: 0;
}

.custom-logo,
.site-logo-link img {
	display: block;
	max-height: 54px;
	width: auto;
}

.site-navigation {
	min-width: 0;
	margin-left: auto;
}

.site-menu {
	display: flex;
	align-items: center;
	gap: 4px;
	list-style: none;
	margin: 0;
	padding: 0;
	max-width: 100%;
}

.site-menu a {
	display: block;
	max-width: 118px;
	overflow: hidden;
	padding: 10px 12px;
	border-radius: 8px;
	color: rgba(255, 255, 255, .86);
	font-size: 14px;
	font-weight: 700;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.site-menu a:hover,
.site-menu .current-menu-item > a {
	background: rgba(255, 255, 255, .14);
	color: #fff;
}

.site-search {
	display: flex;
	align-items: center;
	gap: 8px;
	flex: 0 0 auto;
}

.site-search input {
	width: 170px;
	border: 1px solid rgba(255, 255, 255, .28);
	background: rgba(255, 255, 255, .08);
	color: #fff;
	border-radius: 8px;
	padding: 8px 10px;
}

.site-search input::placeholder {
	color: rgba(255, 255, 255, .75);
}

.site-search button,
.search-submit,
.load-more-button {
	border: 0;
	border-radius: 8px;
	background: var(--color-accent);
	color: var(--color-primary);
	padding: 9px 14px;
	font-weight: 900;
	cursor: pointer;
}

.load-more-button {
	margin: 0;
}

.icon-button {
	width: 42px;
	height: 42px;
	border: 1px solid rgba(255, 255, 255, .32);
	border-radius: 8px;
	background: transparent;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.icon-button__bar,
.icon-button__bar::before,
.icon-button__bar::after {
	display: block;
	width: 20px;
	height: 2px;
	background: #fff;
	content: "";
}

.icon-button__bar {
	position: relative;
}

.icon-button__bar::before {
	position: absolute;
	top: -6px;
}

.icon-button__bar::after {
	position: absolute;
	top: 6px;
}

.site-main {
	padding: 0 0 52px;
}

.home-hero {
	width: min(100% - 48px, var(--container));
	max-width: var(--container);
	margin: 22px auto 0;
	padding: 30px;
	min-height: 0;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 356px;
	align-items: stretch;
	gap: 28px;
	background:
		linear-gradient(135deg, rgba(30, 58, 95, .96), rgba(21, 38, 66, .96)),
		radial-gradient(circle at 12% 18%, rgba(212, 168, 83, .28), transparent 32%);
	border: 1px solid rgba(30, 58, 95, .18);
	border-radius: 18px;
	box-shadow: 0 22px 60px rgba(16, 31, 53, .16);
	overflow: hidden;
	position: relative;
}

.home-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px),
		linear-gradient(0deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
	background-size: 42px 42px;
	mask-image: linear-gradient(90deg, #000, transparent 72%);
	pointer-events: none;
}

.home-hero__copy,
.market-stack {
	position: relative;
	z-index: 1;
}

.home-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
	padding: 7px 12px;
	border: 1px solid rgba(212, 168, 83, .42);
	border-radius: 999px;
	background: rgba(212, 168, 83, .12);
	color: #f2d38a;
	font-size: 13px;
	font-weight: 900;
}

.home-hero__copy h1 {
	margin: 0 0 14px;
	max-width: 620px;
	font-family: "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
	font-size: clamp(36px, 5vw, 62px);
	line-height: 1.05;
	letter-spacing: 0;
	color: #fff;
}

.home-hero__copy h1::first-line {
	color: #fff;
}

.home-hero__copy p {
	max-width: 640px;
	margin: 0;
	color: rgba(255, 255, 255, .72);
	font-size: 17px;
	line-height: 1.8;
}

.home-hero__actions {
	position: relative;
	z-index: 2;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
}

.home-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 118px;
	height: 48px;
	padding: 0 22px;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, .24);
	font-weight: 900;
	transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.home-button:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.home-button--primary {
	background: var(--color-accent);
	border-color: var(--color-accent);
	color: #12223b;
}

.home-button--ghost {
	background: rgba(255, 255, 255, .08);
	color: #fff;
}

.home-hero__featured {
	display: grid;
	gap: 6px;
	max-width: 720px;
	margin-top: 26px;
	padding: 16px 18px;
	border: 1px solid rgba(255, 255, 255, .16);
	border-left: 3px solid var(--color-accent);
	border-radius: 10px;
	background: rgba(255, 255, 255, .08);
	backdrop-filter: blur(8px);
}

.home-hero__featured span {
	color: #f2d38a;
	font-size: 12px;
	font-weight: 900;
}

.home-hero__featured strong {
	color: #fff;
	font-size: 18px;
	line-height: 1.35;
}

.home-hero__featured small {
	color: rgba(255, 255, 255, .68);
	font-size: 13px;
	line-height: 1.6;
}

.market-stack {
	display: grid;
	align-content: start;
	gap: 12px;
	padding: 18px;
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: 14px;
	background: rgba(255, 255, 255, .08);
	backdrop-filter: blur(10px);
}

.market-stack__heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 4px;
	color: #fff;
}

.market-stack__heading span {
	font-size: 15px;
	font-weight: 900;
}

.market-stack__heading small {
	color: rgba(255, 255, 255, .58);
	font-size: 12px;
}

.market-card {
	display: grid;
	grid-template-columns: 40px minmax(0, 1fr) auto;
	align-items: center;
	gap: 12px;
	padding: 14px;
	border-radius: 12px;
	background: rgba(255, 255, 255, .92);
	box-shadow: 0 8px 24px rgba(8, 18, 34, .14);
	border: 1px solid rgba(255, 255, 255, .58);
}

.market-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 40px rgba(30, 58, 95, .12);
}

.market-icon,
.entry-card__icon,
.article-row__icon,
.sidebar-post__icon {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: var(--color-accent-soft);
	flex: 0 0 auto;
}

.market-icon::before,
.entry-card__icon::before,
.article-row__icon::before,
.sidebar-post__icon::before {
	content: "";
	width: 18px;
	height: 18px;
	border-radius: 4px;
	border: 2px solid var(--color-primary);
	background: linear-gradient(90deg, var(--color-accent) 0 35%, transparent 35% 100%);
	box-shadow: inset 5px 0 0 rgba(212, 168, 83, .4);
}

.market-icon--2 {
	background: #fff4cf;
}

.market-icon--2::before {
	border-radius: 999px;
	background: radial-gradient(circle at 50% 50%, var(--color-accent) 0 34%, transparent 35%), #fff;
}

.market-icon--3 {
	background: #e5f3fb;
}

.market-icon--3::before {
	background: linear-gradient(to top, var(--color-green) 0 42%, transparent 42%), linear-gradient(to right, transparent 0 30%, var(--color-red) 30% 48%, transparent 48% 62%, var(--color-primary) 62% 78%, transparent 78%);
}

.market-card__body {
	display: grid;
	gap: 2px;
	min-width: 0;
}

.market-card__body strong {
	font-size: 15px;
	line-height: 1.3;
}

.market-card__body small {
	color: var(--color-soft);
	font-size: 12px;
	font-weight: 700;
}

.market-card__status {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 4px 8px;
	border-radius: 6px;
	background: #e7f5e9;
	color: var(--color-green);
	font-size: 11px;
	font-weight: 900;
	white-space: nowrap;
}

.home-shell {
	max-width: 1200px;
	margin: 22px auto 0;
	padding: 0 24px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 24px;
}

.home-content {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.featured-card,
.home-list-section,
.home-image-section,
.quick-news,
.hot-articles,
.tags-section,
.sidebar-panel {
	background: var(--color-surface);
	border: 1px solid rgba(220, 225, 233, .9);
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(17, 30, 52, .05);
}

.featured-card--compact {
	overflow: hidden;
}

.featured-content {
	padding: 24px;
}

.featured-tag {
	display: inline-flex;
	padding: 5px 12px;
	background: var(--color-accent-soft);
	color: #a77d29;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 900;
	margin-bottom: 12px;
}

.featured-title {
	margin: 0 0 10px;
	font-size: 24px;
	line-height: 1.38;
	letter-spacing: 0;
	font-weight: 900;
}

.featured-title a:hover,
.article-row h3 a:hover,
.entry-card__title a:hover,
.sidebar-post:hover .sidebar-post__title {
	color: var(--color-accent);
}

.featured-desc {
	margin: 0 0 16px;
	color: var(--color-muted);
	font-size: 15px;
}

.featured-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 18px;
	padding-top: 14px;
	border-top: 1px solid var(--color-border);
	color: var(--color-soft);
	font-size: 13px;
}

.section-heading {
	margin: 0 0 16px;
}

.section-heading h2 {
	margin: 0;
	font-size: 20px;
	line-height: 1.3;
	font-weight: 900;
}

.section-heading--line {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--color-accent);
}

.home-list-section,
.home-image-section {
	padding: 20px;
}

.articles-list,
.post-list,
.post-grid,
.sidebar-post-list {
	display: grid;
	gap: 12px;
}

.article-row,
.entry-card {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr);
	gap: 12px;
	align-items: start;
	padding: 14px 0;
	border: 0;
	border-bottom: 1px solid var(--color-border);
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.article-row:last-child,
.entry-card:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.article-row:hover,
.entry-card:hover {
	border-color: rgba(212, 168, 83, .65);
	box-shadow: none;
	transform: translateX(4px);
}

.article-row__icon,
.entry-card__icon {
	width: 40px;
	height: 40px;
	border-radius: 10px;
}

.article-row h3,
.entry-card__title {
	margin: 0 0 6px;
	font-size: 17px;
	line-height: 1.38;
	letter-spacing: 0;
}

.article-row p,
.entry-card__excerpt {
	margin: 0 0 10px;
	color: var(--color-muted);
	font-size: 14px;
	line-height: 1.7;
}

.article-row__meta,
.entry-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px 12px;
	color: var(--color-soft);
	font-size: 13px;
}

.image-story-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.image-story {
	position: relative;
	display: block;
	overflow: hidden;
	min-height: 170px;
	border-radius: 10px;
	background: #dfe7ef;
}

.image-story__image {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 170px;
	object-fit: cover;
	transition: transform .28s ease;
}

.image-story:hover .image-story__image {
	transform: scale(1.04);
}

.image-story__title {
	position: absolute;
	inset: auto 0 0;
	padding: 34px 14px 14px;
	color: #fff;
	font-weight: 900;
	line-height: 1.4;
	background: linear-gradient(to top, rgba(12, 23, 39, .78), transparent);
}

.home-sidebar {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.quick-news {
	overflow: hidden;
}

.quick-news-header {
	background: linear-gradient(135deg, #d95549 0%, #e89b3f 100%);
	color: #fff;
	padding: 14px 18px;
	font-size: 14px;
	font-weight: 900;
}

.quick-news-list {
	padding: 10px 0;
	max-height: 300px;
	overflow: auto;
}

.quick-news-item {
	display: block;
	padding: 11px 18px;
	border-bottom: 1px solid var(--color-border);
}

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

.quick-news-item:hover {
	background: var(--color-bg);
}

.news-time {
	display: block;
	margin-bottom: 4px;
	color: var(--color-soft);
	font-size: 11px;
}

.news-title {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	color: var(--color-muted);
	font-size: 13px;
	line-height: 1.5;
}

.hot-articles,
.tags-section,
.sidebar-panel {
	padding: 18px;
}

.hot-tabs {
	display: flex;
	gap: 4px;
	margin-bottom: 16px;
	border-bottom: 1px solid var(--color-border);
}

.hot-tab {
	padding: 8px 14px;
	margin-bottom: -1px;
	border-bottom: 2px solid transparent;
	color: var(--color-soft);
	font-size: 13px;
	font-weight: 800;
}

.hot-tab.active {
	border-bottom-color: var(--color-accent);
	color: #a77d29;
}

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

.hot-item {
	display: flex;
	gap: 12px;
	padding: 12px 0;
	border-bottom: 1px solid var(--color-border);
}

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

.hot-num {
	width: 24px;
	height: 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	border-radius: 6px;
	background: var(--color-accent-soft);
	color: #a77d29;
	font-size: 12px;
	font-weight: 900;
}

.hot-item:first-child .hot-num {
	background: var(--color-accent);
	color: #fff;
}

.hot-info {
	display: grid;
	gap: 4px;
	min-width: 0;
}

.hot-title {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	color: var(--color-muted);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.5;
}

.hot-meta {
	color: var(--color-soft);
	font-size: 11px;
}

.sidebar-title,
.sidebar-panel__title {
	margin: 0 0 16px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--color-accent);
	font-size: 16px;
	line-height: 1.3;
	font-weight: 900;
}

.tags-cloud {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.tag-item {
	padding: 6px 12px;
	border-radius: 999px;
	background: var(--color-bg);
	color: var(--color-muted);
	font-size: 12px;
	font-weight: 700;
}

.tag-item:hover {
	background: var(--color-accent-soft);
	color: #a77d29;
}

.contact-card {
	padding: 20px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--color-primary) 0%, #2d5a8a 100%);
	color: #fff;
}

.contact-title {
	margin: 0 0 12px;
	font-size: 15px;
	font-weight: 900;
}

.contact-phone {
	margin-bottom: 12px;
	font-size: 20px;
	font-weight: 900;
}

.contact-info {
	font-size: 12px;
	line-height: 1.8;
	opacity: .88;
}

.contact-info a {
	color: #fff;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.page-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: var(--gap);
	align-items: start;
	padding-top: 24px;
}

.narrow-layout {
	max-width: 860px;
	padding-top: 24px;
}

.content-column,
.sidebar-column {
	min-width: 0;
}

.archive-header,
.single-article__header,
.page-article__header {
	margin-bottom: 20px;
}

.archive-header h1,
.single-article__header h1,
.page-article__header h1,
.not-found h1 {
	margin: 0 0 12px;
	font-size: clamp(28px, 4vw, 42px);
	line-height: 1.18;
	letter-spacing: 0;
}

.archive-description {
	color: var(--color-muted);
}

.breadcrumb {
	margin: 0 0 18px;
	color: var(--color-soft);
	font-size: 14px;
}

.breadcrumb ol {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.breadcrumb li:not(:last-child)::after {
	content: ">";
	margin-left: 8px;
	color: #98a2b3;
}

.single-article,
.page-article,
.content-section,
.not-found,
.toc-box,
.post-navigation-card {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
}

.single-article,
.page-article {
	padding: 30px;
}

.content-section {
	padding: 22px;
	margin-top: 22px;
}

.entry-content {
	font-size: 18px;
	line-height: 1.88;
}

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

.entry-content h2 {
	margin: 34px 0 14px;
	font-size: 28px;
	line-height: 1.3;
}

.entry-content h3 {
	margin: 28px 0 12px;
	font-size: 22px;
	line-height: 1.35;
}

.entry-content p,
.entry-content ul,
.entry-content ol,
.entry-content table,
.entry-content blockquote,
.entry-content pre {
	margin: 0 0 20px;
}

.entry-content a {
	color: var(--color-primary);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.entry-content blockquote {
	border-left: 4px solid var(--color-accent);
	background: var(--color-accent-soft);
	padding: 16px 18px;
	color: #334155;
}

.entry-content table {
	width: 100%;
	border-collapse: collapse;
	display: block;
	overflow-x: auto;
}

.entry-content th,
.entry-content td {
	border: 1px solid var(--color-border);
	padding: 10px 12px;
}

.entry-content pre {
	overflow: auto;
	background: #0b1220;
	color: #e5edf7;
	padding: 18px;
	border-radius: var(--radius-md);
}

.entry-content code {
	background: #eef3f8;
	border-radius: 4px;
	padding: 2px 5px;
}

.entry-content img {
	border-radius: var(--radius-sm);
}

.toc-box {
	padding: 18px;
	margin-bottom: 22px;
}

.tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 24px;
}

.tag-list a {
	display: inline-flex;
	border: 1px solid var(--color-border);
	border-radius: 999px;
	padding: 5px 10px;
	color: var(--color-muted);
}

.post-navigation-card {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	padding: 18px;
	margin: 24px 0;
}

.post-navigation-card span {
	display: block;
	margin-bottom: 4px;
	color: var(--color-soft);
	font-size: 13px;
}

.faq-list {
	display: grid;
	gap: 10px;
}

.faq-item {
	border: 1px solid var(--color-border);
	border-radius: 8px;
	padding: 12px 14px;
	background: #fff;
}

.topic-article__intro {
	margin: 0;
	padding: 18px 20px;
	border-left: 4px solid var(--color-accent);
	border-radius: var(--radius-sm);
	background: var(--color-accent-soft);
	color: #334155;
	line-height: 1.9;
}

.topic-toc ul {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 14px;
	margin: 10px 0 0;
	padding: 0;
	list-style: none;
}

.topic-toc a {
	color: var(--color-primary);
	font-weight: 700;
}

.topic-section {
	scroll-margin-top: 90px;
}

.html-sitemap ul {
	display: grid;
	gap: 8px;
	margin: 0 0 24px;
	padding-left: 20px;
}

.search-form {
	display: flex;
	gap: 10px;
}

.search-field {
	min-width: 0;
	flex: 1;
	border: 1px solid var(--color-border);
	border-radius: 8px;
	padding: 10px 12px;
}

.pagination-nav {
	margin-top: 24px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

.pagination-nav ul {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.pagination-nav a,
.pagination-nav span {
	display: inline-flex;
	min-width: 38px;
	height: 38px;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--color-border);
	border-radius: 8px;
	background: #fff;
	padding: 0 10px;
}

.pagination-nav .current {
	background: var(--color-primary);
	border-color: var(--color-primary);
	color: #fff;
}

.sidebar-post {
	display: grid;
	grid-template-columns: 38px minmax(0, 1fr);
	gap: 10px;
	align-items: start;
	padding: 10px 0;
	border-bottom: 1px solid var(--color-border);
}

.sidebar-post:last-child {
	border-bottom: 0;
}

.sidebar-post__icon {
	width: 34px;
	height: 34px;
	border-radius: 9px;
}

.sidebar-post__icon::before {
	width: 15px;
	height: 15px;
}

.sidebar-post__title {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-weight: 800;
	line-height: 1.42;
}

.sidebar-post__meta {
	color: var(--color-soft);
	font-size: 13px;
}

.site-footer {
	background: var(--color-primary);
	color: #fff;
	margin-top: 40px;
}

.site-footer__grid {
	max-width: 1400px;
	margin: 0 auto;
	padding: 40px 24px;
	display: grid;
	grid-template-columns: 2fr repeat(3, 1fr);
	gap: 60px;
}

.footer-brandmark {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
}

.site-footer h2,
.widget-title {
	margin: 0 0 10px;
	color: #fff;
	font-size: 18px;
	letter-spacing: 0;
}

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

.footer-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 18px;
}

.footer-menu a {
	color: rgba(255, 255, 255, .72);
	font-size: 13px;
}

.footer-menu a:hover {
	color: #fff;
}

.footer-menu--utility {
	margin-top: 12px;
}

.site-footer__bottom {
	max-width: 1400px;
	margin: 0 auto;
	padding: 20px 24px;
	border-top: 1px solid rgba(255, 255, 255, .1);
	display: flex;
	justify-content: space-between;
	gap: 16px;
	color: rgba(255, 255, 255, .62);
	font-size: 12px;
}

.site-footer__records {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 8px 14px;
}

.site-footer__records a {
	color: rgba(255, 255, 255, .72);
}

.site-footer__records a:hover {
	color: #fff;
}

@media (max-width: 1180px) {
	.home-hero {
		grid-template-columns: minmax(0, 1fr) 360px;
		gap: 22px;
		padding: 26px;
	}
}

@media (max-width: 1023px) {
	.site-search {
		display: none;
	}

	.home-hero,
	.home-shell,
	.page-layout {
		grid-template-columns: 1fr;
	}

	.home-hero {
		width: min(100% - 48px, var(--container));
		padding: 24px;
	}

	.market-stack {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		padding: 14px;
	}

	.market-card {
		grid-template-columns: 40px minmax(0, 1fr);
		padding: 12px;
	}

	.market-card__status {
		grid-column: 1 / -1;
		justify-self: start;
	}

	.home-sidebar {
		display: none;
	}

	.site-footer__grid {
		grid-template-columns: 1fr 1fr;
	}

	.site-navigation {
		position: fixed;
		inset: 72px 0 auto 0;
		background: var(--color-primary);
		border-top: 1px solid rgba(255, 255, 255, .1);
		box-shadow: var(--shadow-md);
		transform: translateY(-130%);
		transition: transform .2s ease;
	}

	.site-navigation.is-open {
		transform: translateY(0);
	}

	.site-menu {
		display: block;
		padding: 12px 16px;
	}

	.site-menu a {
		padding: 12px;
	}

	.site-nav-toggle {
		display: inline-flex !important;
		margin-left: auto;
	}
}

@media (min-width: 1024px) {
	.site-nav-toggle {
		display: none !important;
	}
}

@media (max-width: 767px) {
	body {
		font-size: 15px;
	}

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

	.site-header__inner {
		min-height: 64px;
		padding: 10px 16px;
	}

	.site-title__mark {
		width: 38px;
		height: 38px;
	}

	.site-title__text {
		font-size: 19px;
	}

	.site-navigation {
		inset: 64px 0 auto 0;
	}

	.home-hero {
		width: min(100% - 32px, var(--container));
		margin-top: 16px;
		padding: 22px;
		border-radius: 14px;
	}

	.home-hero__copy h1 {
		font-size: 32px;
	}

	.home-hero__copy p {
		font-size: 15px;
	}

	.home-button {
		min-width: 0;
		flex: 1 1 132px;
		height: 50px;
		padding: 0 16px;
	}

	.market-stack,
	.image-story-grid,
	.site-footer__grid {
		grid-template-columns: 1fr;
	}

	.market-card {
		grid-template-columns: 40px minmax(0, 1fr) auto;
	}

	.market-card__status {
		grid-column: auto;
	}

	.home-shell {
		margin-top: 18px;
		padding: 0 16px;
	}

	.featured-content,
	.home-list-section,
	.home-image-section,
	.single-article,
	.page-article,
	.content-section {
		padding: 18px;
	}

	.featured-title {
		font-size: 20px;
	}

	.article-row,
	.entry-card {
		grid-template-columns: 36px minmax(0, 1fr);
		padding: 13px 0;
	}

	.article-row__icon,
	.entry-card__icon {
		width: 34px;
		height: 34px;
	}

	.article-row p,
	.entry-card__excerpt {
		display: none;
	}

	.entry-content {
		font-size: 16px;
	}

	.post-navigation-card {
		grid-template-columns: 1fr;
	}

	.site-footer__bottom {
		flex-direction: column;
		text-align: center;
	}

	.site-footer__records {
		justify-content: center;
	}
}
