:root {
	--cj-ink: #11100c;
	--cj-paper: #f6ead2;
	--cj-paper-soft: #fff4dc;
	--cj-paper-deep: #efd7b2;
	--cj-orange: #f26a21;
	--cj-orange-dark: #b84d18;
	--cj-green: #174c29;
	--cj-green-soft: #255e35;
	--cj-line: rgba(17, 16, 12, 0.16);
	--cj-shadow: 0 14px 36px rgba(44, 31, 12, 0.12);
	--cj-radius: 7px;
	--cj-font-head: Impact, "Arial Black", "Franklin Gothic Heavy", sans-serif;
	--cj-font-body: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html.cj-dark {
	--cj-ink: #f8efdc;
	--cj-paper: #14140f;
	--cj-paper-soft: #1e1c14;
	--cj-paper-deep: #2b2418;
	--cj-line: rgba(248, 239, 220, 0.16);
	--cj-shadow: 0 18px 40px rgba(0, 0, 0, 0.38);
}

body.cj-theme {
	background:
		linear-gradient(rgba(114, 72, 20, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(114, 72, 20, 0.025) 1px, transparent 1px),
		var(--cj-paper);
	background-size: 38px 38px;
	color: var(--cj-ink);
	font-family: var(--cj-font-body);
}

body.cj-theme a {
	color: inherit;
	text-decoration: none;
}

body.cj-theme img {
	display: block;
	max-width: 100%;
	height: auto;
}

.grid-container {
	max-width: 1280px;
	padding-left: 28px;
	padding-right: 28px;
}

.cj-progress {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	height: 4px;
	background: transparent;
}

.cj-progress span {
	display: block;
	width: 0;
	height: 100%;
	background: var(--cj-orange);
	box-shadow: 0 0 16px rgba(242, 106, 33, 0.55);
}

.cj-topbar {
	background: #11100c;
	color: #fff8e8;
	font-size: 13px;
	font-weight: 800;
}

.cj-topbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 50px;
}

.cj-topbar p {
	margin: 0;
}

.cj-topbar-actions,
.cj-social-row {
	display: flex;
	align-items: center;
	gap: 12px;
}

.cj-topbar-actions a,
.cj-social-row a,
.cj-icon-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 248, 232, 0.12);
	color: #fff8e8;
	cursor: pointer;
	transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.cj-topbar-actions a:hover,
.cj-social-row a:hover,
.cj-icon-button:hover {
	transform: translateY(-2px);
	background: var(--cj-orange);
	color: #11100c;
}

.cj-topbar-actions svg,
.cj-social-row svg {
	width: 14px;
	height: 14px;
}

.cj-dark-toggle span {
	width: 12px;
	height: 12px;
	border: 2px solid currentColor;
	border-radius: 50%;
	box-shadow: inset -4px -2px 0 currentColor;
}

.cj-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(246, 234, 210, 0.94);
	border-bottom: 1px solid var(--cj-line);
	backdrop-filter: blur(14px);
}

.admin-bar .cj-header {
	top: 32px;
}

html.cj-dark .cj-header {
	background: rgba(20, 20, 15, 0.94);
}

.cj-header-inner {
	display: grid;
	grid-template-columns: 260px minmax(0, 1fr) auto;
	align-items: center;
	gap: 28px;
	min-height: 112px;
}

.cj-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--cj-green);
	text-transform: uppercase;
}

.cj-brand img {
	width: 62px;
	height: 62px;
}

.cj-brand span {
	display: grid;
	line-height: 0.86;
}

.cj-brand strong {
	font-family: var(--cj-font-head);
	font-size: clamp(22px, 2.2vw, 31px);
	letter-spacing: 0;
}

.cj-brand strong:first-child {
	color: var(--cj-orange);
}

.cj-nav {
	display: flex;
	justify-content: center;
	background: transparent;
	line-height: 1;
}

.cj-nav ul {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(20px, 4vw, 58px);
	margin: 0;
	padding: 0;
	list-style: none;
}

.cj-nav a {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	font-family: var(--cj-font-head);
	font-size: 16px;
	text-transform: uppercase;
}

.cj-nav a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 4px;
	height: 3px;
	background: var(--cj-orange);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 170ms ease;
}

.cj-nav a:hover::after,
.cj-nav .current-menu-item > a::after {
	transform: scaleX(1);
}

.cj-button,
.cj-header-cta,
.cj-newsletter-inner button,
.cj-newsletter-box button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 44px;
	padding: 0 22px;
	border: 0;
	border-radius: var(--cj-radius);
	background: var(--cj-orange);
	color: #fff8e8;
	font-family: var(--cj-font-head);
	font-size: 15px;
	text-transform: uppercase;
	cursor: pointer;
	box-shadow: 0 8px 18px rgba(242, 106, 33, 0.2);
	transition: transform 170ms ease, box-shadow 170ms ease, background 170ms ease;
}

.cj-button:hover,
.cj-header-cta:hover,
.cj-newsletter-inner button:hover,
.cj-newsletter-box button:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 24px rgba(242, 106, 33, 0.28);
	background: var(--cj-orange-dark);
}

.cj-button-green {
	background: var(--cj-green);
	box-shadow: 0 8px 18px rgba(23, 76, 41, 0.22);
}

.cj-button-green:hover {
	background: var(--cj-green-soft);
}

.cj-menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 1px solid var(--cj-line);
	border-radius: var(--cj-radius);
	background: var(--cj-paper-soft);
}

.cj-menu-toggle span:not(.screen-reader-text) {
	display: block;
	width: 20px;
	height: 2px;
	margin: 4px auto;
	background: var(--cj-ink);
}

.cj-hero {
	border-bottom: 1px solid var(--cj-line);
	background: radial-gradient(circle at 76% 48%, rgba(242, 106, 33, 0.14), transparent 33%);
	overflow: hidden;
}

.cj-hero-inner {
	display: grid;
	grid-template-columns: minmax(320px, 0.74fr) minmax(360px, 1.26fr);
	align-items: center;
	min-height: 540px;
}

.cj-hero-copy {
	padding: 46px 0;
}

.cj-hero h1,
.cj-page-hero h1,
.cj-single-header h1 {
	margin: 0;
	max-width: 760px;
	font-family: var(--cj-font-head);
	font-size: clamp(48px, 7.4vw, 92px);
	line-height: 0.96;
	letter-spacing: 0;
	text-wrap: balance;
}

.cj-hero h1::first-line {
	color: var(--cj-ink);
}

.cj-hero h1 {
	color: var(--cj-green);
}

.cj-hero h1 span,
.cj-hero h1 strong,
.cj-orange-word {
	color: var(--cj-orange);
}

.cj-hero p {
	max-width: 460px;
	margin: 24px 0 26px;
	font-size: clamp(17px, 1.7vw, 22px);
	line-height: 1.35;
	font-weight: 650;
}

.cj-hero-art {
	align-self: end;
	margin-right: -44px;
}

.cj-hero-art img {
	width: 100%;
	min-height: 420px;
	object-fit: contain;
	object-position: bottom right;
}

.cj-section {
	padding: 44px 0;
}

.cj-section-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 22px;
}

.cj-section-heading h2,
.cj-sidebar-panel h2,
.cj-footer h2,
.cj-widget-title {
	position: relative;
	margin: 0;
	font-family: var(--cj-font-head);
	font-size: clamp(25px, 2vw, 34px);
	text-transform: uppercase;
	letter-spacing: 0;
}

.cj-section-heading h2::after,
.cj-sidebar-panel h2::after,
.cj-footer h2::after,
.cj-widget-title::after {
	content: "";
	display: block;
	width: 170px;
	max-width: 100%;
	height: 3px;
	margin-top: 8px;
	background: var(--cj-orange);
}

.cj-section-heading > a {
	font-family: var(--cj-font-head);
	font-size: 14px;
	text-transform: uppercase;
	color: var(--cj-ink);
}

.cj-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}

