:root {
	--nic-black: #050b0c;
	--nic-ink: #101513;
	--nic-muted: #68706c;
	--nic-white: #ffffff;
	--nic-paper: #fbfcf9;
	--nic-line: #dfe4dc;
	--nic-lime: #b7d837;
	--nic-lime-dark: #78921d;
	--nic-orange: #ef620d;
	--nic-orange-dark: #c74700;
	--nic-teal: #04282a;
	--nic-shadow: 0 18px 60px rgba(0, 0, 0, 0.23);
	--nic-radius: 14px;
	--nic-content: 1260px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--nic-ink);
	background-color: #020808;
	font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

body.nic-cinematic-skin {
	background-image:
		linear-gradient(90deg, rgba(1, 7, 8, 0.05), rgba(1, 7, 8, 0.26) 22%, rgba(1, 7, 8, 0.94) 39%, rgba(1, 7, 8, 0.94) 61%, rgba(1, 7, 8, 0.26) 78%, rgba(1, 7, 8, 0.05)),
		url("../images/nature-skin-wide.webp");
	background-position: center top, center top;
	background-repeat: no-repeat, repeat-y;
	background-size: 100% 100%, max(1600px, 100vw) auto;
	background-attachment: scroll;
}

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

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

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

a:hover {
	color: var(--nic-orange);
}

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

button,
.button {
	cursor: pointer;
}

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

.screen-reader-text:focus {
	z-index: 100000;
	top: 8px;
	left: 8px;
	width: auto;
	height: auto;
	padding: 12px 16px;
	clip: auto;
	color: #111;
	background: #fff;
	font-weight: 800;
}

.site-shell {
	min-height: 100vh;
}

.site-header {
	position: sticky;
	z-index: 100;
	top: 0;
	color: #fff;
	background: rgba(2, 8, 8, 0.9);
	border-bottom: 1px solid rgba(183, 216, 55, 0.1);
	backdrop-filter: blur(16px);
}

.header-inner {
	display: grid;
	grid-template-columns: minmax(240px, 1fr) auto minmax(150px, 1fr);
	align-items: center;
	gap: 24px;
	width: min(calc(100% - 44px), var(--nic-content));
	min-height: 92px;
	margin: 0 auto;
}

.site-branding {
	min-width: 0;
}

.custom-logo-link {
	display: inline-flex;
	align-items: center;
}

.custom-logo {
	width: auto;
	max-width: 285px;
	max-height: 66px;
}

.brand-mark {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	color: #fff;
}

.brand-mark:hover {
	color: #fff;
}

.brand-mark svg {
	width: 42px;
	height: 52px;
	flex: 0 0 auto;
}

.brand-mark svg path:first-child {
	fill: var(--nic-lime);
	stroke: #729316;
	stroke-width: 1.5;
}

.brand-mark svg path:last-child {
	fill: none;
	stroke: #102109;
	stroke-linecap: round;
	stroke-width: 2.3;
}

.brand-mark span {
	display: flex;
	flex-direction: column;
	line-height: 1.08;
}

.brand-mark strong {
	font-size: 24px;
	letter-spacing: -0.7px;
}

.brand-mark small {
	margin-top: 6px;
	color: var(--nic-lime);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.1px;
}

