/* Webdazy — extras beyond Tailwind utilities */

html { scroll-behavior: smooth; }

/* WordPress menu items rendered by wp_nav_menu inherit these */
#wd-mobile-nav ul li a,
header nav ul li a { display: block; padding: 0.4rem 0; transition: color .2s ease; }
header nav ul li a:hover { color: #52B788; }
footer ul li a:hover { color: #B7E4C7; }

/* Screen-reader-only helper (Tailwind CDN includes sr-only, kept as fallback) */
.sr-only {
	position: absolute; width: 1px; height: 1px;
	padding: 0; margin: -1px; overflow: hidden;
	clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Pagination */
.nav-links { display: flex; gap: .5rem; flex-wrap: wrap; }
.nav-links .page-numbers {
	padding: .5rem 1rem; border-radius: 9999px;
	border: 1px solid #B7E4C7; color: #2D6A4F; font-size: .875rem;
}
.nav-links .page-numbers.current,
.nav-links .page-numbers:hover { background: #2D6A4F; color: #fff; }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	* { transition: none !important; animation: none !important; }
}
