@charset "UTF-8";
/*
Theme Name: 	GR WordPress Starter FSE
Theme URI: 		https://gr.co.uk
Author: 		GR
Author URI:		https://gr.co.uk
Description: 	GR WordPress Starter FSE (Full Site Editing) Theme
Requires at least: 6.2
Tested up to: 6.7
Requires PHP: 8.2
*/

/* ─── Button reset ───────────────────────────────────────────────────────── */

/*
 * Must be unlayered to beat WP's normalize, which is also unlayered author
 * CSS and always wins over any @layer rule regardless of load order.
 */
button {
	appearance: none;
	background: none;
	border: none;
	padding: 0;
	margin: 0;
	cursor: pointer;
}

/* ─── Layout ─────────────────────────────────────────────────────────────── */

/* Prevent any overflow source from creating horizontal page scroll.
   clip (not hidden) so position: sticky children still work. */
body {
	overflow-x: clip;
}

/* ─── Sticky footer ─────────────────────────────────────────────────────── */

.wp-site-blocks {
	display: flex;
	flex-direction: column;
	min-height: 100svh;
}

.wp-site-blocks > main {
	flex: 1;
	margin-block-start: 0;
	margin-block-end: 0;
}

.wp-site-blocks > main > .wp-block-post-content > * {
	margin-block-start: 0;
	margin-block-end: 0;
} 