:root {
	--nlh-color-primary: #fd5f17;
	--nlh-color-primary-rgb: 253, 95, 23;
	--nlh-color-primary-accessible: #a83a00;
	--nlh-color-secondary: #131e4a;
	--nlh-color-secondary-rgb: 19, 30, 74;
	--nlh-color-accent: #009a00;
	--nlh-color-accent-rgb: 0, 154, 0;
	--nlh-color-text: #1f2933;
	--nlh-color-muted: #64748b;
	--nlh-color-border: #d7dde8;
	--nlh-color-surface: #f5f6f8;
	--nlh-color-background: #ffffff;
	--nlh-topbar-bg: #0f1838;
	--nlh-topbar-text: #ffffff;
	--nlh-color-white: #ffffff;
	--nlh-container: 1200px;
	--nlh-radius: 0;
	--nlh-button-radius: 0;
	--nlh-logo-width: 180px;
	--nlh-footer-bg: #131e4a;
	--nlh-footer-text: #d6dbe8;
	--nlh-hero-slider-overlay: rgba(19, 30, 74, 0.72);
	--nlh-shadow: 0 18px 45px rgba(19, 30, 74, 0.08);
}

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

body {
	margin: 0;
	color: var(--nlh-color-text);
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.7;
	background: var(--nlh-color-background);
}

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

a:hover,
a:focus {
	color: var(--nlh-color-primary);
}

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

.nlh-container {
	width: min(var(--nlh-container), calc(100% - 32px));
	margin-inline: auto;
}

.nlh-container-fluid {
	width: min(100% - 32px, 1600px);
	margin-inline: auto;
}

.nlh-container-narrow {
	--nlh-container: 860px;
}

.nlh-skip-link {
	position: absolute;
	left: 16px;
	top: -80px;
	z-index: 1000;
	padding: 10px 14px;
	background: var(--nlh-color-secondary);
	color: var(--nlh-color-white);
}

.nlh-skip-link:focus {
	top: 16px;
}

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

.nlh-button,
.wp-block-button .wp-block-button__link,
.wp-element-button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	overflow: hidden;
	padding: 11px 22px;
	border: 1px solid var(--nlh-color-primary);
	border-radius: var(--nlh-button-radius);
	background: var(--nlh-color-primary);
	color: var(--nlh-color-white);
	font-weight: 700;
	isolation: isolate;
	line-height: 1.2;
	transition: background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.nlh-button::after,
.wp-block-button .wp-block-button__link::after,
.wp-element-button::after {
	content: "";
	position: absolute;
	inset: -40% -25%;
	background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.34) 50%, transparent 65%);
	pointer-events: none;
	transform: translateX(-120%) skewX(-18deg);
	transition: transform 0.42s ease;
}

.nlh-button:hover,
.nlh-button:focus,
.wp-block-button .wp-block-button__link:hover,
.wp-block-button .wp-block-button__link:focus,
.wp-element-button:hover,
.wp-element-button:focus {
	background: var(--nlh-color-secondary);
	border-color: var(--nlh-color-secondary);
	box-shadow: 0 12px 24px rgba(19, 30, 74, 0.22);
	color: var(--nlh-color-white);
	transform: translateY(-2px);
}

.nlh-button:hover::after,
.nlh-button:focus::after,
.wp-block-button .wp-block-button__link:hover::after,
.wp-block-button .wp-block-button__link:focus::after,
.wp-element-button:hover::after,
.wp-element-button:focus::after {
	transform: translateX(120%) skewX(-18deg);
}

.nlh-button-light {
	background: var(--nlh-color-white);
	border-color: var(--nlh-color-white);
	color: var(--nlh-color-secondary);
}

