/**
 * PathCraft LMS - Hide Theme Post Navigation on Quiz Pages
 * Prevents theme's "Previous/Next Post" links from appearing on eaa_quiz pages
 * Allows PathCraft's own navigation (Back to Course, Continue, etc.) to be the primary navigation
 */

/* Hide WordPress theme post navigation on quiz pages */
body.single-eaa_quiz .post-navigation,
body.single-eaa_quiz .navigation.posts-navigation,
body.single-eaa_quiz nav.navigation {
	display: none !important;
}

/* Alternative selectors for various theme frameworks */
body.single-eaa_quiz .nav-previous,
body.single-eaa_quiz .nav-next {
	display: none !important;
}

/* Hide WordPress adjacent posts links */
body.single-eaa_quiz .nav-links {
	display: none !important;
}

/* Backup: hide by aria-label if using semantic HTML */
body.single-eaa_quiz nav[aria-label="Posts"] {
	display: none !important;
}
