/*
Theme Name: Ron Herring
Theme URI: https://example.com/ron-herring
Author: Ron Herring Team
Author URI: https://example.com
Description: WordPress theme shell for the Ron Herring React-driven site.
Version: 1.0.0
Text Domain: ron-herring
Requires at least: 6.0
Requires PHP: 7.4
*/

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

html,
body {
	margin: 0;
	padding: 0;
}

body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

#tmt-app {
	min-height: 100vh;
	isolation: isolate;
	background-color: hsl(var(--background));
	color: hsl(var(--foreground));
}

/* Keep fixed header aligned when the WP admin bar is visible. */
.admin-bar #tmt-app header.fixed {
	top: 32px;
}

@media screen and (max-width: 782px) {
	.admin-bar #tmt-app header.fixed {
		top: 46px;
	}
}