.cj-card-grid-four {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cj-card-grid-three {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cj-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
	border: 1px solid var(--cj-line);
	border-radius: var(--cj-radius);
	background: rgba(255, 248, 232, 0.72);
	box-shadow: var(--cj-shadow);
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

html.cj-dark .cj-card {
	background: rgba(30, 28, 20, 0.84);
}

.cj-card:hover {
	transform: translateY(-5px);
	border-color: rgba(242, 106, 33, 0.45);
	box-shadow: 0 18px 42px rgba(44, 31, 12, 0.18);
}

.cj-card-media {
	display: block;
	aspect-ratio: 1.72 / 1;
	overflow: hidden;
	background: var(--cj-paper-deep);
}

.cj-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 260ms ease, filter 260ms ease;
}

.cj-card:hover .cj-card-media img {
	transform: scale(1.035);
	filter: saturate(1.08);
}

.cj-card-body {
	display: grid;
	gap: 10px;
	padding: 18px 18px 16px;
}

.cj-badge {
	display: inline-flex;
	width: fit-content;
	color: var(--cj-orange);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.cj-card h3 {
	margin: 0;
	font-size: clamp(19px, 1.5vw, 25px);
	line-height: 1.12;
	font-weight: 950;
	text-wrap: balance;
}

.cj-card-date {
	margin: 0;
	color: color-mix(in srgb, var(--cj-ink), transparent 32%);
	font-size: 13px;
}

.cj-content-layout,
.cj-single-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 330px;
	gap: 36px;
	align-items: start;
}

.cj-main-column {
	min-width: 0;
}

.cj-sidebar {
	display: grid;
	gap: 22px;
	position: sticky;
	top: 134px;
}

.admin-bar .cj-sidebar {
	top: 166px;
}

.cj-sidebar-panel,
.cj-widget {
	border: 1px solid var(--cj-line);
	border-radius: var(--cj-radius);
	background: rgba(255, 248, 232, 0.74);
	box-shadow: 0 10px 24px rgba(44, 31, 12, 0.08);
	padding: 24px;
}

html.cj-dark .cj-sidebar-panel,
html.cj-dark .cj-widget {
	background: rgba(30, 28, 20, 0.84);
}

.cj-category-panel {
	background: linear-gradient(135deg, var(--cj-green), #0f321d);
	color: #fff8e8;
}

.cj-category-panel ul,
.cj-footer ul,
.cj-rank-list {
	margin: 18px 0 0;
	padding: 0;
	list-style: none;
}

.cj-category-panel li + li,
.cj-rank-list li + li {
	border-top: 1px solid rgba(255, 248, 232, 0.12);
}

.cj-category-panel a {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	padding: 11px 0;
	font-weight: 850;
}

.cj-rank-list {
	counter-reset: rank;
}

.cj-rank-list li {
	counter-increment: rank;
	display: grid;
	grid-template-columns: 34px 1fr;
	gap: 12px;
	padding: 12px 0;
	font-weight: 850;
	line-height: 1.2;
}

.cj-rank-list li::before {
	content: counter(rank);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border: 2px solid var(--cj-orange);
	border-radius: 50%;
	color: var(--cj-orange);
	font-family: var(--cj-font-head);
}

.cj-newsletter-box p {
	margin: 12px 0 16px;
}

.cj-newsletter-box form,
.cj-newsletter-inner form {
	display: flex;
	gap: 0;
}

.cj-newsletter-box input,
.cj-newsletter-inner input {
	width: 100%;
	min-width: 0;
	border: 1px solid var(--cj-line);
	border-radius: var(--cj-radius) 0 0 var(--cj-radius);
	background: var(--cj-paper-soft);
	color: var(--cj-ink);
	padding: 0 16px;
	min-height: 44px;
}

.cj-newsletter-box button,
.cj-newsletter-inner button {
	border-radius: 0 var(--cj-radius) var(--cj-radius) 0;
	min-width: 116px;
}

.cj-quote-box {
	display: grid;
	grid-template-columns: 96px 1fr;
	align-items: center;
	gap: 18px;
}

.cj-quote-box blockquote {
	margin: 0;
	border: 0;
	padding: 0;
	font-weight: 900;
	line-height: 1.25;
}

.cj-quote-box cite {
	display: block;
	margin-top: 8px;
	font-size: 12px;
	font-style: normal;
	font-weight: 650;
}

.cj-load-more-wrap {
	display: flex;
	justify-content: center;
	margin-top: 28px;
}

.cj-load-more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: min(320px, 100%);
	min-height: 44px;
	border-radius: var(--cj-radius);
	background: var(--cj-green);
	color: #fff8e8;
	font-family: var(--cj-font-head);
	text-transform: uppercase;
}

.cj-rti-strip {
	padding: 34px 0 42px;
	background: linear-gradient(90deg, rgba(242, 106, 33, 0.08), rgba(23, 76, 41, 0.08));
	border-top: 1px solid var(--cj-line);
	border-bottom: 1px solid var(--cj-line);
}

.cj-guide-row {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 26px;
}

.cj-guide-row a {
	display: grid;
	grid-template-columns: 54px 1fr;
	grid-template-rows: auto auto;
	column-gap: 14px;
	align-items: center;
	min-height: 84px;
	padding-right: 20px;
	border-right: 1px solid var(--cj-line);
}

.cj-guide-icon {
	grid-row: 1 / 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border: 3px solid var(--cj-orange-dark);
	border-radius: 50%;
	color: var(--cj-orange-dark);
	font-family: var(--cj-font-head);
	font-size: 26px;
}

.cj-guide-row strong {
	font-size: 17px;
	line-height: 1.1;
}

.cj-guide-row small {
	font-size: 13px;
	line-height: 1.25;
}

.cj-newsletter-cta {
	padding: 44px 0;
	background: var(--cj-green);
	color: #fff8e8;
}

.cj-newsletter-inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
	align-items: center;
	gap: 34px;
}

.cj-newsletter-inner h2 {
	max-width: 680px;
	margin: 0;
	font-family: var(--cj-font-head);
	font-size: clamp(34px, 4.2vw, 58px);
	line-height: 0.98;
}

.cj-kicker {
	margin: 0 0 10px;
	color: var(--cj-orange);
	font-family: var(--cj-font-head);
	font-size: 15px;
	text-transform: uppercase;
}

.cj-page-hero {
	padding: 54px 0 38px;
	border-bottom: 1px solid var(--cj-line);
	background: radial-gradient(circle at 20% 0%, rgba(242, 106, 33, 0.12), transparent 34%);
}

.cj-page-hero h1 {
	max-width: 920px;
}

.cj-archive-description {
	max-width: 720px;
	font-size: 18px;
	font-weight: 650;
}

.cj-single-header {
	padding: 54px 0 28px;
	text-align: center;
}

.cj-single-header .cj-badge {
	margin: 0 auto 18px;
}

.cj-single-header h1 {
	margin-left: auto;
	margin-right: auto;
	font-size: clamp(44px, 6vw, 84px);
}

.cj-single-meta {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px 22px;
	margin-top: 22px;
	font-size: 14px;
	font-weight: 850;
	text-transform: uppercase;
}

.cj-single-media img {
	width: 100%;
	max-height: 620px;
	object-fit: cover;
	border: 1px solid var(--cj-line);
	border-radius: var(--cj-radius);
	box-shadow: var(--cj-shadow);
}

.cj-single-layout {
	padding-top: 44px;
	padding-bottom: 34px;
}

.cj-article-content {
	max-width: 780px;
	margin: 0 auto;
	font-size: clamp(18px, 1.4vw, 21px);
	line-height: 1.72;
}

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

.cj-article-content h2,
.cj-article-content h3,
.cj-author-box h2 {
	font-family: var(--cj-font-head);
	line-height: 1.05;
	letter-spacing: 0;
}

.cj-article-content h2 {
	margin-top: 1.6em;
	font-size: clamp(32px, 3vw, 46px);
}

.cj-article-content blockquote {
	margin: 34px 0;
	padding: 22px 26px;
	border-left: 6px solid var(--cj-orange);
	background: var(--cj-paper-soft);
	font-size: 1.12em;
	font-weight: 850;
}

.cj-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 30px;
}

.cj-tags a {
	border: 1px solid var(--cj-line);
	border-radius: 999px;
	padding: 7px 12px;
	font-size: 13px;
	font-weight: 850;
}

.cj-author-box {
	display: grid;
	grid-template-columns: 68px 1fr;
	gap: 18px;
	margin-top: 38px;
	padding: 22px;
	border: 1px solid var(--cj-line);
	border-radius: var(--cj-radius);
	background: var(--cj-paper-soft);
}

.cj-author-box h2,
.cj-author-box p {
	margin: 0;
}

.cj-author-box p {
	margin-top: 7px;
	font-size: 15px;
	line-height: 1.45;
}

.cj-related {
	border-top: 1px solid var(--cj-line);
}

.cj-pagination {
	margin-top: 32px;
}

.cj-pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.cj-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	min-height: 38px;
	border: 1px solid var(--cj-line);
	border-radius: var(--cj-radius);
	background: var(--cj-paper-soft);
	font-weight: 850;
}

.cj-pagination .current {
	background: var(--cj-green);
	color: #fff8e8;
}

.cj-empty-state {
	padding: 34px;
	border: 1px solid var(--cj-line);
	border-radius: var(--cj-radius);
	background: var(--cj-paper-soft);
}

.cj-empty-state h2 {
	margin-top: 0;
	font-family: var(--cj-font-head);
	font-size: 38px;
}

.cj-footer {
	background: #11100c;
	color: #fff8e8;
}

.cj-footer-main {
	display: grid;
	grid-template-columns: 1.45fr 0.7fr 0.85fr 1.2fr;
	gap: 42px;
	padding-top: 44px;
	padding-bottom: 42px;
}

.cj-footer-brand {
	display: grid;
	grid-template-columns: 72px 1fr;
	gap: 18px;
	align-items: start;
}

.cj-footer-brand p {
	margin: 0;
	max-width: 330px;
	line-height: 1.45;
}

.cj-footer-brand .cj-social-row {
	grid-column: 2;
}

.cj-footer h2 {
	color: #fff8e8;
	font-size: 20px;
}

.cj-footer li + li {
	margin-top: 8px;
}

.cj-footer a {
	color: #fff8e8;
}

.cj-manifesto {
	position: relative;
	min-height: 168px;
	overflow: hidden;
}

.cj-manifesto p {
	position: relative;
	z-index: 1;
	max-width: 210px;
	margin: 18px 0 0;
	font-size: 19px;
	font-weight: 950;
	line-height: 1.35;
}

.cj-manifesto img {
	position: absolute;
	right: 0;
	bottom: -18px;
	opacity: 0.46;
}

.cj-footer-bottom {
	border-top: 1px solid rgba(255, 248, 232, 0.16);
}

.cj-footer-bottom .grid-container {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	padding-top: 16px;
	padding-bottom: 16px;
	font-size: 13px;
}

.cj-footer-bottom p {
	margin: 0;
}

.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;
}

