:root {
	--gft-primary: #c8963e;
	--gft-accent: #d7a84f;
	--gft-button: #c8963e;
	--gft-footer: #ffffff;
	--gft-ink: #101828;
	--gft-text: #475467;
	--gft-muted: #8492a6;
	--gft-line: #e9eef2;
	--gft-soft: #f6f8f9;
	--gft-card: #ffffff;
	--gft-green: #13a36f;
	--gft-red: #ff3b30;
	--gft-radius: 10px;
	--gft-container: 1180px;
	--gft-shadow: 0 18px 45px rgba(16, 24, 40, 0.07);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	color: var(--gft-text);
	background: linear-gradient(180deg, #fff 0, #fafcfc 540px, #fff 100%);
	font-family: Inter, "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
	font-size: 14px;
	line-height: 1.72;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input {
	font: inherit;
}

button {
	cursor: pointer;
}

img,
svg {
	display: block;
}

img {
	max-width: 100%;
	height: 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;
}

.gft-container {
	width: min(calc(100% - 72px), var(--gft-container));
	margin-inline: auto;
}

.site-main {
	display: flex;
	flex-direction: column;
	min-height: 52vh;
}

.gft-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 24px;
	border: 1px solid transparent;
	border-radius: 7px;
	font-size: 14px;
	font-weight: 800;
	white-space: nowrap;
	transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.gft-button:hover {
	transform: translateY(-1px);
}

.gft-button--primary {
	color: #fff;
	background: linear-gradient(180deg, var(--gft-accent), var(--gft-button));
	box-shadow: 0 12px 24px rgba(200, 150, 62, 0.22);
}

.gft-button--ghost {
	color: var(--gft-ink);
	background: #fff;
	border-color: var(--gft-line);
	box-shadow: 0 10px 28px rgba(16, 24, 40, 0.06);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 80;
	color: #fff;
	background: #ffffff;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 8px 24px rgba(0, 45, 31, 0.18);
}

.site-header__inner {
	display: flex;
	align-items: center;
	min-height: 70px;
	gap: 28px;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-width: 210px;
}

.site-brand__mark {
	display: inline-grid;
	place-items: center;
	width: 42px;
	height: 42px;
	flex: 0 0 42px;
	color: var(--gft-accent);
}

.site-brand__mark svg,
.site-brand__mark img {
	width: 42px;
	height: 42px;
	object-fit: contain;
	fill: currentColor;
}

.site-brand__copy {
	display: grid;
	gap: 2px;
	line-height: 1.08;
}

.site-brand__name {
	color: #fff;
	font-size: 21px;
	font-weight: 950;
	letter-spacing: 0;
}

.site-brand__tagline {
	color: rgba(255, 255, 255, 0.72);
	font-size: 11px;
	font-weight: 600;
	white-space: nowrap;
}

.site-header__panel {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex: 1 1 auto;
	min-width: 0;
}

.site-header__nav {
	margin-inline: auto;
}

.primary-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(20px, 2.2vw, 36px);
	padding: 0;
	margin: 0;
	list-style: none;
}

.primary-menu a {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 70px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 14px;
	font-weight: 850;
	white-space: nowrap;
}

.primary-menu a::after {
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 42px;
	height: 3px;
	content: "";
	background: var(--gft-accent);
	border-radius: 3px 3px 0 0;
	opacity: 0;
	transform: translateX(-50%) scaleX(0.5);
	transition: opacity 160ms ease, transform 160ms ease;
}

.primary-menu a:hover,
.primary-menu .current-menu-item > a,
.primary-menu .current_page_item > a,
.primary-menu .current-menu-ancestor > a {
	color: var(--gft-accent);
}

.primary-menu a:hover::after,
.primary-menu .current-menu-item > a::after,
.primary-menu .current_page_item > a::after,
.primary-menu .current-menu-ancestor > a::after {
	opacity: 1;
	transform: translateX(-50%) scaleX(1);
}

.site-header__search {
	display: flex;
	align-items: center;
	width: 42px;
	height: 38px;
	background: transparent;
	border-radius: 999px;
	transition: width 180ms ease, background 180ms ease;
}

.site-header__search:focus-within {
	width: 210px;
	background: rgba(255, 255, 255, 0.1);
}

.site-header__search input {
	width: 100%;
	min-width: 0;
	height: 100%;
	padding: 0 0 0 12px;
	color: #fff;
	background: transparent;
	border: 0;
	outline: 0;
	font-size: 13px;
	opacity: 0;
}

.site-header__search:focus-within input {
	opacity: 1;
}

.site-header__search input::placeholder {
	color: rgba(255, 255, 255, 0.58);
}

.site-header__search button,
.site-header__toggle {
	display: inline-grid;
	place-items: center;
	padding: 0;
	color: #fff;
	background: transparent;
	border: 0;
}

.site-header__search button {
	width: 38px;
	height: 38px;
	flex: 0 0 38px;
}

.site-header__search svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.site-header__toggle {
	display: none;
	width: 42px;
	height: 42px;
	margin-left: auto;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 50%;
}

.site-header__toggle svg {
	width: 22px;
	height: 22px;
}

.site-header__toggle-close {
	display: none;
}

.site-header.is-open .site-header__toggle-open {
	display: none;
}

.site-header.is-open .site-header__toggle-close {
	display: block;
}

.home-hero {
	position: relative;
	overflow: hidden;
	padding: 28px 0 26px;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 50%, rgba(255, 255, 255, 0.76) 100%),
		url("../images/content/dax-line-chart.webp") calc(50% + 115px) 34px / clamp(420px, 36vw, 600px) auto no-repeat;
}

.home-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(420px, 0.82fr);
	gap: clamp(34px, 6vw, 88px);
	align-items: center;
	min-height: 360px;
}

.home-hero__grid--simple {
	grid-template-columns: minmax(0, 720px);
}

.home-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 0 13px;
	margin-bottom: 22px;
	color: var(--gft-primary);
	background: #e9f8f1;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 900;
}

.home-hero h1 {
	max-width: 640px;
	margin: 0;
	color: var(--gft-primary);
	font-size: clamp(36px, 4.2vw, 50px);
	font-weight: 950;
	line-height: 1.06;
	letter-spacing: 0;
}

.home-hero__title-main,
.home-hero__title-accent {
	display: block;
}

.home-hero__title-main {
	color: var(--gft-primary);
}

.home-hero__title-accent {
	margin-top: 8px;
	color: var(--gft-ink);
	font-size: clamp(24px, 2.5vw, 32px);
}

.home-hero__copy p {
	max-width: 585px;
	margin: 22px 0 0;
	color: #263445;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.85;
}

.home-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 30px;
}

.quote-panel,
.home-card,
.sidebar-card,
.single-content,
.page-default__content,
.archive-main,
.page-channel__main,
.tag-profile,
.topic-profile {
	background: rgba(255, 255, 255, 0.97);
	border: 1px solid var(--gft-line);
	border-radius: var(--gft-radius);
	box-shadow: var(--gft-shadow);
}

.quote-panel--hero {
	padding: 22px 24px;
}

.quote-panel__tabs,
.quote-card__tabs,
.archive-tabs,
.home-filter {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.quote-panel__tabs span,
.quote-card__tabs span,
.archive-tabs a,
.home-filter a,
.home-filter span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 0 16px;
	color: #253245;
	background: #f4f6f7;
	border-radius: 7px;
	font-size: 13px;
	font-weight: 850;
	white-space: nowrap;
}

.quote-panel__tabs .is-active,
.quote-card__tabs .is-active,
.archive-tabs .is-active,
.home-filter .is-active {
	color: #fff;
	background: var(--gft-primary);
	box-shadow: 0 8px 18px rgba(200, 150, 62, 0.18);
}

.quote-panel__rows {
	display: grid;
	gap: 20px;
	margin-top: 28px;
}

.quote-row {
	display: grid;
	grid-template-columns: minmax(104px, 1fr) auto 92px 70px;
	gap: 18px;
	align-items: center;
	min-height: 46px;
}

.quote-row span {
	display: grid;
	line-height: 1.2;
}

.quote-row strong {
	color: var(--gft-ink);
	font-size: 14px;
	font-weight: 950;
}

.quote-row small {
	margin-top: 4px;
	color: var(--gft-muted);
	font-size: 11px;
	font-weight: 750;
}

.quote-row b,
.quote-card__main strong {
	color: var(--gft-ink);
	font-size: 18px;
	font-weight: 950;
}

.quote-row__spark {
	width: 92px;
	height: 32px;
}

.quote-row__spark--up,
.quote-card__main .up + svg,
.quote-card__main svg {
	color: var(--gft-green);
}

.quote-row__spark--down {
	color: var(--gft-red);
}

.quote-row em,
.quote-card__main em {
	font-style: normal;
	font-weight: 950;
}

.quote-row .up,
.quote-card__main .up {
	color: var(--gft-green);
}

.quote-row .down,
.quote-card__main .down {
	color: var(--gft-red);
}

.quote-panel__more {
	display: block;
	margin-top: 20px;
	color: var(--gft-primary);
	font-size: 12px;
	font-weight: 900;
	text-align: right;
}

.home-capabilities {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 0;
	margin-top: 28px;
	padding: 18px 22px;
	background: rgba(255, 255, 255, 0.98);
	border: 1px solid var(--gft-line);
	border-radius: var(--gft-radius);
	box-shadow: var(--gft-shadow);
}

.home-capability {
	display: grid;
	grid-template-columns: 40px minmax(0, 1fr);
	grid-template-rows: auto auto;
	gap: 2px 12px;
	align-items: center;
	min-height: 66px;
	padding: 7px 14px;
}

.home-capability span {
	grid-row: 1 / 3;
	display: inline-grid;
	place-items: center;
	width: 34px;
	height: 34px;
	color: var(--gft-primary);
}

.home-capability svg {
	width: 26px;
	height: 26px;
	fill: currentColor;
}

.home-capability strong {
	color: var(--gft-ink);
	font-size: 14px;
	font-weight: 950;
	line-height: 1.2;
}