@media (prefers-reduced-motion: reduce) {
	.nlh-button,
	.wp-block-button .wp-block-button__link,
	.wp-element-button {
		transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	}

	.nlh-button::after,
	.wp-block-button .wp-block-button__link::after,
	.wp-element-button::after {
		display: none;
	}

	.nlh-button:hover,
	.nlh-button:focus,
	.wp-block-button .wp-block-button__link:hover,
	.wp-block-button .wp-block-button__link:focus,
	.wp-element-button:hover,
	.wp-element-button:focus {
		transform: none;
	}
}

.nlh-page-shell {
	padding: 72px 0;
}

.nlh-page-header {
	position: relative;
	overflow: hidden;
	padding: 80px 0 60px;
	background: var(--nlh-page-title-bg, var(--nlh-color-surface));
	color: var(--nlh-page-title-text, var(--nlh-color-secondary));
	text-align: center;
}

.nlh-page-title {
	position: relative;
	z-index: 1;
	margin: 0;
	color: var(--nlh-page-title-text, var(--nlh-color-secondary));
	font-size: clamp(2rem, 4vw, 3.5rem);
	line-height: 1.1;
}

.nlh-page-header--style-a .nlh-page-title::after,
.nlh-page-header--style-b .nlh-page-title::after {
	content: "";
	display: block;
	width: 72px;
	height: 4px;
	margin: 22px auto 0;
	background: var(--nlh-page-title-accent, var(--nlh-color-primary));
}

.nlh-page-header--style-b {
	border-bottom: 4px solid var(--nlh-page-title-accent, var(--nlh-color-primary));
}

.nlh-page-header--style-c {
	background-image: var(--nlh-page-title-image);
	background-position: center;
	background-size: cover;
}

.nlh-page-header--style-c::before {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--nlh-page-title-overlay, rgba(19, 30, 74, 0.72));
}

.nlh-page-header--style-c .nlh-container {
	position: relative;
	z-index: 1;
}

.nlh-page-header--style-c .nlh-page-title {
	max-width: 900px;
	margin: 0 auto;
	text-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
}

.nlh-page-header--style-d {
	background-color: var(--nlh-color-secondary);
	background-image:
		linear-gradient(135deg, rgba(var(--nlh-color-secondary-rgb), 0.86) 0%, rgba(var(--nlh-color-secondary-rgb), 0.96) 100%),
		var(--nlh-page-title-image, none);
	background-position: center;
	background-size: cover;
	color: #fff;
}

.nlh-page-header--style-d::before,
.nlh-page-header--style-d::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
}

.nlh-page-header--style-d::before {
	top: -300px;
	right: -60px;
	width: 600px;
	height: 600px;
	background: rgba(var(--nlh-color-primary-rgb), 0.1);
}

.nlh-page-header--style-d::after {
	bottom: -120px;
	left: -48px;
	width: 400px;
	height: 400px;
	background: rgba(var(--nlh-color-accent-rgb), 0.1);
}

.nlh-page-header--style-d .nlh-container {
	position: relative;
	z-index: 1;
}

.nlh-page-header--style-d .nlh-page-title {
	color: #fff;
	font-size: clamp(2.25rem, 4vw, 3rem);
	font-weight: 800;
	line-height: 1.2;
}

.nlh-page-meta {
	position: relative;
	z-index: 1;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 24px;
	margin-top: 25px;
	color: var(--nlh-color-muted);
	font-size: 0.875rem;
}

.nlh-page-meta svg {
	width: 16px;
	height: 16px;
	fill: var(--nlh-color-primary);
}

.nlh-page-meta a {
	color: var(--nlh-color-secondary);
	text-decoration: none;
	transition: color 0.2s ease;
}

.nlh-page-meta a:hover,
.nlh-page-meta a:focus {
	color: var(--nlh-color-primary);
}

.nlh-page-meta .separator {
	color: var(--nlh-color-muted);
	margin: 0 5px;
}

.nlh-page-meta .current {
	color: var(--nlh-color-muted);
}

.nlh-page-header--style-b .nlh-page-meta,
.nlh-page-header--style-c .nlh-page-meta,
.nlh-page-header--style-d .nlh-page-meta {
	color: rgba(255, 255, 255, 0.9);
}

