/*
Theme Name:  Polestar Child
Theme URI:   https://www.gatehouse.org/
Description: Child theme for Polestar, holding the gatehouse.org customisations that
             were previously edited directly into the parent theme. Created 2026-08-27
             so the parent can be updated (1.8.1 -> 1.10.4) without losing them.
Author:      MFG Empire
Author URI:  https://mfgempire.com
Template:    polestar
Version:     1.0.0
Text Domain: polestar-child
*/

/* ---------------------------------------------------------------------------
   HEADER CONTAINER
   ---------------------------------------------------------------------------
   The parent's header.php had its masthead wrapper edited in place from
   class="polestar-container" to class="container-fluid". That edit is gone now
   that the parent is stock, so the same computed styling is reapplied here.

   Reproduces exactly the two Bootstrap rules that were applying, from the
   Bootstrap 5 copy this site loads via the Custom CSS & JS snippet "Bootstrap":

     .container-fluid { width:100%; padding-right:var(--bs-gutter-x,.75rem);
                        padding-left:var(--bs-gutter-x,.75rem);
                        margin-right:auto; margin-left:auto }
     .container-fluid { display:flex; flex-wrap:inherit;
                        align-items:center; justify-content:space-between }

   while cancelling the parent's own .polestar-container rule
   (max-width:1190px; padding:0 25px; position:relative). width:100% and
   margin:auto are identical in both and so are not repeated.
   --------------------------------------------------------------------------- */
.site-header > .polestar-container {
	max-width: none;
	padding-right: var(--bs-gutter-x, .75rem);
	padding-left: var(--bs-gutter-x, .75rem);
	position: static;
	display: flex;
	flex-wrap: inherit;
	align-items: center;
	justify-content: space-between;
}
