/**
 * WordPress core overrides.
 * Minimal resets for WP-injected markup that would otherwise break the design.
 */

/* Prevent WP admin bar from shifting the fixed nav */
html body.admin-bar {
	margin-top: 0 !important;
}

html body.admin-bar #wpadminbar {
	z-index: 99999;
}

/* Caption block reset */
.wp-caption,
.wp-caption-text {
	margin: 0;
	padding: 0;
	max-width: 100%;
}

/* Image alignment resets */
.alignleft  { float: left; margin: 0 1em 1em 0; }
.alignright { float: right; margin: 0 0 1em 1em; }
.aligncenter { display: block; margin: 0 auto 1em; }
.alignnone  { float: none; }

/* Screen reader text (WP a11y helper) */
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}