.nlh-page-header--style-b .nlh-page-meta a,
.nlh-page-header--style-c .nlh-page-meta a,
.nlh-page-header--style-d .nlh-page-meta a {
	color: rgba(255, 255, 255, 0.9);
}

.nlh-page-header--style-b .nlh-page-meta .separator,
.nlh-page-header--style-c .nlh-page-meta .separator,
.nlh-page-header--style-d .nlh-page-meta .separator {
	color: rgba(255, 255, 255, 0.5);
}

.nlh-page-header--style-b .nlh-page-meta .current,
.nlh-page-header--style-c .nlh-page-meta .current,
.nlh-page-header--style-d .nlh-page-meta .current {
	color: rgba(255, 255, 255, 0.72);
}

.nlh-archive-page-header .nlh-archive-description {
	position: relative;
	z-index: 1;
	max-width: 760px;
	margin: 22px auto 0;
	color: var(--nlh-page-title-text, var(--nlh-color-muted));
	font-size: 1.05rem;
	line-height: 1.7;
}

.nlh-page-header--style-b .nlh-archive-description,
.nlh-page-header--style-c .nlh-archive-description,
.nlh-page-header--style-d .nlh-archive-description {
	color: rgba(255, 255, 255, 0.82);
}

.nlh-archive-page-header .nlh-archive-description > :last-child {
	margin-bottom: 0;
}

@media (max-width: 991px) {
	.nlh-page-header {
		padding: 60px 0 40px;
	}
}

@media (max-width: 767px) {
	.nlh-page-header {
		padding: 40px 0 30px;
	}

	.nlh-page-header--style-d .nlh-page-title {
		font-size: 1.75rem;
	}
}

.nlh-single-hero {
	position: relative;
	overflow: hidden;
	padding: 76px 0 64px;
	border-bottom: 1px solid var(--nlh-color-border);
	background: linear-gradient(90deg, var(--nlh-color-surface) 0%, var(--nlh-color-white) 100%);
}

.nlh-single-hero::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 5px;
	background: var(--nlh-color-primary);
}

.nlh-single-page-header {
	padding: 104px 0 84px;
}

.nlh-single-kicker {
	display: inline-flex;
	margin: 0 0 18px;
	border-left: 3px solid var(--nlh-color-primary);
	padding-left: 12px;
	color: var(--nlh-color-primary);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

.nlh-single-page-header .nlh-single-kicker {
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	padding: 8px 14px;
	border: 1px solid rgba(255, 255, 255, 0.32);
	border-left: 1px solid rgba(255, 255, 255, 0.32);
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
}

.nlh-single-page-header .nlh-single-kicker a {
	color: inherit;
}

.nlh-single-kicker a:hover,
.nlh-single-kicker a:focus {
	color: var(--nlh-color-secondary);
}

.nlh-single-page-header .nlh-single-kicker a:hover,
.nlh-single-page-header .nlh-single-kicker a:focus {
	color: #fff;
	text-decoration: underline;
	text-underline-offset: 0.22em;
}

.nlh-single-title {
	margin: 0;
	color: var(--nlh-color-secondary);
	font-size: clamp(2.25rem, 5vw, 4.5rem);
	line-height: 1.04;
}

.nlh-single-excerpt {
	max-width: 720px;
	margin: 22px 0 0;
	color: var(--nlh-color-muted);
	font-size: 1.13rem;
	line-height: 1.7;
}

.nlh-single-page-header .nlh-single-excerpt {
	max-width: 760px;
	margin: 24px auto 0;
	color: rgba(255, 255, 255, 0.86);
	text-align: center;
}

.nlh-entry-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 24px;
	margin-top: 22px;
	color: var(--nlh-color-muted);
	font-size: 0.94rem;
}

.nlh-single-page-header .nlh-entry-meta {
	justify-content: center;
	color: rgba(255, 255, 255, 0.82);
}

