/*
 * WordPress Tweaks
 *
 * Fixes tied to core's own markup and classes rather than to any design.
 */

/* Logged in view: keep the admin bar from hiding a fixed header. */
#wpadminbar {
	background-color: rgba(0, 0, 0, .5);
}

/* Template parts sit next to floated content often enough to be worth this. */
.wp-site-blocks > header,
.wp-site-blocks > footer {
	clear: both;
}

/* Block gap adds a top margin to the footer that is almost never wanted. */
footer.wp-block-template-part {
	margin-top: 0;
}