.home-capability small {
	color: var(--gft-muted);
	font-size: 12px;
	font-weight: 700;
}

.home-content {
	padding: 30px 0 0;
}

.home-top-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.92fr) minmax(285px, 0.82fr);
	gap: 18px;
	align-items: stretch;
}

.home-card {
	padding: 22px;
	border-radius: 8px;
	box-shadow: 0 14px 34px rgba(16, 24, 40, 0.055);
}

.home-card__head,
.home-section__head,
.sidebar-card__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 18px;
}

.home-card h2,
.home-card__head h2,
.home-section__head h2,
.sidebar-card h2,
.sidebar-card__head h2 {
	margin: 0;
	color: var(--gft-ink);
	font-size: 18px;
	font-weight: 950;
	line-height: 1.25;
}

.home-card__head a,
.home-section__head a,
.sidebar-card__head a {
	color: var(--gft-primary);
	font-size: 12px;
	font-weight: 900;
}

.home-focus__feature {
	position: relative;
	display: block;
	overflow: hidden;
	margin-top: 12px;
	color: #fff;
	border-radius: 7px;
}

.home-focus__feature img {
	width: 100%;
	aspect-ratio: 1.7 / 1;
	object-fit: cover;
}

.home-focus__feature::after {
	position: absolute;
	inset: 45% 0 0;
	content: "";
	background: linear-gradient(180deg, rgba(0, 37, 27, 0), rgba(0, 55, 39, 0.92));
}

.home-focus__feature span,
.archive-article__tag,
.home-news-item__tag {
	width: fit-content;
	padding: 3px 8px;
	color: var(--gft-primary);
	background: #e9f8f1;
	border-radius: 4px;
	font-size: 11px;
	font-weight: 900;
}

.home-focus__feature span,
.home-focus__feature strong,
.home-focus__feature p,
.home-focus__feature small {
	position: relative;
	z-index: 1;
	display: block;
	margin-inline: 18px;
}

.home-focus__feature span {
	position: absolute;
	left: 0;
	bottom: 124px;
	color: #fff;
	background: rgba(200, 150, 62, 0.9);
}

.home-focus__feature strong {
	margin-top: -104px;
	color: #fff;
	font-size: 17px;
	font-weight: 950;
	line-height: 1.42;
}

.home-focus__feature p {
	margin-top: 8px;
	color: rgba(255, 255, 255, 0.84);
	font-size: 13px;
	line-height: 1.75;
}

.home-focus__feature small,
.home-mini-post small,
.home-news-item small,
.home-article-card small,
.archive-article__meta,
.single-meta,
.single-related small {
	color: var(--gft-muted);
	font-size: 12px;
	font-weight: 700;
}

.home-focus__feature small {
	margin-top: 12px;
	margin-bottom: 18px;
	color: rgba(255, 255, 255, 0.78);
}

.home-flash__list,
.home-knowledge__list,
.home-analysis__list,
.home-news-list {
	display: grid;
	gap: 15px;
}

.home-flash__item {
	display: grid;
	grid-template-columns: 52px 54px minmax(0, 1fr);
	gap: 10px;
	align-items: start;
	padding: 2px 0;
}

.home-flash__item time {
	color: var(--gft-muted);
	font-size: 12px;
	font-weight: 800;
}

.home-flash__item span {
	color: var(--gft-red);
	font-size: 12px;
	font-weight: 950;
}

.home-flash__item strong {
	color: var(--gft-ink);
	font-size: 13px;
	font-weight: 900;
	line-height: 1.5;
}

.home-flash__item small {
	grid-column: 3;
	color: var(--gft-muted);
	font-size: 12px;
	text-align: right;
}

.home-mini-post {
	display: grid;
	grid-template-columns: 90px minmax(0, 1fr);
	gap: 14px;
	align-items: center;
}

.home-mini-post img {
	width: 90px;
	aspect-ratio: 1.35 / 1;
	object-fit: cover;
	border-radius: 6px;
}

.home-mini-post span {
	display: grid;
	gap: 5px;
	min-width: 0;
}

.home-mini-post em {
	width: fit-content;
	padding: 2px 7px;
	color: var(--gft-primary);
	background: #e9f8f1;
	border-radius: 4px;
	font-size: 11px;
	font-style: normal;
	font-weight: 900;
}

.home-mini-post strong {
	color: var(--gft-ink);
	font-size: 13px;
	font-weight: 950;
	line-height: 1.45;
}

.home-hot ol,
.sidebar-hot ol,
.sidebar-latest ol {
	display: grid;
	gap: 16px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.home-hot li {
	display: grid;
	grid-template-columns: 28px minmax(0, 1fr);
	gap: 11px;
}

.home-hot li span,
.sidebar-hot li > span {
	display: inline-grid;
	place-items: center;
	width: 24px;
	height: 24px;
	color: var(--gft-ink);
	background: #f4f6f7;
	border-radius: 8px;
	font-size: 12px;
	font-weight: 950;
}

.home-hot li a {
	color: var(--gft-ink);
	font-size: 13px;
	font-weight: 900;
	line-height: 1.55;
}

.home-hot li small {
	grid-column: 2;
	color: var(--gft-muted);
	font-size: 12px;
}

.home-latest,
.home-bottom-grid {
	margin-top: 34px;
}

.home-latest__cards {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 24px;
}

.home-article-card {
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--gft-line);
	border-radius: 8px;
	box-shadow: 0 12px 30px rgba(16, 24, 40, 0.055);
}

.home-article-card__image img {
	width: 100%;
	aspect-ratio: 1.62 / 1;
	object-fit: cover;
}

.home-article-card > div {
	padding: 14px;
}

.home-article-card h3,
.home-news-item h3,
.archive-article h2 {
	margin: 8px 0 7px;
	color: var(--gft-ink);
	font-size: 15px;
	font-weight: 950;
	line-height: 1.42;
}

.home-bottom-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.95fr) minmax(320px, 1fr);
	gap: 22px;
	align-items: start;
}

.home-side-stack {
	display: grid;
	gap: 18px;
}

.home-topics__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.topic-tile {
	position: relative;
	display: block;
	overflow: hidden;
	min-height: 74px;
	color: #fff;
	background: #111827;
	border-radius: 7px;
}

.topic-tile img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.72;
}

.topic-tile::after {
	position: absolute;
	inset: 0;
	content: "";
	background: linear-gradient(90deg, rgba(13, 46, 110, 0.78), rgba(200, 150, 62, 0.24));
}

.topic-tile span {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 4px;
	padding: 14px;
}

.topic-tile strong {
	font-size: 13px;
	font-weight: 950;
}

.topic-tile small {
	color: rgba(255, 255, 255, 0.85);
	font-size: 11px;
	font-weight: 800;
}

.tag-cloud {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.home-tags .tag-cloud {
	margin-top: 34px;
}

.sidebar-card > h2 + .tag-cloud {
	margin-top: 34px;
}

.tag-cloud a {
	display: inline-flex;
	align-items: center;
	min-height: 31px;
	padding: 0 13px;
	color: #4b5563;
	background: #fff;
	border: 1px solid var(--gft-line);
	border-radius: 7px;
	font-size: 12px;
	font-weight: 800;
}

.tag-cloud a:hover {
	color: var(--gft-primary);
	border-color: #c7eadc;
}

.home-faq details,
.single-faq details {
	padding: 14px 0;
	border-top: 1px solid var(--gft-line);
}

.home-faq summary,
.single-faq summary {
	color: var(--gft-ink);
	font-weight: 950;
	cursor: pointer;
}

.home-faq p,
.home-risk p,
.single-faq p {
	margin: 8px 0 0;
	color: #626f80;
}

.home-risk-band {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 18px;
	align-items: start;
	margin-top: 34px;
	padding: 20px 24px;
	background: #fff;
	border: 1px solid var(--gft-line);
	border-radius: var(--gft-radius);
	box-shadow: var(--gft-shadow);
}

.home-risk-band h2,
.home-risk-band p {
	margin: 0;
}

.home-risk-band h2 {
	color: var(--gft-ink);
	font-size: 16px;
	font-weight: 950;
}

.archive-hero,
.page-channel-hero {
	position: relative;
	overflow: hidden;
	padding: 42px 0 44px;
	color: var(--gft-ink);
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.98) 39%, rgba(255, 255, 255, 0.62) 61%, rgba(255, 255, 255, 0.04) 100%),
		url("../images/content/archive-hero-dax-market.webp") calc(50% + 90px) center / min(880px, 62vw) auto no-repeat;
	border-bottom: 1px solid var(--gft-line);
}

.archive-hero__inner,
.page-channel-hero__inner {
	min-height: 174px;
	display: grid;
	align-content: center;
}

.archive-hero h1,
.page-channel-hero h1 {
	margin: 18px 0 10px;
	color: var(--gft-ink);
	font-size: clamp(26px, 3vw, 34px);
	font-weight: 950;
	line-height: 1.18;
	letter-spacing: 0;
}

.archive-hero p,
.page-channel-hero p {
	max-width: 720px;
	margin: 0;
	color: #425166;
	font-size: 14px;
	line-height: 1.75;
}

.gft-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	color: var(--gft-muted);
	font-size: 12px;
	font-weight: 700;
}

.gft-breadcrumb a:hover {
	color: var(--gft-primary);
}

.archive-shell,
.page-channel,
.single-article {
	padding: 42px 0 10px;
}

.archive-shell__grid,
.page-channel__layout,
.single-article__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	gap: 34px;
	align-items: start;
}

.archive-main,
.page-channel__main {
	padding: 28px;
	box-shadow: none;
}

.archive-tabs {
	margin-bottom: 22px;
}

.archive-list {
	display: grid;
	gap: 22px;
}

.archive-article {
	display: grid;
	grid-template-columns: 188px minmax(0, 1fr);
	gap: 22px;
	align-items: center;
	padding: 0 0 22px;
	border-bottom: 1px solid var(--gft-line);
}