@media (max-width: 1100px) {
	.cj-header-inner {
		grid-template-columns: 230px auto auto;
	}

	.cj-nav ul {
		gap: 22px;
	}

	.cj-card-grid-four {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.cj-content-layout,
	.cj-single-layout {
		grid-template-columns: minmax(0, 1fr);
	}

	.cj-sidebar {
		position: static;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.grid-container {
		padding-left: 20px;
		padding-right: 20px;
	}

	.cj-topbar-inner {
		min-height: 42px;
	}

	.cj-topbar p {
		font-size: 12px;
	}

	.cj-header-inner {
		grid-template-columns: 1fr auto;
		min-height: 82px;
	}

	.cj-header-cta {
		display: none;
	}

	.cj-menu-toggle {
		display: inline-block;
	}

	.cj-nav {
		justify-content: end;
	}

	.cj-nav ul {
		position: absolute;
		top: 100%;
		left: 20px;
		right: 20px;
		display: none;
		grid-template-columns: 1fr;
		gap: 0;
		padding: 12px;
		border: 1px solid var(--cj-line);
		border-radius: var(--cj-radius);
		background: var(--cj-paper-soft);
		box-shadow: var(--cj-shadow);
	}

	.cj-nav.is-open ul {
		display: grid;
	}

	.cj-nav a {
		width: 100%;
		justify-content: center;
	}

	.cj-hero-inner {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.cj-hero-copy {
		padding: 42px 0 10px;
	}

	.cj-hero-art {
		margin: 0 -22px;
	}

	.cj-hero-art img {
		min-height: 320px;
	}

	.cj-card-grid,
	.cj-card-grid-three {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.cj-guide-row,
	.cj-newsletter-inner,
	.cj-footer-main {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 640px) {
	.cj-topbar-actions {
		gap: 7px;
	}

	.cj-topbar-actions a:nth-child(-n+3) {
		display: none;
	}

	.cj-brand img {
		width: 50px;
		height: 50px;
	}

	.cj-brand strong {
		font-size: 21px;
	}

	.cj-hero h1,
	.cj-page-hero h1,
	.cj-single-header h1 {
		font-size: clamp(42px, 14vw, 62px);
	}

	.cj-section {
		padding: 34px 0;
	}

	.cj-section-heading {
		align-items: flex-start;
	}

	.cj-card-grid,
	.cj-card-grid-four,
	.cj-card-grid-three,
	.cj-sidebar,
	.cj-guide-row,
	.cj-newsletter-inner,
	.cj-footer-main {
		grid-template-columns: 1fr;
	}

	.cj-guide-row a {
		border-right: 0;
		border-bottom: 1px solid var(--cj-line);
		padding: 0 0 18px;
	}

	.cj-newsletter-box form,
	.cj-newsletter-inner form {
		display: grid;
		gap: 10px;
	}

	.cj-newsletter-box input,
	.cj-newsletter-inner input,
	.cj-newsletter-box button,
	.cj-newsletter-inner button {
		border-radius: var(--cj-radius);
	}

	.cj-quote-box,
	.cj-author-box,
	.cj-footer-brand {
		grid-template-columns: 1fr;
	}

	.cj-footer-brand .cj-social-row {
		grid-column: auto;
	}

	.cj-footer-bottom .grid-container {
		display: grid;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
	}
}

/* Layout repair layer: keeps GeneratePress parent layout rules from turning homepage sections into flex columns. */
body.cj-theme .cj-page {
	width: 100%;
	overflow-x: clip;
}

body.cj-theme .cj-site-content,
body.cj-theme #content.cj-site-content {
	display: block !important;
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
	overflow: visible;
}

body.cj-theme .cj-site-content > section {
	display: block;
	width: 100%;
	float: none;
	clear: both;
}

body.cj-theme .grid-container {
	width: min(100% - 48px, 1180px);
	max-width: 1180px;
	margin-inline: auto;
	padding-left: 0;
	padding-right: 0;
}

.cj-header-inner {
	grid-template-columns: 220px minmax(0, 1fr) auto;
	min-height: 88px;
	gap: 24px;
}

.cj-brand img {
	width: 54px;
	height: 54px;
}

.cj-brand strong {
	font-size: clamp(20px, 1.65vw, 27px);
}

.cj-nav ul {
	gap: clamp(22px, 3vw, 44px);
}

.cj-nav a {
	min-height: 38px;
	font-size: 14px;
}

.cj-header-cta {
	min-height: 42px;
	padding-inline: 20px;
	font-size: 14px;
}

.cj-hero-inner {
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 34px;
	min-height: 510px;
	align-items: center;
}

.cj-hero-copy {
	grid-column: 1 / span 4;
	padding: 42px 0 46px;
	align-self: center;
}

.cj-hero-art {
	grid-column: 5 / -1;
	align-self: stretch;
	display: flex;
	align-items: center;
	margin: 0 -20px 0 0;
	min-height: 430px;
	overflow: visible;
}

.cj-hero h1,
.cj-page-hero h1,
.cj-single-header h1 {
	font-size: clamp(42px, 4.9vw, 68px);
	line-height: 1;
}

.cj-hero p {
	font-size: clamp(16px, 1.25vw, 19px);
	line-height: 1.48;
	max-width: 420px;
	font-weight: 750;
}

.cj-hero-art img {
	width: 100%;
	height: 100%;
	min-height: 430px;
	max-height: 500px;
	object-fit: cover;
	object-position: center center;
	border-radius: 0;
	mix-blend-mode: multiply;
	filter: drop-shadow(0 24px 34px rgba(34, 22, 8, 0.18)) saturate(1.04);
}

.cj-section {
	clear: both;
	position: relative;
	padding: 52px 0;
}

.cj-section + .cj-section,
.cj-section + .cj-rti-strip,
.cj-rti-strip + .cj-newsletter-cta {
	margin-top: 0;
}

.cj-section-heading {
	align-items: end;
	margin-bottom: 24px;
}

.cj-section-heading h2,
.cj-sidebar-panel h2,
.cj-footer h2,
.cj-widget-title {
	font-size: clamp(22px, 1.8vw, 30px);
	line-height: 1.05;
}

.cj-section-heading h2::after,
.cj-sidebar-panel h2::after,
.cj-footer h2::after,
.cj-widget-title::after {
	width: 150px;
	height: 3px;
}

.cj-section-heading > a {
	flex: 0 0 auto;
	font-size: 12px;
	line-height: 1.1;
}

.cj-card-grid,
.cj-card-grid-three {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	align-items: stretch;
}

.cj-card-grid-four {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
}

.cj-card {
	height: 100%;
	box-shadow: 0 10px 24px rgba(44, 31, 12, 0.09);
}

.cj-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 30px rgba(44, 31, 12, 0.13);
}

.cj-card-media {
	aspect-ratio: 16 / 9;
}

.cj-card-body {
	flex: 1;
	align-content: start;
	gap: 9px;
	padding: 16px;
}

.cj-card h3 {
	font-size: clamp(17px, 1.28vw, 21px);
	line-height: 1.18;
}

.cj-content-layout,
.cj-single-layout {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 32px;
}

.cj-main-column,
.cj-article-content {
	grid-column: 1 / span 8;
	min-width: 0;
}

.cj-single-layout .cj-article-content {
	max-width: none;
	margin: 0;
}

.cj-content-layout > .cj-sidebar,
.cj-single-layout > .cj-sidebar {
	grid-column: 9 / -1;
}

.cj-sidebar {
	display: grid;
	gap: 18px;
	align-self: start;
}

.cj-sidebar-panel,
.cj-widget {
	padding: 20px;
	box-shadow: 0 8px 20px rgba(44, 31, 12, 0.07);
}

.cj-category-panel {
	background: var(--cj-paper-soft);
	color: var(--cj-ink);
	border-top: 5px solid var(--cj-green);
}

.cj-category-panel li + li,
.cj-rank-list li + li {
	border-top: 1px solid var(--cj-line);
}

.cj-category-panel a {
	padding: 9px 0;
	font-size: 14px;
}

.cj-rank-list li {
	grid-template-columns: 30px 1fr;
	gap: 10px;
	padding: 10px 0;
	font-size: 14px;
}

.cj-rank-list li::before {
	width: 25px;
	height: 25px;
	font-size: 13px;
}

.cj-quote-box {
	grid-template-columns: 72px 1fr;
}

.cj-quote-box img {
	width: 72px;
	height: 72px;
}

.cj-load-more {
	width: min(280px, 100%);
	min-height: 42px;
	font-size: 13px;
}

.cj-rti-strip {
	clear: both;
	padding: 42px 0;
}

.cj-guide-row {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.cj-guide-row a {
	grid-template-columns: 42px minmax(0, 1fr);
	min-height: 74px;
	column-gap: 12px;
	padding-right: 14px;
}

.cj-guide-icon {
	width: 38px;
	height: 38px;
	border-width: 2px;
	font-size: 20px;
}

.cj-guide-row strong {
	font-size: 15px;
	line-height: 1.16;
}

.cj-guide-row small {
	font-size: 12px;
	line-height: 1.3;
}

.cj-newsletter-cta {
	clear: both;
	padding: 36px 0;
	background: transparent;
	color: var(--cj-ink);
}

.cj-newsletter-inner {
	grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
	gap: 28px;
	padding: 28px;
	border-radius: var(--cj-radius);
	background: var(--cj-green);
	color: #fff8e8;
}

.cj-newsletter-inner h2 {
	font-size: clamp(28px, 3.2vw, 44px);
	line-height: 1.02;
}

.cj-newsletter-inner .cj-kicker {
	color: #ff8a24;
}

.cj-page-hero {
	padding: 42px 0 30px;
}

.cj-single-header h1 {
	font-size: clamp(38px, 5vw, 66px);
}

.cj-article-content {
	font-size: clamp(17px, 1.15vw, 19px);
	line-height: 1.68;
}

@media (min-width: 1440px) {
	body.cj-theme .grid-container {
		width: min(100% - 64px, 1240px);
		max-width: 1240px;
	}

	.cj-content-layout,
	.cj-single-layout {
		gap: 40px;
	}

	.cj-card-grid,
	.cj-card-grid-three {
		gap: 28px;
	}

	.cj-card-grid-four {
		gap: 24px;
	}
}

@media (max-width: 1024px) {
	body.cj-theme .grid-container {
		width: min(100% - 40px, 920px);
	}

	.cj-header-inner {
		grid-template-columns: 190px minmax(0, 1fr) auto;
		gap: 18px;
		min-height: 78px;
	}

	.cj-brand img {
		width: 48px;
		height: 48px;
	}

	.cj-brand strong {
		font-size: 21px;
	}

	.cj-nav ul {
		gap: 18px;
	}

	.cj-nav a,
	.cj-header-cta {
		font-size: 12px;
	}

	.cj-hero-inner {
		grid-template-columns: repeat(8, minmax(0, 1fr));
		min-height: 440px;
	}

	.cj-hero-copy {
		grid-column: 1 / span 3;
		padding: 36px 0;
	}

	.cj-hero-art {
		grid-column: 4 / -1;
		margin-right: -10px;
		min-height: 360px;
	}

	.cj-hero-art img {
		min-height: 360px;
		max-height: 430px;
	}

	.cj-card-grid,
	.cj-card-grid-four,
	.cj-card-grid-three {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.cj-content-layout,
	.cj-single-layout {
		grid-template-columns: repeat(8, minmax(0, 1fr));
		gap: 28px;
	}

	.cj-main-column,
	.cj-article-content {
		grid-column: 1 / span 5;
	}

	.cj-content-layout > .cj-sidebar,
	.cj-single-layout > .cj-sidebar {
		grid-column: 6 / -1;
	}

	.cj-sidebar {
		position: sticky;
		top: 106px;
		grid-template-columns: 1fr;
	}

	.cj-guide-row {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.cj-guide-row a:nth-child(2n) {
		border-right: 0;
	}

	.cj-newsletter-inner {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	body.cj-theme .grid-container {
		width: min(100% - 32px, 680px);
	}

	.cj-topbar-inner {
		min-height: 38px;
	}

	.cj-header-inner {
		grid-template-columns: 1fr auto;
		min-height: 72px;
	}

	.cj-header-cta {
		display: none;
	}

	.cj-menu-toggle {
		display: inline-block;
	}

	.cj-nav {
		justify-content: end;
	}

	.cj-nav ul {
		position: absolute;
		top: 100%;
		left: 16px;
		right: 16px;
		display: none;
		grid-template-columns: 1fr;
		gap: 0;
		padding: 10px;
		border: 1px solid var(--cj-line);
		border-radius: var(--cj-radius);
		background: var(--cj-paper-soft);
		box-shadow: var(--cj-shadow);
	}

	.cj-nav.is-open ul {
		display: grid;
	}

	.cj-nav a {
		justify-content: center;
		width: 100%;
		min-height: 42px;
		font-size: 14px;
	}

	.cj-hero-inner,
	.cj-content-layout,
	.cj-single-layout {
		grid-template-columns: 1fr;
	}

	.cj-hero-copy,
	.cj-hero-art,
	.cj-main-column,
	.cj-article-content,
	.cj-content-layout > .cj-sidebar,
	.cj-single-layout > .cj-sidebar {
		grid-column: auto;
	}

	.cj-hero-copy {
		padding: 38px 0 8px;
	}

	.cj-hero h1,
	.cj-page-hero h1,
	.cj-single-header h1 {
		font-size: clamp(38px, 9vw, 56px);
	}

	.cj-hero-art img {
		min-height: 300px;
		max-height: 390px;
		object-position: center top;
	}

	.cj-sidebar {
		position: static;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.cj-card-grid,
	.cj-card-grid-four,
	.cj-card-grid-three {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 18px;
	}

	.cj-newsletter-inner {
		padding: 24px;
	}

	.cj-footer-main {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 480px) {
	body.cj-theme .grid-container {
		width: min(100% - 24px, 420px);
	}

	.cj-topbar p {
		max-width: 250px;
		font-size: 11px;
	}

	.cj-topbar-actions {
		gap: 6px;
	}

	.cj-brand img {
		width: 42px;
		height: 42px;
	}

	.cj-brand strong {
		font-size: 18px;
	}

	.cj-section {
		padding: 34px 0;
	}

	.cj-section-heading {
		display: grid;
		gap: 10px;
	}

	.cj-section-heading h2,
	.cj-sidebar-panel h2,
	.cj-widget-title {
		font-size: 24px;
	}

	.cj-card-grid,
	.cj-card-grid-four,
	.cj-card-grid-three,
	.cj-sidebar,
	.cj-guide-row,
	.cj-footer-main {
		grid-template-columns: 1fr;
	}

	.cj-card-body {
		padding: 15px;
	}

	.cj-card h3 {
		font-size: 18px;
	}

	.cj-guide-row a {
		border-right: 0;
		border-bottom: 1px solid var(--cj-line);
		padding: 0 0 16px;
	}

	.cj-newsletter-inner {
		padding: 22px 18px;
	}

	.cj-newsletter-box form,
	.cj-newsletter-inner form {
		display: grid;
		gap: 10px;
	}

	.cj-newsletter-box input,
	.cj-newsletter-inner input,
	.cj-newsletter-box button,
	.cj-newsletter-inner button {
		border-radius: var(--cj-radius);
	}

	.cj-footer-bottom .grid-container,
	.cj-footer-brand,
	.cj-author-box,
	.cj-quote-box {
		display: grid;
		grid-template-columns: 1fr;
	}
}

/* Editorial safety and accessibility polish. */
:root {
	--cj-ink: #151515;
	--cj-paper: #f8f1e2;
	--cj-paper-soft: #fffaf0;
	--cj-paper-deep: #eadcc3;
	--cj-orange: #d95f18;
	--cj-orange-dark: #a94712;
	--cj-green: #064e2f;
	--cj-green-soft: #043d25;
	--cj-line: rgba(21, 21, 21, 0.14);
	--cj-radius: 10px;
	--cj-font-head: ui-serif, Georgia, "Times New Roman", serif;
	--cj-font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

body.cj-theme {
	font-size: 17px;
	line-height: 1.7;
	text-rendering: optimizeLegibility;
}

.cj-skip-link {
	position: fixed;
	left: 16px;
	top: 12px;
	z-index: 10000;
	transform: translateY(-140%);
	padding: 10px 14px;
	border-radius: 8px;
	background: var(--cj-green);
	color: #fff;
	font-weight: 800;
}

.cj-skip-link:focus {
	transform: translateY(0);
}

body.cj-theme a:focus-visible,
body.cj-theme button:focus-visible,
body.cj-theme input:focus-visible,
body.cj-theme summary:focus-visible {
	outline: 3px solid #f59e0b;
	outline-offset: 3px;
}

.cj-button,
.cj-button-green,
.cj-header-cta,
.cj-load-more,
.cj-newsletter-inner button,
.cj-newsletter-box button {
	background: var(--cj-green) !important;
	color: #fff !important;
	border: 0;
	box-shadow: 0 8px 18px rgba(6, 78, 47, 0.18);
	text-transform: none;
	font-family: var(--cj-font-body);
	font-weight: 800;
	letter-spacing: 0;
}

.cj-button:hover,
.cj-button-green:hover,
.cj-header-cta:hover,
.cj-load-more:hover,
.cj-newsletter-inner button:hover,
.cj-newsletter-box button:hover {
	background: var(--cj-green-soft) !important;
	color: #fff !important;
}

.cj-button-outline {
	background: transparent !important;
	color: var(--cj-green) !important;
	border: 2px solid var(--cj-green);
	box-shadow: none;
}

.cj-button-outline:hover {
	background: var(--cj-green) !important;
	color: #fff !important;
}

.cj-brand,
.cj-nav a,
.cj-section-heading h2,
.cj-sidebar-panel h2,
.cj-footer h2,
.cj-widget-title,
.cj-hero h1,
.cj-page-hero h1,
.cj-single-header h1,
.cj-article-content h2,
.cj-article-content h3,
.cj-author-box h2 {
	font-family: var(--cj-font-head);
	font-weight: 900;
	text-transform: none;
	letter-spacing: 0;
}

.cj-nav a {
	font-family: var(--cj-font-body);
	font-weight: 850;
	text-transform: none;
}

.cj-brand strong {
	font-family: var(--cj-font-head);
	text-transform: none;
}

.cj-hero {
	background:
		radial-gradient(circle at 84% 20%, rgba(217, 95, 24, 0.13), transparent 34%),
		linear-gradient(135deg, rgba(255, 250, 240, 0.92), rgba(248, 241, 226, 0.98));
}

.cj-hero-inner {
	grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
	gap: 42px;
	min-height: auto;
	padding-top: 56px;
	padding-bottom: 56px;
}

.cj-hero-copy {
	grid-column: auto;
	padding: 0;
}

.cj-hero h1 {
	color: var(--cj-ink);
	font-size: clamp(34px, 4vw, 54px);
	line-height: 1.07;
	max-width: 820px;
}

.cj-hero p {
	max-width: 780px;
	font-size: clamp(17px, 1.5vw, 20px);
	font-weight: 500;
	color: rgba(21, 21, 21, 0.82);
}

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

.cj-disclaimer {
	margin-top: 18px;
	padding: 14px 16px;
	border: 1px solid rgba(217, 95, 24, 0.32);
	border-left: 5px solid var(--cj-orange);
	border-radius: var(--cj-radius);
	background: rgba(255, 250, 240, 0.88);
	color: var(--cj-ink);
	font-size: 14px;
	font-weight: 750;
	line-height: 1.55;
}

.cj-hero-card {
	display: grid;
	gap: 18px;
	padding: 28px;
	border: 1px solid var(--cj-line);
	border-radius: 16px;
	background: var(--cj-paper-soft);
	box-shadow: var(--cj-shadow);
}

.cj-hero-card h2 {
	margin: 0;
	font-size: clamp(24px, 2vw, 32px);
	font-family: var(--cj-font-head);
}

.cj-hero-card ul {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.cj-hero-card li {
	position: relative;
	padding-left: 22px;
	font-weight: 750;
}

.cj-hero-card li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.7em;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--cj-orange);
}

.cj-featured-card {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
	gap: 28px;
	align-items: stretch;
	border: 1px solid var(--cj-line);
	border-radius: 16px;
	background: var(--cj-paper-soft);
	overflow: hidden;
	box-shadow: var(--cj-shadow);
}

.cj-featured-media {
	display: block;
	min-height: 320px;
	background: var(--cj-paper-deep);
}

.cj-featured-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cj-featured-body {
	display: grid;
	align-content: center;
	gap: 14px;
	padding: 28px;
}

.cj-featured-body h3 {
	margin: 0;
	font-size: clamp(26px, 2.8vw, 42px);
	line-height: 1.1;
	font-family: var(--cj-font-head);
}

.cj-featured-body p {
	margin: 0;
	color: rgba(21, 21, 21, 0.78);
}

.cj-card-excerpt {
	margin: 0;
	color: rgba(21, 21, 21, 0.76);
	font-size: 14px;
	line-height: 1.5;
}

.cj-topic-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 14px;
}

.cj-topic-grid a {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 76px;
	padding: 16px;
	border: 1px solid var(--cj-line);
	border-radius: var(--cj-radius);
	background: var(--cj-paper-soft);
	font-weight: 850;
	text-align: center;
	box-shadow: 0 8px 18px rgba(44, 31, 12, 0.06);
}

.cj-topic-grid a:hover {
	border-color: var(--cj-orange);
	transform: translateY(-2px);
}

.cj-single-header {
	text-align: left;
}

.cj-single-header .cj-badge,
.cj-single-header h1 {
	margin-left: 0;
	margin-right: 0;
}

.cj-single-meta {
	justify-content: flex-start;
	text-transform: none;
}

.cj-single-disclaimer {
	max-width: 820px;
}

.cj-breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-bottom: 16px;
	color: rgba(21, 21, 21, 0.66);
	font-size: 13px;
	font-weight: 750;
}

.cj-breadcrumbs a {
	color: var(--cj-green);
}

.cj-toc,
.cj-short-answer,
.cj-source-box,
.cj-faq-mini {
	margin: 0 0 28px;
	padding: 20px;
	border: 1px solid var(--cj-line);
	border-radius: var(--cj-radius);
	background: var(--cj-paper-soft);
}

.cj-toc {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 14px;
	font-size: 14px;
}

.cj-toc strong {
	width: 100%;
}

.cj-toc a,
.cj-share-row a {
	border: 1px solid var(--cj-line);
	border-radius: 999px;
	padding: 7px 11px;
	font-weight: 800;
}

.cj-short-answer h2,
.cj-source-box h2,
.cj-faq-mini h2 {
	margin-top: 0;
	font-size: clamp(24px, 2vw, 32px);
}

.cj-faq-mini details + details {
	margin-top: 10px;
}

.cj-faq-mini summary {
	cursor: pointer;
	font-weight: 850;
}

.cj-share-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 28px 0;
}

.cj-footer-disclaimer {
	padding-bottom: 26px;
}

.cj-footer .cj-disclaimer,
.cj-footer-disclaimer .cj-disclaimer {
	background: rgba(255, 248, 232, 0.08);
	color: #fff8e8;
	border-color: rgba(255, 248, 232, 0.22);
	border-left-color: var(--cj-orange);
}

.cj-footer-brand p,
.cj-manifesto p {
	font-size: 15px;
	font-weight: 550;
}

.cj-manifesto h2 {
	font-size: 20px;
}

@media (max-width: 1024px) {
	.cj-hero-inner,
	.cj-featured-card {
		grid-template-columns: 1fr;
	}

	.cj-topic-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	body.cj-theme {
		font-size: 16px;
	}

	.cj-hero-inner {
		padding-top: 38px;
		padding-bottom: 38px;
	}

	.cj-hero h1,
	.cj-page-hero h1,
	.cj-single-header h1 {
		font-size: clamp(28px, 8vw, 38px);
		line-height: 1.12;
	}

	.cj-featured-media {
		min-height: 220px;
	}

	.cj-topic-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 480px) {
	.cj-hero-actions .cj-button {
		width: 100%;
	}

	.cj-topic-grid {
		grid-template-columns: 1fr;
	}

	.cj-featured-body {
		padding: 20px;
	}
}

/* Premium newsroom redesign inspired by the supplied black/red/white reference. */
:root {
	--cj-ink: #111111;
	--cj-muted: #626262;
	--cj-paper: #f4f4f4;
	--cj-paper-soft: #ffffff;
	--cj-paper-deep: #e8e8e8;
	--cj-red: #e50914;
	--cj-red-dark: #b70710;
	--cj-black: #050505;
	--cj-line: rgba(0, 0, 0, 0.12);
	--cj-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
	--cj-radius: 6px;
	--cj-font-head: Impact, "Arial Black", "Franklin Gothic Heavy", system-ui, sans-serif;
	--cj-font-body: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

body.cj-theme {
	background: #f5f5f5;
	color: var(--cj-ink);
	font-family: var(--cj-font-body);
}

body.cj-theme .grid-container {
	width: min(100% - 48px, 1280px);
	max-width: 1280px;
}

.cj-topbar {
	background: var(--cj-black);
	color: #fff;
	border-bottom: 1px solid rgba(255,255,255,.12);
}

.cj-topbar p strong {
	display: inline-flex;
	align-items: center;
	margin-right: 10px;
	padding: 8px 12px;
	background: var(--cj-red);
	color: #fff;
	text-transform: uppercase;
}

.cj-header {
	background: #050505;
	border-bottom: 1px solid rgba(255,255,255,.12);
	backdrop-filter: none;
}

.cj-header-inner {
	min-height: 82px;
	grid-template-columns: 260px minmax(0, 1fr) auto;
}

.cj-brand {
	color: #fff;
}

.cj-brand img {
	border: 2px solid var(--cj-red);
	border-radius: 50%;
	padding: 5px;
	background: #070707;
}

.cj-brand strong,
.cj-brand strong:first-child {
	color: #fff;
}

.cj-nav ul {
	gap: clamp(14px, 1.8vw, 28px);
}

.cj-nav a {
	color: #fff;
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.cj-nav a::after {
	bottom: 0;
	background: var(--cj-red);
}

.cj-menu-toggle {
	background: #111;
	border-color: rgba(255,255,255,.2);
}

.cj-menu-toggle span:not(.screen-reader-text) {
	background: #fff;
}

.cj-button,
.cj-button-green,
.cj-header-cta,
.cj-load-more,
.cj-newsletter-inner button,
.cj-newsletter-box button {
	background: var(--cj-red) !important;
	color: #fff !important;
	border-radius: 4px;
	text-transform: uppercase;
	box-shadow: none;
}

.cj-button:hover,
.cj-button-green:hover,
.cj-header-cta:hover,
.cj-load-more:hover,
.cj-newsletter-inner button:hover,
.cj-newsletter-box button:hover {
	background: var(--cj-red-dark) !important;
	color: #fff !important;
}

.cj-news-hero {
	padding: 20px 0 14px;
	background: #fff;
}

.cj-news-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(260px, .55fr) minmax(280px, .55fr);
	gap: 16px;
	align-items: stretch;
}

.cj-hero-lead,
.cj-hero-mini {
	position: relative;
	display: flex;
	min-height: 455px;
	overflow: hidden;
	border-radius: var(--cj-radius);
	background: #111;
	color: #fff;
	isolation: isolate;
}

.cj-hero-mini {
	min-height: 219px;
	margin-bottom: 16px;
}

.cj-hero-mini:last-child {
	margin-bottom: 0;
}

.cj-hero-lead::after,
.cj-hero-mini::after,
.cj-card-media::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,.9));
	pointer-events: none;
}

.cj-hero-lead img,
.cj-hero-mini img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .22s ease;
}

.cj-hero-lead:hover img,
.cj-hero-mini:hover img {
	transform: scale(1.035);
}

.cj-hero-lead > div,
.cj-hero-mini h2,
.cj-hero-mini .cj-story-meta,
.cj-hero-lead .cj-story-meta,
.cj-hero-lead .cj-badge,
.cj-hero-mini .cj-badge {
	position: relative;
	z-index: 2;
}

.cj-hero-lead {
	align-items: flex-end;
	padding: 28px;
}

.cj-hero-lead h1 {
	margin: 0;
	max-width: 850px;
	font-family: var(--cj-font-head);
	font-size: clamp(34px, 4.2vw, 58px);
	line-height: .98;
	letter-spacing: 0;
	text-transform: uppercase;
}

.cj-hero-lead p {
	max-width: 720px;
	margin: 14px 0 0;
	color: rgba(255,255,255,.88);
	font-size: 16px;
	line-height: 1.45;
}

.cj-hero-mini {
	display: grid;
	align-content: end;
	padding: 18px;
}

.cj-hero-mini h2 {
	margin: 8px 0 6px;
	color: #fff;
	font-size: 18px;
	line-height: 1.14;
	font-family: var(--cj-font-body);
	font-weight: 900;
}

.cj-badge-red,
.cj-badge {
	display: inline-flex;
	width: fit-content;
	align-items: center;
	padding: 5px 8px;
	border-radius: 2px;
	background: var(--cj-red);
	color: #fff !important;
	font-size: 11px;
	font-weight: 950;
	line-height: 1;
	text-transform: uppercase;
}

.cj-story-meta {
	display: inline-flex;
	color: rgba(255,255,255,.78);
	font-size: 12px;
	font-weight: 700;
}

.cj-trending-box,
.cj-sidebar-panel {
	border: 1px solid var(--cj-line);
	border-radius: var(--cj-radius);
	background: #fff;
	box-shadow: none;
}

.cj-trending-box {
	padding: 18px;
}

.cj-trending-box h2,
.cj-sidebar-panel h2,
.cj-section-heading h2 {
	margin: 0;
	font-family: var(--cj-font-body);
	font-size: 20px;
	font-weight: 950;
	line-height: 1.1;
	text-transform: uppercase;
}

.cj-trending-box h2::before,
.cj-section-heading h2::before {
	content: "";
	display: inline-block;
	width: 6px;
	height: 23px;
	margin-right: 9px;
	vertical-align: -5px;
	background: var(--cj-red);
}

.cj-section-heading h2::after,
.cj-sidebar-panel h2::after,
.cj-footer h2::after,
.cj-widget-title::after {
	display: none;
}

.cj-trending-box ol,
.cj-rank-list {
	margin: 16px 0 0;
	padding: 0;
	list-style: none;
	counter-reset: item;
}

.cj-trending-box li,
.cj-rank-list li {
	counter-increment: item;
	display: grid;
	grid-template-columns: 36px minmax(0,1fr);
	gap: 10px;
	padding: 10px 0;
	border-top: 1px solid var(--cj-line);
}

.cj-trending-box li:first-child,
.cj-rank-list li:first-child {
	border-top: 0;
}

.cj-trending-box li::before,
.cj-rank-list li::before {
	content: counter(item);
	grid-row: 1;
	display: block;
	width: auto;
	height: auto;
	border: 0;
	color: #111;
	font-family: Georgia, serif;
	font-size: 30px;
	font-weight: 900;
	line-height: 1;
}

.cj-trending-box a,
.cj-side-post {
	display: grid;
	grid-template-columns: 76px minmax(0,1fr);
	gap: 10px;
	align-items: start;
	color: #111;
}

.cj-trending-box img,
.cj-side-post img {
	width: 76px;
	height: 58px;
	object-fit: cover;
	border-radius: 3px;
}

.cj-trending-box span,
.cj-side-post span,
.cj-rank-list a {
	font-size: 13px;
	font-weight: 850;
	line-height: 1.25;
}

.cj-trending-box small,
.cj-side-post small {
	grid-column: 2;
	color: var(--cj-muted);
	font-size: 11px;
}

.cj-breaking-strip {
	background: #080808;
	color: #fff;
	border-top: 1px solid rgba(255,255,255,.1);
	border-bottom: 1px solid rgba(255,255,255,.1);
}

.cj-breaking-strip .grid-container {
	display: flex;
	align-items: center;
	gap: 14px;
	min-height: 42px;
	overflow: hidden;
}

.cj-breaking-strip strong {
	padding: 9px 13px;
	background: var(--cj-red);
	text-transform: uppercase;
}

.cj-breaking-strip a {
	font-weight: 800;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.cj-breaking-strip span {
	margin-left: auto;
	color: rgba(255,255,255,.72);
	font-size: 12px;
}

.cj-category-icons {
	padding: 20px 0 14px;
	background: #fff;
	border-bottom: 1px solid var(--cj-line);
}

.cj-category-icons .grid-container {
	display: grid;
	grid-template-columns: repeat(8, minmax(0,1fr));
	gap: 16px;
}

.cj-category-icons a {
	display: grid;
	justify-items: center;
	gap: 7px;
	color: #111;
	font-size: 12px;
	font-weight: 950;
	text-transform: uppercase;
}

.cj-category-icons span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 62px;
	height: 62px;
	border: 3px solid var(--cj-red);
	border-radius: 50%;
	background: #111;
	color: #fff;
	box-shadow: inset 0 0 0 3px #fff;
}

.cj-category-icons svg {
	width: 28px;
	height: 28px;
}

.cj-section {
	background: #fff;
	padding: 28px 0;
}

.cj-section-heading {
	margin-bottom: 16px;
	border-bottom: 2px solid #111;
	padding-bottom: 10px;
}

.cj-section-heading > a {
	color: #111;
	font-family: var(--cj-font-body);
	font-size: 12px;
	font-weight: 950;
	text-transform: uppercase;
}

.cj-card-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.cj-card-grid-six {
	grid-template-columns: repeat(6, minmax(0,1fr));
}

.cj-card {
	position: relative;
	border: 0;
	border-radius: var(--cj-radius);
	background: #111;
	color: #fff;
	box-shadow: none;
}

.cj-card-media {
	position: relative;
	aspect-ratio: 16 / 11;
	background: #111;
}

.cj-card-media img {
	object-fit: cover;
}

.cj-card-body {
	position: relative;
	z-index: 2;
	margin-top: -86px;
	min-height: 145px;
	align-content: end;
	padding: 12px;
	background: linear-gradient(180deg, transparent, rgba(0,0,0,.92) 24%);
}

.cj-card h3 {
	color: #fff;
	font-size: 16px;
	line-height: 1.16;
}

.cj-card-excerpt {
	display: none;
}

.cj-card-date {
	color: rgba(255,255,255,.78);
	font-size: 12px;
}

.cj-content-layout {
	grid-template-columns: minmax(0, 1fr) 300px;
}

.cj-main-column {
	grid-column: auto;
}

.cj-content-layout > .cj-sidebar {
	grid-column: auto;
}

.cj-latest-list {
	display: grid;
	gap: 12px;
}

.cj-side-post + .cj-side-post {
	padding-top: 12px;
	border-top: 1px solid var(--cj-line);
}

.cj-ad-box {
	display: grid;
	place-content: center;
	min-height: 250px;
	background: linear-gradient(135deg, #f2f2f2, #dedede);
	color: #aaa;
	text-align: center;
	text-transform: uppercase;
}

.cj-ad-box strong {
	display: block;
	font-size: 15px;
	font-weight: 500;
}

.cj-desk-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0,1fr));
	gap: 16px;
}

.cj-desk-card {
	display: grid;
	gap: 10px;
	padding: 18px;
	border: 1px solid var(--cj-line);
	border-radius: var(--cj-radius);
	background: #fff;
}

.cj-desk-head {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 950;
	text-transform: uppercase;
}

.cj-desk-head span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #111;
	color: #fff;
	border: 2px solid var(--cj-red);
}

