/* =========================================================
 * NationVoice — Report Highlights
 * ========================================================= */

.nv-rhi-wrapper {
	--nv-primary: #3c4d8c;
	--nv-text: #3a3a3a;
	--nv-heading: #202428;
	--nv-bg: #f4f4f4;
	--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);

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

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

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

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

.nv-rhi-wrapper .nv-rhi__container {
	max-width: 900px;
	margin: 0 auto;
	padding: 72px 32px;
}

/* Image wraps */
.nv-rhi-wrapper .nv-rhi__image-wrap {
	margin: 0 0 40px;
	overflow: hidden;
	border-radius: 16px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
	transition: transform 0.4s var(--nv-ease);
}

.nv-rhi-wrapper .nv-rhi__image-wrap--bottom {
	margin: 40px 0 0;
}

.nv-rhi-wrapper .nv-rhi__image-wrap:hover {
	transform: translateY(-4px);
}

.nv-rhi-wrapper .nv-rhi__image {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 16px;
	transition: transform 0.6s var(--nv-ease);
}

.nv-rhi-wrapper .nv-rhi__image-wrap:hover .nv-rhi__image {
	transform: scale(1.03);
}

/* Heading */
.nv-rhi-wrapper .nv-rhi__content {
	max-width: 720px;
	margin: 0 auto;
	text-align: left;
}

.nv-rhi-wrapper .nv-rhi__heading {
	margin: 0 0 20px;
	font-family: var(--nv-font-heading) !important;
	font-weight: 600;
	font-size: 30px;
	line-height: 1.3;
	color: var(--nv-heading) !important;
	text-align: center;
}

/* Bullet list */
.nv-rhi-wrapper .nv-rhi__list {
	list-style: disc;
	margin: 0;
	padding-left: 24px;
}

.nv-rhi-wrapper .nv-rhi__list li {
	font-family: var(--nv-font-body) !important;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.7;
	color: var(--nv-text) !important;
}

.nv-rhi-wrapper .nv-rhi__list li:not(:last-child) {
	margin-bottom: 12px;
}

.nv-rhi-wrapper .nv-rhi__list li::marker {
	color: var(--nv-primary);
}

/* Responsive */
@media (max-width: 768px) {
	.nv-rhi-wrapper .nv-rhi__container { padding: 48px 16px; }
	.nv-rhi-wrapper .nv-rhi__heading { font-size: 24px; }
	.nv-rhi-wrapper .nv-rhi__list li { font-size: 14px; line-height: 1.6; }
	.nv-rhi-wrapper .nv-rhi__image-wrap { margin: 0 0 28px; border-radius: 12px; }
	.nv-rhi-wrapper .nv-rhi__image-wrap--bottom { margin: 28px 0 0; }
}
