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