.cj-desk-head svg {
	width: 20px;
	height: 20px;
}

.cj-desk-card p {
	margin: 0;
	color: var(--cj-muted);
	font-size: 14px;
	line-height: 1.45;
}

.cj-desk-story {
	padding-top: 10px;
	border-top: 1px solid var(--cj-line);
	font-size: 14px;
	font-weight: 850;
	line-height: 1.25;
}

.cj-trust-strip {
	padding: 22px 0;
	background: #111;
	color: #fff;
}

.cj-trust-strip .grid-container {
	display: grid;
	grid-template-columns: minmax(0, .75fr) minmax(0, 1fr);
	gap: 18px;
	align-items: center;
}

.cj-trust-strip strong {
	display: block;
	font-size: 18px;
	font-weight: 950;
	text-transform: uppercase;
}

.cj-trust-strip span {
	color: rgba(255,255,255,.75);
}

.cj-trust-strip .cj-disclaimer {
	margin: 0;
	background: rgba(255,255,255,.08);
	color: #fff;
	border-color: rgba(255,255,255,.18);
	border-left-color: var(--cj-red);
}

.cj-newsletter-cta {
	background: #fff;
}

.cj-newsletter-inner {
	background: #080808;
	color: #fff;
	border-radius: var(--cj-radius);
}