.nlh-entry-meta span {
	position: relative;
	display: inline-flex;
	align-items: center;
}

.nlh-entry-meta span + span::before {
	content: "";
	width: 6px;
	height: 6px;
	margin-right: 24px;
	background: var(--nlh-color-primary);
}

.nlh-single-page-header .nlh-entry-meta span + span::before {
	background: var(--nlh-page-title-accent, var(--nlh-color-primary));
}

.nlh-featured-image {
	margin-top: 48px;
	margin-bottom: 0;
}

.nlh-featured-image img {
	display: block;
	width: 100%;
	max-height: 560px;
	object-fit: cover;
	border-radius: var(--nlh-radius);
}

.nlh-single-body {
	padding: 56px 0 76px;
}

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

.nlh-page .nlh-entry-content > :where(:not(.alignfull)),
.nlh-front-page-content > :where(:not(.alignfull)) {
	width: min(var(--nlh-container), calc(100% - 32px));
	max-width: none;
	margin-inline: auto;
}

.nlh-page .nlh-entry-content > .alignwide,
.nlh-front-page-content > .alignwide {
	width: min(1400px, calc(100% - 32px));
}

.nlh-page .nlh-entry-content > .alignfull,
.nlh-front-page-content > .alignfull {
	width: 100%;
	max-width: none;
	margin-inline: 0;
}

.nlh-entry-content > *:last-child {
	margin-bottom: 0;
}

.nlh-single .nlh-entry-content {
	color: var(--nlh-color-text);
	font-size: 1.06rem;
	line-height: 1.82;
}

.nlh-single .nlh-entry-content > * {
	margin-bottom: 1.35em;
}

.nlh-single .nlh-entry-content h2,
.nlh-single .nlh-entry-content h3,
.nlh-single .nlh-entry-content h4,
.nlh-single .nlh-entry-content h5,
.nlh-single .nlh-entry-content h6 {
	margin: 1.75em 0 0.65em;
	color: var(--nlh-color-secondary);
	line-height: 1.22;
}

.nlh-single .nlh-entry-content h2 {
	padding-top: 18px;
	border-top: 1px solid var(--nlh-color-border);
	font-size: clamp(1.75rem, 3vw, 2.4rem);
}

.nlh-single .nlh-entry-content h3 {
	font-size: clamp(1.35rem, 2.3vw, 1.8rem);
}

.nlh-single .nlh-entry-content a {
	color: var(--nlh-color-primary);
	font-weight: 700;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.nlh-single .nlh-entry-content a:hover,
.nlh-single .nlh-entry-content a:focus {
	color: var(--nlh-color-secondary);
}

.nlh-single .nlh-entry-content ul,
.nlh-single .nlh-entry-content ol {
	padding-left: 1.35em;
}

.nlh-single .nlh-entry-content li + li {
	margin-top: 0.4em;
}

.nlh-entry-content > .wp-block-list li::marker {
	color: var(--nlh-color-primary);
	font-size: 0.82em;
	font-weight: 800;
}

.nlh-entry-content > .wp-block-list.nlh-list-index {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	padding-left: 0;
	list-style: none;
}

.nlh-entry-content > .wp-block-list.nlh-list-index li {
	position: relative;
	margin: 0;
	padding: 17px 18px 17px 42px;
	border: 1px solid var(--nlh-color-border);
	background: var(--nlh-color-white);
	color: var(--nlh-color-secondary);
	font-weight: 800;
	line-height: 1.45;
	transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nlh-entry-content > .wp-block-list.nlh-list-index li::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 18px;
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: var(--nlh-color-primary);
	transform: translateY(-50%);
}

.nlh-entry-content > .wp-block-list.nlh-list-index li::marker {
	content: "";
}

.nlh-entry-content > .wp-block-list.nlh-list-index li:hover,
.nlh-entry-content > .wp-block-list.nlh-list-index li:focus-within {
	border-color: var(--nlh-color-primary);
	color: var(--nlh-color-primary);
	transform: translateY(-2px);
}

.nlh-entry-content > .wp-block-list.nlh-list-index a {
	color: var(--nlh-color-secondary);
	font-weight: 800;
	text-decoration: none;
}

.nlh-entry-content > .wp-block-list.nlh-list-index a:hover,
.nlh-entry-content > .wp-block-list.nlh-list-index a:focus {
	color: var(--nlh-color-primary);
	text-decoration: none;
}

.nlh-single .nlh-entry-content blockquote {
	margin: 2em 0;
	padding: 22px 26px;
	border-left: 4px solid var(--nlh-color-primary);
	background: var(--nlh-color-surface);
	color: var(--nlh-color-secondary);
	font-size: 1.12rem;
	font-weight: 700;
}

.nlh-single .nlh-entry-content blockquote cite {
	display: block;
	margin-top: 12px;
	color: var(--nlh-color-muted);
	font-size: 0.9rem;
	font-style: normal;
	font-weight: 400;
}

.nlh-single .nlh-entry-content figure {
	margin: 2em 0;
}

.nlh-single .nlh-entry-content figcaption {
	margin-top: 10px;
	color: var(--nlh-color-muted);
	font-size: 0.9rem;
	text-align: left;
}

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

.nlh-single .nlh-entry-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 2em 0;
	font-size: 0.96rem;
}

