/* BioFutura Intro Navigation Widget - Additional Styles */

/* Ensure smooth transitions */
.new-content-wrapper * {
	box-sizing: border-box;
}

/* Additional hover effects for better UX */
.nav-box {
	will-change: transform, box-shadow;
}

/* Ensure links are not underlined globally */
.nav-box,
.nav-box:hover,
.nav-box:focus,
.nav-box:active,
.nav-box:visited {
	text-decoration: none !important;
}

/* Better accessibility focus states */
.nav-box:focus {
	outline: 2px solid #8aecc7;
	outline-offset: 4px;
}

/* Print styles */
@media print {
	.nav-box {
		page-break-inside: avoid;
		break-inside: avoid;
	}
}

