/* Nexus Landing Pages — Frontend layout
   .simple-hero / .cta-wave-section carry no baseline padding or
   min-height of their own — normally an Elementor widget injects
   those per-instance. Landing pages have no builder, so this supplies
   the same sensible defaults + responsive breakpoints instead. */

.simple-hero {
	min-height: 480px;
}
.simple-hero__inner {
	padding-top: calc(var(--nexus-nav-h, 143px) + 80px);
	padding-bottom: 80px;
}

.cta-wave-section {
	padding: 100px 60px;
}

.wave-divider-wrap {
	--wdiv-h: 300px;
	height: 300px;
}

/* Breadcrumbs — .hero-breadcrumbs has no alignment of its own in main.css
   (each Elementor hero widget sets it per-instance). Centered on desktop
   and tablet, left-aligned on mobile. Scoped to this file (only loaded on
   Resources singles) so it can't affect breadcrumbs on other hero widgets
   sitewide. */
.hero-breadcrumbs { text-align: center; }
.hero-breadcrumbs__list { justify-content: center; }

@media (max-width: 1024px) {
	.simple-hero { min-height: 360px; }
	.simple-hero__inner {
		padding-top: calc(var(--nexus-nav-h, 143px) + 48px);
		padding-bottom: 64px;
	}
	.cta-wave-section { padding: 80px 40px; }
	.wave-divider-wrap { --wdiv-h: 225px; height: 225px; }
}

@media (max-width: 768px) {
	.simple-hero { min-height: 0; }
	.simple-hero__inner {
		padding-top: calc(var(--nexus-nav-h, 143px) + 32px);
		padding-bottom: 48px;
	}
	.cta-wave-section { padding: 56px 20px; }
	.wave-divider-wrap { --wdiv-h: 175px; height: 175px; }
	.hero-breadcrumbs { text-align: left; }
	.hero-breadcrumbs__list { justify-content: flex-start; }
}

/* =================================================================
   Blog Article layout (layout: blog) — single column, featured image,
   article body with Quote / Callout blocks.
================================================================= */

.nlp-blog {
	max-width: 760px;
	margin: 0 auto;
	padding: calc(var(--nexus-nav-h, 143px) + 64px) 24px 96px;
}

.nlp-blog__title {
	font-size: clamp(28px, 4vw, 40px);
	font-weight: 800;
	line-height: 1.25;
	color: #111;
	margin: 0 0 14px;
}

.nlp-blog__meta {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 13px;
	color: #666;
	margin-bottom: 32px;
}

.nlp-blog__meta-sep { opacity: .5; }

.nlp-blog__cat-badge {
	display: inline-block;
	padding: 4px 12px;
	border-radius: 100px;
	background: #FED906;
	color: #111;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .4px;
}

.nlp-blog__featured-img {
	border-radius: 14px;
	overflow: hidden;
	margin-bottom: 44px;
}
.nlp-blog__featured-img img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

.nlp-blog__content {
	font-size: 16px;
	line-height: 1.75;
	color: #333;
}
.nlp-blog__content p { margin: 0 0 22px; }
.nlp-blog__content p:last-child { margin-bottom: 0; }

.nlp-blog__content h2 {
	font-size: 24px;
	font-weight: 800;
	color: #111;
	margin: 40px 0 16px;
}
.nlp-blog__content h3 {
	font-size: 20px;
	font-weight: 700;
	color: #111;
	margin: 32px 0 14px;
}

.nlp-blog__content a {
	color: #111;
	text-decoration: underline;
	text-decoration-color: #FED906;
	text-decoration-thickness: 2px;
}

.nlp-blog__content img {
	max-width: 100%;
	height: auto;
	border-radius: 14px;
	margin: 12px 0 28px;
}

/* Bulleted lists — simple dot markers */
.nlp-blog__content ul {
	list-style: none;
	margin: 0 0 22px;
	padding: 0;
}
.nlp-blog__content ul li {
	position: relative;
	padding-left: 20px;
	margin-bottom: 10px;
}
.nlp-blog__content ul li::before {
	content: '';
	position: absolute;
	left: 2px;
	top: 9px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #111;
}

/* Numbered lists — circular badge markers */
.nlp-blog__content ol {
	list-style: none;
	margin: 0 0 22px;
	padding: 0;
	counter-reset: nlp-list;
}
.nlp-blog__content ol li {
	counter-increment: nlp-list;
	position: relative;
	padding-left: 34px;
	margin-bottom: 16px;
}
.nlp-blog__content ol li::before {
	content: counter(nlp-list);
	position: absolute;
	left: 0;
	top: 0;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #111;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	line-height: 22px;
	text-align: center;
}

/* Quote block (inserted via the editor's Quote button) */
.nlp-blog__content .nlp-quote {
	text-align: center;
	border: none;
	margin: 44px auto;
	padding: 0 20px;
	max-width: 560px;
}
.nlp-blog__content .nlp-quote p {
	font-size: 20px;
	font-weight: 700;
	color: #111;
	line-height: 1.5;
	margin-bottom: 10px;
}
.nlp-blog__content .nlp-quote cite {
	display: block;
	font-style: normal;
	font-size: 13px;
	color: #888;
}

/* Callout block (inserted via the editor's Callout button) */
.nlp-blog__content .nlp-callout {
	background: #FED906;
	border-radius: 14px;
	padding: 28px 32px;
	margin: 44px 0;
}
.nlp-blog__content .nlp-callout__label {
	display: block;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .5px;
	color: #111;
	margin-bottom: 8px;
}
.nlp-blog__content .nlp-callout p {
	margin: 0;
	color: #1a1a1a;
	font-size: 15px;
}

@media (max-width: 768px) {
	.nlp-blog {
		padding: calc(var(--nexus-nav-h, 143px) + 40px) 20px 64px;
	}
	.nlp-blog__featured-img { margin-bottom: 32px; }
	.nlp-blog__content .nlp-callout { padding: 22px 24px; }
}
