/* Theme-specific overrides.
   Kept separate so the ported style.css stays byte-identical to the source. */

/* WP's admin bar is position:fixed (32px desktop / 46px mobile) and would hide
   the sticky header behind it when logged in. Offset #header by that height.
   Only affects logged-in users (WP adds .admin-bar to <body>). */
.admin-bar #header.sticky-top {
	top: 32px;
}

@media screen and (max-width: 782px) {
	.admin-bar #header.sticky-top {
		top: 46px;
	}
}
