/**
 * AISG child theme — header & footer styling (www4-aligned build).
 *
 * The V8 line used this file to paint the header and footer on top of Kadence.
 * This build does not: every header/footer value now lives in the Kadence option
 * defaults in inc/theme-options.php, exactly as the live site stores them, so
 * that the Customizer stays the single source of truth and users can edit the
 * design instead of fighting `!important` rules here.
 *
 * What was removed (now handled by inc/theme-options.php):
 *   - HEADER primary nav / social icons / "I'm a…" persona pills
 *   - FOOTER sign-up CTA, social icons, bottom-row columns and typography
 *
 * What remains below is additive only — markup this theme renders itself, which
 * Kadence knows nothing about and therefore cannot style.
 *
 * @package aisgwptheme
 */

/* =========================================================================
 * FOOTER — registration / legal text bar
 * Rendered by inc/footer.php on `kadence_after_footer`. Reads as a continuation
 * of the footer's dark ground. Colours follow the Kadence palette so a palette
 * change in the Customizer carries through here too.
 * ====================================================================== */
.aisg-footer-registration {
	background: var( --global-palette4, #383838 );
	border-top: 1px solid rgba( 255, 255, 255, 0.1 );
	padding: 24px 0;
}
.aisg-footer-registration__inner {
	max-width: var( --global-content-width, 1290px );
	margin: 0 auto;
	padding: 0 30px;
}
.aisg-footer-registration p {
	margin: 0;
	color: var( --global-palette6, #a5a5a5 );
	font-size: 13px;
	line-height: 1.7;
}
.aisg-footer-registration a {
	color: var( --global-palette7, #f1f1f1 );
	text-decoration: underline;
}

/* =========================================================================
 * MOBILE — stacked footer
 * Kadence stacks the footer rows on small screens but leaves widget content
 * left-aligned; centring it is a layout choice the Customizer cannot express.
 * ====================================================================== */
@media ( max-width: 768px ) {
	.site-footer .footer-widget-area,
	.site-footer .footer-widget-area-inner,
	.site-footer .widget_block {
		text-align: center;
	}
	.site-footer .footer-widget-area figure.wp-block-image {
		text-align: center;
		margin-left: 0;
		margin-right: 0;
	}
	.site-footer .footer-widget-area figure.wp-block-image img {
		display: inline-block;
		float: none;
	}
	.site-footer .wp-block-buttons,
	.site-footer .footer-social-wrap,
	.site-footer .footer-social-inner-wrap {
		justify-content: center;
	}
	.site-footer .footer-navigation,
	.site-footer .footer-navigation ul.menu {
		justify-content: center;
		text-align: center;
	}
	.site-footer .footer-html .footer-html-inner {
		text-align: center;
	}
	.aisg-footer-registration__inner {
		padding-left: 20px;
		padding-right: 20px;
		text-align: center;
	}
}
