<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Staging indicator */
body.staging #wpadminbar { border-top: 32px solid #ddff00 !important; height: var(--wp-admin--admin-bar--height); }
body.staging #wpadminbar::before, body.staging:not(.admin-bar) .site-header::before {
	background: #ddff00;
	color: #ff00dd;
	content: 'STAGING SITE';
	display: block;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	font-size: 24px;
	font-weight: bold;
	height: 32px;
	letter-spacing: 0.5em;
	line-height: 32px;
	padding: 0 10px;
	position: fixed; top: 0; right: 0; bottom: auto; left: 0;
	text-align: center;
	z-index: 9999999;
}
body.staging #wpwrap { margin-top: 32px; }

.wp-site-blocks {
	align-items: stretch;
	display: flex;
	flex-direction: column;
	min-height: calc(100vh - var(--wp-admin--admin-bar--height));
}

body.page-template-blank .wp-site-blocks {
	margin-top: calc(var(--wp--style--block-gap) * 2);
	margin-bottom: calc(var(--wp--style--block-gap) * 2);
}

header.site-header {
	border-bottom: var(--wp--custom--header--border-bottom);
	box-shadow: var(--wp--custom--header--box-shadow);
	flex-shrink: 0;
	position: relative;
	z-index: 5;
}

body.locking-header header.site-header {
	position: sticky;
	top: var(--wp-admin--admin-bar--height);
	transition: var(--wp--custom--header--scroll-transition);
}

body.scrolled header.site-header {
	border-bottom: var(--wp--custom--header--border-bottom-scrolled);
	box-shadow: var(--wp--custom--header--box-shadow-scrolled);
}

body.transparent-header header.site-header {
	backdrop-filter: blur(3px);
	-webkit-backdrop-filter: blur(3px);
}

	header.site-header a, footer.site-footer a {
		text-decoration: none;
	}
	
	/*header.site-header img {
		display: block;
		height: auto;
		max-width: 100%;
		width: auto;
	}*/

	#top_bar {
		background: var(--wp--custom--top-bar--background);
		color: var(--wp--custom--top-bar--text);
	}

		#top_bar a, #top_bar a:visited {
			color: var(--wp--custom--top-bar--text);
		}

		#top_bar a:active, #top_bar a:focus, #top_bar a:hover {
			color: var(--wp--custom--top-bar--text-hover);
		}

	#header {
		background: var(--wp--custom--header--background);
		color: var(--wp--custom--header--text);
	}

main {
	flex-grow: 1;
	flex-shrink: 0;
	margin-block-start: 0 !important;
	overflow: hidden; /* Prevents inner scrollbars with AOS */
	position: relative;
	z-index: 1;
}

body.locking-header main {
	transition: var(--wp--custom--header--scroll-transition);
}

footer.site-footer {
	flex-shrink: 0;
	position: relative;
	z-index: 2;
}

	#footer {
		background: var(--wp--custom--footer--background);
		border-top: var(--wp--custom--footer--border-top);
		color: var(--wp--custom--footer--text);
		font-size: var(--wp--custom--footer--font-size);
		padding: var(--wp--custom--footer--padding);
	}
	
		#footer &gt; .wp-block-group:first-child &gt; * {
			align-items: start;
			max-width: calc(33.33vw - var(--wp--style--block-gap));
			min-width: 150px;
		}
	
		#footer a {
			color: var(--wp--custom--footer--text);
		}
		
		#footer a:active, #footer a:focus, #footer a:hover {
			color: var(--wp--custom--footer--text-hover);
		}
		
		/*#footer img {
			display: block;
			height: auto;
			max-width: 100%;
			width: auto;
		}*/

		#footer p, #footer li {
			margin-top: var(--wp--custom--main--half-gap);
		}
</pre></body></html>