/*
Theme Name: Kadence Local 947
Template: kadence
Version: 2.0.0
Description: Local 947 child theme for Kadence. Modern bold redesign — forest green & gold.
*/

/* ============================================================
   OVERRIDE KADENCE GLOBAL PALETTE VARIABLES
   These replace Kadence's defaults with our design tokens
   ============================================================ */
:root {
	--global-palette1: #0A1A0F;
	--global-palette2: #1B4332;
	--global-palette3: #D4A017;
	--global-palette4: #b8880f;
	--global-palette5: #4A5568;
	--global-palette6: #888888;
	--global-palette7: #F8F6F0;
	--global-palette8: #ffffff;
	--global-palette9: #ffffff;
	--global-palette-highlight: #D4A017;
	--global-body-font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--global-heading-font-family: 'Bebas Neue', sans-serif;
}

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
	--l947-black: #000000;
	--l947-black-soft: #0a1a0f;
	--l947-forest: #1b4332;
	--l947-forest-dark: #163829;
	--l947-forest-mid: #1e4d3a;
	--l947-gold: #d4a017;
	--l947-gold-light: #f5c842;
	--l947-gold-dark: #b8880f;
	--l947-white: #ffffff;
	--l947-off-white: #f8f6f0;
	--l947-gray-dark: #1a1a1a;
	--l947-gray-mid: #444444;
	--l947-gray-muted: #888888;
	--l947-gray-light: #cccccc;
	--l947-shell: min(1180px, calc(100vw - 32px));
	--l947-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

html,
body {
	background-color: var(--l947-white);
	color: var(--l947-gray-dark);
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 18px;
	line-height: 1.75;
}

body.local947-front-page {
	margin: 0;
	background: var(--l947-white);
	color: var(--l947-gray-dark);
}

body.local947-inner-page {
	margin: 0;
	background: linear-gradient(180deg, #ffffff 0%, #f3f1eb 100%);
	color: var(--l947-gray-dark);
}

.local947-theme * {
	box-sizing: border-box;
}

.local947-theme a {
	color: inherit;
	text-decoration: none;
}

.local947-theme img {
	display: block;
	max-width: 100%;
	height: auto;
}

.local947-theme h1,
.local947-theme h2,
.local947-theme h3,
.local947-theme h4 {
	margin: 0;
	font-family: 'Bebas Neue', sans-serif;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.local947-theme p {
	margin: 0 0 1rem;
}

.local947-theme ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.local947-shell {
	width: var(--l947-shell);
	margin: 0 auto;
}

.local947-site-shell {
	min-height: 100vh;
}

.local947-topbar {
	background: var(--l947-gold);
	color: var(--l947-black);
}

.local947-topbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 34px;
	font-size: 12px;
	font-weight: 700;
}

.local947-phone-link {
	font-size: 15px;
	font-weight: 800;
	letter-spacing: 0.02em;
}

.local947-socials {
	display: flex;
	align-items: center;
	gap: 8px;
}

.local947-socials a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 999px;
	background: var(--l947-black);
	color: var(--l947-gold);
	transition: transform 0.2s ease, background-color 0.2s ease;
}

.local947-socials a:hover,
.local947-socials a:focus-visible {
	transform: translateY(-1px);
	background: #1f1f1f;
}

.local947-socials svg {
	width: 12px;
	height: 12px;
	fill: currentColor;
}

.local947-brandbar {
	background: var(--l947-black);
	color: var(--l947-white);
	padding: 16px 0 14px;
	box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

.local947-brandbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
}

.local947-brand {
	display: flex;
	align-items: center;
	gap: 16px;
	min-width: 0;
	flex: 1 1 auto;
}

.local947-brand img {
	width: 82px;
	flex: 0 0 auto;
}

.local947-brand-text {
	display: grid;
	gap: 2px;
	min-width: 0;
	flex: 1 1 auto;
}