.archive-article:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.archive-article__image img {
	width: 100%;
	aspect-ratio: 1.46 / 1;
	object-fit: cover;
	border-radius: 8px;
}

.archive-article p {
	margin: 0 0 7px;
	color: #626f80;
	font-size: 13px;
	line-height: 1.72;
}

.archive-pagination {
	margin-top: 30px;
}

.archive-pagination .nav-links {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.archive-pagination .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 34px;
	height: 34px;
	padding: 0 11px;
	color: #4b5563;
	background: #fff;
	border: 1px solid var(--gft-line);
	border-radius: 6px;
	font-size: 13px;
	font-weight: 850;
}

.archive-pagination .current {
	color: #fff;
	background: var(--gft-primary);
	border-color: var(--gft-primary);
}

.archive-empty {
	display: grid;
	justify-items: start;
	gap: 12px;
	padding: 40px;
	background: #fafafa;
	border-radius: 10px;
}

.sidebar-card {
	padding: 22px;
	box-shadow: 0 14px 34px rgba(16, 24, 40, 0.055);
}

.archive-sidebar,
.home-latest__side {
	display: grid;
	gap: 22px;
}

.quote-card__main {
	display: grid;
	grid-template-columns: auto auto;
	gap: 8px 16px;
	align-items: center;
	margin: 22px 0 18px;
}

.quote-card__main strong {
	font-size: 28px;
}

.quote-card__main svg {
	grid-column: 1 / -1;
	width: 100%;
	height: 50px;
}

.quote-card__stats {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	padding-top: 16px;
	border-top: 1px solid var(--gft-line);
}

.quote-card__stats span {
	display: grid;
	gap: 2px;
	color: var(--gft-muted);
	font-size: 12px;
	font-weight: 700;
}

.quote-card__stats b {
	color: var(--gft-ink);
	font-size: 14px;
	font-weight: 950;
}

.sidebar-hot li,
.sidebar-latest li {
	display: grid;
	grid-template-columns: 28px minmax(0, 1fr);
	gap: 13px;
	align-items: start;
}

.sidebar-hot li a,
.sidebar-latest li a {
	display: grid;
	grid-template-columns: 82px minmax(0, 1fr);
	gap: 12px;
	align-items: center;
}

.sidebar-hot img,
.sidebar-latest img {
	width: 82px;
	aspect-ratio: 1.25 / 1;
	object-fit: cover;
	border-radius: 7px;
}

.sidebar-hot strong,
.sidebar-latest strong {
	color: var(--gft-ink);
	font-size: 13px;
	font-weight: 950;
	line-height: 1.45;
}

.sidebar-hot small,
.sidebar-latest small {
	display: block;
	margin-top: 5px;
	color: var(--gft-muted);
	font-size: 12px;
	font-weight: 700;
}

.archive-sidebar .single-related {
	margin: 0;
	padding: 22px;
}

.archive-sidebar .single-related h2 {
	margin-bottom: 14px;
}

.archive-sidebar .single-related__grid {
	gap: 14px;
}

.archive-sidebar .single-related__item {
	grid-template-columns: 82px minmax(0, 1fr);
	gap: 12px;
	align-items: center;
}

.archive-sidebar .single-related__item img {
	width: 82px;
	aspect-ratio: 1.25 / 1;
	border-radius: 7px;
}

.archive-sidebar .single-related strong {
	font-size: 13px;
	line-height: 1.45;
}

.archive-sidebar .single-related small {
	display: block;
	margin-top: 5px;
}

.sidebar-topics {
	display: grid;
	gap: 12px;
}

.sidebar-topics h2 {
	margin-bottom: 2px;
}

.sidebar-topics .topic-tile {
	min-height: 78px;
}

.sidebar-topics .topic-tile span {
	padding: 15px 16px;
}

.single-content {
	padding: 0 0 28px;
	overflow: hidden;
	box-shadow: none;
}

.single-content > .gft-breadcrumb,
.single-article__header,
.single-tldr,
.single-aeo-grid,
.single-toc,
.entry-content,
.single-ai-summary,
.single-risk,
.single-faq,
.single-sources,
.single-tags,
.single-share,
.single-nav,
.single-related,
.single-author,
.gft-ad--post {
	margin-inline: 34px;
}

.single-content > .gft-breadcrumb {
	margin-top: 28px;
}

.single-article__header h1 {
	margin: 18px 0 10px;
	color: var(--gft-ink);
	font-size: clamp(22px, 2vw, 24px);
	font-weight: 950;
	line-height: 1.34;
	letter-spacing: 0;
}

.single-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 22px;
	color: var(--gft-muted);
	font-size: 13px;
}

.single-tldr {
	display: flex;
	gap: 8px;
	padding: 18px 20px;
	margin-top: 26px;
	background: linear-gradient(90deg, #edf8f3, #fff);
	border-left: 3px solid var(--gft-primary);
	border-radius: 8px;
}

.single-tldr strong {
	flex: 0 0 auto;
	color: var(--gft-primary);
}

.single-tldr p {
	margin: 0;
	color: #364152;
	font-weight: 700;
}

.single-aeo-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 16px;
	margin-top: 22px;
}

.single-aeo-grid section,
.single-ai-summary,
.single-risk,
.single-faq,
.single-sources,
.single-related,
.single-author {
	padding: 22px;
	background: #fff;
	border: 1px solid var(--gft-line);
	border-radius: 10px;
}

.single-aeo-grid h2,
.single-ai-summary h2,
.single-risk h2,
.single-faq h2,
.single-sources h2,
.single-related h2,
.single-author h2 {
	margin: 0 0 12px;
	color: var(--gft-ink);
	font-size: 17px;
	font-weight: 950;
}

.single-aeo-grid p,
.single-ai-summary p,
.single-risk p {
	margin: 0;
	color: #4b5563;
}

.single-aeo-grid ul,
.single-sources ul {
	padding-left: 20px;
	margin: 0;
}

.single-aeo-grid li + li {
	margin-top: 6px;
}

.single-cover {
	width: calc(100% - 68px);
	margin: 28px 34px 0;
	aspect-ratio: 1.78 / 1;
	object-fit: cover;
	border-radius: 9px;
}

.single-toc {
	padding: 18px 20px;
	margin-top: 24px;
	background: #f8faf9;
	border: 1px solid var(--gft-line);
	border-radius: 9px;
}

.single-toc strong {
	display: block;
	margin-bottom: 8px;
	color: var(--gft-ink);
	font-weight: 950;
}

.single-toc ol {
	display: grid;
	gap: 6px;
	padding-left: 22px;
	margin: 0;
}

.single-toc a {
	color: #4b5563;
	font-size: 14px;
	font-weight: 800;
}

.entry-content {
	margin-top: 28px;
	color: #374151;
	font-size: 15px;
	line-height: 1.92;
}

.entry-content > *:first-child {
	margin-top: 0;
}

.entry-content h2,
.entry-content h3 {
	color: var(--gft-ink);
	font-weight: 950;
	line-height: 1.35;
	scroll-margin-top: 100px;
}

.entry-content h2 {
	position: relative;
	padding-left: 15px;
	margin-top: 28px;
	font-size: 18px;
}

.entry-content h2::before {
	position: absolute;
	left: 0;
	top: 0.35em;
	width: 4px;
	height: 1em;
	content: "";
	background: var(--gft-primary);
	border-radius: 4px;
}

.entry-content h3 {
	font-size: 17px;
}

.entry-content img {
	border-radius: 8px;
}

.entry-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 22px 0;
	overflow: hidden;
	border: 1px solid var(--gft-line);
	border-radius: 8px;
}

.entry-content th,
.entry-content td {
	padding: 12px 14px;
	border: 1px solid var(--gft-line);
	text-align: left;
}

.entry-content th {
	color: var(--gft-primary);
	background: #f4fbf8;
	font-weight: 950;
}

.single-ai-summary,
.single-risk,
.single-faq,
.single-sources,
.single-tags,
.single-share,
.single-nav,
.single-related,
.single-author {
	margin-top: 24px;
}

.single-risk {
	background: #fffdf7;
	border-color: #efe3c9;
}

.single-tags,
.single-share {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	padding: 18px 20px;
	background: #fff;
	border: 1px solid var(--gft-line);
	border-radius: 10px;
}

.single-tags strong,
.single-share strong {
	margin-right: 4px;
	color: var(--gft-ink);
}

.single-tags a,
.single-share a {
	display: inline-flex;
	align-items: center;
	min-height: 31px;
	padding: 0 12px;
	color: #4b5563;
	background: #f7f8fa;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 800;
}

.single-nav {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.single-nav div {
	min-height: 74px;
	padding: 16px 18px;
	background: #fff;
	border: 1px solid var(--gft-line);
	border-radius: 10px;
}

.single-nav span {
	display: block;
	color: var(--gft-muted);
	font-size: 12px;
	font-weight: 800;
}

.single-nav a {
	display: block;
	margin-top: 4px;
	color: var(--gft-ink);
	font-size: 14px;
	font-weight: 950;
	line-height: 1.45;
}

.single-related__grid {
	display: grid;
	gap: 14px;
}

.single-related__item {
	display: grid;
	grid-template-columns: 110px minmax(0, 1fr);
	gap: 14px;
	align-items: center;
}

.single-related__item img {
	width: 110px;
	aspect-ratio: 1.32 / 1;
	object-fit: cover;
	border-radius: 8px;
}

.single-related strong {
	color: var(--gft-ink);
	font-size: 15px;
	font-weight: 950;
	line-height: 1.45;
}

.single-author__body {
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr) auto;
	gap: 16px;
	align-items: center;
}

.single-author img {
	width: 72px;
	height: 72px;
	border-radius: 50%;
}

.single-author strong {
	color: var(--gft-ink);
	font-size: 18px;
	font-weight: 950;
}

.single-author p {
	margin: 6px 0 0;
	color: #626f80;
	font-size: 14px;
}

.single-author a {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding: 0 14px;
	color: var(--gft-primary);
	border: 1px solid #c7eadc;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 900;
}

