/* =========================================================
 * NationVoice — Stroke Hero
 * Heading with mixed solid + outlined "stroke" word(s)
 * ========================================================= */

.nv-sh-wrapper {
	--nv-primary: #3c4d8c;
	--nv-text: #3a3a3a;
	--nv-bg: #ffffff;
	--nv-font-body: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

	font-family: var(--nv-font-body);
}

.nv-sh-wrapper *, .nv-sh-wrapper *::before, .nv-sh-wrapper *::after { box-sizing: border-box; }

.elementor-page .nv-sh-wrapper,
.e-con .nv-sh-wrapper,
.elementor-widget-container .nv-sh-wrapper {
	font-family: var(--nv-font-body) !important;
}

/* Frame */
.nv-sh-wrapper .nv-sh {
	width: 100%;
	background-color: var(--nv-bg);
	overflow: hidden;
}

.nv-sh-wrapper .nv-sh__container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 24px 0 0;
}

/* Breadcrumb */
.nv-sh-wrapper .nv-sh__breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	padding: 12px 32px 24px;
	font-family: var(--nv-font-body) !important;
	font-size: 14px;
	color: var(--nv-text) !important;
}

.nv-sh-wrapper .nv-sh__breadcrumb a {
	color: var(--nv-text) !important;
	text-decoration: none !important;
	transition: opacity 0.3s ease;
}

.nv-sh-wrapper .nv-sh__breadcrumb a:hover { opacity: 0.7; }

/* Grid */
.nv-sh-wrapper .nv-sh__grid {
	display: grid;
	grid-template-columns: 40fr 60fr;
	min-height: 80vh;
	align-items: center;
}

.nv-sh-wrapper .nv-sh--img-left .nv-sh__content { order: 2; }
.nv-sh-wrapper .nv-sh--img-left .nv-sh__media   { order: 1; }

/* Text column */
.nv-sh-wrapper .nv-sh__content {
	padding: 32px 32px 64px;
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.nv-sh-wrapper .nv-sh__heading {
	margin: 0;
	font-family: var(--nv-font-body) !important;
	font-weight: 800;
	font-size: 96px;
	line-height: 1.05;
	letter-spacing: -0.02em;
	color: var(--nv-primary) !important;
	max-width: 13ch;
}

/* The stroke (outlined) word */
.nv-sh-wrapper .nv-sh__heading-stroke {
	-webkit-text-stroke: 1.5px var(--nv-primary);
	-webkit-text-fill-color: transparent;
	color: transparent;
}

/* Subtitle */
.nv-sh-wrapper .nv-sh__subtitle {
	margin: 0;
	font-family: var(--nv-font-body) !important;
	font-size: 15px;
	line-height: 1.5;
	color: var(--nv-text) !important;
	max-width: 26ch;
}

/* Image column */
.nv-sh-wrapper .nv-sh__media {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 540px;
	overflow: hidden;
	background-color: #f0f0f0;
}

.nv-sh-wrapper .nv-sh__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/* Responsive */
@media (max-width: 1024px) {
	.nv-sh-wrapper .nv-sh__heading { font-size: 64px; max-width: 14ch; }
	.nv-sh-wrapper .nv-sh__content { padding: 24px 24px 48px; }
	.nv-sh-wrapper .nv-sh__media { min-height: 480px; }
}

@media (max-width: 768px) {
	.nv-sh-wrapper .nv-sh__grid,
	.nv-sh-wrapper .nv-sh--img-left .nv-sh__grid {
		grid-template-columns: 1fr !important;
		min-height: auto;
	}

	.nv-sh-wrapper .nv-sh__content,
	.nv-sh-wrapper .nv-sh--img-left .nv-sh__content {
		order: 1;
		padding: 24px 16px 40px;
		gap: 24px;
	}

	.nv-sh-wrapper .nv-sh__media,
	.nv-sh-wrapper .nv-sh--img-left .nv-sh__media {
		order: 2;
		min-height: 360px;
	}

	.nv-sh-wrapper .nv-sh__heading {
		font-size: 44px;
		max-width: 100%;
	}
	.nv-sh-wrapper .nv-sh__heading-stroke {
		-webkit-text-stroke-width: 1.2px;
	}
	.nv-sh-wrapper .nv-sh__subtitle { max-width: 100%; }
	.nv-sh-wrapper .nv-sh__breadcrumb { padding: 8px 16px 16px; font-size: 13px; }
}
