/*
Theme Name: TMG
Theme URI: https://tmgdoingitright.com
Author: TMG
Description: Direct, unmodified port of the TMG landing page design into a working WordPress theme. Every page's HTML, inline styles, and structure are byte-for-byte identical to the original design files — the only changes are the minimum technical adaptations required for WordPress to serve them at all: inter-page links updated to WordPress permalinks, and asset references pointed at the theme's own asset folder instead of the original bundler's embedded blob URLs.
Version: 3.11.5
Requires at least: 5.9
Requires PHP: 7.4
Text Domain: tmg
*/

/**
 * dc-runtime.js (the page-rendering runtime) unconditionally injects
 * this CSS at boot: "html,body{height:100%;margin:0}#dc-root,
 * #dc-root>.sc-host{height:100%}" — designed for the original
 * bundler tool's single-viewport-app use case, not a normal,
 * scrollable multi-section page like this site. Left unchecked, it
 * constrains the entire main content area to exactly one viewport
 * height, which visually compresses and overlaps every section
 * beyond the first (this is what was causing the footer's CTA bar
 * to overlap the hero, and later sections like "National Reach" to
 * appear to render out of order below the footer instead of above
 * it — content wasn't actually reordered, it was being crushed into
 * a too-small box and overflowing unpredictably).
 *
 * !important is required because the runtime injects its rule via
 * JS after this stylesheet has already loaded.
 */
#dc-root,
#dc-root > .sc-host {
	height: auto !important;
}