.page-default {
	padding: 42px 0 10px;
}

.page-default__content {
	max-width: 960px;
	padding: 34px;
	margin-inline: auto;
	box-shadow: none;
}

.page-default h1 {
	margin: 22px 0 18px;
	color: var(--gft-ink);
	font-size: clamp(32px, 4vw, 46px);
	font-weight: 950;
	line-height: 1.2;
}

.contact-box {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	margin-top: 28px;
}

.contact-box span {
	display: grid;
	gap: 6px;
	padding: 20px;
	background: #f8faf9;
	border: 1px solid var(--gft-line);
	border-radius: 10px;
}

.contact-box strong {
	color: var(--gft-ink);
	font-size: 18px;
}

.site-footer {
	margin-top: 56px;
	padding: 44px 0 24px;
	color: rgba(255, 255, 255, 0.72);
	background:
		radial-gradient(circle at 18% 0%, rgba(200, 150, 62, 0.08), transparent 34%),
		var(--gft-footer);
}

.site-footer .site-brand__name {
	color: #fff;
}

.site-footer .site-brand__tagline,
.site-footer__brand p {
	color: rgba(255, 255, 255, 0.72);
}

.site-footer__main {
	display: grid;
	grid-template-columns: minmax(240px, 0.95fr) minmax(0, 1.8fr);
	gap: 80px;
	align-items: start;
}

.site-footer__brand p {
	max-width: 320px;
	margin: 16px 0 0;
	font-size: 14px;
	line-height: 1.85;
}

.site-footer__socials {
	display: flex;
	gap: 10px;
	margin-top: 18px;
}

.site-footer__socials a {
	display: inline-grid;
	place-items: center;
	width: 30px;
	height: 30px;
	color: #fff;
	background: rgba(255, 255, 255, 0.11);
	border-radius: 50%;
	font-size: 13px;
	font-weight: 950;
}

.site-footer__columns {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 34px;
}

.site-footer__column h2 {
	margin: 0 0 14px;
	color: #fff;
	font-size: 15px;
	font-weight: 950;
}

.site-footer__column ul {
	display: grid;
	gap: 9px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.site-footer__column a,
.site-footer__column li {
	color: rgba(255, 255, 255, 0.68);
	font-size: 14px;
	font-weight: 700;
}

.site-footer__column a:hover {
	color: var(--gft-accent);
}

.site-footer__risk {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 12px;
	align-items: start;
	margin-top: 34px;
	padding: 18px 20px;
	color: rgba(255, 255, 255, 0.72);
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 10px;
	font-size: 13px;
}

.site-footer__risk strong {
	color: #fff;
}

.site-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 24px;
	margin-top: 24px;
	color: rgba(255, 255, 255, 0.58);
	font-size: 13px;
}

.gft-ad {
	overflow: hidden;
	border-radius: 10px;
}

@media (max-width: 1180px) {
	.gft-container {
		width: min(calc(100% - 48px), var(--gft-container));
	}

	.primary-menu {
		gap: 16px;
	}

	.home-top-grid,
	.home-bottom-grid,
	.archive-shell__grid,
	.page-channel__layout,
	.single-article__grid {
		grid-template-columns: 1fr;
	}

	.home-latest__cards {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.archive-sidebar {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 960px) {
	.site-header__inner {
		min-height: 68px;
	}

	.site-brand__name {
		font-size: 20px;
	}

	.site-header__toggle {
		display: inline-grid;
	}

	.site-header__panel {
		position: absolute;
		top: calc(100% + 1px);
		left: 24px;
		right: 24px;
		display: grid;
		gap: 16px;
		padding: 18px;
		background: #fff;
		border: 1px solid var(--gft-line);
		border-radius: 14px;
		box-shadow: var(--gft-shadow);
		opacity: 0;
		pointer-events: none;
		transform: translateY(-8px);
		transition: opacity 160ms ease, transform 160ms ease;
	}

	.site-header.is-open .site-header__panel {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}

	.site-header__nav,
	.primary-menu,
	.site-header__search {
		width: 100%;
	}

	.primary-menu {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 8px;
	}

	.primary-menu a {
		min-height: 42px;
		color: var(--gft-ink);
		background: #f8faf9;
		border-radius: 8px;
	}

	.primary-menu a::after {
		display: none;
	}

	.site-header__search {
		width: 100%;
		border: 1px solid var(--gft-line);
		background: #fff;
	}

	.site-header__search input {
		color: var(--gft-ink);
		opacity: 1;
	}

	.site-header__search button {
		color: var(--gft-ink);
	}

	.site-header__search input::placeholder {
		color: #a8b0bd;
	}

	.home-hero {
		background:
			linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.84)),
			url("../images/content/dax-line-chart.webp") center bottom / min(620px, 92vw) auto no-repeat;
	}

	.archive-hero,
	.page-channel-hero {
		background:
			linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.9) 100%),
			url("../images/content/archive-hero-dax-market.webp") right center / 620px auto no-repeat;
	}

	.home-hero__grid {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.home-capabilities {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.single-aeo-grid,
	.site-footer__main {
		grid-template-columns: 1fr;
	}

	.site-footer__columns {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.gft-container {
		width: min(calc(100% - 28px), var(--gft-container));
	}

	.site-brand__tagline {
		display: none;
	}

	.site-header__panel {
		left: 14px;
		right: 14px;
	}

	.primary-menu {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.home-hero {
		padding-top: 22px;
	}

	.archive-hero,
	.page-channel-hero {
		padding: 30px 0 32px;
		background:
			linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.94) 100%),
			url("../images/content/archive-hero-dax-market.webp") right 12px center / 480px auto no-repeat;
	}

	.home-hero h1 {
		font-size: 34px;
	}

	.home-hero__title-accent {
		font-size: 24px;
	}

	.home-hero__copy p {
		font-size: 14px;
	}

	.home-hero__actions,
	.single-nav,
	.contact-box,
	.home-risk-band {
		display: grid;
		grid-template-columns: 1fr;
	}

	.quote-panel--hero {
		padding: 18px;
	}

	.quote-row {
		grid-template-columns: minmax(0, 1fr) auto;
		gap: 10px;
	}

	.quote-row__spark,
	.quote-row em {
		display: none;
	}

	.home-capabilities {
		padding: 14px;
		margin-top: 18px;
	}

	.home-capability {
		grid-template-columns: 34px minmax(0, 1fr);
		padding: 8px;
	}

	.home-latest__cards,
	.archive-sidebar,
	.home-topics__grid {
		grid-template-columns: 1fr;
	}

	.home-mini-post,
	.home-news-item,
	.archive-article,
	.sidebar-hot li a,
	.single-related__item,
	.single-author__body {
		grid-template-columns: 1fr;
	}

	.home-mini-post img,
	.home-news-item__image img,
	.archive-article__image img,
	.sidebar-hot img,
	.single-related__item img {
		width: 100%;
		aspect-ratio: 1.65 / 1;
	}

	.archive-main,
	.page-channel__main,
	.single-content > .gft-breadcrumb,
	.single-article__header,
	.single-tldr,
	.single-aeo-grid,
	.single-toc,
	.entry-content,
	.single-ai-summary,
	.single-risk,
	.single-faq,
	.single-sources,
	.single-tags,
	.single-share,
	.single-nav,
	.single-related,
	.single-author,
	.gft-ad--post {
		margin-inline: 18px;
	}

	.archive-main,
	.page-channel__main,
	.sidebar-card,
	.home-card,
	.page-default__content {
		padding: 20px;
	}

	.single-cover {
		width: calc(100% - 36px);
		margin-inline: 18px;
	}

	.single-content {
		border-radius: 10px;
	}

	.site-footer__columns {
		grid-template-columns: 1fr;
	}

	.site-footer__risk {
		grid-template-columns: 1fr;
	}
}

/* Dax visual layer. */
body {
	background: #ffffff;
}

.site-header {
	color: var(--gft-ink);
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid #e8eef8;
	box-shadow: 0 8px 24px rgba(16, 24, 40, 0.05);
	backdrop-filter: blur(16px);
}

.site-brand__mark {
	color: var(--gft-primary);
}

.site-header .site-brand__name,
.site-footer .site-brand__name {
	color: var(--gft-ink);
}

.site-header .site-brand__tagline,
.site-footer .site-brand__tagline {
	color: #667085;
}

.primary-menu a {
	color: #14213f;
}

.primary-menu a:hover,
.primary-menu .current-menu-item > a,
.primary-menu .current_page_item > a,
.primary-menu .current-menu-ancestor > a {
	color: var(--gft-primary);
}

.site-header__search {
	color: #0f1f3d;
}

.site-header__search:focus-within {
	background: #f3f7ff;
}

.site-header__search input {
	color: #0f1f3d;
}

.site-header__search input::placeholder {
	color: #8a96aa;
}

.site-header__search button,
.site-header__toggle {
	color: #0f1f3d;
}

.site-header__toggle {
	border-color: #dce7f7;
}

.home-hero {
	padding: 68px 0 28px;
	background:
		linear-gradient(180deg, #ffffff 0%, #fffaf1 100%);
	border-bottom: 1px solid #e8eef8;
}

.home-hero__grid {
	grid-template-columns: minmax(0, 0.88fr) minmax(500px, 1.12fr);
	min-height: 330px;
	gap: clamp(42px, 6vw, 92px);
}

.home-hero h1 {
	color: #071936;
	font-size: clamp(42px, 4vw, 56px);
	line-height: 1.08;
}

.home-hero__title-accent {
	margin-top: 16px;
	color: #071936;
	font-size: clamp(24px, 2.1vw, 30px);
	font-weight: 800;
}

.home-hero__copy p {
	max-width: 510px;
	margin-top: 26px;
	color: #526071;
	font-size: 15px;
	line-height: 1.9;
}

.home-hero__actions .gft-button svg {
	width: 16px;
	height: 16px;
	margin-left: 9px;
	fill: currentColor;
}

.hero-market-visual {
	position: relative;
	min-height: 300px;
	align-self: center;
}

.hero-market-visual__meta {
	position: absolute;
	z-index: 2;
	top: 28px;
	left: 38px;
	display: grid;
	gap: 4px;
}

.hero-market-visual__meta span {
	color: #40506a;
	font-size: 14px;
	font-weight: 700;
}

.hero-market-visual__meta strong {
	color: #071936;
	font-size: 26px;
	font-weight: 950;
	line-height: 1;
}

.hero-market-visual__meta em,
.home-market-card__price em,
.quote-row em,
.quote-card__main em {
	font-style: normal;
	font-weight: 900;
}

.hero-market-visual__meta .up,
.home-market-card__price .up,
.quote-card__main .up {
	color: #c8963e;
}

.hero-market-visual__meta .down,
.home-market-card__price .down,
.quote-card__main .down {
	color: var(--gft-red);
}

.hero-candles {
	width: 100%;
	height: auto;
	filter: drop-shadow(0 18px 38px rgba(200, 150, 62, 0.08));
}

.home-capabilities {
	grid-template-columns: repeat(6, minmax(0, 1fr));
	margin-top: 0;
	padding: 20px 0;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.home-capability {
	border-right: 0;
}

.home-top-grid {
	grid-template-columns: minmax(0, 1.05fr) minmax(310px, 0.88fr) minmax(300px, 0.9fr);
}

.home-right-stack,
.topic-sidebar-stack {
	display: grid;
	gap: 18px;
	align-items: start;
}

.home-market-card__price {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 8px 16px;
	align-items: center;
	margin-top: 18px;
	color: var(--gft-primary);
}

.home-market-card__price strong {
	color: var(--gft-primary);
	font-size: 30px;
	font-weight: 950;
	line-height: 1;
}

.home-market-card__price svg {
	grid-column: 1 / -1;
	width: 100%;
	color: var(--gft-primary);
}

.home-market-card__time {
	display: block;
	margin-top: 14px;
	color: var(--gft-muted);
	font-size: 12px;
	font-weight: 700;
}

.home-advantages h2 {
	margin: 0 0 16px;
	color: var(--gft-ink);
	font-size: 18px;
	font-weight: 950;
}

.home-advantages__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px 16px;
}

.home-advantages__grid span {
	display: grid;
	grid-template-columns: 28px minmax(0, 1fr);
	gap: 2px 10px;
	align-items: center;
}

.home-advantages__grid svg {
	grid-row: 1 / 3;
	width: 24px;
	height: 24px;
	color: var(--gft-primary);
	fill: currentColor;
}

.home-advantages__grid strong {
	color: var(--gft-ink);
	font-size: 13px;
	font-weight: 950;
}

.home-advantages__grid small {
	color: var(--gft-muted);
	font-size: 11px;
	font-weight: 700;
}

.archive-hero,
.page-channel-hero {
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.96) 46%, rgba(255, 255, 255, 0.7) 76%, rgba(255, 255, 255, 0.2) 100%),
		url("../images/content/archive-hero-dax-market.webp") calc(50% + 140px) center / min(780px, 56vw) auto no-repeat;
}