.local947-brand-eyebrow,
.local947-brand-subtitle {
	margin: 0;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.local947-brand-eyebrow {
	margin: 0 !important;
}

.local947-brand h1 {
	font-size: clamp(1.15rem, 1.65vw, 1.6rem);
	line-height: 1.02;
	color: #f4f4f4;
	text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
	max-width: 100%;
}

.local947-brand-subtitle {
	color: var(--l947-gold);
}

.local947-contact-button,
.local947-phone-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 11px 18px;
	border-radius: 3px;
	background: var(--l947-gold);
	color: var(--l947-black);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	white-space: nowrap;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.local947-contact-button {
	flex: 0 0 auto;
	margin-left: 8px;
}

.local947-header-actions {
	display: flex;
	align-items: center;
	gap: 10px;
	flex: 0 0 auto;
}

.local947-menu-toggle {
	display: none;
	align-items: center;
	gap: 10px;
	padding: 10px 14px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: transparent;
	color: var(--l947-white);
	font: inherit;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
}

.local947-submenu-toggle {
	display: none;
}

.local947-menu-toggle-icon,
.local947-menu-toggle-icon::before,
.local947-menu-toggle-icon::after {
	display: block;
	width: 18px;
	height: 2px;
	background: currentColor;
	transition: transform 0.2s ease, opacity 0.2s ease;
	content: "";
}

.local947-menu-toggle-icon {
	position: relative;
}

.local947-menu-toggle-icon::before {
	position: absolute;
	top: -6px;
	left: 0;
}

.local947-menu-toggle-icon::after {
	position: absolute;
	top: 6px;
	left: 0;
}

.local947-menu-toggle[aria-expanded="true"] .local947-menu-toggle-icon {
	background: transparent;
}

.local947-menu-toggle[aria-expanded="true"] .local947-menu-toggle-icon::before {
	transform: translateY(6px) rotate(45deg);
}

.local947-menu-toggle[aria-expanded="true"] .local947-menu-toggle-icon::after {
	transform: translateY(-6px) rotate(-45deg);
}

.local947-contact-button:hover,
.local947-contact-button:focus-visible,
.local947-phone-button:hover,
.local947-phone-button:focus-visible {
	background: var(--l947-gold-dark);
	transform: translateY(-1px);
}

.local947-nav {
	background: #232323;
	color: var(--l947-white);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 2px 0 rgba(0, 0, 0, 0.18);
}

.local947-menu,
.local947-menu ul {
	list-style: none;
}

.local947-menu {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2px;
	min-height: 40px;
}

.local947-menu > li {
	position: relative;
}

.local947-menu a {
	display: block;
	padding: 11px 14px;
	font-size: 12px;
	font-weight: 700;
	color: #f5f5f5;
	letter-spacing: 0.01em;
	text-shadow: 0 1px 0 rgba(0, 0, 0, 0.45);
	text-transform: none;
	white-space: nowrap;
}

.local947-menu li:hover > a,
.local947-menu li.current-menu-item > a,
.local947-menu li.current_page_item > a {
	color: var(--l947-gold);
}

.local947-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 20;
	min-width: 220px;
	padding: 8px 0;
	background: #222;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.26);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.local947-menu .sub-menu .sub-menu {
	top: -8px;
	left: calc(100% - 4px);
	min-width: 240px;
	border-left: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 12px 34px rgba(0, 0, 0, 0.34);
	transform: translateX(8px);
}

.local947-menu .sub-menu a {
	padding: 10px 16px;
	font-size: 12px;
}

.local947-menu .sub-menu > li {
	position: relative;
}

.local947-menu .sub-menu > li + li {
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.local947-menu .sub-menu > li > a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	line-height: 1.35;
}

.local947-menu .sub-menu > li.menu-item-has-children > a::after {
	content: "›";
	flex: 0 0 auto;
	font-size: 15px;
	line-height: 1;
	color: rgba(255, 255, 255, 0.75);
}

.local947-menu .sub-menu > li:hover > a::after,
.local947-menu .sub-menu > li:focus-within > a::after {
	color: var(--l947-gold);
}

.local947-menu .sub-menu li:hover > a,
.local947-menu .sub-menu li:focus-within > a {
	background: rgba(255, 255, 255, 0.04);
}

.local947-menu li:hover > .sub-menu,
.local947-menu li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.local947-menu .sub-menu li:hover > .sub-menu,
.local947-menu .sub-menu li:focus-within > .sub-menu {
	transform: translateX(0);
}

.local947-hero {
	position: relative;
	background:
		linear-gradient(90deg, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.62) 38%, rgba(0, 0, 0, 0.28) 100%),
		url('/wp-content/uploads/2022/02/slide.jpeg') center/cover no-repeat;
	color: var(--l947-white);
}

.local947-hero-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.26)),
		linear-gradient(90deg, rgba(5, 13, 11, 0.42), rgba(5, 13, 11, 0.08) 54%, rgba(5, 13, 11, 0) 72%);
}

.local947-hero-inner {
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: 325px;
	padding: 92px 0 32px;
}

.local947-hero-copy {
	max-width: 575px;
	padding: 10px 0 0;
	margin-left: 24px;
}

.local947-hero-copy h2 {
	font-size: clamp(2.4rem, 4vw, 3.65rem);
	line-height: 0.95;
	color: #ffffff;
	text-shadow: 0 4px 22px rgba(0, 0, 0, 0.55);
	max-width: 520px;
}

