/* =========================================================
 * NationVoice — Horizontal CTA
 * Wide colored banner: heading + desc on left + dark button on right
 * ========================================================= */

.nv-hc-wrapper {
	--nv-primary: #3c4d8c;
	--nv-orange: #f2a541;
	--nv-red: #a01818;
	--nv-font-body: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	--nv-font-heading: Georgia, 'Times New Roman', serif;
	--nv-ease: cubic-bezier(0.22, 1, 0.36, 1);
	--nv-trans: 0.3s var(--nv-ease);
	font-family: var(--nv-font-body);
}

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

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

.nv-hc-wrapper .nv-hc {
	width: 100%;
	background-color: var(--nv-orange);
	padding: 56px;
}

.nv-hc-wrapper .nv-hc__inner {
	max-width: 1320px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

.nv-hc-wrapper .nv-hc__text {
	min-width: 0;
}

.nv-hc-wrapper .nv-hc__heading {
	margin: 0 0 8px;
	font-family: var(--nv-font-heading) !important;
	font-weight: 600;
	font-size: 40px;
	line-height: 1.2;
	color: var(--nv-red) !important;
}

.nv-hc-wrapper .nv-hc__desc {
	margin: 0;
	font-family: var(--nv-font-body) !important;
	font-size: 15px;
	line-height: 1.5;
	color: #ffffff !important;
}

.nv-hc-wrapper .nv-hc__btn {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	padding: 16px 32px;
	font-family: var(--nv-font-body) !important;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.3px;
	color: #ffffff !important;
	background-color: #202428 !important;
	border-radius: 4px;
	text-decoration: none !important;
	transition: background var(--nv-trans), transform var(--nv-trans), box-shadow var(--nv-trans);
	flex-shrink: 0;
	white-space: nowrap;
}

.nv-hc-wrapper .nv-hc__btn:hover {
	background-color: #3c4d8c !important;
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.30);
}

.nv-hc-wrapper .nv-hc__btn-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border: 1.5px solid #ffffff;
	border-radius: 50%;
	transition: transform var(--nv-trans);
}

.nv-hc-wrapper .nv-hc__btn:hover .nv-hc__btn-icon {
	transform: translateX(4px);
}

@media (max-width: 1024px) {
	.nv-hc-wrapper .nv-hc { padding: 40px 32px; }
	.nv-hc-wrapper .nv-hc__heading { font-size: 30px; }
	.nv-hc-wrapper .nv-hc__inner { gap: 24px; }
}

@media (max-width: 768px) {
	.nv-hc-wrapper .nv-hc { padding: 40px 20px; }
	.nv-hc-wrapper .nv-hc__inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}
	.nv-hc-wrapper .nv-hc__heading { font-size: 28px; }
	.nv-hc-wrapper .nv-hc__btn { padding: 14px 26px; font-size: 13px; }
}