.topic-hero {
	padding: 44px 0;
	background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
	border-bottom: 1px solid #e8eef8;
}

.topic-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
	gap: 34px;
	align-items: center;
}

.topic-hero h1 {
	margin: 12px 0 12px;
	color: var(--gft-ink);
	font-size: clamp(30px, 3vw, 42px);
	font-weight: 950;
	line-height: 1.16;
}

.topic-hero p {
	max-width: 720px;
	margin: 0;
	color: #526071;
	font-size: 15px;
	line-height: 1.85;
}

.topic-hero span {
	color: var(--gft-primary);
	font-weight: 900;
}

.topic-hero img {
	width: 100%;
	aspect-ratio: 1.8 / 1;
	object-fit: cover;
	border-radius: var(--gft-radius);
	box-shadow: var(--gft-shadow);
}

.topic-hero__stats {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 24px;
}

.topic-hero__stats strong {
	display: grid;
	min-width: 110px;
	padding: 14px 18px;
	color: var(--gft-primary);
	background: #fff;
	border: 1px solid #e2ebf8;
	border-radius: 10px;
	box-shadow: 0 12px 28px rgba(16, 24, 40, 0.05);
	font-size: 22px;
}

.topic-hero__stats small {
	color: var(--gft-muted);
	font-size: 12px;
}

.tag-profile,
.topic-profile {
	display: grid;
	gap: 10px;
	padding: 24px;
	margin-bottom: 22px;
}

.tag-profile > span {
	color: var(--gft-primary);
	font-size: 12px;
	font-weight: 900;
}

.tag-profile strong,
.topic-profile h2 {
	margin: 0;
	color: var(--gft-ink);
	font-size: 22px;
	font-weight: 950;
}

.tag-profile p {
	margin: 0;
	color: #526071;
}

.topic-directory {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}

.topic-directory a {
	display: grid;
	place-items: center;
	min-height: 54px;
	color: var(--gft-primary);
	background: #f3f7ff;
	border: 1px solid #dce9ff;
	border-radius: 8px;
	font-weight: 900;
}

.site-footer {
	color: #667085;
	background: #ffffff;
	border-top: 1px solid #e8eef8;
	box-shadow: none;
}

.site-footer__brand p,
.site-footer__column a,
.site-footer__column li,
.site-footer__risk,
.site-footer__bottom {
	color: #667085;
}

.site-footer__column h2,
.site-footer__risk strong {
	color: var(--gft-ink);
}

.site-footer__socials a {
	color: #667085;
	background: #f2f5fa;
}

.site-footer__column a:hover {
	color: var(--gft-primary);
}

.site-footer__risk {
	background: #fffaf1;
	border: 1px solid #e2ebf8;
}

@media (max-width: 1024px) {
	.home-hero__grid,
	.topic-hero__inner {
		grid-template-columns: 1fr;
	}

	.hero-market-visual {
		max-width: 720px;
	}

	.home-capabilities {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.home-hero {
		padding: 34px 0 20px;
	}

	.home-hero h1 {
		font-size: 36px;
	}

	.hero-market-visual__meta {
		top: 20px;
		left: 22px;
	}

	.hero-market-visual__meta strong {
		font-size: 22px;
	}

	.home-capabilities,
	.home-advantages__grid,
	.topic-directory {
		grid-template-columns: 1fr;
	}

	.topic-hero img {
		aspect-ratio: 1.45 / 1;
	}
}

/* Homepage dashboard layout refinement */
.home-content {
	padding: 28px 0 0;
}

.home-dashboard {
	display: grid;
	grid-template-columns: minmax(0, 2.08fr) minmax(320px, 0.92fr);
	gap: 24px;
	align-items: start;
}

.home-main-stack,
.home-sidebar-stack {
	display: grid;
	gap: 20px;
	align-items: start;
}

.home-main-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.06fr) minmax(300px, 0.94fr);
	gap: 18px;
	align-items: start;
}

.home-card {
	padding: 18px;
	background: #fff;
	border: 1px solid #e8eef8;
	border-radius: 8px;
	box-shadow: 0 12px 28px rgba(16, 24, 40, 0.05);
}

.home-card__head,
.home-section__head,
.sidebar-card__head {
	margin-bottom: 14px;
}

.home-card h2,
.home-card__head h2,
.home-section__head h2,
.sidebar-card h2,
.sidebar-card__head h2 {
	font-size: 17px;
	line-height: 1.25;
}

.home-card__head a,
.home-section__head a,
.sidebar-card__head a {
	font-size: 11px;
}

.home-focus .home-filter {
	display: none;
}

.home-focus__feature {
	height: 218px;
	margin-top: 0;
	border-radius: 7px;
}

.home-focus__feature img {
	width: 100%;
	height: 100%;
	aspect-ratio: auto;
	object-fit: cover;
}

.home-focus__feature::after {
	inset: 34% 0 0;
}

.home-focus__feature span,
.home-focus__feature strong,
.home-focus__feature p,
.home-focus__feature small {
	position: absolute;
	left: 16px;
	right: 16px;
	z-index: 1;
	margin: 0;
}

.home-focus__feature span {
	bottom: 91px;
	left: 16px;
	right: auto;
	color: #fff;
	background: rgba(200, 150, 62, 0.92);
}

.home-focus__feature strong {
	bottom: 59px;
	display: -webkit-box;
	overflow: hidden;
	color: #fff;
	font-size: 16px;
	line-height: 1.35;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}

.home-focus__feature p {
	bottom: 32px;
	display: -webkit-box;
	overflow: hidden;
	color: rgba(255, 255, 255, 0.86);
	font-size: 12px;
	line-height: 1.45;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}

.home-focus__feature small {
	bottom: 13px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 11px;
}

.home-focus__links {
	display: grid;
	margin-top: 12px;
}

.home-focus__links a {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 12px;
	align-items: center;
	padding: 9px 0;
	border-bottom: 1px solid #edf2f7;
}

.home-focus__links a:last-child {
	border-bottom: 0;
}