.local947-hero-copy p {
	margin-top: 12px;
	color: var(--l947-gold);
	font-size: clamp(1.05rem, 1.55vw, 1.3rem);
	font-weight: 800;
	text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
}

.local947-about {
	padding: 44px 0 54px;
	background:
		linear-gradient(180deg, #ffffff 0%, #f6f6f3 100%);
}

.local947-about-grid {
	display: grid;
	grid-template-columns: minmax(220px, 340px) minmax(0, 1fr);
	gap: 28px;
	align-items: start;
}

.local947-about-media img {
	width: 100%;
	border: 8px solid #ffffff;
	box-shadow: var(--l947-shadow);
}

.local947-about-card {
	padding: 34px 34px 26px;
	background: #f4f0e7;
	box-shadow: var(--l947-shadow);
}

.local947-about-card h3,
.local947-law h3,
.local947-cta h3 {
	font-size: clamp(1.7rem, 2.5vw, 2.35rem);
	line-height: 1.1;
	color: var(--l947-black-soft);
}

.local947-about-card p,
.local947-law p {
	font-size: 1rem;
	line-height: 1.85;
	color: #4f4b45;
}

.local947-divider {
	width: 62px;
	height: 4px;
	margin: 16px 0 22px;
	background: var(--l947-gold);
}

.local947-law {
	padding: 34px 0 38px;
	background: #ffffff;
}

.local947-centered-copy {
	max-width: 980px;
	margin: 0 auto;
	text-align: center;
}

.local947-centered-copy .local947-divider {
	margin-right: auto;
	margin-left: auto;
}

.local947-cta {
	padding: 44px 0 52px;
	background: var(--l947-gold);
}

.local947-cta .local947-divider {
	background: rgba(0, 0, 0, 0.55);
}

.local947-footer {
	background: #3a3a3a;
	color: #e6e6e6;
}

.local947-footer-grid {
	display: grid;
	grid-template-columns: 170px 1fr 1.2fr;
	gap: 36px;
	align-items: center;
	padding: 42px 0 28px;
}

.local947-footer-logo img {
	width: 150px;
}

.local947-footer h4 {
	margin-bottom: 14px;
	font-size: 1.1rem;
	color: var(--l947-white);
}

.local947-footer li,
.local947-footer p,
.local947-footer a {
	font-size: 0.95rem;
	line-height: 1.7;
	color: #e0e0e0;
}

.local947-footer li + li {
	margin-top: 8px;
}

.local947-socials-footer {
	margin-top: 16px;
}

.local947-footer-bottom {
	padding: 16px 0 20px;
	background: #2d2d2d;
	text-align: center;
}

.local947-footer-bottom p {
	margin: 0;
	font-size: 0.8rem;
	color: #d0d0d0;
}

.local947-page-shell {
	padding: 32px 0 64px;
}

.local947-entry-card {
	padding: 28px 28px 18px;
	background: #f4f0e7;
	box-shadow: var(--l947-shadow);
}

.local947-entry-header {
	margin-bottom: 18px;
}

.local947-entry-title {
	font-size: clamp(2rem, 3.2vw, 2.8rem);
	line-height: 1.02;
	color: var(--l947-black-soft);
}

.local947-entry-content {
	color: #4f4b45;
}

.local947-entry-content > *:first-child {
	margin-top: 0;
}

.local947-entry-content > *:last-child {
	margin-bottom: 0;
}

.local947-entry-content .wp-block-cover {
	overflow: hidden;
	margin: 0 0 0;
	min-height: 260px !important;
}

.local947-entry-content .wp-block-cover__inner-container {
	width: min(100%, 960px);
	padding-right: 24px;
	padding-left: 24px;
}

.local947-entry-content .wp-block-cover .wp-block-heading {
	font-size: clamp(2rem, 3.4vw, 3rem);
	line-height: 0.95;
	color: #ffffff !important;
	text-shadow: 0 3px 18px rgba(0, 0, 0, 0.45);
}

.local947-entry-content > .wp-block-group {
	margin: 0;
	padding-right: 48px !important;
	padding-left: 48px !important;
}

.local947-entry-content > .wp-block-group:not(.has-black-background-color) {
	background: #ffffff !important;
}

.local947-entry-content > .wp-block-group + .wp-block-group {
	margin-top: 0;
}

.local947-entry-content .wp-block-group .wp-block-heading {
	color: var(--l947-black-soft) !important;
}

.local947-entry-content .wp-block-group:not(.has-black-background-color) .wp-block-heading:first-child {
	font-size: clamp(1.4rem, 2vw, 2rem);
	line-height: 1;
	margin-bottom: 12px;
}

.local947-entry-content .wp-block-group.has-black-background-color {
	display: none;
}

.local947-entry-content p,
.local947-entry-content li {
	font-size: 1rem;
	line-height: 1.8;
}

.local947-entry-content a {
	color: var(--l947-forest);
	text-decoration: underline;
}

.local947-entry-content ul,
.local947-entry-content ol {
	margin: 0 0 1rem 1.2rem;
	padding: 0;
}

.local947-entry-content ul {
	list-style: disc;
}

.local947-entry-content ol {
	list-style: decimal;
}

.local947-post-listing + .local947-post-listing {
	margin-top: 28px;
	padding-top: 28px;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.local947-post-listing-title {
	margin-bottom: 12px;
	font-size: 1.8rem;
	line-height: 1.05;
}

.local947-post-listing-title a {
	color: var(--l947-black-soft);
}

.local947-post-listing-excerpt {
	color: #4f4b45;
}

.local947-contact-shell {
	padding-top: 22px;
}

.local947-contact-card {
	padding-top: 28px;
	padding-bottom: 28px;
}

.local947-contact-header {
	margin-bottom: 40px;
	text-align: center;
}

.local947-contact-header .local947-divider {
	margin-right: auto;
	margin-left: auto;
}

.local947-contact-panel {
	background: #ffffff;
}

.local947-contact-grid {
	display: grid;
	grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
	align-items: start;
	gap: 42px;
	padding: 25px 18px 0;
}

.local947-contact-details {
	padding: 8px 0 0;
}

.local947-contact-item + .local947-contact-item {
	margin-top: 28px;
}

.local947-contact-item {
	display: grid;
	grid-template-columns: 46px minmax(0, 1fr);
	gap: 14px;
	align-items: start;
}

.local947-contact-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	margin-top: 2px;
	border-radius: 999px;
	background: var(--l947-gold);
	color: var(--l947-black);
	line-height: 1;
}

.local947-contact-icon svg {
	width: 16px;
	height: 16px;
	fill: currentColor;
}

.local947-contact-item h2 {
	margin-bottom: 4px;
	font-size: 1.4rem;
	line-height: 1;
	color: var(--l947-black-soft);
}

.local947-contact-item p {
	margin-bottom: 4px;
	font-size: 0.96rem;
	line-height: 1.7;
	color: #58524a;
}

.local947-contact-item a {
	color: var(--l947-forest);
	text-decoration: none;
	font-weight: 600;
}

.local947-contact-form-wrap {
	padding-top: 0;
}

.local947-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.local947-field,
.local947-field-full {
	margin: 0;
}

.local947-field-full {
	grid-column: 1 / -1;
}

.local947-contact-form input,
.local947-contact-form textarea {
	width: 100%;
	border: 1px solid #e4e1d8;
	background: #f5f3ee;
	color: var(--l947-gray-dark);
	font: inherit;
	font-size: 0.95rem;
	line-height: 1.4;
	padding: 14px 16px;
	border-radius: 0;
	box-shadow: none;
}

.local947-contact-form textarea {
	min-height: 118px;
	resize: vertical;
}

.local947-contact-form input::placeholder,
.local947-contact-form textarea::placeholder {
	color: #908a81;
}

.local947-submit-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 14px;
	padding: 12px 24px;
	border: 0;
	background: var(--l947-gold);
	color: var(--l947-black);
	font-family: 'Bebas Neue', sans-serif;
	font-size: 1.05rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.local947-submit-button:hover,
.local947-submit-button:focus-visible {
	background: var(--l947-gold-dark);
	transform: translateY(-1px);
}

.local947-contact-disclaimer {
	margin-top: 16px;
	font-size: 0.82rem;
	line-height: 1.6;
	color: #726d66;
}

.local947-contact-map {
	margin-top: 38px;
	border-top: 1px solid #ebe7dc;
	padding-top: 18px;
}

.local947-contact-map iframe {
	display: block;
	width: 100%;
	height: 370px;
	border: 0;
	filter: grayscale(0.08);
}

.local947-form-notice {
	margin-bottom: 20px;
	padding: 14px 18px;
	border-left: 4px solid var(--l947-gold);
	background: #f7f4eb;
}

.local947-form-notice p {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.6;
}

.local947-form-notice-success {
	border-left-color: #1b7f4c;
	background: #edf8f1;
}

.local947-form-notice-error {
	border-left-color: #a33a2b;
	background: #fbeeee;
}

@media (max-width: 960px) {
	.local947-brandbar-inner,
	.local947-about-grid,
	.local947-footer-grid {
		grid-template-columns: 1fr;
	}

	.local947-brandbar-inner {
		align-items: flex-start;
	}

	.local947-header-actions {
		width: 100%;
		justify-content: space-between;
	}

	.local947-contact-button {
		margin-left: 0;
	}

	.local947-about-media {
		max-width: 420px;
	}

	.local947-contact-grid {
		grid-template-columns: 1fr;
		gap: 26px;
	}
}

@media (max-width: 720px) {
	.local947-topbar-inner {
		padding: 8px 0;
	}

	.local947-topbar-inner,
	.local947-brandbar-inner {
		flex-direction: row;
		align-items: center;
	}

	.local947-brand {
		align-items: center;
		gap: 12px;
		min-width: 0;
	}

	.local947-header-actions {
		width: auto;
		margin-left: auto;
	}

	.local947-contact-button {
		display: none;
	}

	.local947-menu-toggle {
		display: inline-flex;
	}

	.local947-nav {
		display: none;
	}

	.local947-nav.is-open {
		display: block;
	}

	.local947-nav .local947-shell {
		width: min(100%, calc(100vw - 24px));
	}

	.local947-menu {
		display: block;
		padding: 8px 0 12px;
	}

	.local947-menu .sub-menu {
		position: static;
		min-width: 0;
		padding: 0 0 0 14px;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		display: none;
		border-left: 1px solid rgba(255, 255, 255, 0.08);
		margin: 4px 0 8px 12px;
	}

	.local947-menu li.submenu-open > .sub-menu {
		display: block;
	}

	.local947-menu .sub-menu .sub-menu {
		display: none;
		position: static;
		top: auto;
		left: auto;
		min-width: 0;
		margin: 4px 0 8px 10px;
		padding: 0 0 0 12px;
		border-left: 1px solid rgba(255, 255, 255, 0.08);
		box-shadow: none;
		transform: none;
	}

	.local947-menu .sub-menu li.submenu-open > .sub-menu {
		display: block;
	}

	.local947-menu > li {
		border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	}

	.local947-menu a {
		padding: 12px 0;
		padding-right: 40px;
		font-size: 14px;
	}

	.local947-menu .sub-menu > li > a {
		display: block;
	}

	.local947-menu .sub-menu > li.menu-item-has-children > a::after {
		content: none;
	}

	.local947-submenu-toggle {
		display: block;
		-webkit-appearance: none;
		appearance: none;
		position: absolute;
		top: 0;
		right: 0;
		width: 36px;
		height: 44px;
		border: 0;
		background: transparent !important;
		box-shadow: none;
		outline: none;
		color: rgba(255, 255, 255, 0.9);
		cursor: pointer;
	}

	.local947-submenu-toggle span {
		position: absolute;
		top: 16px;
		left: 11px;
		width: 10px;
		height: 10px;
		border-right: 2px solid currentColor;
		border-bottom: 2px solid currentColor;
		transform: rotate(45deg);
		transition: transform 0.2s ease;
	}

	.local947-submenu-toggle span::before {
		content: none;
	}

	.local947-menu li.submenu-open > .local947-submenu-toggle span {
		transform: rotate(225deg);
	}

	.local947-hero-inner {
		min-height: 260px;
		padding: 44px 0 42px;
		align-items: center;
	}

	.local947-brand img {
		width: 60px;
	}

	.local947-brand h1 {
		font-size: 1rem;
	}

	.local947-brand-eyebrow,
	.local947-brand-subtitle {
		font-size: 9px;
		letter-spacing: 0.06em;
	}

	.local947-hero-copy {
		margin-left: 0;
		padding-right: 0;
	}

	.local947-hero-copy h2 {
		font-size: 2.25rem;
	}

	.local947-about-card {
		padding: 26px 22px 20px;
	}

	.local947-entry-card {
		padding: 24px 22px;
	}

	.local947-entry-content > .wp-block-group {
		padding-right: 22px !important;
		padding-left: 22px !important;
	}

	.local947-entry-content .wp-block-cover__inner-container {
		padding-right: 16px;
		padding-left: 16px;
	}

	.local947-contact-grid {
		padding-right: 0;
		padding-left: 0;
	}

	.local947-form-grid {
		grid-template-columns: 1fr;
	}

	.local947-contact-map iframe {
		height: 300px;
	}

	.local947-footer-grid,
	.local947-footer-links,
	.local947-footer-contact,
	.local947-footer-bottom {
		text-align: center;
	}

	.local947-footer-logo img {
		margin-right: auto;
		margin-left: auto;
	}

	.local947-socials-footer {
		justify-content: center;
	}
}