.nlh-single .nlh-entry-content th,
.nlh-single .nlh-entry-content td {
	padding: 12px 14px;
	border: 1px solid var(--nlh-color-border);
	text-align: left;
	vertical-align: top;
}

.nlh-single .nlh-entry-content th {
	background: var(--nlh-color-secondary);
	color: var(--nlh-color-white);
}

.nlh-single .nlh-entry-content code {
	padding: 2px 5px;
	background: var(--nlh-color-surface);
	color: var(--nlh-color-secondary);
	font-size: 0.92em;
}

.nlh-single .nlh-entry-content pre {
	overflow: auto;
	padding: 18px;
	background: #111827;
	color: var(--nlh-color-white);
}

.nlh-page-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 32px;
	padding-top: 24px;
	border-top: 1px solid var(--nlh-color-border);
}

.nlh-page-links a,
.nlh-page-links > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	min-height: 38px;
	border: 1px solid var(--nlh-color-border);
	background: var(--nlh-color-white);
	color: var(--nlh-color-secondary);
	font-weight: 800;
}

.nlh-page-links > span,
.nlh-page-links a:hover,
.nlh-page-links a:focus {
	border-color: var(--nlh-color-primary);
	background: var(--nlh-color-primary);
	color: var(--nlh-color-white);
}

.nlh-single-footer {
	margin-top: 48px;
	padding-top: 32px;
	border-top: 1px solid var(--nlh-color-border);
}

.nlh-single-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 28px;
}

.nlh-single-tags a {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 6px 12px;
	border: 1px solid var(--nlh-color-border);
	border-radius: var(--nlh-button-radius);
	background: var(--nlh-color-surface);
	color: var(--nlh-color-secondary);
	font-size: 0.9rem;
	font-weight: 800;
}

.nlh-single-tags a:hover,
.nlh-single-tags a:focus {
	border-color: var(--nlh-color-primary);
	background: var(--nlh-color-primary);
	color: var(--nlh-color-white);
}