.home-focus__links strong {
	overflow: hidden;
	color: var(--gft-ink);
	font-size: 12px;
	font-weight: 900;
	line-height: 1.4;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.home-focus__links small {
	color: var(--gft-muted);
	font-size: 11px;
	font-weight: 700;
	white-space: nowrap;
}

.home-flash__list,
.home-knowledge__list,
.home-analysis__list,
.home-news-list {
	gap: 12px;
}

.home-flash__item {
	grid-template-columns: 46px 48px minmax(0, 1fr) 42px;
	gap: 8px;
	align-items: start;
	padding: 4px 0;
}

.home-flash__item time,
.home-flash__item span,
.home-flash__item small {
	font-size: 11px;
	line-height: 1.45;
}

.home-flash__item strong {
	display: -webkit-box;
	overflow: hidden;
	font-size: 12px;
	line-height: 1.45;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.home-flash__item small {
	grid-column: auto;
	text-align: right;
}

.home-latest,
.home-bottom-grid {
	margin-top: 0;
}

.home-latest {
	padding: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
}

.home-latest__cards {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.home-article-card {
	border-radius: 7px;
	box-shadow: 0 10px 24px rgba(16, 24, 40, 0.045);
}

.home-article-card__image img {
	aspect-ratio: 1.55 / 1;
}

.home-article-card > div {
	padding: 12px;
}

.home-article-card h3,
.home-news-item h3,
.archive-article h2 {
	margin: 7px 0 6px;
	font-size: 12px;
	line-height: 1.42;
}

.home-article-card small {
	font-size: 11px;
}

.home-market-card__price {
	gap: 6px 12px;
	margin-top: 14px;
}

.home-market-card__price strong {
	font-size: 28px;
}

.home-market-card__price svg {
	height: 50px;
}

.quote-card__stats {
	gap: 12px;
	padding-top: 14px;
}

.quote-card__stats span,
.home-market-card__time {
	font-size: 11px;
}

.quote-card__stats b {
	font-size: 13px;
}

.home-hot ol,
.sidebar-hot ol,
.sidebar-latest ol {
	gap: 13px;
}

.home-hot li {
	grid-template-columns: 26px minmax(0, 1fr);
	gap: 10px;
}

.home-hot li span,
.sidebar-hot li > span,
.sidebar-latest li > span {
	width: 22px;
	height: 22px;
	border-radius: 7px;
	font-size: 11px;
}

.home-hot li a {
	display: -webkit-box;
	overflow: hidden;
	font-size: 12px;
	line-height: 1.45;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.home-hot li small {
	font-size: 11px;
}

.home-tags .tag-cloud,
.sidebar-card > h2 + .tag-cloud {
	margin-top: 0;
}

.tag-cloud {
	gap: 8px;
}

.tag-cloud a {
	min-height: 28px;
	padding: 0 10px;
	border-radius: 6px;
	font-size: 11px;
}

.home-tags .tag-cloud {
	max-height: 64px;
	overflow: hidden;
}

/* Hero typography refinement */
.home-hero h1 {
	font-size: clamp(34px, 3.35vw, 46px);
	line-height: 1.1;
}

.home-hero__title-accent {
	margin-top: 10px;
	font-size: clamp(20px, 1.85vw, 25px);
	line-height: 1.18;
}

.home-hero__copy p {
	max-width: 500px;
	margin-top: 22px;
	font-size: 14px;
	line-height: 1.8;
}

.home-hero__actions {
	margin-top: 26px;
}

.home-hero__actions .gft-button {
	min-height: 40px;
	padding: 0 22px;
	font-size: 13px;
}

@media (max-width: 640px) {
	.home-hero h1 {
		font-size: 32px;
	}

	.home-hero__title-accent {
		margin-top: 8px;
		font-size: 21px;
	}

	.home-hero__copy p {
		font-size: 13px;
	}
}

.home-advantages h2 {
	margin-bottom: 14px;
	font-size: 17px;
}

.home-advantages__grid {
	gap: 12px 14px;
}

.home-advantages__grid span {
	grid-template-columns: 26px minmax(0, 1fr);
	gap: 2px 9px;
}

.home-advantages__grid svg {
	width: 22px;
	height: 22px;
}

.home-advantages__grid strong {
	font-size: 12px;
}

.home-advantages__grid small {
	font-size: 10px;
	line-height: 1.45;
}

.home-topics__grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}

.topic-tile--plain {
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr);
	gap: 10px;
	align-items: center;
	min-height: 82px;
	padding: 14px;
	color: var(--gft-ink);
	background: #fffaf1;
	border: 1px solid #e2ebf8;
	border-radius: 7px;
}

.topic-tile--plain img,
.topic-tile--plain::after {
	display: none;
}

.topic-tile--plain svg {
	position: static;
	z-index: 1;
	width: 24px;
	height: 24px;
	color: var(--gft-primary);
	fill: currentColor;
}

.topic-tile--plain span {
	padding: 0;
}

.topic-tile--plain strong {
	color: var(--gft-ink);
	font-size: 12px;
	line-height: 1.35;
}

.topic-tile--plain small {
	color: var(--gft-muted);
	font-size: 11px;
}

.home-support-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 20px;
	margin-top: 24px;
}

.home-support-grid .home-card {
	align-self: start;
}

@media (max-width: 1180px) {
	.home-dashboard,
	.home-main-grid,
	.home-support-grid {
		grid-template-columns: 1fr;
	}

	.home-sidebar-stack {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.home-latest__cards,
	.home-topics__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 720px) {
	.home-dashboard {
		gap: 18px;
	}

	.home-sidebar-stack,
	.home-latest__cards,
	.home-topics__grid {
		grid-template-columns: 1fr;
	}

	.home-focus__feature {
		height: 210px;
	}
}

@media (min-width: 1181px) {
	.home-main-grid {
		align-items: stretch;
	}

	.home-focus,
	.home-flash,
	.home-market-card {
		height: 416px;
	}

	.home-focus,
	.home-flash,
	.home-market-card {
		display: flex;
		flex-direction: column;
	}

	.home-focus__links,
	.home-flash__list {
		flex: 1;
	}

	.home-focus__links {
		justify-content: space-between;
	}

	.home-flash__list {
		gap: 8px;
		justify-content: space-between;
	}

	.home-flash__item {
		min-height: 42px;
	}

	.home-market-card .quote-card__stats {
		margin-top: auto;
	}
}

/* DAX live room final homepage layer */
body {
	background: #ffffff;
}

.site-header {
	color: #14213d;
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid #eee5d7;
	box-shadow: 0 8px 28px rgba(108, 75, 28, 0.08);
	backdrop-filter: blur(12px);
}

.site-header__inner {
	min-height: 72px;
	gap: 24px;
}

.site-brand {
	min-width: 184px;
	gap: 9px;
}

.site-brand__mark {
	width: 44px;
	height: 36px;
	flex-basis: 44px;
	color: #c8963e;
}

.site-brand__mark svg,
.site-brand__mark img {
	width: 44px;
	height: 36px;
}

.site-header .site-brand__name,
.site-footer .site-brand__name {
	color: #10213f;
	font-size: 22px;
	line-height: 1;
	letter-spacing: 0;
}

.site-header .site-brand__tagline,
.site-footer .site-brand__tagline {
	color: #7d8da6;
	font-size: 10px;
	line-height: 1;
	letter-spacing: 0;
}

.primary-menu {
	gap: 26px;
}

.primary-menu a {
	min-height: 72px;
	color: #17243c;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0;
}

.primary-menu a:hover,
.primary-menu .current-menu-item > a,
.primary-menu .current_page_item > a,
.primary-menu .current-menu-ancestor > a {
	color: #c8963e;
}

.primary-menu a::after {
	bottom: 0;
	width: 28px;
	height: 3px;
	background: #c8963e;
}

.site-header__search {
	width: 148px;
	height: 38px;
	background: #fffaf1;
	border: 1px solid #dbe6f5;
	border-radius: 8px;
}

.site-header__search:focus-within {
	width: 180px;
	background: #ffffff;
	border-color: #c8963e;
}

.site-header__search input {
	padding: 0 0 0 12px;
	color: #14213d;
	font-size: 12px;
}

.site-header__search input::placeholder {
	color: #a3b0c2;
}

.site-header__search button,
.site-header__toggle {
	color: #1d3154;
	background: transparent;
}

.dax-hero {
	position: relative;
	overflow: hidden;
	padding: 32px 0 12px;
	background:
		linear-gradient(90deg, rgba(255,255,255,0.98) 0 23%, rgba(255,255,255,0.72) 44%, rgba(255,255,255,0.92) 72%, #ffffff 100%),
		linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.82)),
		url("../images/content/dax-city.webp") 31% 92% / min(760px, 58vw) auto no-repeat,
		linear-gradient(165deg, rgba(255,255,255,0) 0 60%, rgba(236,226,208,0.76) 60% 75%, rgba(250,246,238,0.94) 75% 100%),
		linear-gradient(180deg, #ffffff 0%, #fbf7ef 100%);
	border-bottom: 1px solid #efe3d0;
}

.dax-hero::before {
	position: absolute;
	right: 48%;
	bottom: 34px;
	width: 410px;
	height: 190px;
	content: "";
	background:
		linear-gradient(135deg, transparent 0 16%, rgba(200,150,62,0.16) 16% 17%, transparent 17% 44%, rgba(200,150,62,0.1) 44% 45%, transparent 45%),
		linear-gradient(90deg, transparent 0 8%, rgba(200,150,62,0.14) 8% 9%, transparent 9% 19%, rgba(200,150,62,0.08) 19% 20%, transparent 20%);
	opacity: 0.55;
}

.dax-hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.08fr);
	gap: 42px;
	align-items: start;
}

.dax-hero__copy {
	padding: 54px 0 22px;
	max-width: 610px;
}

.dax-hero__copy h1 {
	margin: 0;
	color: #061733;
	font-size: 42px;
	font-weight: 950;
	line-height: 1.08;
	letter-spacing: 0;
}

.dax-hero__copy > strong {
	display: block;
	margin-top: 14px;
	color: #061733;
	font-size: 22px;
	font-weight: 900;
	line-height: 1.32;
	letter-spacing: 0;
}

.dax-hero__copy p {
	max-width: 560px;
	margin: 26px 0 0;
	color: #566781;
	font-size: 13px;
	line-height: 2;
}

.dax-hero__features {
	display: flex;
	flex-wrap: wrap;
	gap: 18px 30px;
	margin-top: 30px;
}

.dax-hero__features span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #304461;
	font-size: 12px;
	font-weight: 700;
}

.dax-hero__features svg {
	width: 16px;
	height: 16px;
	color: #c8963e;
	fill: currentColor;
}

.dax-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	margin-top: 36px;
}

.dax-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-width: 145px;
	height: 44px;
	padding: 0 22px;
	border: 1px solid transparent;
	border-radius: 8px;
	font-size: 12px;
	font-weight: 800;
	transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.dax-btn:hover {
	transform: translateY(-1px);
}

