/* ============================================================
 * NationVoice — Follow Us (social icons row)
 * ============================================================ */

.nv-fu-wrapper {
	--nv-primary: #3c4d8c;
	--nv-dark: #0a2238;
	--nv-text: #5e5e5e;
	--nv-bg: #f4f4f4;
	--nv-pill: #ffffff;
	--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);
	color: var(--nv-text);
}
.nv-fu-wrapper *, .nv-fu-wrapper *::before, .nv-fu-wrapper *::after { box-sizing: border-box; }

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

.nv-fu-wrapper .nv-fu { background-color: var(--nv-bg); }
.nv-fu-wrapper .nv-fu__container {
	max-width: 720px;
	margin: 0 auto;
	padding: 56px 24px;
	text-align: center;
}

.nv-fu-wrapper .nv-fu__heading {
	margin: 0 0 6px;
	font-family: var(--nv-font-heading) !important;
	font-weight: 700;
	font-size: 28px;
	line-height: 1.2;
	color: var(--nv-dark) !important;
}
.nv-fu-wrapper .nv-fu__sub {
	margin: 0 auto 26px;
	max-width: 520px;
	font-size: 14px;
	line-height: 1.6;
	color: var(--nv-primary);
}

.nv-fu-wrapper .nv-fu__icons {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
}

.nv-fu-wrapper .nv-fu__icon {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background-color: var(--nv-pill);
	color: var(--nv-primary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	box-shadow: 0 6px 18px rgba(10, 34, 56, 0.10);
	transition: transform var(--nv-trans), box-shadow var(--nv-trans);
}
.nv-fu-wrapper .nv-fu__icon:hover,
.nv-fu-wrapper .nv-fu__icon:focus {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 12px 26px rgba(10, 34, 56, 0.18);
}
.nv-fu-wrapper .nv-fu__icon svg {
	width: 20px;
	height: 20px;
	display: block;
	transition: transform var(--nv-trans);
}
.nv-fu-wrapper .nv-fu__icon:hover svg { transform: scale(1.05); }

/* Visually hidden label for screen readers */
.nv-fu-wrapper .nv-fu__sr {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

@media (max-width: 600px) {
	.nv-fu-wrapper .nv-fu__container { padding: 44px 16px; }
	.nv-fu-wrapper .nv-fu__heading   { font-size: 22px; }
	.nv-fu-wrapper .nv-fu__icon      { width: 44px; height: 44px; }
	.nv-fu-wrapper .nv-fu__icon svg  { width: 18px; height: 18px; }
}
