/*! ENP plugin styles — only the few rules that can't be expressed as Tailwind utility classes.
    The theme's Tailwind config (code.html L11-80) provides all colors/fonts/spacing. */

/* Ensure Material Symbols align with surrounding text even without font-variation-settings support. */
.material-symbols-outlined {
	font-variation-settings: 'wght' 400, 'FILL' 0, 'opsz' 24;
	line-height: 1;
	vertical-align: -0.15em;
}

/* Prevent FOUC on CDN-Tailwind before the config arrives. */
html { background-color: #fcf9f8; color: #1c1b1b; }

/* Skip link visible on focus (a11y, kept < 500 bytes). */
.enp-skip-link {
	position: absolute; left: -9999px; top: 0;
	background: #002045; color: #fff; padding: .5rem 1rem; z-index: 1000;
}
.enp-skip-link:focus { left: 1rem; top: 1rem; }
