/*
 * GrowGrowLocal WP scaffold — custom utilities (the escape hatch).
 *
 * Enqueued as `amr-main`, after style.css and before Font Awesome. A site's
 * design pass lands in a separate design.css that loads after this one; keep
 * this file to things every site needs regardless of its design.
 *
 * Keep this file minimal. No design system here. Anything in this file must
 * be either (a) something Bootstrap 5 genuinely doesn't ship as a utility, or
 * (b) so deeply project-specific that it doesn't belong in Bootstrap.
 * EVERY RULE MUST BE PRECEDED BY A COMMENT JUSTIFYING THE BOOTSTRAP GAP.
 * If a Bootstrap utility covers the need, use the Bootstrap utility instead.
 * Consume Bootstrap variables (var(--bs-*)) — never hardcoded colors.
 *
 * Mirrors starter/assets/css/main.css — the conversion build overwrites this
 * copy with the demo's. Keep the two in lockstep so a site built without a
 * demo stage gets the same baseline.
 */

/*
 * --- Navbar logo needs a fixed pixel height ---
 * Bootstrap only ships percentage-based h-* utilities; a brand image needs a
 * fixed height so the navbar doesn't jump between pages.
 */
.amr-logo {
	height: 40px;
	width: auto;
}