.main-navigation ul {
	display: flex;
	align-items: center;
	gap: 27px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.main-navigation a {
	display: block;
	padding: 34px 0 31px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 13px;
	font-weight: 750;
	white-space: nowrap;
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a {
	color: var(--nic-orange);
}

.header-actions {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 15px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 48px;
	padding: 12px 19px;
	border: 1px solid transparent;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.1;
	transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.button:hover {
	color: #fff;
	transform: translateY(-2px);
}

.button-small {
	min-height: 42px;
	padding: 10px 16px;
	font-size: 13px;
}

.button-orange {
	color: #fff;
	background: linear-gradient(135deg, #f77916, var(--nic-orange));
	box-shadow: 0 8px 22px rgba(239, 98, 13, 0.22);
}

.button-orange:hover {
	background: var(--nic-orange-dark);
}

.button-outline {
	color: #fff;
	background: rgba(255, 255, 255, 0.025);
	border-color: rgba(255, 255, 255, 0.5);
}

.button-outline:hover {
	border-color: var(--nic-lime);
}

.search-toggle,
.menu-toggle {
	display: inline-grid;
	place-items: center;
	padding: 8px;
	color: #fff;
	background: transparent;
	border: 0;
}

.search-toggle svg {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-width: 1.8;
}

.menu-toggle {
	display: none;
	gap: 4px;
}

.menu-toggle > span:not(.screen-reader-text) {
	width: 25px;
	height: 2px;
	background: #fff;
}

.header-search {
	width: min(calc(100% - 44px), var(--nic-content));
	padding: 0 0 18px;
	margin: 0 auto;
}

.header-search .search-form {
	max-width: 540px;
	margin-left: auto;
}

.search-form {
	display: flex;
}

.search-form label {
	display: block;
	flex: 1;
}

.search-field {
	width: 100%;
	height: 48px;
	padding: 0 16px;
	color: #151a18;
	background: #fff;
	border: 1px solid #cfd7cf;
	border-radius: 6px 0 0 6px;
	outline: 0;
}

.search-field:focus {
	border-color: var(--nic-lime-dark);
	box-shadow: 0 0 0 3px rgba(183, 216, 55, 0.2);
}

.search-submit {
	padding: 0 20px;
	color: #fff;
	background: var(--nic-orange);
	border: 0;
	border-radius: 0 6px 6px 0;
	font-weight: 800;
}

.hero-section {
	display: grid;
	grid-template-columns: minmax(370px, 0.9fr) minmax(0, 1.2fr);
	align-items: center;
	gap: clamp(30px, 5vw, 76px);
	width: min(calc(100% - 44px), var(--nic-content));
	min-height: 610px;
	padding: 56px 22px 50px;
	margin: 0 auto;
	color: #fff;
}

.hero-copy {
	padding-left: 10px;
}

.hero-copy h1 {
	display: flex;
	flex-direction: column;
	margin: 0;
	font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
	font-size: clamp(54px, 4vw, 74px);
	font-weight: 900;
	letter-spacing: -0.8px;
	line-height: 1;
	text-transform: uppercase;
	text-wrap: balance;
}

.hero-copy h1 > span,
.hero-copy h1 > em {
	white-space: nowrap;
}

.hero-copy h1 em {
	display: inline-block;
	margin: 11px 0 13px;
	color: var(--nic-lime);
	font-family: "Arial Black", Impact, sans-serif;
	font-size: 0.95em;
	font-style: italic;
	letter-spacing: -4px;
	text-shadow: 4px 4px 0 rgba(66, 87, 10, 0.55);
	transform: skew(-5deg) rotate(-1deg);
}

.hero-copy > p {
	max-width: 520px;
	margin: 25px 0 27px;
	color: rgba(255, 255, 255, 0.86);
	font-size: 17px;
	line-height: 1.7;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 13px;
}

.featured-story {
	position: relative;
	min-height: 485px;
	overflow: hidden;
	background: #0b1812;
	border: 1px solid rgba(183, 216, 55, 0.56);
	border-radius: 14px;
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.featured-story::after {
	position: absolute;
	inset: 38% 0 0;
	content: "";
	background: linear-gradient(180deg, transparent, rgba(1, 7, 6, 0.95));
	pointer-events: none;
}

.featured-story-image,
.featured-story-image img,
.featured-story > .nic-image-fallback {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.featured-story-image img {
	object-fit: cover;
	transition: transform 0.6s ease;
}

.featured-story:hover .featured-story-image img {
	transform: scale(1.035);
}

.featured-label {
	position: absolute;
	z-index: 2;
	top: 26px;
	left: 26px;
	padding: 6px 9px;
	color: #071006;
	background: var(--nic-lime);
	border-radius: 4px;
	font-size: 10px;
	font-weight: 950;
	text-transform: uppercase;
}

.featured-overlay {
	position: absolute;
	z-index: 2;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 33px;
}

.article-category {
	display: inline-block;
	color: var(--nic-lime-dark);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.25px;
	text-transform: uppercase;
}

.featured-overlay .article-category {
	color: var(--nic-lime);
}

.featured-overlay h2 {
	max-width: 670px;
	margin: 10px 0 13px;
	font-size: clamp(27px, 3vw, 40px);
	line-height: 1.16;
	text-wrap: balance;
}

.featured-overlay h2 a {
	color: #fff;
}

.featured-overlay h2 a:hover {
	color: var(--nic-lime);
}

.article-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 7px;
	color: #7b817e;
	font-size: 11px;
}

.featured-overlay .article-meta {
	color: rgba(255, 255, 255, 0.76);
}

.content-panel {
	width: min(calc(100% - 44px), var(--nic-content));
	margin: 0 auto;
	background: var(--nic-paper);
	border-radius: var(--nic-radius);
	box-shadow: var(--nic-shadow);
}

.category-rail {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	padding: 38px 26px 31px;
	border-bottom: 1px solid var(--nic-line);
}

.category-item {
	display: flex;
	align-items: center;
	flex-direction: column;
	padding: 0 16px;
	text-align: center;
	border-right: 1px solid #edf0eb;
}

.category-item:last-child {
	border-right: 0;
}

.category-image {
	position: relative;
	display: grid;
	place-items: center;
	width: 106px;
	height: 106px;
	overflow: hidden;
	color: #fff;
	background:
		radial-gradient(circle at 35% 25%, rgba(183, 216, 55, 0.75), transparent 26%),
		linear-gradient(145deg, #062d2d, #08110d);
	background-position: center;
	background-size: cover;
	border: 5px solid #fff;
	border-radius: 50%;
	box-shadow: 0 5px 18px rgba(18, 35, 25, 0.18);
	transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-image::after {
	position: absolute;
	inset: 0;
	content: "";
	border: 1px solid rgba(183, 216, 55, 0.42);
	border-radius: inherit;
}

.category-image span {
	font-size: 45px;
	filter: saturate(1.15);
}

.category-item:hover .category-image {
	box-shadow: 0 8px 24px rgba(95, 119, 20, 0.28);
	transform: translateY(-4px);
}

.category-item strong {
	margin-top: 13px;
	font-size: 14px;
}

.category-item small {
	max-width: 135px;
	margin-top: 5px;
	color: #606762;
	font-size: 11px;
	line-height: 1.55;
}

.latest-section {
	padding: 28px 30px 35px;
}

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

.section-heading h2,
.trending-heading h2 {
	margin: 0;
	font-size: 18px;
	font-weight: 950;
	letter-spacing: 0.2px;
	text-transform: uppercase;
}

.section-heading a {
	color: var(--nic-orange);
	font-size: 12px;
	font-weight: 850;
}

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

.article-card {
	overflow: hidden;
	background: #fff;
	border: 1px solid #dde2dc;
	border-radius: 9px;
	box-shadow: 0 5px 14px rgba(24, 38, 29, 0.06);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.article-card:hover {
	box-shadow: 0 12px 30px rgba(24, 38, 29, 0.13);
	transform: translateY(-4px);
}

.article-card-image {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #0b1b18;
}

.article-card-image img,
.article-card-image .nic-image-fallback {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s ease;
}

.article-card:hover .article-card-image img {
	transform: scale(1.045);
}

.article-card-body {
	padding: 17px 14px 19px;
}

.article-card h3 {
	margin: 7px 0 8px;
	font-size: 16px;
	line-height: 1.3;
	text-wrap: balance;
}

.article-card h3 a:hover {
	color: var(--nic-orange);
}

.article-card p {
	margin: 12px 0 0;
	color: #4f5752;
	font-size: 12px;
	line-height: 1.65;
}

.nic-image-fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 9px;
	color: #d8eb8e;
	background:
		radial-gradient(circle at 28% 18%, rgba(31, 221, 192, 0.3), transparent 20%),
		radial-gradient(circle at 80% 72%, rgba(183, 216, 55, 0.27), transparent 25%),
		linear-gradient(145deg, #072528, #070d0c);
	text-align: center;
}

.nic-image-fallback span {
	font-size: 48px;
}

.nic-image-fallback strong {
	padding: 0 20px;
	font-size: 13px;
}

.trending-section {
	padding: 28px 30px 33px;
	border-top: 1px solid var(--nic-line);
}

.trending-heading {
	display: flex;
	align-items: center;
	gap: 11px;
	margin-bottom: 22px;
}

.trending-heading > span {
	color: var(--nic-orange);
	font-size: 24px;
	font-weight: 950;
}

.trending-list {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 18px;
}

.trending-item {
	position: relative;
	display: grid;
	grid-template-columns: 58px 1fr;
	align-items: center;
	gap: 11px;
	min-width: 0;
}

.trending-image {
	width: 58px;
	height: 58px;
	overflow: hidden;
	background: #0b1b18;
	border-radius: 6px;
}

.trending-image img,
.trending-image .nic-image-fallback {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.trending-image .nic-image-fallback span {
	font-size: 18px;
}

.trending-image .nic-image-fallback strong {
	display: none;
}

.trending-rank {
	position: absolute;
	bottom: -5px;
	left: -5px;
	display: grid;
	place-items: center;
	width: 20px;
	height: 20px;
	color: #fff;
	background: var(--nic-lime-dark);
	border: 2px solid #fff;
	border-radius: 50%;
	font-size: 9px;
	font-weight: 900;
}

.trending-item h3 {
	display: -webkit-box;
	margin: 0 0 5px;
	overflow: hidden;
	font-size: 11px;
	line-height: 1.35;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.trending-item div > span {
	color: #6f7772;
	font-size: 9px;
}

.newsletter-section {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 35px;
	min-height: 230px;
	overflow: hidden;
	padding: 40px 42px;
	margin: 0 14px 14px;
	color: #fff;
	background:
		linear-gradient(90deg, rgba(2, 32, 33, 0.99), rgba(3, 33, 34, 0.72)),
		radial-gradient(circle at 93% 40%, #647b22, transparent 24%),
		#032628;
	border-radius: 10px;
}

.newsletter-section::after {
	position: absolute;
	right: -35px;
	width: 280px;
	height: 280px;
	content: "";
	opacity: 0.68;
	background:
		repeating-radial-gradient(circle at center, transparent 0 8px, rgba(183, 216, 55, 0.25) 9px 11px, transparent 12px 19px),
		radial-gradient(circle, var(--nic-lime), transparent 62%);
	border-radius: 50%;
	filter: blur(0.2px);
}

.newsletter-copy,
.newsletter-form-wrap {
	position: relative;
	z-index: 2;
}

.newsletter-copy h2 {
	max-width: 520px;
	margin: 0 0 10px;
	font-size: clamp(29px, 3vw, 40px);
	line-height: 1.1;
	text-wrap: balance;
}

.newsletter-copy p {
	max-width: 520px;
	margin: 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 13px;
}

.newsletter-form {
	display: flex;
	align-items: stretch;
	gap: 10px;
}

.newsletter-form input[type="email"] {
	min-width: 0;
	flex: 1;
	padding: 0 16px;
	color: #111;
	background: #fff;
	border: 0;
	border-radius: 5px;
	outline: 0;
}

.newsletter-form input[type="email"]:focus {
	box-shadow: 0 0 0 4px rgba(183, 216, 55, 0.3);
}

.newsletter-form-wrap > small {
	display: block;
	margin-top: 8px;
	color: rgba(255, 255, 255, 0.64);
	font-size: 9px;
}

.form-notice {
	margin: 0 0 9px;
	font-size: 12px;
	font-weight: 750;
}

.form-success {
	color: #dcef92;
}

.form-error {
	color: #ffb090;
}

.site-footer {
	width: min(calc(100% - 44px), var(--nic-content));
	padding: 53px 0 18px;
	margin: 0 auto;
	color: rgba(255, 255, 255, 0.74);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.45fr 0.65fr 0.65fr 1.15fr;
	gap: 60px;
	padding: 0 5px 42px;
}

.footer-brand .brand-mark {
	margin-bottom: 20px;
}

.footer-brand .brand-mark strong {
	font-size: 22px;
}

.footer-brand p {
	max-width: 330px;
	margin: 0;
	font-size: 12px;
	line-height: 1.65;
}

.site-footer h2 {
	margin: 7px 0 19px;
	color: #fff;
	font-size: 12px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

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

.footer-links li {
	margin-bottom: 10px;
	font-size: 12px;
}

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

.footer-tags a {
	padding: 5px 9px;
	color: rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(183, 216, 55, 0.35);
	border-radius: 4px;
	font-size: 10px;
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	padding: 17px 5px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.11);
	font-size: 10px;
}

.footer-bottom p {
	margin: 0;
}

/* Interior templates */
.inner-main {
	padding: 56px 0 10px;
}

.archive-panel,
.page-panel,
.single-panel {
	padding: clamp(30px, 5vw, 66px);
}

.page-header {
	margin-bottom: 35px;
}

.page-kicker {
	margin: 0 0 5px;
	color: var(--nic-lime-dark);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.7px;
	text-transform: uppercase;
}

.page-header h1 {
	margin: 0;
	font-size: clamp(38px, 5vw, 66px);
	letter-spacing: -2px;
	line-height: 1.05;
}

.archive-description {
	max-width: 720px;
	color: var(--nic-muted);
}

.content-with-sidebar {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 270px;
	gap: 45px;
}

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

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

.all-articles-header {
	max-width: 880px;
	margin-right: auto;
	margin-bottom: 28px;
	margin-left: auto;
	text-align: center;
}

.all-articles-header > p:not(.page-kicker) {
	max-width: 720px;
	margin: 17px auto 0;
	color: var(--nic-muted);
	font-size: 16px;
}

.archive-summary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 8px 13px;
	margin-top: 20px;
	color: #5f675f;
	background: #f0f4e2;
	border: 1px solid #dce5bc;
	border-radius: 999px;
	font-size: 11px;
}

.archive-summary strong {
	color: var(--nic-lime-dark);
}

.archive-summary strong::before {
	margin-right: 10px;
	color: #b8c0b0;
	content: "•";
}

.archive-category-filters {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	padding: 16px;
	margin-bottom: 30px;
	background: #f3f5ef;
	border: 1px solid var(--nic-line);
	border-radius: 9px;
}

.archive-category-filters a {
	padding: 8px 14px;
	color: #49514c;
	background: #fff;
	border: 1px solid #dce2da;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 800;
}

.archive-category-filters a:hover,
.archive-category-filters .is-current {
	color: #fff;
	background: var(--nic-orange);
	border-color: var(--nic-orange);
}

.all-articles-grid {
	gap: 24px;
}

.sidebar {
	min-width: 0;
}

.nic-widget {
	padding: 23px;
	margin-bottom: 20px;
	background: #fff;
	border: 1px solid var(--nic-line);
	border-radius: 9px;
}

.nic-widget .widget-title {
	margin: 0 0 15px;
	font-size: 16px;
}

.nic-widget ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.nic-widget li {
	padding: 8px 0;
	border-bottom: 1px solid #edf0eb;
	font-size: 13px;
}

.nic-widget li:last-child {
	border-bottom: 0;
}

.nic-widget select,
.nic-widget input {
	max-width: 100%;
}

.sidebar-newsletter {
	color: #fff;
	background: var(--nic-teal);
}

.sidebar-newsletter > span {
	font-size: 40px;
}

.sidebar-newsletter p {
	color: rgba(255, 255, 255, 0.75);
	font-size: 13px;
}

.single-hero {
	width: min(calc(100% - 44px), 980px);
	padding: 45px 0 38px;
	margin: 0 auto;
	color: #fff;
	text-align: center;
}

.single-hero .article-category {
	color: var(--nic-lime);
}

.single-hero h1 {
	margin: 12px auto 17px;
	font-size: clamp(42px, 6vw, 74px);
	letter-spacing: -2.6px;
	line-height: 1.03;
	text-wrap: balance;
}

.single-deck {
	max-width: 780px;
	margin: 0 auto 24px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 19px;
	line-height: 1.55;
}

.single-byline {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
}

.single-byline img {
	border-radius: 50%;
}

.single-byline > div {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	font-size: 12px;
}

.single-byline > div > span:last-child {
	color: rgba(255, 255, 255, 0.62);
}

.single-featured-image {
	width: min(calc(100% - 44px), 1080px);
	margin: 0 auto -45px;
}

.single-featured-image img {
	width: 100%;
	max-height: 680px;
	object-fit: cover;
	border: 1px solid rgba(183, 216, 55, 0.42);
	border-radius: 14px;
	box-shadow: var(--nic-shadow);
}

.single-featured-image figcaption {
	margin: 8px 15px 0;
	color: rgba(255, 255, 255, 0.6);
	font-size: 11px;
	text-align: center;
}

.single-featured-image + .single-panel {
	padding-top: 90px;
}

.entry-content {
	min-width: 0;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 18px;
	line-height: 1.82;
}

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

.entry-content h2,
.entry-content h3,
.entry-content h4 {
	font-family: Inter, ui-sans-serif, sans-serif;
	line-height: 1.2;
}

.entry-content h2 {
	margin: 1.35em 0 0.55em;
	font-size: 33px;
}

.entry-content h3 {
	margin: 1.3em 0 0.5em;
	font-size: 25px;
}

.entry-content a {
	color: var(--nic-orange-dark);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.entry-content blockquote {
	padding: 4px 0 4px 25px;
	margin: 30px 0;
	border-left: 5px solid var(--nic-lime);
	font-size: 1.15em;
	font-style: italic;
}

.entry-content figure,
.entry-content img {
	border-radius: 8px;
}

.entry-content table {
	width: 100%;
	border-collapse: collapse;
}

.entry-content th,
.entry-content td {
	padding: 11px;
	border: 1px solid var(--nic-line);
	text-align: left;
}

.entry-content th {
	background: #eef4d8;
	font-family: Inter, ui-sans-serif, sans-serif;
	font-size: 14px;
}

.post-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding-top: 28px;
	margin-top: 36px;
	border-top: 1px solid var(--nic-line);
	font-family: Inter, ui-sans-serif, sans-serif;
}

.post-tags a {
	padding: 6px 11px;
	color: #44520f;
	background: #edf4d1;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 800;
	text-decoration: none;
}

.post-navigation {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 25px;
	padding: 30px 0;
	margin-top: 45px;
	border-top: 1px solid var(--nic-line);
	border-bottom: 1px solid var(--nic-line);
}

.post-navigation > div:last-child {
	text-align: right;
}

.post-navigation span {
	display: block;
	margin-bottom: 5px;
	color: var(--nic-lime-dark);
	font-size: 10px;
	font-weight: 900;
	letter-spacing: 0.4px;
	text-transform: uppercase;
}

.post-navigation a {
	font-weight: 800;
}

.comments-area {
	max-width: 800px;
	margin: 50px auto 0;
}

.comments-title,
.comment-reply-title {
	font-size: 26px;
}

.comment-list {
	padding: 0;
	list-style: none;
}

.comment-list .children {
	list-style: none;
}

.comment-body {
	padding: 20px 0;
	border-bottom: 1px solid var(--nic-line);
}

.comment-author {
	display: flex;
	align-items: center;
	gap: 10px;
}

.comment-author img {
	border-radius: 50%;
}

.comment-metadata {
	margin: 6px 0 10px 58px;
	color: var(--nic-muted);
	font-size: 11px;
}

.comment-form label {
	display: block;
	font-size: 12px;
	font-weight: 800;
}

.comment-form input:not([type="checkbox"]),
.comment-form textarea {
	width: 100%;
	padding: 11px 12px;
	border: 1px solid #cad2ca;
	border-radius: 5px;
}

.comment-form .submit {
	padding: 12px 20px;
	color: #fff;
	background: var(--nic-orange);
	border: 0;
	border-radius: 5px;
	font-weight: 800;
}

.navigation.pagination {
	margin-top: 35px;
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}

.page-numbers {
	display: grid;
	place-items: center;
	min-width: 38px;
	height: 38px;
	padding: 0 11px;
	background: #fff;
	border: 1px solid var(--nic-line);
	border-radius: 5px;
	font-size: 12px;
	font-weight: 800;
}

.page-numbers.current {
	color: #fff;
	background: var(--nic-orange);
	border-color: var(--nic-orange);
}

.empty-state {
	grid-column: 1 / -1;
	padding: 55px 25px;
	text-align: center;
}

.empty-state-icon {
	font-size: 58px;
}

.empty-state h2 {
	margin-bottom: 4px;
}

.empty-state .search-form {
	max-width: 550px;
	margin: 25px auto 0;
}

.page-featured-image {
	margin-bottom: 35px;
}

.page-featured-image img {
	width: 100%;
	max-height: 540px;
	object-fit: cover;
	border-radius: 10px;
}

.error-panel {
	padding: 90px 25px;
	text-align: center;
}

.error-code {
	display: block;
	color: var(--nic-lime-dark);
	font-family: Impact, sans-serif;
	font-size: 120px;
	line-height: 0.9;
}

.error-panel h1 {
	margin: 20px 0 5px;
	font-size: 38px;
}

.error-panel p {
	color: var(--nic-muted);
}

.error-panel .search-form {
	max-width: 560px;
	margin: 28px auto 18px;
}

/* WordPress alignment helpers */
.alignleft {
	float: left;
	margin: 0 1.5em 1em 0;
}

.alignright {
	float: right;
	margin: 0 0 1em 1.5em;
}

.aligncenter {
	display: block;
	margin-right: auto;
	margin-left: auto;
}

.wp-caption,
.gallery-caption {
	max-width: 100%;
	color: var(--nic-muted);
	font-size: 12px;
}

.bypostauthor {
	outline: 0;
}

.sticky {
	outline: 0;
}

@media (max-width: 1180px) {
	.header-inner {
		grid-template-columns: 230px 1fr auto;
		gap: 16px;
	}

	.main-navigation ul {
		gap: 17px;
	}

	.main-navigation a {
		font-size: 12px;
	}

	.hero-section {
		grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.15fr);
	}

	.category-image {
		width: 88px;
		height: 88px;
	}

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

	.article-grid .article-card:nth-child(n + 7) {
		display: none;
	}

	.article-grid-archive,
	.article-grid-search {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.article-grid-archive .article-card:nth-child(n),
	.article-grid-search .article-card:nth-child(n) {
		display: block;
	}

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

	.trending-item:nth-child(n + 4) {
		display: none;
	}
}

@media (max-width: 940px) {
	body.nic-cinematic-skin {
		background-image:
			linear-gradient(rgba(1, 9, 9, 0.82), rgba(1, 9, 9, 0.9)),
			url("../images/nature-skin.webp");
		background-position: center top, center top;
		background-repeat: no-repeat, no-repeat;
		background-size: 100% 100%, 1600px auto;
	}

	body.admin-bar .site-header {
		top: 46px;
	}

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

	.brand-mark strong {
		font-size: 20px;
	}

	.brand-mark svg {
		width: 34px;
		height: 43px;
	}

	.menu-toggle {
		display: inline-grid;
	}

	.main-navigation {
		position: absolute;
		top: 100%;
		right: 0;
		left: 0;
		display: none;
		padding: 12px 22px 22px;
		background: rgba(2, 8, 8, 0.98);
		border-top: 1px solid rgba(255, 255, 255, 0.08);
	}

	.main-navigation.is-open {
		display: block;
	}

	.main-navigation ul {
		align-items: stretch;
		flex-direction: column;
		gap: 0;
	}

	.main-navigation a {
		padding: 11px 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	}

	.hero-section {
		grid-template-columns: 1fr;
		padding-top: 68px;
	}

	.hero-copy {
		max-width: 650px;
		padding-left: 0;
	}

	.hero-copy h1 {
		font-size: clamp(62px, 11vw, 95px);
	}

	.featured-story {
		min-height: 520px;
	}

	.category-rail {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		row-gap: 28px;
	}

	.category-item:nth-child(3n) {
		border-right: 0;
	}

	.category-item:nth-child(n + 4) {
		padding-top: 25px;
		border-top: 1px solid #edf0eb;
	}

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

	.newsletter-form-wrap {
		max-width: 620px;
	}

	.footer-grid {
		grid-template-columns: 1.3fr 0.7fr 0.7fr;
		gap: 35px;
	}

	.footer-grid > div:last-child {
		grid-column: 1 / -1;
	}

	.content-with-sidebar {
		grid-template-columns: 1fr;
	}

	.sidebar {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 20px;
	}
}

@media (max-width: 680px) {
	:root {
		--nic-radius: 10px;
	}

	body.admin-bar .site-header {
		top: 0;
	}

	.header-inner,
	.hero-section,
	.content-panel,
	.site-footer,
	.single-hero,
	.single-featured-image {
		width: min(calc(100% - 24px), var(--nic-content));
	}

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

	.header-actions .button {
		display: none;
	}

	.header-actions {
		position: absolute;
		right: 62px;
	}

	.brand-mark small {
		display: none;
	}

	.hero-section {
		gap: 40px;
		min-height: 0;
		padding: 54px 4px 38px;
	}

	.hero-copy h1 {
		font-size: clamp(50px, 17vw, 76px);
	}

	.hero-copy h1 em {
		letter-spacing: -2px;
	}

	.hero-copy > p {
		font-size: 15px;
	}

	.hero-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.featured-story {
		min-height: 420px;
	}

	.featured-overlay {
		padding: 23px;
	}

	.featured-overlay h2 {
		font-size: 25px;
	}

	.category-rail {
		display: flex;
		overflow-x: auto;
		padding: 28px 10px;
		scroll-snap-type: x mandatory;
	}

	.category-item,
	.category-item:nth-child(n) {
		min-width: 145px;
		padding: 0 13px;
		border-top: 0;
		border-right: 1px solid #edf0eb;
		scroll-snap-align: start;
	}

	.category-image {
		width: 86px;
		height: 86px;
	}

	.latest-section,
	.trending-section {
		padding: 25px 16px;
	}

	.section-heading {
		align-items: flex-start;
		flex-direction: column;
		gap: 4px;
	}

	.article-grid,
	.article-grid-archive,
	.article-grid-search {
		grid-template-columns: 1fr;
	}

	.article-grid .article-card:nth-child(n + 5) {
		display: none;
	}

	.article-grid-archive .article-card:nth-child(n),
	.article-grid-search .article-card:nth-child(n) {
		display: block;
	}

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

	.trending-list {
		grid-template-columns: 1fr;
	}

	.trending-item:nth-child(n) {
		display: grid;
	}

	.newsletter-section {
		padding: 32px 20px;
		margin: 0 8px 8px;
	}

	.newsletter-form {
		flex-direction: column;
	}

	.newsletter-form input[type="email"] {
		min-height: 48px;
	}

	.footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		padding: 0 5px 30px;
	}

	.footer-brand {
		grid-column: 1 / -1;
	}

	.footer-grid > div:last-child {
		grid-column: 1 / -1;
	}

	.footer-bottom {
		align-items: flex-start;
		flex-direction: column;
		gap: 6px;
	}

	.inner-main {
		padding-top: 28px;
	}

	.archive-panel,
	.page-panel,
	.single-panel {
		padding: 28px 18px;
	}

	.page-header h1,
	.single-hero h1 {
		letter-spacing: -1.5px;
	}

	.single-hero h1 {
		font-size: 42px;
	}

	.single-deck {
		font-size: 16px;
	}

	.single-byline {
		align-items: flex-start;
	}

	.single-featured-image {
		margin-bottom: -20px;
	}

	.single-featured-image + .single-panel {
		padding-top: 55px;
	}

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

	.entry-content h2 {
		font-size: 28px;
	}

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

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

	.post-navigation > div:last-child {
		text-align: left;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}