.nlh-single .post-navigation .nav-links {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.nlh-single .post-navigation a {
	display: block;
	height: 100%;
	padding: 18px;
	border: 1px solid var(--nlh-color-border);
	border-radius: var(--nlh-radius);
	background: var(--nlh-color-white);
	box-shadow: var(--nlh-shadow);
}

.nlh-single .post-navigation a:hover,
.nlh-single .post-navigation a:focus {
	border-color: var(--nlh-color-primary);
	transform: translateY(-2px);
}

.nlh-single .post-navigation .nav-next {
	text-align: right;
}

.nlh-single .post-navigation .nav-subtitle {
	display: block;
	margin-bottom: 6px;
	color: var(--nlh-color-primary);
	font-size: 0.78rem;
	font-weight: 800;
	text-transform: uppercase;
}

.nlh-single .post-navigation .nav-title {
	display: block;
	color: var(--nlh-color-secondary);
	font-weight: 800;
	line-height: 1.35;
}

.nlh-post-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.pagination {
	margin-top: 42px;
}

.pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	min-height: 44px;
	padding: 10px 15px;
	border: 1px solid var(--nlh-color-border);
	border-radius: var(--nlh-button-radius);
	background: var(--nlh-color-white);
	color: var(--nlh-color-secondary);
	font-size: 0.94rem;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	box-shadow: 0 10px 26px rgba(19, 30, 74, 0.08);
	transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.pagination a.page-numbers:hover,
.pagination a.page-numbers:focus {
	border-color: var(--nlh-color-primary);
	background: var(--nlh-color-primary);
	color: var(--nlh-color-white);
	transform: translateY(-2px);
}

.pagination .page-numbers.current {
	border-color: var(--nlh-color-primary);
	background: var(--nlh-color-primary);
	color: var(--nlh-color-white);
}

.pagination .page-numbers.dots {
	min-width: auto;
	border-color: transparent;
	background: transparent;
	box-shadow: none;
	color: var(--nlh-color-muted);
}

.pagination .page-numbers.prev,
.pagination .page-numbers.next {
	gap: 8px;
	padding-inline: 18px;
}

.nlh-content-card {
	overflow: hidden;
	border: 1px solid var(--nlh-color-border);
	border-radius: var(--nlh-radius);
	background: var(--nlh-color-white);
	transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.nlh-content-card:hover,
.nlh-content-card:focus-within {
	border-color: var(--nlh-color-primary);
	transform: translateY(-4px);
}

.nlh-content-card__media {
	display: block;
	background: var(--nlh-color-surface);
}

.nlh-content-card__media img {
	display: block;
	width: 100%;
	height: auto;
}

.nlh-content-card__body {
	padding: 24px;
}

.nlh-content-card__title {
	margin: 0 0 12px;
	color: var(--nlh-color-secondary);
	font-size: 1.25rem;
	line-height: 1.3;
}

.nlh-text-link {
	font-weight: 700;
	color: var(--nlh-color-primary);
}

.nlh-search-form {
	display: flex;
	gap: 10px;
	max-width: 560px;
}

.nlh-search-field {
	width: 100%;
	min-height: 44px;
	padding: 10px 14px;
	border: 1px solid var(--nlh-color-border);
	border-radius: var(--nlh-radius);
}

#naib-inquiry-cart-float {
	top: 200px !important;
}

@media (max-width: 900px) {
	.nlh-post-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.nlh-single-hero {
		padding: 52px 0 44px;
	}

	.nlh-single-page-header {
		padding: 64px 0 48px;
	}

	.nlh-single-title {
		font-size: 2.2rem;
	}

	.nlh-entry-meta {
		display: block;
	}

	.nlh-entry-meta span {
		display: flex;
		margin-top: 8px;
	}

	.nlh-single-page-header .nlh-entry-meta span {
		justify-content: center;
	}

	.nlh-entry-meta span + span::before {
		display: none;
	}

	.nlh-entry-content > .wp-block-list.nlh-list-index {
		grid-template-columns: 1fr;
	}

	.nlh-featured-image {
		margin-top: 28px;
	}

	.nlh-single-body {
		padding: 36px 0 56px;
	}

	.nlh-single .nlh-entry-content {
		font-size: 1rem;
	}

	.nlh-single .post-navigation .nav-links {
		grid-template-columns: 1fr;
	}

	.nlh-single .post-navigation .nav-next {
		text-align: left;
	}

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

	.nlh-search-form {
		flex-direction: column;
	}
}