.cj-newsletter-inner .cj-kicker {
	color: var(--cj-red);
}

.cj-footer {
	background: #080808;
}

@media (max-width: 1100px) {
	.cj-news-hero-grid {
		grid-template-columns: minmax(0, 1fr) minmax(280px, .55fr);
	}

	.cj-trending-box {
		grid-column: 1 / -1;
	}

	.cj-category-icons .grid-container {
		grid-template-columns: repeat(4, minmax(0,1fr));
	}

	.cj-card-grid,
	.cj-card-grid-six,
	.cj-desk-grid {
		grid-template-columns: repeat(2, minmax(0,1fr));
	}
}

@media (max-width: 768px) {
	body.cj-theme .grid-container {
		width: min(100% - 28px, 680px);
	}

	.cj-header-inner {
		grid-template-columns: 1fr auto;
	}

	.cj-nav ul {
		background: #080808;
		border-color: rgba(255,255,255,.16);
	}

	.cj-news-hero-grid,
	.cj-content-layout,
	.cj-trust-strip .grid-container {
		grid-template-columns: 1fr;
	}

	.cj-hero-lead {
		min-height: 390px;
		padding: 20px;
	}

	.cj-hero-lead h1 {
		font-size: clamp(30px, 10vw, 42px);
	}

	.cj-hero-stack {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 14px;
	}

	.cj-hero-mini {
		min-height: 240px;
		margin: 0;
	}

	.cj-sidebar {
		position: static;
		grid-template-columns: 1fr;
	}
}