.dax-btn svg {
	width: 16px;
	height: 16px;
	fill: currentColor;
}

.dax-btn--primary {
	color: #ffffff;
	background: linear-gradient(180deg, #d7a84f, #c8963e);
	box-shadow: 0 14px 28px rgba(200, 150, 62, 0.22);
}

.dax-btn--ghost {
	color: #c8963e;
	background: #ffffff;
	border-color: #c8963e;
	box-shadow: 0 10px 24px rgba(200, 150, 62, 0.08);
}

.dax-hero__market {
	align-self: stretch;
	padding-top: 6px;
}

.dax-market-card {
	min-height: 350px;
	padding: 24px 24px 18px;
	background:
		radial-gradient(circle at 82% 14%, rgba(216, 176, 94, 0.18), transparent 28%),
		linear-gradient(145deg, #111b28 0%, #0b111b 100%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 10px;
	box-shadow: 0 22px 56px rgba(8, 16, 27, 0.22);
}

.dax-market-card__head {
	display: flex;
	justify-content: space-between;
	gap: 18px;
}

.dax-market-card__head h2 {
	margin: 0;
	color: #f5f7fb;
	font-size: 15px;
	line-height: 1.35;
	letter-spacing: 0;
}

.dax-market-card__head h2 span {
	margin-left: 5px;
	color: #a8b3c4;
	font-size: 13px;
	font-weight: 600;
}

.dax-market-card__head > a {
	color: #d6b46b;
	font-size: 12px;
	font-weight: 800;
	white-space: nowrap;
}

.dax-market-card__price {
	display: flex;
	align-items: baseline;
	gap: 14px;
	margin-top: 6px;
}

.dax-market-card__price strong {
	color: #d7a84f;
	font-size: 34px;
	font-weight: 950;
	line-height: 1.1;
	letter-spacing: 0;
}

.dax-market-card__price span,
.dax-market-card__price em {
	color: #13a36f;
	font-size: 15px;
	font-style: normal;
	font-weight: 900;
}

.dax-market-card__price em.down,
.dax-quote-mini em.down {
	color: #ff3b30;
}

.dax-market-card__head p {
	margin: 8px 0 0;
	color: #a8b3c4;
	font-size: 12px;
}

.dax-market-card__tabs {
	display: flex;
	gap: 34px;
	margin-top: 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dax-market-card__tabs span {
	position: relative;
	padding: 0 0 9px;
	color: #b6c0cf;
	font-size: 12px;
	font-weight: 800;
}

.dax-market-card__tabs .is-active {
	color: #c8963e;
}

.dax-market-card__tabs .is-active::after {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 2px;
	content: "";
	background: #c8963e;
	border-radius: 2px;
}

.dax-line-chart {
	width: 100%;
	height: 220px;
	margin-top: 8px;
}

.dax-quote-strip {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 0;
	margin-top: -1px;
	overflow: hidden;
	background: #101923;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 0 0 10px 10px;
	box-shadow: 0 18px 48px rgba(8, 16, 27, 0.18);
}

.dax-quote-mini {
	display: grid;
	gap: 8px;
	min-height: 74px;
	padding: 13px 14px;
	background: transparent;
	border-right: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 0;
	box-shadow: none;
}

.dax-quote-mini span {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 6px;
	color: #c5cfdd;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.2;
}

.dax-quote-mini em {
	color: #13a36f;
	font-size: 11px;
	font-style: normal;
	font-weight: 900;
	white-space: nowrap;
}

.dax-quote-mini strong {
	color: #f6f8fb;
	font-size: 16px;
	font-weight: 900;
	line-height: 1.1;
}

.dax-home {
	padding: 18px 0 0;
	background: #ffffff;
}

.dax-panel,
.dax-hotline,
.dax-risk {
	background: #ffffff;
	border: 1px solid #e2ebf6;
	border-radius: 10px;
	box-shadow: 0 12px 32px rgba(15, 44, 86, 0.05);
}

.dax-hotline {
	display: grid;
	grid-template-columns: 150px minmax(0, 1fr);
	gap: 18px;
	align-items: center;
	min-height: 86px;
	padding: 14px 22px;
}

.dax-hotline__title {
	display: grid;
	grid-template-columns: 28px minmax(0, 1fr);
	gap: 2px 8px;
	align-items: center;
}

.dax-hotline__title span {
	display: grid;
	grid-row: span 2;
	place-items: center;
	width: 28px;
	height: 28px;
	color: #c8963e;
	background: #fff7e7;
	border-radius: 50%;
}

.dax-hotline__title svg {
	width: 16px;
	height: 16px;
	fill: currentColor;
}

.dax-hotline__title strong {
	color: #10213f;
	font-size: 16px;
	font-weight: 900;
	line-height: 1.1;
}

.dax-hotline__title small {
	color: #75849a;
	font-size: 12px;
	line-height: 1.1;
}

.dax-hotline__items {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 14px;
}

.dax-hotline__items a {
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr);
	gap: 10px;
	align-items: center;
	min-width: 0;
}

.dax-hotline__icon {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	color: #c8963e;
	background: #fff7e7;
	border: 1px solid #f1dfbd;
	border-radius: 8px;
}

.dax-hotline__icon svg {
	width: 17px;
	height: 17px;
	fill: currentColor;
}

.dax-hotline__items strong,
.dax-hotline__items small {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.dax-hotline__items strong {
	color: #132441;
	font-size: 12px;
	font-weight: 900;
	line-height: 1.4;
}

.dax-hotline__items small {
	color: #697993;
	font-size: 11px;
	line-height: 1.4;
}

.dax-more,
.dax-section-head a {
	color: #708096;
	font-size: 12px;
	font-weight: 800;
	text-align: right;
}

.dax-dashboard {
	display: grid;
	grid-template-columns: 1.06fr 0.94fr 0.94fr;
	gap: 18px;
	margin-top: 20px;
}

.dax-dashboard > .dax-panel {
	min-height: 452px;
	padding: 22px 22px 18px;
}

.dax-section-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 18px;
}

.dax-section-head h2 {
	margin: 0;
	color: #12213c;
	font-size: 18px;
	font-weight: 950;
	line-height: 1.2;
	letter-spacing: 0;
}

.dax-focus__main {
	display: block;
}

.dax-focus__main img {
	width: 100%;
	height: 202px;
	object-fit: cover;
	border-radius: 8px;
}

.dax-focus__main strong {
	display: block;
	margin-top: 16px;
	color: #12213c;
	font-size: 19px;
	font-weight: 950;
	line-height: 1.35;
}

.dax-focus__main p {
	display: -webkit-box;
	overflow: hidden;
	margin: 8px 0 0;
	color: #5f6f86;
	font-size: 12px;
	line-height: 1.8;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.dax-focus__links {
	display: grid;
	gap: 8px;
	margin-top: 16px;
}

.dax-focus__links a {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 52px;
	gap: 12px;
	padding-left: 14px;
	color: #152743;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.45;
}

.dax-focus__links a::before {
	position: absolute;
	top: 8px;
	left: 1px;
	width: 4px;
	height: 4px;
	content: "";
	background: #c8963e;
	border-radius: 50%;
}

.dax-focus__links small {
	color: #7a8ba4;
	font-size: 11px;
	text-align: right;
}

.dax-flash__list {
	display: grid;
	gap: 15px;
}

.dax-flash__item {
	position: relative;
	display: grid;
	grid-template-columns: 45px 58px minmax(0, 1fr);
	gap: 8px;
	align-items: start;
	min-height: 34px;
	padding-left: 14px;
	font-size: 12px;
}

.dax-flash__item::before {
	position: absolute;
	top: 8px;
	left: 0;
	width: 5px;
	height: 5px;
	content: "";
	background: #c8963e;
	border-radius: 50%;
	box-shadow: 0 0 0 4px #fff7e7;
}

.dax-flash__item time {
	color: #7b8ca4;
	font-size: 11px;
	line-height: 1.5;
}

.dax-flash__item span {
	color: #c8963e;
	font-weight: 900;
	white-space: nowrap;
}

.dax-flash__item strong {
	overflow: hidden;
	color: #152743;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.55;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.dax-rank__list {
	display: grid;
	gap: 18px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.dax-rank__list li {
	display: grid;
	grid-template-columns: 28px minmax(0, 1fr);
	gap: 12px;
	align-items: center;
}

.dax-rank__list li > span {
	color: #1b3358;
	font-size: 15px;
	font-weight: 950;
	text-align: center;
}

.dax-rank__list a {
	display: grid;
	grid-template-columns: 62px minmax(0, 1fr);
	gap: 10px;
	align-items: center;
	min-width: 0;
}

.dax-rank__list img {
	grid-row: span 2;
	width: 62px;
	height: 46px;
	object-fit: cover;
	border-radius: 6px;
}

.dax-rank__list strong {
	overflow: hidden;
	color: #142540;
	font-size: 12px;
	font-weight: 850;
	line-height: 1.45;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.dax-rank__list small {
	color: #7d8da4;
	font-size: 11px;
}

.dax-latest-tags {
	display: grid;
	grid-template-columns: minmax(0, 2.03fr) minmax(300px, 0.97fr);
	gap: 18px;
	margin-top: 20px;
}

.dax-latest,
.dax-tag-panel,
.dax-topic-section .dax-panel {
	padding: 22px;
}

.dax-latest__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.dax-latest-card {
	min-width: 0;
}

.dax-latest-card__image img {
	width: 100%;
	height: 94px;
	object-fit: cover;
	border-radius: 7px;
}

.dax-latest-card__tag {
	display: inline-flex;
	margin-top: 11px;
	color: #c8963e;
	font-size: 11px;
	font-weight: 900;
}

.dax-latest-card h3 {
	margin: 5px 0 8px;
	color: #142540;
	font-size: 13px;
	font-weight: 900;
	line-height: 1.45;
	letter-spacing: 0;
}

.dax-latest-card h3 a {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.dax-latest-card small {
	color: #7f8ea2;
	font-size: 11px;
}

.dax-tag-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	max-height: 174px;
	overflow: hidden;
}

.dax-tag-grid a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 76px;
	min-height: 32px;
	padding: 0 13px;
	color: #445674;
	background: #f3f7fc;
	border: 1px solid #edf2f8;
	border-radius: 8px;
	font-size: 12px;
	font-weight: 800;
}

.dax-topic-section {
	margin-top: 20px;
}

.dax-topic-row {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 18px;
}

.dax-topic-card {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 90px;
	overflow: hidden;
	padding: 16px 18px;
	color: #ffffff;
	background-color: #0d2b55;
	background-position: center;
	background-size: cover;
	border-radius: 8px;
}

.dax-topic-card::before {
	position: absolute;
	inset: 0;
	content: "";
	background: linear-gradient(90deg, rgba(5, 20, 48, 0.94), rgba(7, 42, 90, 0.58));
}

.dax-topic-card strong,
.dax-topic-card small {
	position: relative;
	z-index: 1;
	display: block;
}

.dax-topic-card strong {
	font-size: 15px;
	font-weight: 950;
	line-height: 1.25;
}

.dax-topic-card small {
	margin-top: 6px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 11px;
	line-height: 1.4;
}

.dax-risk {
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr);
	gap: 14px;
	align-items: center;
	margin-top: 20px;
	margin-bottom: 0;
	padding: 18px 24px;
	background: #fff8ec;
}

.dax-home + .site-footer {
	margin-top: 8px;
	padding-top: 22px;
}

.dax-home + .site-footer .site-footer__main {
	padding-top: 8px;
}

.dax-risk > span {
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	color: #ffffff;
	background: #c8963e;
	border-radius: 50%;
	font-size: 18px;
	font-weight: 950;
	line-height: 1;
}

.dax-risk h2 {
	display: inline;
	margin: 0;
	color: #13243e;
	font-size: 14px;
	font-weight: 950;
}

.dax-risk p {
	display: inline;
	margin: 0;
	color: #5e6e85;
	font-size: 12px;
	line-height: 1.8;
}

.site-footer {
	background: linear-gradient(135deg, #121b26 0%, #0d141e 100%);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__main {
	padding-top: 28px;
}

@media (max-width: 1240px) {
	.primary-menu {
		gap: 18px;
	}

	.primary-menu a {
		font-size: 12px;
	}

	.dax-hero__grid {
		grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1.18fr);
		gap: 30px;
	}

	.dax-hotline__items {
		gap: 12px;
	}
}

@media (max-width: 1080px) {
	.dax-hero {
		padding-top: 38px;
	}

	.dax-hero__grid,
	.dax-dashboard,
	.dax-latest-tags {
		grid-template-columns: 1fr;
	}

	.dax-hero__copy {
		padding-bottom: 16px;
	}

	.dax-dashboard > .dax-panel {
		min-height: auto;
	}

	.dax-latest__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.dax-topic-row {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.dax-hotline {
		grid-template-columns: 1fr;
	}

	.dax-hotline__items {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 920px) {
	.site-brand {
		min-width: 0;
	}

	.site-header__panel {
		color: #14213d;
		background: #ffffff;
		border-color: #e2ebf6;
	}

	.primary-menu a {
		min-height: 42px;
		color: #17243c;
	}

	.site-header__search,
	.site-header__search:focus-within {
		width: 100%;
	}
}

@media (max-width: 720px) {
	.gft-container {
		width: min(calc(100% - 28px), var(--gft-container));
	}

	.dax-hero {
		padding: 26px 0 12px;
	}

	.dax-hero__copy h1 {
		font-size: 36px;
	}

	.dax-hero__copy > strong {
		font-size: 22px;
	}

	.dax-hero__copy p {
		margin-top: 18px;
		font-size: 13px;
		line-height: 1.8;
	}

	.dax-hero__features {
		gap: 12px;
	}

	.dax-hero__actions {
		gap: 12px;
	}

	.dax-btn {
		width: 100%;
	}

	.dax-market-card {
		padding: 18px 16px;
	}

	.dax-market-card__head,
	.dax-market-card__price {
		flex-wrap: wrap;
	}

	.dax-market-card__price strong {
		font-size: 28px;
	}

	.dax-quote-strip,
	.dax-latest__grid,
	.dax-topic-row,
	.dax-hotline__items {
		grid-template-columns: 1fr;
	}

	.dax-dashboard,
	.dax-latest-tags {
		gap: 14px;
		margin-top: 14px;
	}

	.dax-dashboard > .dax-panel,
	.dax-latest,
	.dax-tag-panel,
	.dax-topic-section .dax-panel {
		padding: 18px 16px;
	}

	.dax-flash__item {
		grid-template-columns: 42px 54px minmax(0, 1fr);
	}
}

/* Archive/sidebar alignment hardening. */
@media (min-width: 1081px) {
	.archive-shell__grid,
	.page-channel__layout,
	.single-article__grid {
		display: grid;
		grid-template-columns: minmax(0, 1fr) 340px;
		gap: 28px;
		align-items: start;
	}

	.archive-main,
	.page-channel__main,
	.single-content {
		grid-column: 1;
		min-width: 0;
	}

	.archive-shell__grid > .archive-sidebar,
	.page-channel__layout > .archive-sidebar,
	.single-article__grid > .archive-sidebar,
	.archive-shell__grid > .topic-sidebar-stack {
		grid-column: 2;
		grid-row: 1;
		width: 100%;
		min-width: 0;
	}

	.archive-sidebar,
	.topic-sidebar-stack {
		display: grid;
		grid-template-columns: 1fr;
		gap: 18px;
		align-content: start;
		width: 100%;
		min-width: 0;
	}

	.topic-sidebar-stack > .archive-sidebar {
		grid-column: auto;
		grid-row: auto;
	}

	.archive-sidebar .sidebar-card {
		box-sizing: border-box;
		width: 100%;
		min-width: 0;
		padding: 18px;
	}

	.archive-sidebar .quote-card__tabs {
		gap: 8px;
	}

	.archive-sidebar .quote-card__tabs span {
		min-height: 30px;
		padding: 0 10px;
		font-size: 11px;
	}

	.archive-sidebar .quote-card__main {
		grid-template-columns: minmax(0, 1fr) auto;
		gap: 6px 12px;
		margin: 18px 0 16px;
	}

	.archive-sidebar .quote-card__main strong {
		min-width: 0;
		font-size: 26px;
		line-height: 1.1;
	}

	.archive-sidebar .quote-card__main svg {
		width: 100%;
	}

	.archive-sidebar .quote-card__stats {
		gap: 10px;
	}

	.archive-sidebar .quote-card__stats b {
		font-size: 13px;
	}

	.archive-sidebar .sidebar-hot li {
		grid-template-columns: 24px minmax(0, 1fr);
		gap: 10px;
	}

	.archive-sidebar .sidebar-latest li {
		grid-template-columns: 24px minmax(0, 1fr);
		gap: 10px;
	}

	.archive-sidebar .sidebar-hot li a,
	.archive-sidebar .sidebar-latest li a {
		grid-template-columns: 72px minmax(0, 1fr);
		grid-template-rows: auto auto;
		gap: 10px;
		align-items: start;
		min-width: 0;
	}

	.archive-sidebar .sidebar-hot img,
	.archive-sidebar .sidebar-latest img {
		grid-column: 1;
		grid-row: 1 / span 2;
		display: block;
		width: 72px;
		height: 58px;
		aspect-ratio: 1.25 / 1;
	}

	.archive-sidebar .sidebar-hot strong,
	.archive-sidebar .sidebar-latest strong {
		grid-column: 2;
		grid-row: 1;
		display: -webkit-box;
		overflow: hidden;
		font-size: 12px;
		line-height: 1.45;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
	}

	.archive-sidebar .sidebar-hot small,
	.archive-sidebar .sidebar-latest small {
		grid-column: 2;
		grid-row: 2;
		margin-top: 4px;
		font-size: 11px;
	}

	.archive-sidebar .tag-cloud {
		margin-top: 14px;
		gap: 8px;
	}

	.archive-sidebar .tag-cloud a {
		min-height: 28px;
		padding: 0 10px;
		font-size: 11px;
	}

	.single-article__grid .archive-sidebar .single-related {
		width: 100%;
		padding: 18px;
	}

	.single-article__grid .archive-sidebar .single-related__grid {
		display: grid;
		gap: 12px;
	}

	.single-article__grid .archive-sidebar .single-related__item {
		display: grid;
		grid-template-columns: 72px minmax(0, 1fr);
		gap: 10px;
		align-items: center;
		min-width: 0;
	}

	.single-article__grid .archive-sidebar .single-related__item img {
		width: 72px;
		aspect-ratio: 1.25 / 1;
		object-fit: cover;
	}

	.single-article__grid .archive-sidebar .single-related strong {
		display: -webkit-box;
		overflow: hidden;
		font-size: 12px;
		line-height: 1.45;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
	}

	.single-article__grid .archive-sidebar .sidebar-topics .topic-tile {
		min-height: 68px;
	}

	.single-article__grid .archive-sidebar .sidebar-topics .topic-tile span {
		padding: 12px 14px;
	}
}

@media (max-width: 1080px) {
	.archive-shell__grid,
	.page-channel__layout,
	.single-article__grid {
		grid-template-columns: 1fr;
	}

	.archive-sidebar {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.topic-sidebar-stack {
		grid-template-columns: 1fr;
	}

	.topic-sidebar-stack > .archive-sidebar {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 720px) {
	.archive-sidebar,
	.topic-sidebar-stack {
		grid-template-columns: 1fr;
	}
}

/* Keep tag headings visually separated from tag lists everywhere. */
.single-tags {
	align-items: flex-start;
	gap: 12px 10px;
}

.single-tags strong {
	flex: 0 0 100%;
	margin: 0;
}

.archive-sidebar .sidebar-card > h2 + .tag-cloud {
	margin-top: 14px;
}