@media (max-width: 560px) {
	.cj-topbar-actions a:nth-child(-n+4) {
		display: none;
	}

	.cj-category-icons .grid-container,
	.cj-card-grid,
	.cj-card-grid-six,
	.cj-desk-grid,
	.cj-hero-stack {
		grid-template-columns: 1fr;
	}

	.cj-category-icons .grid-container {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.cj-hero-mini {
		min-height: 210px;
	}

	.cj-breaking-strip .grid-container {
		display: grid;
		gap: 6px;
		padding-top: 8px;
		padding-bottom: 8px;
	}

	.cj-breaking-strip span {
		margin-left: 0;
	}
}

/* TruthRoute v2.2 newsroom tightening: reference-style, U.S. global network, readable overlays. */
body.cj-theme {
	background: #ffffff;
	color: #111111;
	font-size: 16px;
	line-height: 1.58;
}

body.cj-theme .grid-container {
	width: min(100% - 48px, 1236px);
	max-width: 1236px;
}

.cj-topbar {
	min-height: 0;
	background: #090909;
}

.cj-topbar-inner {
	min-height: 36px;
}

.cj-topbar p {
	font-size: 12px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.cj-header {
	position: sticky;
	background: #030303;
}

.cj-header-inner {
	min-height: 74px;
	grid-template-columns: 282px minmax(0, 1fr) auto;
	gap: 22px;
}

.cj-brand {
	gap: 12px;
	min-width: 0;
	text-transform: none;
}

.cj-brand img {
	width: 58px;
	height: 58px;
	padding: 4px;
}

.cj-brand span {
	display: block;
	line-height: 1;
}

.cj-brand strong {
	display: inline;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 30px;
	font-weight: 900;
	letter-spacing: -.02em;
	text-transform: none;
}

.cj-brand strong + strong::before {
	content: " ";
}

.cj-brand span::after {
	content: "GLOBAL NEWS & ANALYSIS";
	display: block;
	margin-top: 3px;
	color: rgba(255,255,255,.66);
	font-family: Arial, sans-serif;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .12em;
}

.cj-nav a {
	min-height: 36px;
	font-family: Arial, sans-serif;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .01em;
}

.cj-header-cta {
	padding: 12px 16px;
	font-family: Arial, sans-serif;
	font-size: 12px;
	font-weight: 900;
	white-space: nowrap;
}

.cj-news-hero {
	padding: 16px 0 12px;
}

.cj-news-hero-grid {
	grid-template-columns: minmax(0, 1.45fr) minmax(260px, .55fr) minmax(284px, .55fr);
	gap: 12px;
}

.cj-hero-lead,
.cj-hero-mini {
	border-radius: 5px;
	box-shadow: none;
}

.cj-hero-lead {
	min-height: 455px;
	align-items: stretch;
	padding: 0;
}

.cj-hero-lead::after {
	background:
		linear-gradient(90deg, rgba(0,0,0,.28), rgba(0,0,0,.08) 45%, rgba(0,0,0,.38)),
		linear-gradient(180deg, rgba(0,0,0,0) 38%, rgba(0,0,0,.88) 70%, #020202 100%);
}

.cj-hero-lead .cj-badge {
	position: absolute;
	left: 18px;
	bottom: 188px;
	z-index: 3;
}

.cj-hero-lead > div {
	align-self: end;
	width: 100%;
	padding: 0 22px 24px;
	background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.46) 10%, rgba(0,0,0,.94) 42%, #020202 100%);
}

.cj-hero-lead h1,
.cj-hero-lead h1 a,
.cj-hero-mini h2,
.cj-hero-mini h2 a {
	color: #ffffff !important;
	text-shadow: 0 3px 14px rgba(0,0,0,.88);
}

.cj-hero-lead h1 {
	max-width: 810px;
	font-size: clamp(30px, 3.7vw, 50px);
	line-height: 1.02;
}

.cj-hero-lead p {
	max-width: 720px;
	color: rgba(255,255,255,.9) !important;
	text-shadow: 0 2px 10px rgba(0,0,0,.72);
}

.cj-story-meta,
.cj-hero-lead .cj-story-meta,
.cj-hero-mini .cj-story-meta {
	color: rgba(255,255,255,.82) !important;
	text-shadow: 0 2px 8px rgba(0,0,0,.72);
}

.cj-hero-mini {
	min-height: 221px;
	padding: 16px;
}

.cj-hero-mini::after {
	background: linear-gradient(180deg, rgba(0,0,0,.05) 20%, rgba(0,0,0,.9) 78%, #020202 100%);
}

.cj-trending-box,
.cj-sidebar-panel {
	border-color: #dddddd;
}

.cj-trending-box h2,
.cj-sidebar-panel h2,
.cj-section-heading h2 {
	font-family: Arial, sans-serif;
	color: #111111;
	letter-spacing: 0;
}

.cj-card-grid {
	gap: 14px;
}

.cj-card {
	min-width: 0;
	overflow: hidden;
	background: #080808;
}

.cj-card-media {
	overflow: hidden;
}

.cj-card h3,
.cj-card h3 a,
.cj-card-date {
	color: #ffffff !important;
	text-shadow: 0 2px 10px rgba(0,0,0,.75);
}

.cj-card h3 {
	margin-top: 8px;
	font-family: Arial, sans-serif;
	font-size: 15px;
	font-weight: 900;
	letter-spacing: 0;
}

.cj-card-body {
	display: grid;
	min-height: 150px;
}

.cj-card .cj-badge {
	color: #ffffff !important;
	text-shadow: none;
}

.cj-side-post span,
.cj-rank-list a,
.cj-trending-box span {
	font-family: Arial, sans-serif;
	color: #111111 !important;
	letter-spacing: 0;
}

.cj-side-post small,
.cj-trending-box small {
	color: #666666 !important;
}

.cj-category-icons {
	padding: 16px 0 12px;
}

.cj-category-icons span {
	width: 58px;
	height: 58px;
}

.cj-section {
	padding: 24px 0;
}

.cj-desk-card {
	box-shadow: none;
}

.cj-newsletter-inner {
	padding: 22px 28px;
}

.cj-footer {
	margin-top: 0;
}

@media (max-width: 1100px) {
	.cj-header-inner {
		grid-template-columns: 240px minmax(0, 1fr) auto;
	}

	.cj-brand strong {
		font-size: 25px;
	}
}

@media (max-width: 768px) {
	body.cj-theme .grid-container {
		width: min(100% - 28px, 680px);
	}

	.cj-topbar-actions {
		display: none;
	}

	.cj-header-inner {
		min-height: 70px;
		grid-template-columns: 1fr auto;
	}

	.cj-brand img {
		width: 48px;
		height: 48px;
	}

	.cj-brand strong {
		font-size: 23px;
	}

	.cj-header-cta {
		display: none;
	}

	.cj-news-hero-grid {
		gap: 12px;
	}

	.cj-hero-lead {
		min-height: 390px;
	}

	.cj-hero-lead .cj-badge {
		bottom: 165px;
	}

	.cj-hero-lead h1 {
		font-size: clamp(28px, 8vw, 40px);
	}

	.cj-hero-lead > div {
		padding: 0 18px 20px;
	}

	.cj-hero-stack {
		grid-template-columns: 1fr;
	}

	.cj-hero-mini {
		min-height: 225px;
	}
}

@media (max-width: 560px) {
	.cj-news-hero {
		padding-top: 10px;
	}

	.cj-hero-lead {
		min-height: 355px;
	}

	.cj-hero-lead .cj-badge {
		bottom: 155px;
	}

	.cj-category-icons .grid-container {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 10px;
	}

	.cj-category-icons span {
		width: 46px;
		height: 46px;
		border-width: 2px;
	}

	.cj-category-icons strong {
		font-size: 10px;
	}

	.cj-card-grid,
	.cj-card-grid-six,
	.cj-desk-grid {
		grid-template-columns: 1fr;
	}
}

/* TruthRoute v2.3 live-site polish: no fake labels, no invisible nav, stronger red/white headline system. */
.cj-header .cj-nav a,
.cj-header .cj-nav a:visited,
.cj-header .menu a,
.cj-header .menu a:visited {
	color: #ffffff !important;
	opacity: 1 !important;
	text-shadow: none !important;
}

.cj-header .cj-nav a:hover,
.cj-header .cj-nav a:focus {
	color: #ffffff !important;
	background: transparent !important;
}

.cj-badge,
.cj-badge-red,
.cj-card .cj-badge,
.cj-hero-lead .cj-badge,
.cj-hero-mini .cj-badge {
	background: #e50914 !important;
	color: #ffffff !important;
	border: 0 !important;
	font-family: Arial, sans-serif;
	font-size: 10px;
	font-weight: 950;
	letter-spacing: .02em;
	text-transform: uppercase;
}

.cj-hero-lead h1,
.cj-card h3,
.cj-card h3 a {
	color: #ffffff !important;
	-webkit-text-stroke: 0 !important;
}

.cj-hero-lead > div {
	background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.70) 12%, rgba(0,0,0,.96) 44%, #000 100%);
}

.cj-card-body {
	background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.88) 21%, #000 100%);
}

.cj-empty-note {
	padding: 16px;
	border: 1px solid #dddddd;
	border-radius: 5px;
	background: #ffffff;
	color: #333333;
	font-family: Arial, sans-serif;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.4;
}

.cj-hero-stack .cj-empty-note,
.cj-trending-box .cj-empty-note {
	min-height: 120px;
	display: grid;
	place-items: center;
}

/* TruthRoute v2.4: closer to the supplied newsroom reference. */
.home .cj-topbar,
.front-page .cj-topbar {
	display: none;
}

.cj-header {
	border-bottom: 1px solid #2a2a2a;
}

.cj-header-inner {
	min-height: 70px;
}

.cj-breaking-strip {
	border-top: 0;
	border-bottom: 1px solid #dedede;
	background: #ffffff;
	color: #111111;
}

.cj-breaking-strip .grid-container {
	min-height: 39px;
}

.cj-breaking-strip strong {
	background: #e50914;
	color: #ffffff;
	font-size: 12px;
	font-weight: 950;
}

.cj-breaking-strip a {
	color: #222222;
	font-family: Arial, sans-serif;
	font-size: 13px;
	font-weight: 850;
}

.cj-breaking-strip span {
	color: #777777;
}

.cj-news-hero {
	padding: 12px 0 14px;
	background: #ffffff;
}

.cj-news-hero-grid {
	gap: 12px;
	grid-template-columns: minmax(0, 1.42fr) minmax(250px, .57fr) minmax(280px, .56fr);
}

.cj-hero-lead {
	min-height: 392px;
}

.cj-hero-lead::after {
	background:
		linear-gradient(90deg, rgba(0,0,0,.10), rgba(0,0,0,.02) 52%, rgba(0,0,0,.18)),
		linear-gradient(180deg, rgba(0,0,0,0) 42%, rgba(0,0,0,.56) 67%, #000 100%);
}

.cj-hero-lead > div {
	padding: 0 22px 20px;
	background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.42) 10%, rgba(0,0,0,.90) 48%, #000 100%);
}

.cj-hero-lead .cj-badge {
	position: static;
	margin-bottom: 8px;
}

.cj-hero-lead h1 {
	max-width: 780px;
	font-family: Arial, "Helvetica Neue", sans-serif;
	font-size: clamp(28px, 3.15vw, 43px);
	font-weight: 950;
	line-height: 1.02;
	letter-spacing: -.02em;
	text-transform: uppercase;
}

.cj-hero-lead p {
	max-width: 720px;
	margin-top: 10px;
	font-size: 14px;
	line-height: 1.45;
}

.cj-hero-mini {
	min-height: 190px;
	padding: 14px;
}

.cj-hero-mini h2 {
	font-size: 17px;
}

.cj-trending-box {
	padding: 16px;
}

.cj-trending-box li,
.cj-rank-list li {
	grid-template-columns: 34px minmax(0,1fr);
	padding: 9px 0;
}

.cj-trending-box li::before,
.cj-rank-list li::before {
	font-size: 28px;
}

.cj-trending-box a {
	grid-template-columns: 72px minmax(0,1fr);
}

.cj-trending-box img,
.cj-side-post img {
	width: 72px;
	height: 54px;
}

.cj-category-icons {
	border-top: 0;
}

.cj-category-icons span {
	width: 54px;
	height: 54px;
	background: #ffffff;
	color: #111111;
	box-shadow: inset 0 0 0 3px #ffffff, 0 0 0 1px #111111;
}

.cj-category-icons a {
	color: #111111;
}

.cj-section {
	padding: 18px 0 22px;
}

.cj-section-heading {
	margin-bottom: 13px;
}

.cj-card-body {
	min-height: 136px;
	padding: 11px;
}

.cj-card h3 {
	font-size: 15px;
	line-height: 1.12;
}

.cj-card-date {
	margin-top: 4px;
	font-size: 11px;
}

@media (max-width: 1100px) {
	.cj-news-hero-grid {
		grid-template-columns: minmax(0, 1fr) minmax(280px, .55fr);
	}

	.cj-hero-lead {
		min-height: 380px;
	}
}

@media (max-width: 768px) {
	.home .cj-topbar,
	.front-page .cj-topbar {
		display: block;
	}

	.cj-topbar p {
		display: none;
	}

	.cj-header-inner {
		min-height: 66px;
	}

	.cj-news-hero-grid {
		grid-template-columns: 1fr;
	}

	.cj-hero-lead {
		min-height: 360px;
	}

	.cj-hero-lead h1 {
		font-size: clamp(25px, 8vw, 36px);
	}
}

/* TruthRoute v2.5: exact black/red/white newsroom header and hero proportions. */
.cj-topbar {
	display: none !important;
}

.cj-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: #050505;
	border-bottom: 0;
}

.admin-bar .cj-header {
	top: 32px;
}

.cj-header-inner {
	display: grid;
	grid-template-columns: minmax(250px, 1fr) auto;
	grid-template-areas:
		"brand actions"
		"nav nav";
	gap: 0;
	min-height: 102px;
	padding-top: 11px;
	padding-bottom: 0;
}

.cj-brand {
	grid-area: brand;
	align-self: center;
	width: fit-content;
}

.cj-brand img {
	width: 62px;
	height: 62px;
	border: 2px solid #e50914;
	background: #050505;
}

.cj-brand strong {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 34px;
	font-weight: 900;
	color: #ffffff !important;
}

.cj-brand span::after {
	color: rgba(255,255,255,.7);
	font-size: 10px;
}

.cj-header-actions {
	grid-area: actions;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 16px;
}

.cj-search-link,
.cj-newsletter-link,
.cj-watch-live {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 36px;
	color: #ffffff !important;
	font-family: Arial, sans-serif;
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.cj-search-link svg,
.cj-newsletter-link svg {
	width: 21px;
	height: 21px;
}

.cj-newsletter-link {
	padding: 0 16px;
	border: 1px solid rgba(255,255,255,.28);
	border-radius: 4px;
	background: #101010;
}

.cj-watch-live {
	padding: 0 19px;
	border-radius: 4px;
	background: #e50914;
}

.cj-nav {
	grid-area: nav;
	justify-content: flex-start;
	margin-top: 10px;
	border-top: 1px solid rgba(255,255,255,.16);
}

.cj-nav ul {
	justify-content: flex-start;
	gap: 0;
	width: 100%;
}

.cj-nav li {
	display: block;
}

.cj-header .cj-nav a {
	min-height: 39px;
	padding: 0 22px;
	color: #ffffff !important;
	font-family: Arial, sans-serif;
	font-size: 12px;
	font-weight: 950;
	text-transform: uppercase;
}

.cj-header .cj-nav a::after {
	bottom: 0;
	height: 4px;
	background: #e50914;
}

.cj-breaking-strip {
	background: #ffffff;
	border-bottom: 1px solid #e4e4e4;
}

.cj-breaking-strip .grid-container {
	width: min(100% - 48px, 1236px);
	min-height: 40px;
}

.cj-breaking-strip strong {
	position: relative;
	padding: 9px 15px;
	background: #e50914;
	color: #fff;
	font-size: 12px;
}

.cj-breaking-strip strong::after {
	content: "";
	position: absolute;
	top: 0;
	right: -14px;
	border-top: 20px solid transparent;
	border-bottom: 20px solid transparent;
	border-left: 14px solid #e50914;
}

.cj-breaking-strip a {
	margin-left: 12px;
	color: #292929 !important;
	font-size: 13px;
	font-weight: 850;
}

.cj-news-hero {
	padding: 10px 0 12px;
}

.cj-news-hero-grid {
	grid-template-columns: minmax(0, 1.28fr) minmax(260px, .55fr) minmax(286px, .56fr);
	gap: 10px;
}

.cj-hero-lead {
	min-height: 410px;
	border-radius: 4px;
}

.cj-hero-lead::after {
	background:
		linear-gradient(90deg, rgba(0,0,0,.12), rgba(0,0,0,.03) 55%, rgba(0,0,0,.16)),
		linear-gradient(180deg, rgba(0,0,0,0) 47%, rgba(0,0,0,.72) 72%, #000 100%);
}

.cj-hero-lead > div {
	padding: 0 20px 20px;
	background: none;
}

.cj-hero-lead .cj-badge {
	margin-bottom: 8px;
}

.cj-hero-lead h1 {
	max-width: 720px;
	font-family: Arial, "Helvetica Neue", sans-serif;
	font-size: clamp(31px, 3.25vw, 47px);
	font-weight: 950;
	line-height: 1.04;
	letter-spacing: -.03em;
	text-transform: uppercase;
}

.cj-red-word {
	color: #e50914 !important;
}

.cj-hero-lead p {
	max-width: 710px;
	margin-top: 9px;
	color: rgba(255,255,255,.86) !important;
	font-size: 14px;
	line-height: 1.45;
}

.cj-hero-mini {
	min-height: 199px;
	border-radius: 4px;
}

.cj-hero-mini h2 {
	font-size: 18px;
	line-height: 1.14;
}

.cj-trending-box {
	border-radius: 4px;
}

.cj-category-icons {
	padding: 15px 0 13px;
}

.cj-category-icons .grid-container {
	width: min(100% - 80px, 1040px);
	gap: 22px;
}

.cj-category-icons span {
	width: 58px;
	height: 58px;
	border: 2px solid #111;
	background: #ffffff;
	color: #111111;
	box-shadow: 0 0 0 3px #e50914;
}

.cj-category-icons svg {
	width: 30px;
	height: 30px;
}

.cj-section-heading {
	border-bottom: 2px solid #111;
}

.cj-section-heading h2::before,
.cj-trending-box h2::before {
	width: 5px;
	background: #e50914;
}

.cj-card {
	border-radius: 4px;
}

.cj-card-media {
	aspect-ratio: 1.48 / 1;
}

.cj-card-body {
	margin-top: -82px;
	min-height: 138px;
	padding: 11px;
}

.cj-card h3 {
	font-size: 15px;
	line-height: 1.13;
}

@media (max-width: 1100px) {
	.cj-header-inner {
		grid-template-columns: 1fr auto;
	}

	.cj-header .cj-nav a {
		padding: 0 14px;
	}

	.cj-news-hero-grid {
		grid-template-columns: minmax(0, 1fr) minmax(290px, .54fr);
	}
}

@media (max-width: 768px) {
	.cj-header-inner {
		grid-template-areas:
			"brand toggle"
			"nav nav";
		min-height: 74px;
		padding-top: 9px;
	}

	.cj-header-actions {
		grid-area: toggle;
	}

	.cj-newsletter-link,
	.cj-watch-live {
		display: none;
	}

	.cj-nav {
		margin-top: 8px;
	}

	.cj-nav ul {
		position: absolute;
		top: 100%;
		left: 14px;
		right: 14px;
		width: auto;
	}

	.cj-news-hero-grid {
		grid-template-columns: 1fr;
	}

	.cj-hero-lead {
		min-height: 370px;
	}

	.cj-category-icons .grid-container {
		width: min(100% - 28px, 680px);
		grid-template-columns: repeat(4, minmax(0,1fr));
	}
}

/* TruthRoute v2.6 emergency cleanup: remove bad side badge, fix hero scale and stack gap. */
.cj-news-hero-grid {
	align-items: stretch;
}

.cj-hero-lead {
	display: grid !important;
	align-content: end !important;
	min-height: 440px;
	padding: 0 !important;
}

.cj-hero-lead > img {
	z-index: 0;
}

.cj-hero-lead > div {
	position: relative;
	z-index: 3;
	display: block;
	width: 100%;
	padding: 0 20px 18px;
	background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.42) 8%, rgba(0,0,0,.92) 44%, #000 100%);
}

.cj-hero-lead .cj-badge {
	position: relative !important;
	left: auto !important;
	right: auto !important;
	top: auto !important;
	bottom: auto !important;
	display: inline-flex !important;
	width: auto !important;
	height: auto !important;
	min-width: 0 !important;
	margin: 0 0 8px !important;
	padding: 5px 8px !important;
	border-radius: 2px !important;
	writing-mode: horizontal-tb !important;
	transform: none !important;
}

.cj-hero-lead h1 {
	max-width: 680px;
	margin: 0;
	font-size: clamp(28px, 2.95vw, 39px) !important;
	line-height: 1.06 !important;
	letter-spacing: -.025em;
}

.cj-red-word {
	color: #e50914 !important;
	-webkit-text-stroke: 0 !important;
}

.cj-hero-lead p {
	max-width: 680px;
	font-size: 13px;
}

.cj-hero-stack {
	display: grid;
	grid-template-rows: 1fr 1fr;
	gap: 10px;
	min-height: 440px;
}

.cj-hero-mini {
	min-height: 0 !important;
	height: auto;
	margin: 0 !important;
}

.cj-trending-box {
	min-height: 440px;
}

@media (max-width: 1100px) {
	.cj-hero-stack {
		min-height: 380px;
	}

	.cj-trending-box {
		min-height: 0;
	}
}

@media (max-width: 768px) {
	.cj-hero-lead {
		min-height: 390px;
	}

	.cj-hero-stack {
		min-height: 0;
		grid-template-rows: none;
	}

	.cj-hero-mini {
		min-height: 210px !important;
	}
}

