/*
Theme Name: County Locksmith GeneratePress
Description: GeneratePress child theme for the County Locksmith Inc website.
Author: County Locksmith Inc
Template: generatepress
Version: 1.0.0
Text Domain: countylocksmith
*/

:root {
	--county-blue: #164f86;
	--county-blue-dark: #0d355d;
	--county-gold: #f4b52e;
	--county-ink: #17212b;
	--county-muted: #5c6874;
	--county-line: #d9e0e7;
	--county-surface: #f4f7fa;
}

/* Commercial hardware brands directory. */
.county-home-brands {
	background: #f4f7f9;
	padding: 70px 0 76px;
}

.county-brand-strip {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: 30px;
}

.county-brand-strip a {
	align-items: center;
	background: #fff;
	border: 1px solid #d7e0e7;
	border-left: 4px solid #d89b19;
	border-radius: 6px;
	color: #153b5e;
	display: flex;
	font-size: 16px;
	font-weight: 800;
	justify-content: center;
	min-height: 72px;
	padding: 12px;
	text-align: center;
	text-decoration: none;
}

.county-brand-strip a:hover,
.county-brand-strip a:focus {
	border-color: #8fa8bd;
	color: #8a5700;
	transform: translateY(-2px);
}

.county-home-brands__action {
	margin: 28px 0 0;
	text-align: center;
}

.county-home-brands__action a {
	align-items: center;
	color: #124f86;
	display: inline-flex;
	font-weight: 800;
	gap: 7px;
}

.county-home-brands__action svg {
	height: 17px;
	width: 17px;
}

.county-brands-page {
	background: #fff;
}

.county-brands__inner {
	margin: 0 auto;
	max-width: 1180px;
	padding-left: 24px;
	padding-right: 24px;
}

.county-brands-hero {
	background: #f4f7f9;
	border-bottom: 1px solid #d7e0e7;
	padding: 72px 0 64px;
}

.county-brands-hero h1 {
	color: #0d355d;
	font-size: 48px;
	line-height: 1.12;
	margin: 8px 0 20px;
	max-width: 820px;
}

.county-brands-hero__intro {
	color: #44515d;
	font-size: 19px;
	line-height: 1.65;
	max-width: 820px;
}

.county-brands-hero__intro > *:last-child {
	margin-bottom: 0;
}

.county-brands-directory {
	padding: 70px 0 82px;
}

.county-brands-heading {
	align-items: end;
	display: grid;
	gap: 36px;
	grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
	margin-bottom: 34px;
}

.county-brands-heading h2 {
	color: #0d355d;
	font-size: 34px;
	line-height: 1.2;
	margin: 6px 0 0;
}

.county-brands-heading > p {
	color: #52606c;
	margin: 0;
}

.county-brand-grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.county-brand-card {
	background: #fff;
	border: 1px solid #d7e0e7;
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	min-height: 330px;
	overflow: hidden;
	scroll-margin-top: 120px;
}

.county-brand-card__media {
	align-items: center;
	background: #f4f7f9;
	display: flex;
	height: 145px;
	justify-content: center;
	overflow: hidden;
	padding: 15px;
}

.county-brand-card__media img {
	height: 100%;
	object-fit: contain;
	width: 100%;
}

.county-brand-card__media > span {
	align-items: center;
	background: #153b5e;
	border-radius: 50%;
	color: #fff;
	display: flex;
	font-size: 28px;
	font-weight: 800;
	height: 78px;
	justify-content: center;
	width: 78px;
}

.county-brand-card__body {
	flex: 1;
	padding: 20px 20px 14px;
}

.county-brand-card__body h3 {
	color: #0d355d;
	font-size: 22px;
	line-height: 1.2;
	margin: 0 0 9px;
}

.county-brand-card__body p {
	color: #52606c;
	font-size: 14px;
	line-height: 1.5;
	margin: 0;
}

.county-brand-card__actions {
	border-top: 1px solid #e1e7ec;
	display: flex;
	gap: 14px;
	justify-content: space-between;
	padding: 13px 20px;
}

.county-brand-card__actions a {
	color: #124f86;
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
}

.county-brand-card__actions a:hover,
.county-brand-card__actions a:focus {
	color: #8a5700;
	text-decoration: underline;
}

.county-brands-cta {
	background: #0d355d;
	color: #fff;
	padding: 54px 0;
}

.county-brands-cta__inner {
	align-items: center;
	display: grid;
	gap: 36px;
	grid-template-columns: minmax(0, 1fr) auto;
}

.county-brands-cta h2 {
	color: #fff;
	font-size: 30px;
	line-height: 1.25;
	margin: 6px 0 10px;
}

.county-brands-cta p:last-child {
	color: #dce8f2;
	margin: 0;
	max-width: 780px;
}

@media (max-width: 1000px) {
	.county-brand-strip,
	.county-brand-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 700px) {
	.county-home-brands {
		padding: 48px 0 54px;
	}

	.county-brand-strip {
		grid-template-columns: 1fr 1fr;
	}

	.county-brand-strip a {
		font-size: 14px;
		min-height: 64px;
	}

	.county-brands__inner {
		padding-left: 16px;
		padding-right: 16px;
	}

	.county-brands-hero {
		padding: 48px 0 42px;
	}

	.county-brands-hero h1 {
		font-size: 38px;
	}

	.county-brands-hero__intro {
		font-size: 17px;
	}

	.county-brands-directory {
		padding: 48px 0 56px;
	}

	.county-brands-heading,
	.county-brands-cta__inner {
		align-items: start;
		grid-template-columns: 1fr;
	}

	.county-brands-heading {
		gap: 14px;
	}

	.county-brands-heading h2 {
		font-size: 29px;
	}

	.county-brand-grid {
		grid-template-columns: 1fr;
	}

	.county-brand-card {
		min-height: 0;
	}

	.county-brand-card__media {
		height: 190px;
	}

	.county-brands-cta {
		padding: 46px 0;
	}

	.county-brands-cta h2 {
		font-size: 27px;
	}
}

/* WooCommerce product archive sidebar. */
.woocommerce-shop #page,
.tax-product_cat #page,
.tax-product_tag #page,
.single-product #page,
.woocommerce-cart #page,
.woocommerce-checkout #page,
.woocommerce-shop .site-content,
.tax-product_cat .site-content,
.tax-product_tag .site-content,
.single-product .site-content,
.woocommerce-cart .site-content,
.woocommerce-checkout .site-content {
	max-width: 1280px;
}

.county-shop-layout {
	align-items: start;
	display: grid;
	gap: 34px;
	grid-template-columns: minmax(220px, 270px) minmax(0, 1fr);
}

.county-product-header {
	border-bottom: 1px solid var(--county-line);
	margin-bottom: 28px;
	padding-bottom: 18px;
}

.county-product-header h1 {
	color: var(--county-ink);
	font-size: clamp(28px, 3vw, 40px);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.15;
	margin: 0 0 12px;
	max-width: 980px;
}

.county-product-header .woocommerce-breadcrumb {
	color: var(--county-muted);
	font-size: 15px;
	margin: 0;
}

.county-product-price {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 14px 0 24px;
}

.county-product-price__amount {
	color: var(--county-blue-dark);
	font-size: 23px;
	font-weight: 800;
	line-height: 1.2;
}

.county-product-price__amount del {
	color: var(--county-muted);
	font-size: 17px;
	font-weight: 600;
	opacity: 0.72;
}

.county-product-price__amount ins {
	color: #9a8f00;
	text-decoration: none;
}

.county-product-price__savings {
	background: var(--county-gold);
	border-radius: 999px;
	color: var(--county-blue-dark);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.03em;
	padding: 6px 11px;
	text-transform: uppercase;
}

.county-free-shipping-message {
	align-items: center;
	background: #eef6ff;
	border: 1px solid rgba(22, 79, 134, 0.2);
	border-radius: 12px;
	color: var(--county-blue-dark);
	display: flex;
	font-size: 15px;
	font-weight: 700;
	gap: 10px;
	line-height: 1.35;
	padding: 12px 14px;
}

.county-free-shipping-message svg {
	color: var(--county-gold-dark, #9a6a00);
	flex: 0 0 auto;
	height: 22px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
	width: 22px;
}

.county-free-shipping-message--product {
	margin: 0 0 18px;
	max-width: 560px;
}

.county-free-shipping-message--cart {
	margin: 0 0 20px;
}

.single-product .summary.entry-summary h2,
.single-product .woocommerce-tabs h2 {
	font-size: 28px;
}

.county-product-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 18px 0 24px;
}

.county-product-badge {
	align-items: center;
	background: #fff;
	border: 1px solid rgba(22, 79, 134, 0.18);
	border-radius: 999px;
	box-shadow: 0 8px 20px rgba(13, 53, 93, 0.08);
	color: var(--county-blue-dark);
	display: inline-flex;
	font-size: 13px;
	font-weight: 800;
	gap: 8px;
	letter-spacing: 0.01em;
	line-height: 1;
	padding: 8px 12px 8px 8px;
}

.county-product-badge__icon {
	align-items: center;
	background: rgba(22, 79, 134, 0.1);
	border-radius: 999px;
	display: inline-flex;
	height: 26px;
	justify-content: center;
	width: 26px;
}

.county-product-badge__icon::before {
	background: var(--county-blue-dark);
	content: "";
	display: block;
	height: 15px;
	mask: var(--county-product-badge-icon) center / contain no-repeat;
	-webkit-mask: var(--county-product-badge-icon) center / contain no-repeat;
	width: 15px;
}

.county-product-badge--fire {
	--county-product-badge-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.6 2.1c.3 2.7-.8 4.4-2.1 5.9-1.1 1.3-2.2 2.6-1.7 4.7-1.4-.8-2.2-2.2-2.3-3.9C5.3 11.1 4 13.3 4 16c0 3.4 2.8 6 6.9 6 4.3 0 7.1-2.6 7.1-6.3 0-2.6-1.3-4.6-2.6-6.3-1.4-1.9-2.7-3.7-1.8-7.3Zm-1.1 11.1c1.8 1.7 2.6 2.9 2.6 4.4 0 1.7-1.3 2.9-3.1 2.9s-3.1-1.2-3.1-2.9c0-1.1.6-2.1 1.8-3.3.5.9 1.2 1.4 1.8 1.7-.2-1 .1-1.8 0-2.8Z'/%3E%3C/svg%3E");
}

.county-product-badge--wind {
	--county-product-badge-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 7.5h9.6c1.3 0 2.4-1.1 2.4-2.4S14.9 2.7 13.6 2.7c-1 0-1.9.6-2.2 1.5l1.8.8c.1-.2.2-.4.4-.4.2 0 .4.2.4.5s-.2.5-.4.5H4v1.9Zm0 5.4h13.8c1.7 0 3.1-1.4 3.1-3.1s-1.4-3.1-3.1-3.1c-1.2 0-2.4.7-2.9 1.9l1.8.8c.2-.5.6-.8 1.1-.8.6 0 1.1.5 1.1 1.2s-.5 1.2-1.1 1.2H4v1.9Zm0 5.4h8.9c.2 0 .4.2.4.5s-.2.5-.4.5c-.2 0-.4-.1-.5-.4l-1.8.8c.4.9 1.2 1.5 2.3 1.5 1.3 0 2.4-1.1 2.4-2.4s-1.1-2.4-2.4-2.4H4v1.9Z'/%3E%3C/svg%3E");
}

.county-product-badge--burglary {
	--county-product-badge-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2 4.5 5.1v5.7c0 5.1 3.1 9.4 7.5 11.2 4.4-1.8 7.5-6.1 7.5-11.2V5.1L12 2Zm0 2.2 5.5 2.3v4.3c0 3.9-2.1 7.2-5.5 8.9-3.4-1.7-5.5-5-5.5-8.9V6.5L12 4.2Zm-2.7 6.2v1.8h5.4v-1.8H9.3Zm0 3.2v1.8h5.4v-1.8H9.3Z'/%3E%3C/svg%3E");
}

.county-product-badge--grade {
	--county-product-badge-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2.4 14.9 8l6.1.9-4.4 4.3 1 6.1L12 16.4l-5.5 2.9 1-6.1L3.1 8.9 9.2 8 12 2.4Zm0 4.3-1.4 2.8-3.1.4 2.2 2.2-.5 3.1 2.8-1.5 2.8 1.5-.5-3.1 2.2-2.2-3.1-.4L12 6.7Z'/%3E%3C/svg%3E");
}

.county-product-badge--lockset {
	--county-product-badge-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 4h10v5h2v11H5V9h2V4Zm2 5h6V6H9v3Zm-2 2v7h10v-7H7Zm4 1.6h2v3.8h-2v-3.8Z'/%3E%3C/svg%3E");
}

.county-shop-sidebar__mobile-toggle,
.county-shop-sidebar__backdrop,
.county-shop-sidebar__close {
	display: none;
}

.county-shop-sidebar__panel {
	background: #fff;
	border: 1px solid var(--county-line);
	border-radius: 8px;
	box-shadow: 0 8px 22px rgba(13, 53, 93, 0.07);
	overflow: visible;
	position: relative;
}

.county-shop-sidebar__eyebrow {
	background: var(--county-blue-dark);
	color: var(--county-gold);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.12em;
	margin: 0;
	padding: 15px 18px 2px;
	text-transform: uppercase;
}

.county-shop-sidebar h2 {
	background: var(--county-blue-dark);
	color: #fff;
	font-size: 18px;
	margin: 0;
	padding: 0;
}

.county-shop-sidebar__toggle {
	align-items: center;
	background: transparent;
	border: 0;
	color: #fff;
	cursor: pointer;
	display: flex;
	font: inherit;
	justify-content: space-between;
	padding: 0 18px 15px;
	text-align: left;
	width: 100%;
}

.county-shop-sidebar__toggle > span {
	display: grid;
	gap: 2px;
}

.county-shop-sidebar__toggle strong {
	font-weight: 800;
}

.county-shop-sidebar__toggle small {
	color: #c9d8e5;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0;
	line-height: 1.3;
}

.county-shop-sidebar__toggle svg {
	fill: none;
	height: 18px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
	transition: transform 0.2s ease;
	width: 18px;
}

.county-shop-sidebar__toggle[aria-expanded="true"] svg {
	transform: rotate(180deg);
}

.county-shop-sidebar__toggle:hover,
.county-shop-sidebar__toggle:focus {
	color: var(--county-gold);
	outline: none;
}

.county-shop-sidebar__toggle:focus-visible {
	outline: 2px solid var(--county-gold);
	outline-offset: -4px;
}

.county-product-categories,
.county-product-categories ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.county-product-categories {
	padding: 10px;
}

.county-product-categories[hidden] {
	display: none;
}

.county-product-categories ul {
	background: #fff;
	border-top: 1px solid var(--county-line);
	margin: 0;
	width: 100%;
}

.county-product-categories ul[hidden] {
	display: none;
}

.county-product-categories li {
	align-items: center;
	color: var(--county-muted);
	display: flex;
	flex-wrap: wrap;
	font-size: 11px;
	font-weight: 800;
	margin: 0;
	padding-right: 16px;
}

.county-product-categories > li {
	background: #f3f5f7;
	border: 1px solid #e0e5e9;
	border-radius: 4px;
	display: block;
	margin-bottom: 7px;
	padding-right: 0;
}

.county-product-categories > li:last-child {
	margin-bottom: 0;
}

.county-product-categories > li > .county-product-cat__row > a,
.county-product-categories > li.current-cat > a {
	padding: 11px 12px;
}

.county-product-categories > li > .county-product-cat__row > .county-product-cat__toggle {
	margin-left: 0;
	margin-right: 7px;
}

.county-product-categories > li > ul > li {
	padding-left: 10px;
}

.county-product-cat__row {
	align-items: center;
	display: flex;
	width: 100%;
}

.county-product-categories a {
	align-items: center;
	border-left: 4px solid transparent;
	color: var(--county-ink);
	display: flex;
	flex: 1;
	font-size: 14px;
	font-weight: 700;
	justify-content: space-between;
	line-height: 1.35;
	padding: 12px 16px;
	text-decoration: none;
}

.county-product-cat__toggle {
	align-items: center;
	background: transparent;
	border: 0;
	border-radius: 999px;
	color: var(--county-muted);
	cursor: pointer;
	display: inline-flex;
	flex: 0 0 32px;
	height: 32px;
	justify-content: center;
	margin-left: 4px;
	padding: 0;
}

.county-product-cat__toggle svg {
	fill: none;
	height: 15px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2.5;
	transition: transform 0.2s ease;
	width: 15px;
}

.county-product-cat__toggle[aria-expanded="true"] svg {
	transform: rotate(180deg);
}

.county-product-cat__toggle:hover,
.county-product-cat__toggle:focus {
	background: var(--county-gold);
	color: var(--county-blue-dark);
	outline: none;
}

.county-product-cat__toggle:focus-visible {
	box-shadow: 0 0 0 2px var(--county-gold);
}

.county-product-categories a:hover,
.county-product-categories a:focus,
.county-product-categories .current-cat,
.county-product-categories .current-cat-parent {
	background: #eef5fa;
}

.county-product-categories > li:hover,
.county-product-categories > li:focus-within {
	border-color: #c9d8e5;
}

.county-product-categories .current-cat > a,
.county-product-categories .current-cat-parent > a {
	border-left-color: var(--county-gold);
	color: var(--county-blue-dark);
}

.county-product-categories .count {
	background: var(--county-surface);
	border-radius: 20px;
	color: var(--county-muted);
	font-size: 11px;
	font-weight: 800;
	margin-left: 8px;
	padding: 3px 7px;
}

.county-product-filters {
	border-top: 1px solid var(--county-line);
	padding: 16px 18px 18px;
}

.county-product-filters__eyebrow {
	color: var(--county-blue-dark);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.12em;
	margin: 0 0 8px;
	text-transform: uppercase;
}

.county-product-filters__empty {
	color: var(--county-muted);
	font-size: 13px;
	line-height: 1.45;
	margin: 0;
}

.county-product-active-filters {
	border-bottom: 1px solid var(--county-line);
	border-top: 1px solid var(--county-line);
	margin: 0 0 20px;
	padding: 12px 0;
}

.county-product-active-filters__header {
	align-items: center;
	display: flex;
	font-size: 12px;
	font-weight: 800;
	justify-content: space-between;
	line-height: 1.25;
	margin: 0 0 8px;
}

.county-product-active-filters__header span {
	color: var(--county-blue-dark);
	text-transform: uppercase;
}

.county-product-active-filters__header a {
	color: var(--county-muted);
	font-size: 12px;
	font-weight: 800;
	text-decoration: none;
}

.county-product-active-filters__header a:hover,
.county-product-active-filters__header a:focus {
	color: var(--county-blue-dark);
	text-decoration: underline;
}

.county-product-active-filters__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}

.county-product-active-filters__chips a {
	align-items: center;
	background: #fff;
	border: 1px solid var(--county-line);
	border-radius: 999px;
	color: var(--county-ink);
	display: inline-flex;
	font-size: 12px;
	font-weight: 800;
	gap: 6px;
	line-height: 1.2;
	padding: 6px 9px;
	text-decoration: none;
}

.county-product-active-filters__chips a:hover,
.county-product-active-filters__chips a:focus {
	background: #eef5fa;
	border-color: #bfd3e1;
	color: var(--county-blue-dark);
	outline: none;
}

.county-product-filter-group {
	border-top: 1px solid var(--county-line);
	padding: 8px 0;
}

.county-product-filter-group:first-of-type {
	border-top: 0;
	padding-top: 0;
}

.county-product-filter-group:last-child {
	padding-bottom: 0;
}

.county-product-filter-group h3 {
	margin: 0;
}

.county-product-filter-group__toggle {
	align-items: center;
	background: transparent;
	border: 0;
	border-radius: 7px;
	color: var(--county-ink);
	cursor: pointer;
	display: flex;
	font-size: 14px;
	font-weight: 800;
	justify-content: space-between;
	line-height: 1.25;
	margin: 0;
	padding: 9px 4px;
	text-align: left;
	width: 100%;
}

.county-product-filter-group__toggle svg {
	fill: none;
	flex: 0 0 16px;
	height: 16px;
	margin-left: 10px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2.5;
	transition: transform 0.2s ease;
	width: 16px;
}

.county-product-filter-group__toggle[aria-expanded="true"] svg {
	transform: rotate(180deg);
}

.county-product-filter-group__toggle:hover,
.county-product-filter-group__toggle:focus {
	background: #eef5fa;
	color: var(--county-blue-dark);
	outline: none;
}

.county-product-filter-group__toggle:focus-visible {
	box-shadow: 0 0 0 2px var(--county-gold);
}

.county-product-filter-group ul[hidden] {
	display: none;
}

.county-product-filter-group ul {
	list-style: none;
	margin: 5px 0 0;
	max-height: 250px;
	overflow-y: auto;
	padding: 0;
	scrollbar-gutter: stable;
}

.county-product-filter-group li {
	margin: 0;
}

.county-product-filter-group a {
	align-items: center;
	border-radius: 7px;
	color: var(--county-ink);
	display: flex;
	font-size: 13px;
	font-weight: 700;
	justify-content: space-between;
	line-height: 1.3;
	padding: 8px 9px;
	text-decoration: none;
}

.county-product-filter-group a:hover,
.county-product-filter-group a:focus,
.county-product-filter-group .is-active a {
	background: #eef5fa;
	color: var(--county-blue-dark);
	outline: none;
}

.county-product-filter-group .is-active a {
	box-shadow: inset 3px 0 0 var(--county-gold);
}

.county-product-filter-group .count {
	background: var(--county-surface);
	border-radius: 20px;
	color: var(--county-muted);
	font-size: 11px;
	font-weight: 800;
	margin-left: 8px;
	padding: 3px 7px;
}

.county-product-price-filter__panel[hidden],
.county-product-more-filters__groups[hidden] {
	display: none;
}

.county-product-price-filter__panel {
	padding: 4px 4px 10px;
}

.county-product-price-filter__inputs {
	display: grid;
	gap: 8px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.county-product-price-filter label {
	display: grid;
	gap: 4px;
}

.county-product-price-filter label span {
	color: var(--county-muted);
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
}

.county-product-price-filter input {
	background: #fff;
	border: 1px solid #cbd6df;
	border-radius: 5px;
	box-sizing: border-box;
	color: var(--county-ink);
	font-size: 13px;
	min-width: 0;
	padding: 8px;
	width: 100%;
}

.county-product-price-filter input:focus {
	border-color: var(--county-blue);
	box-shadow: 0 0 0 2px rgba(22, 79, 134, 0.14);
	outline: none;
}

.county-product-price-filter form > button {
	background: var(--county-blue-dark);
	border: 0;
	border-radius: 5px;
	color: #fff;
	cursor: pointer;
	font-size: 12px;
	font-weight: 800;
	margin-top: 8px;
	padding: 9px 12px;
	width: 100%;
}

.county-product-price-filter form > button:hover,
.county-product-price-filter form > button:focus {
	background: var(--county-blue);
	color: #fff;
	outline: none;
}

.county-product-availability-filter {
	border-top: 1px solid var(--county-line);
	padding: 13px 4px;
}

.county-product-availability-filter h3 {
	color: var(--county-ink);
	font-size: 14px;
	font-weight: 800;
	margin: 0 0 9px;
}

.county-product-availability-filter a {
	align-items: center;
	color: var(--county-ink);
	display: flex;
	font-size: 13px;
	font-weight: 700;
	gap: 9px;
	text-decoration: none;
}

.county-product-availability-filter__check {
	align-items: center;
	background: #fff;
	border: 1px solid #acbac6;
	border-radius: 4px;
	color: #fff;
	display: inline-flex;
	flex: 0 0 18px;
	font-size: 12px;
	height: 18px;
	justify-content: center;
	line-height: 1;
}

.county-product-availability-filter a.is-active .county-product-availability-filter__check {
	background: var(--county-blue-dark);
	border-color: var(--county-blue-dark);
}

.county-product-availability-filter a:hover,
.county-product-availability-filter a:focus {
	color: var(--county-blue);
	outline: none;
}

.county-product-more-filters {
	border-top: 2px solid var(--county-line);
	margin-top: 2px;
	padding-bottom: 0;
}

.county-product-more-filters__toggle > span {
	display: grid;
	gap: 2px;
}

.county-product-more-filters__toggle small {
	color: var(--county-muted);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0;
}

.county-product-more-filters__groups {
	border-top: 1px solid var(--county-line);
	margin-top: 5px;
	padding: 0 4px;
}

.county-shop-products {
	min-width: 0;
}

.woocommerce-shop .county-shop-products > ul.products,
.woocommerce-shop .county-shop-products > .woocommerce-pagination {
	display: none;
}

.county-shop-promotion {
	align-items: center;
	background: #ffffff;
	border: 1px solid rgba(13, 53, 93, 0.14);
	border-left: 5px solid var(--county-gold);
	border-radius: 8px;
	box-shadow: 0 12px 28px rgba(13, 53, 93, 0.08);
	display: flex;
	gap: 20px;
	justify-content: space-between;
	margin-bottom: 22px;
	padding: 18px 20px;
}

.county-shop-promotion__content {
	min-width: 0;
}

.county-shop-promotion__eyebrow {
	color: var(--county-blue-dark);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.08em;
	margin: 0 0 6px;
	text-transform: uppercase;
}

.county-shop-promotion h2 {
	color: var(--county-ink);
	font-size: 22px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.18;
	margin: 0 0 6px;
}

.county-shop-promotion p:last-child {
	color: var(--county-muted);
	font-size: 15px;
	line-height: 1.45;
	margin: 0;
}

.county-shop-promotion__button {
	align-items: center;
	background: var(--county-blue-dark);
	border-radius: 7px;
	color: #fff;
	display: inline-flex;
	flex: 0 0 auto;
	font-size: 13px;
	font-weight: 800;
	gap: 8px;
	justify-content: center;
	line-height: 1.2;
	min-height: 42px;
	padding: 11px 15px;
	text-decoration: none;
	text-transform: uppercase;
}

.county-shop-promotion__button:hover,
.county-shop-promotion__button:focus {
	background: var(--county-blue);
	color: #fff;
}

.county-shop-promotion__button:focus-visible {
	box-shadow: 0 0 0 3px rgba(244, 181, 46, 0.55);
	outline: none;
}

.county-shop-promotion__button svg {
	fill: none;
	height: 15px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
	width: 15px;
}

.county-shop-category-landing {
	background: linear-gradient(135deg, #f7fafc 0%, #eef5fa 100%);
	border: 1px solid var(--county-line);
	border-radius: 18px;
	box-shadow: 0 16px 36px rgba(13, 53, 93, 0.08);
	margin-bottom: 30px;
	padding: clamp(22px, 3vw, 34px);
}

.county-shop-category-landing__header {
	margin-bottom: 22px;
	max-width: 760px;
}

.county-shop-category-landing__eyebrow {
	color: var(--county-blue-dark);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.14em;
	margin: 0 0 8px;
	text-transform: uppercase;
}

.county-shop-category-landing h2 {
	color: var(--county-ink);
	font-size: clamp(26px, 3vw, 38px);
	font-weight: 800;
	letter-spacing: -0.025em;
	line-height: 1.12;
	margin: 0 0 10px;
}

.county-shop-category-landing__header p:last-child {
	color: var(--county-muted);
	font-size: 16px;
	line-height: 1.6;
	margin: 0;
}

.county-shop-category-grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.county-shop-category-card {
	background: #fff;
	border: 1px solid rgba(13, 53, 93, 0.12);
	border-radius: 16px;
	box-shadow: 0 12px 28px rgba(13, 53, 93, 0.08);
	color: var(--county-ink);
	display: flex;
	flex-direction: column;
	min-height: 100%;
	overflow: hidden;
	text-decoration: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.county-shop-category-card:hover,
.county-shop-category-card:focus-visible {
	border-color: var(--county-gold);
	box-shadow: 0 18px 36px rgba(13, 53, 93, 0.14);
	color: var(--county-ink);
	transform: translateY(-3px);
}

.county-shop-category-card:focus-visible {
	outline: 3px solid rgba(244, 181, 46, 0.55);
	outline-offset: 3px;
}

.county-shop-category-card__image {
	align-items: center;
	aspect-ratio: 4 / 3;
	background: #f4f7fa;
	display: flex;
	justify-content: center;
	overflow: hidden;
}

.county-shop-category-card__image img {
	height: 100%;
	object-fit: contain;
	padding: 18px;
	width: 100%;
}

.county-shop-category-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 18px;
}

.county-shop-category-card__meta {
	color: var(--county-blue-dark);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.08em;
	margin-bottom: 7px;
	text-transform: uppercase;
}

.county-shop-category-card__title {
	color: var(--county-ink);
	font-size: 20px;
	font-weight: 800;
	line-height: 1.18;
	margin-bottom: 8px;
}

.county-shop-category-card__children {
	color: var(--county-muted);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.45;
	margin-bottom: 16px;
}

.county-shop-category-card__action {
	align-items: center;
	color: var(--county-blue-dark);
	display: inline-flex;
	font-size: 13px;
	font-weight: 800;
	gap: 8px;
	margin-top: auto;
	text-transform: uppercase;
}

.county-shop-category-card__action svg {
	fill: none;
	height: 15px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
	transition: transform 0.2s ease;
	width: 15px;
}

.county-shop-category-card:hover .county-shop-category-card__action,
.county-shop-category-card:focus-visible .county-shop-category-card__action {
	color: #9a6b00;
}

.county-shop-category-card:hover .county-shop-category-card__action svg,
.county-shop-category-card:focus-visible .county-shop-category-card__action svg {
	transform: translateX(3px);
}

@media (max-width: 1100px) {
	.county-shop-category-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 620px) {
	.county-shop-promotion {
		align-items: stretch;
		flex-direction: column;
		padding: 17px;
	}

	.county-shop-promotion h2 {
		font-size: 19px;
	}

	.county-shop-promotion__button {
		width: 100%;
	}

	.county-shop-category-landing {
		border-radius: 14px;
		margin-bottom: 22px;
		padding: 20px;
	}

	.county-shop-category-grid {
		grid-template-columns: 1fr;
	}

	.county-shop-category-card {
		border-radius: 14px;
	}

	.county-shop-category-card__image {
		aspect-ratio: 16 / 10;
	}
}

.county-shop-layout--distraction-free {
	display: block;
}

.county-shop-layout--checkout .alignwide,
.county-shop-layout--checkout .wp-block-woocommerce-cart,
.county-shop-layout--checkout .wp-block-woocommerce-checkout {
	margin-left: 0;
	margin-right: 0;
	max-width: 100%;
	width: 100%;
}

.woocommerce-checkout .county-shop-layout--checkout .wc-block-components-order-summary-item__description {
	font-size: 12px !important;
	line-height: 1.25 !important;
}

.woocommerce-checkout .county-shop-layout--checkout .wc-block-components-order-summary .wc-block-components-product-name,
.woocommerce-checkout .county-shop-layout--checkout .wc-block-components-order-summary h3.wc-block-components-product-name,
.woocommerce-checkout .county-shop-layout--checkout .wc-block-components-order-summary a.wc-block-components-product-name {
	color: var(--county-ink) !important;
	display: block !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	letter-spacing: 0 !important;
	line-height: 1.2 !important;
	margin: 0 0 4px !important;
	text-decoration: none !important;
	text-transform: none !important;
}

.woocommerce-checkout .county-shop-layout--checkout .wc-block-components-order-summary .wc-block-components-product-name:hover,
.woocommerce-checkout .county-shop-layout--checkout .wc-block-components-order-summary .wc-block-components-product-name:focus {
	color: var(--county-blue-dark);
	text-decoration: underline;
}

.woocommerce-checkout .county-shop-layout--checkout .wc-block-components-order-summary .wc-block-components-product-metadata {
	display: none !important;
}

.woocommerce-checkout .county-shop-layout--checkout .wc-block-components-checkout-place-order-button {
	background: var(--county-blue-dark) !important;
	border: 0 !important;
	border-radius: 5px !important;
	color: #fff !important;
	font-weight: 800 !important;
}

.woocommerce-checkout .county-shop-layout--checkout .wc-block-components-checkout-place-order-button:hover,
.woocommerce-checkout .county-shop-layout--checkout .wc-block-components-checkout-place-order-button:focus {
	background: var(--county-blue) !important;
	color: #fff !important;
}

.single-product .single_add_to_cart_button,
.woocommerce-cart .checkout-button,
.woocommerce-cart .wc-block-cart__submit-button {
	background: var(--county-blue-dark) !important;
	border: 0 !important;
	border-radius: 5px !important;
	color: #fff !important;
	font-weight: 800 !important;
	text-decoration: none !important;
}

.single-product .single_add_to_cart_button:hover,
.single-product .single_add_to_cart_button:focus,
.woocommerce-cart .checkout-button:hover,
.woocommerce-cart .checkout-button:focus,
.woocommerce-cart .wc-block-cart__submit-button:hover,
.woocommerce-cart .wc-block-cart__submit-button:focus {
	background: var(--county-blue) !important;
	color: #fff !important;
}

/* Editable Gutenberg page layouts. */
.county-gutenberg-page #page,
.county-gutenberg-page .site-content,
.county-gutenberg-page .content-area,
.county-gutenberg-page .site-main,
.county-gutenberg-page .inside-article,
.county-gutenberg-page .entry-content {
	display: block;
	margin: 0;
	max-width: none;
	padding: 0;
	width: 100%;
}

.county-gutenberg-page .entry-header {
	display: none;
}

.county-gutenberg-page .entry-content > .alignfull {
	margin-left: 0;
	margin-right: 0;
	width: 100%;
}

.county-gutenberg-page .entry-content {
	color: var(--county-ink);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.county-gutenberg-page {
	overflow-x: hidden;
}

.county-block-hero,
.county-block-page-hero {
	background: linear-gradient(125deg, #0d355d 0%, #164f86 58%, #176a9e 100%);
	color: #fff;
	padding: 78px 24px;
}

.county-block-hero__grid,
.county-block-page-hero > .wp-block-group,
.county-block-section > *,
.county-block-trust > * {
	margin-left: auto;
	margin-right: auto;
	max-width: 1280px;
}

.county-block-hero h1,
.county-block-page-hero h1 {
	color: #fff;
	font-size: clamp(42px, 5vw, 66px);
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 1.04;
	margin-top: 0;
}

.county-block-page-hero h1 {
	max-width: 900px;
}

.county-block-eyebrow {
	color: var(--county-gold);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.12em;
	margin-bottom: 15px;
	text-transform: uppercase;
}

.county-block-lead {
	color: #dceaf6;
	font-size: 18px;
	line-height: 1.65;
	max-width: 760px;
}

.county-block-actions {
	margin-top: 28px;
}

.county-gutenberg-page .wp-block-button__link {
	align-items: center;
	border-radius: 6px;
	display: inline-flex;
	font-weight: 800;
	justify-content: center;
	padding: 14px 20px;
}

.county-gutenberg-page .county-block-button-gold .wp-block-button__link {
	background: var(--county-gold) !important;
	border: 2px solid var(--county-gold) !important;
	color: var(--county-blue-dark) !important;
}

.county-gutenberg-page .county-block-button-gold .wp-block-button__link:hover,
.county-gutenberg-page .county-block-button-gold .wp-block-button__link:focus {
	background: #ffc84f !important;
	border-color: #ffc84f !important;
	color: var(--county-blue-dark) !important;
}

.county-block-hero .is-style-outline .wp-block-button__link,
.county-block-page-hero .is-style-outline .wp-block-button__link {
	background: transparent !important;
	border: 2px solid #fff !important;
	color: #fff !important;
}

.county-block-hero .is-style-outline .wp-block-button__link:hover,
.county-block-hero .is-style-outline .wp-block-button__link:focus,
.county-block-page-hero .is-style-outline .wp-block-button__link:hover,
.county-block-page-hero .is-style-outline .wp-block-button__link:focus {
	background: #fff !important;
	color: var(--county-blue-dark) !important;
}

.county-gutenberg-page .county-block-actions .wp-block-button:first-child .wp-block-button__link::before {
	background: currentColor;
	content: "";
	height: 19px;
	margin-right: 9px;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M22 16.9v3a2 2 0 0 1-2.2 2 19.8 19.8 0 0 1-8.6-3.1 19.4 19.4 0 0 1-6-6A19.8 19.8 0 0 1 2.1 4.2 2 2 0 0 1 4.1 2h3a2 2 0 0 1 2 1.7c.1 1 .4 2 .7 2.9a2 2 0 0 1-.5 2.1L8.1 9.9a16 16 0 0 0 6 6l1.2-1.2a2 2 0 0 1 2.1-.5c.9.3 1.9.6 2.9.7a2 2 0 0 1 1.7 2z' fill='none' stroke='black' stroke-width='2'/%3E%3C/svg%3E") center / contain no-repeat;
	width: 19px;
}

.county-gutenberg-page .county-block-actions .wp-block-button:last-child .wp-block-button__link::after,
.county-gutenberg-page .county-block-card .wp-block-button__link::after,
.county-gutenberg-page .county-block-feature-card .wp-block-button__link::after {
	content: "\2192";
	font-size: 18px;
	line-height: 1;
	margin-left: 9px;
}

.county-block-checks {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 28px;
	list-style: none;
	margin: 28px 0 0;
	padding: 0;
}

.county-block-checks li::before,
.county-block-city-list li::before {
	color: var(--county-gold);
	content: "\2713";
	font-weight: 900;
	margin-right: 8px;
}

.county-block-feature-card {
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(225, 239, 249, 0.96));
	border: 1px solid rgba(255, 255, 255, 0.75);
	border-radius: 24px;
	box-shadow: 0 28px 60px rgba(3, 25, 48, 0.35);
	color: var(--county-blue-dark);
	min-height: 445px;
	overflow: hidden;
	padding: 26px;
	position: relative;
	transform: rotate(2deg);
}

.county-block-feature-card::before {
	border: 22px solid var(--county-blue-dark);
	border-bottom: 0;
	border-radius: 70px 70px 0 0;
	content: "";
	height: 108px;
	left: 50%;
	position: absolute;
	top: 112px;
	transform: translateX(-50%);
	width: 112px;
}

.county-block-feature-card::after {
	background: linear-gradient(145deg, #2076b8, var(--county-blue-dark));
	border-radius: 18px;
	box-shadow: 0 15px 25px rgba(13, 53, 93, 0.25);
	content: "";
	height: 118px;
	left: 50%;
	position: absolute;
	top: 190px;
	transform: translateX(-50%);
	width: 170px;
}

.county-block-feature-card > .wp-block-group__inner-container {
	min-height: 390px;
	position: relative;
	z-index: 2;
}

.county-block-feature-card > .wp-block-group__inner-container::before {
	background: var(--county-gold);
	border-radius: 50%;
	content: "";
	height: 25px;
	left: 50%;
	position: absolute;
	top: 199px;
	transform: translateX(-50%);
	width: 25px;
	z-index: 3;
}

.county-block-feature-card > .wp-block-group__inner-container::after {
	background: var(--county-gold);
	content: "";
	height: 34px;
	left: 50%;
	position: absolute;
	top: 216px;
	transform: translateX(-50%);
	width: 7px;
	z-index: 3;
}

.county-block-feature-card h2 {
	color: var(--county-blue-dark);
	font-size: 18px;
	margin-top: 0;
}

.county-block-feature-card .county-block-eyebrow {
	font-size: 11px;
	margin-bottom: 6px;
}

.county-block-feature-card > .wp-block-group__inner-container > p:not(.county-block-eyebrow) {
	border-top: 1px solid var(--county-line);
	color: var(--county-muted);
	font-size: 13px;
	line-height: 1.5;
	margin-top: 235px;
	padding-top: 16px;
}

.county-block-feature-card .wp-block-buttons {
	margin-top: 14px;
}

.county-block-trust {
	background: #fff;
	border-bottom: 1px solid var(--county-line);
	padding: 26px 24px;
}

.county-block-trust h3 {
	color: var(--county-blue-dark);
	font-size: 15px;
	margin-bottom: 4px;
}

.county-block-trust .wp-block-column {
	border-left: 1px solid var(--county-line);
	padding-left: 22px;
}

.county-block-trust .wp-block-column::before,
.county-block-card::before,
.county-block-area-card::before {
	align-items: center;
	background: #e9f2f8;
	border-radius: 50%;
	color: var(--county-blue);
	display: flex;
	height: 46px;
	justify-content: center;
	margin-bottom: 15px;
	width: 46px;
}

.county-block-trust .wp-block-column::after,
.county-block-card::after,
.county-block-area-card::after {
	background: var(--county-blue);
	content: "";
	height: 23px;
	left: 34px;
	position: absolute;
	top: 11px;
	width: 23px;
}

.county-block-trust .wp-block-column,
.county-block-card,
.county-block-area-card {
	position: relative;
}

.county-block-card::after,
.county-block-area-card::after {
	left: 39px;
	top: 39px;
}

.county-block-trust .wp-block-column:nth-child(1)::before {
	content: "";
}

.county-block-trust .wp-block-column:nth-child(1)::after {
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='9' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M12 7v5l3 2' fill='none' stroke='black' stroke-width='2'/%3E%3C/svg%3E") center / contain no-repeat;
}

.county-block-trust .wp-block-column:nth-child(2)::before,
.county-block-trust .wp-block-column:nth-child(3)::before,
.county-block-trust .wp-block-column:nth-child(4)::before,
.county-block-card::before,
.county-block-area-card::before {
	content: "";
}

.county-block-trust .wp-block-column:nth-child(2)::after,
.county-block-card-grid > .wp-block-column:nth-child(2) .county-block-card::after {
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 3 5 6v5c0 5 3 8 7 10 4-2 7-5 7-10V6l-7-3Z' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='m9 12 2 2 4-4' fill='none' stroke='black' stroke-width='2'/%3E%3C/svg%3E") center / contain no-repeat;
}

.county-block-trust .wp-block-column:nth-child(3)::after,
.county-block-card-grid > .wp-block-column:nth-child(1) .county-block-card::after {
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 6h11v11H3zM14 10h4l3 3v4h-7z' fill='none' stroke='black' stroke-width='2'/%3E%3Ccircle cx='7' cy='18' r='2' fill='none' stroke='black' stroke-width='2'/%3E%3Ccircle cx='18' cy='18' r='2' fill='none' stroke='black' stroke-width='2'/%3E%3C/svg%3E") center / contain no-repeat;
}

.county-block-trust .wp-block-column:nth-child(4)::after,
.county-block-card-grid > .wp-block-column:nth-child(3) .county-block-card::after {
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='8' cy='15' r='4' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='m11 12 8-8M16 7l2 2M14 9l2 2' fill='none' stroke='black' stroke-width='2'/%3E%3C/svg%3E") center / contain no-repeat;
}

.county-block-trust p {
	color: var(--county-muted);
	font-size: 13px;
	margin: 0;
}

.county-block-section {
	background: var(--county-surface);
	padding: 72px 24px 82px;
}

.county-block-section-heading {
	margin-bottom: 34px;
}

.county-block-section-heading h2,
.county-block-section > h2 {
	color: var(--county-blue-dark);
	font-size: clamp(32px, 4vw, 44px);
	font-weight: 800;
	letter-spacing: -0.03em;
}

.county-block-section-heading > p:last-child {
	color: var(--county-muted);
	font-size: 16px;
	max-width: 760px;
}

.county-block-card-grid {
	align-items: stretch;
}

.county-block-card-grid > .wp-block-column {
	display: flex;
}

.county-block-card,
.county-block-area-card {
	background: #fff;
	border: 1px solid var(--county-line);
	border-radius: 12px;
	box-shadow: 0 10px 28px rgba(13, 53, 93, 0.08);
	padding: 28px;
	width: 100%;
}

.county-block-card h3,
.county-block-area-card h2 {
	color: var(--county-blue-dark);
	font-weight: 800;
}

.county-block-card-featured {
	background: var(--county-blue);
	color: #fff;
}

.county-block-card-featured::before {
	background: rgba(255, 255, 255, 0.16);
}

.county-block-card-featured::after {
	background: var(--county-gold) !important;
}

.county-block-card-featured h3 {
	color: #fff;
}

.county-block-card .wp-block-button__link,
.county-block-feature-card .wp-block-button__link,
.county-block-section > .wp-block-buttons .wp-block-button__link {
	background: var(--county-blue) !important;
	color: #fff !important;
}

.county-block-card-featured .wp-block-button__link {
	background: var(--county-gold) !important;
	color: var(--county-blue-dark) !important;
}

.county-block-area-grid {
	align-items: stretch;
	flex-wrap: wrap !important;
}

.county-block-area-grid > .wp-block-column {
	flex-basis: calc(50% - 12px) !important;
}

.county-block-area-card > p {
	color: var(--county-muted);
	font-size: 13px;
	font-weight: 700;
}

.county-block-area-card::after {
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 10c0 5-8 11-8 11S4 15 4 10a8 8 0 1 1 16 0Z' fill='none' stroke='black' stroke-width='2'/%3E%3Ccircle cx='12' cy='10' r='2.5' fill='none' stroke='black' stroke-width='2'/%3E%3C/svg%3E") center / contain no-repeat;
}

.county-block-city-list {
	columns: 2;
	list-style: none;
	margin: 20px 0 0;
	padding: 0;
}

.county-block-city-list li {
	break-inside: avoid;
	font-size: 14px;
	margin-bottom: 8px;
}

@media (max-width: 768px) {
	.county-block-hero,
	.county-block-page-hero {
		padding-left: 24px;
		padding-right: 24px;
	}

	.county-block-section {
		padding-left: 16px;
		padding-right: 16px;
	}

	.county-block-hero {
		padding-bottom: 54px;
		padding-top: 54px;
	}

	.county-gutenberg-page .county-block-page-hero {
		text-align: center;
	}

	.county-gutenberg-page .county-block-page-hero > .wp-block-group,
	.county-gutenberg-page .county-block-section > * {
		margin-left: auto !important;
		margin-right: auto !important;
		max-width: 680px;
		width: 100%;
	}

	.county-gutenberg-page .county-block-section .alignwide {
		margin-left: 0 !important;
		margin-right: 0 !important;
		max-width: 100% !important;
		width: auto !important;
	}

	.county-gutenberg-page .county-block-section > .wp-block-group__inner-container {
		box-sizing: border-box;
		padding-left: 0 !important;
		padding-right: 0 !important;
	}

	.county-gutenberg-page .county-block-lead {
		margin-left: auto;
		margin-right: auto;
	}

	.county-block-hero__grid {
		margin-left: 0 !important;
		margin-right: 0 !important;
		width: 100%;
	}

	.county-block-area-grid > .wp-block-column {
		flex-basis: 100% !important;
	}

	.county-block-city-list {
		columns: 1;
	}

	.county-block-feature-card {
		margin-left: auto;
		margin-right: auto;
		max-width: 360px;
		transform: rotate(1deg);
	}

	.county-block-actions,
	.county-block-checks {
		display: grid;
		grid-template-columns: 1fr;
		margin-left: auto;
		margin-right: auto;
		max-width: 420px;
		width: 100%;
	}

	.county-block-actions .wp-block-button,
	.county-block-actions .wp-block-button__link {
		width: 100%;
	}

	.county-block-trust .wp-block-column {
		border-left: 0;
		border-top: 1px solid var(--county-line);
		padding-left: 0;
		padding-top: 20px;
	}
}

.county-header {
	background: #fff;
	box-shadow: 0 2px 8px rgba(13, 53, 93, 0.12);
	color: var(--county-ink);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	position: relative;
	z-index: 100;
}

.county-header * {
	box-sizing: border-box;
}

.county-header a {
	color: inherit;
	text-decoration: none;
}

.county-staging-notice {
	background: #f4b52e;
	border-bottom: 1px solid rgba(38, 32, 18, 0.18);
	color: #211a0a;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0;
}

.county-staging-notice .county-header__inner {
	align-items: center;
	display: flex;
	gap: 10px;
	justify-content: center;
	min-height: 34px;
	text-align: center;
}

.county-staging-notice strong {
	background: rgba(33, 26, 10, 0.12);
	border-radius: 4px;
	padding: 3px 7px;
	text-transform: uppercase;
	white-space: nowrap;
}

.county-header__inner {
	margin: 0 auto;
	max-width: 1280px;
	padding-left: 24px;
	padding-right: 24px;
}

.county-utility {
	background: var(--county-surface);
	border-bottom: 1px solid var(--county-line);
	color: var(--county-muted);
	font-size: 13px;
}

.county-utility .county-header__inner {
	align-items: center;
	display: flex;
	justify-content: space-between;
	min-height: 34px;
}

.county-utility__tagline {
	font-weight: 600;
	margin: 0;
}

.county-utility__links {
	display: flex;
	gap: 22px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.county-utility a:hover,
.county-utility a:focus {
	color: var(--county-blue);
	text-decoration: underline;
}

.county-main {
	align-items: center;
	display: grid;
	gap: 28px;
	grid-template-columns: 118px minmax(280px, 1fr) auto;
	min-height: 116px;
}

.county-logo {
	align-items: center;
	display: inline-flex;
	justify-content: flex-start;
	max-width: 104px;
}

.county-logo img {
	display: block;
	height: auto;
	max-height: 100px;
	width: 100px;
}

.county-mobile-promise {
	display: none;
}

.county-search {
	display: flex;
	min-width: 0;
	position: relative;
}

.county-search label {
	flex: 1;
	margin: 0;
}

.county-search input[type="search"] {
	background: #fff;
	border: 2px solid var(--county-blue);
	border-radius: 5px 0 0 5px;
	color: var(--county-ink);
	font-size: 16px;
	height: 48px;
	margin: 0;
	padding: 0 16px;
	width: 100%;
}

.county-search button {
	align-items: center;
	background: var(--county-blue);
	border: 2px solid var(--county-blue);
	border-radius: 0 5px 5px 0;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	font-size: 15px;
	font-weight: 700;
	gap: 8px;
	justify-content: center;
	min-width: 112px;
	padding: 0 18px;
}

.county-search button:hover,
.county-search button:focus {
	background: var(--county-blue-dark);
	border-color: var(--county-blue-dark);
}

.county-search__suggestions {
	background: #fff;
	border: 1px solid var(--county-line);
	border-radius: 0 0 10px 10px;
	box-shadow: 0 18px 38px rgba(13, 53, 93, 0.18);
	left: 0;
	max-height: 430px;
	overflow-y: auto;
	position: absolute;
	right: 0;
	top: calc(100% + 4px);
	z-index: 30;
}

.county-search__suggestion {
	align-items: center;
	border-bottom: 1px solid var(--county-line);
	color: var(--county-ink);
	display: flex;
	gap: 12px;
	padding: 12px 14px;
	text-decoration: none;
}

.county-search__suggestion:last-child {
	border-bottom: 0;
}

.county-search__suggestion:hover,
.county-search__suggestion:focus,
.county-search__suggestion.is-active {
	background: #eef5fa;
	color: var(--county-blue-dark);
	outline: none;
}

.county-search__suggestion img {
	background: var(--county-surface);
	height: 54px;
	object-fit: contain;
	width: 54px;
}

.county-search__suggestion-content {
	display: grid;
	gap: 4px;
	min-width: 0;
}

.county-search__suggestion-content strong {
	font-size: 14px;
	line-height: 1.25;
}

.county-search__suggestion-meta,
.county-search__empty {
	color: var(--county-muted);
	font-size: 12px;
	font-weight: 700;
}

.county-search__empty {
	padding: 14px 16px;
}

.county-main__actions {
	align-items: center;
	display: flex;
	gap: 22px;
	white-space: nowrap;
}

.county-action {
	align-items: center;
	display: inline-flex;
	font-size: 14px;
	font-weight: 700;
	gap: 8px;
}

.county-action svg,
.county-search svg,
.county-menu-toggle svg {
	fill: none;
	height: 22px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
	width: 22px;
}

.county-action:hover,
.county-action:focus {
	color: var(--county-blue);
}

.county-cart {
	gap: 10px;
}

.county-cart__icon {
	display: inline-flex;
	position: relative;
}

.county-cart__count {
	align-items: center;
	background: var(--county-gold);
	border: 2px solid #fff;
	border-radius: 50%;
	color: var(--county-blue-dark);
	display: flex;
	font-size: 10px;
	font-weight: 800;
	height: 20px;
	justify-content: center;
	line-height: 1;
	min-width: 20px;
	padding: 0 3px;
	position: absolute;
	right: -11px;
	top: -12px;
}

.county-cart__details {
	display: flex;
	flex-direction: column;
	line-height: 1.2;
}

.county-cart__details small {
	color: var(--county-muted);
	font-size: 11px;
	font-weight: 700;
	margin-top: 2px;
}

.county-cart:hover .county-cart__details small,
.county-cart:focus .county-cart__details small {
	color: var(--county-blue);
}

.county-action--call {
	background: var(--county-gold);
	border-radius: 5px;
	color: var(--county-blue-dark);
	padding: 12px 16px;
}

.county-action--call:hover,
.county-action--call:focus {
	background: #ffc84f;
	color: var(--county-blue-dark);
}

.county-nav {
	background: var(--county-blue);
	color: #fff;
}

.county-nav .county-header__inner {
	align-items: stretch;
	display: flex;
}

.county-menu-toggle {
	align-items: center;
	background: transparent;
	border: 0;
	color: #fff;
	cursor: pointer;
	display: none;
	font-size: 16px;
	font-weight: 700;
	gap: 9px;
	padding: 15px 0;
}

.county-nav__list {
	display: flex;
	flex: 1;
	gap: 2px;
	justify-content: space-between;
	list-style: none;
	margin: 0;
	padding: 0;
}

.county-nav__list a {
	display: block;
	font-size: 14px;
	font-weight: 700;
	padding: 16px 14px;
}

.county-nav__parent {
	position: relative;
}

.county-nav__submenu .county-nav__parent {
	position: relative;
}

.county-nav__parent > a {
	align-items: center;
	display: flex;
	gap: 5px;
}

.county-nav__parent > a svg {
	height: 15px;
	width: 15px;
}

.county-nav__submenu {
	background: #fff;
	border: 1px solid var(--county-line);
	border-radius: 0 0 6px 6px;
	box-shadow: 0 12px 28px rgba(13, 53, 93, 0.2);
	display: none;
	left: 0;
	list-style: none;
	margin: 0;
	min-width: 250px;
	padding: 7px;
	position: absolute;
	top: 100%;
}

.county-nav__submenu .county-nav__submenu {
	border-radius: 6px;
	left: 100%;
	top: -8px;
}

.county-nav__submenu a {
	border-radius: 4px;
	color: var(--county-blue-dark);
	font-size: 13px;
	padding: 11px 12px;
}

.county-nav__parent:hover > .county-nav__submenu,
.county-nav__parent:focus-within > .county-nav__submenu {
	display: block;
}

.county-nav__submenu a:hover,
.county-nav__submenu a:focus {
	background: var(--county-surface);
	color: var(--county-blue);
}

.county-nav__list a:hover,
.county-nav__list a:focus {
	background: var(--county-blue-dark);
	color: #fff;
}

.county-nav__list .current-menu-item > a,
.county-nav__list .current-menu-parent > a,
.county-nav__list .current-menu-ancestor > a {
	background: var(--county-blue-dark);
	color: #fff;
}

.site-header,
#site-navigation {
	display: none;
}

.site-footer {
	background: transparent;
}

.county-footer {
	background: var(--county-blue-dark);
	color: #fff;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.county-footer *,
.county-footer *::before,
.county-footer *::after {
	box-sizing: border-box;
}

.county-footer a {
	color: inherit;
	text-decoration: none;
}

.county-footer__inner {
	margin: 0 auto;
	max-width: 1280px;
	padding-left: 24px;
	padding-right: 24px;
}

.county-footer-cta {
	background: var(--county-blue);
	border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.county-footer-cta__inner {
	align-items: center;
	display: flex;
	gap: 30px;
	justify-content: space-between;
	min-height: 116px;
	padding-bottom: 22px;
	padding-top: 22px;
}

.county-footer-cta__message {
	align-items: center;
	display: flex;
	gap: 16px;
}

.county-footer-cta__icon {
	align-items: center;
	background: rgba(255, 255, 255, 0.12);
	border-radius: 50%;
	display: inline-flex;
	height: 58px;
	justify-content: center;
	width: 58px;
}

.county-footer svg {
	fill: none;
	flex: 0 0 auto;
	height: 23px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
	width: 23px;
}

.county-footer-cta__icon svg {
	height: 30px;
	width: 30px;
}

.county-footer-cta__message strong,
.county-footer-cta__message span {
	display: block;
}

.county-footer-cta__message strong {
	font-size: 21px;
	line-height: 1.25;
	margin-bottom: 5px;
}

.county-footer-cta__message span {
	color: #dceaf6;
	font-size: 14px;
}

.county-footer-cta__actions {
	display: flex;
	gap: 12px;
	white-space: nowrap;
}

.county-footer-button {
	align-items: center;
	border: 2px solid #fff;
	border-radius: 5px;
	display: inline-flex;
	font-size: 14px;
	font-weight: 700;
	gap: 8px;
	justify-content: center;
	padding: 11px 16px;
}

.county-footer-button--light:hover,
.county-footer-button--light:focus {
	background: #fff;
	color: var(--county-blue-dark);
}

.county-footer-button--gold {
	background: var(--county-gold);
	border-color: var(--county-gold);
	color: var(--county-blue-dark);
}

.county-footer-button--gold:hover,
.county-footer-button--gold:focus {
	background: #ffc84f;
	border-color: #ffc84f;
	color: var(--county-blue-dark);
}

.county-footer-main {
	background: var(--county-blue-dark);
}

.county-footer-grid {
	display: grid;
	gap: 48px;
	grid-template-columns: 1.35fr 0.8fr 1fr 1.15fr;
	padding-bottom: 48px;
	padding-top: 52px;
}

.county-footer-logo {
	align-items: center;
	display: flex;
	font-size: 19px;
	font-weight: 800;
	gap: 12px;
	line-height: 1.2;
}

.county-footer-logo img {
	height: 72px;
	object-fit: contain;
	width: 72px;
}

.county-footer-brand p {
	color: #c4d2df;
	font-size: 14px;
	line-height: 1.65;
	margin: 20px 0;
	max-width: 320px;
}

.county-footer-hours {
	align-items: center;
	color: #dceaf6;
	display: flex;
	font-size: 13px;
	gap: 10px;
	line-height: 1.45;
}

.county-footer-hours strong {
	color: var(--county-gold);
	font-size: 14px;
}

.county-footer-column h2 {
	color: #fff;
	font-size: 16px;
	font-weight: 800;
	letter-spacing: 0.02em;
	margin: 0 0 18px;
}

.county-footer-column h2::after {
	background: var(--county-gold);
	content: "";
	display: block;
	height: 3px;
	margin-top: 10px;
	width: 38px;
}

.county-footer-column ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.county-footer-column li + li {
	margin-top: 10px;
}

.county-footer-column li a {
	color: #c4d2df;
	font-size: 14px;
}

.county-footer-column li a:hover,
.county-footer-column li a:focus {
	color: var(--county-gold);
	text-decoration: underline;
}

.county-footer-contact {
	display: flex;
	flex-direction: column;
}

.county-footer-contact a {
	align-items: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	color: #fff;
	display: flex;
	font-size: 14px;
	font-weight: 700;
	gap: 12px;
	padding: 12px 0;
}

.county-footer-contact a:first-of-type {
	padding-top: 0;
}

.county-footer-contact a:hover,
.county-footer-contact a:focus {
	color: var(--county-gold);
}

.county-footer-contact small {
	color: #9fb5c9;
	display: block;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.06em;
	margin-bottom: 2px;
	text-transform: uppercase;
}

.county-footer-bottom {
	background: #092a49;
	color: #aebfce;
	font-size: 12px;
}

.county-footer-bottom .county-footer__inner {
	align-items: center;
	display: flex;
	justify-content: space-between;
	min-height: 54px;
}

.county-footer-bottom p {
	margin: 0;
}

.county-footer-bottom__legal {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 8px 18px;
}

.county-footer-bottom__legal nav {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 16px;
}

.county-footer-bottom__legal a {
	color: #d9e4ed;
	text-decoration: underline;
	text-decoration-color: rgba(217, 228, 237, 0.45);
	text-underline-offset: 3px;
}

.county-footer-bottom__legal a:hover,
.county-footer-bottom__legal a:focus {
	color: #ffffff;
	text-decoration-color: currentColor;
}

.county-legal-document {
	color: #2d3c49;
	font-size: 16px;
	line-height: 1.7;
	margin-bottom: 32px;
}

.county-legal-document > .wp-block-group__inner-container {
	padding-left: 0;
	padding-right: 0;
}

.county-legal-document > .wp-block-group__inner-container > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
	margin-left: 0 !important;
	margin-right: 0 !important;
	max-width: none;
}

.county-legal-page .entry-content > h2 {
	color: #132f49;
	font-size: clamp(22px, 2.2vw, 29px);
	line-height: 1.3;
	margin: 40px 0 12px;
	scroll-margin-top: 110px;
}

.county-legal-effective {
	color: #526676;
	font-size: 14px;
	margin-bottom: 10px;
}

.county-legal-intro {
	font-size: 18px;
	max-width: 850px !important;
}

.county-legal-notice {
	background: #f4f7fa;
	border-left: 5px solid #c8a036;
	margin: 20px 0;
	padding: 14px 18px;
}

.county-legal-toc {
	border: 1px solid #d7e0e8;
	border-radius: 6px;
	margin-top: 28px;
	padding: 20px 22px;
}

.county-legal-toc__title {
	color: #132f49;
	font-size: 17px;
	margin: 0 0 10px;
}

.county-legal-toc__links {
	columns: 2;
	gap: 36px;
	margin-bottom: 0;
	padding-left: 20px;
}

.county-legal-toc__links li {
	break-inside: avoid;
	margin-bottom: 5px;
}

.county-legal-toc a {
	color: #155f99;
}

.county-home {
	background: #fff;
	color: var(--county-ink);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.home #page,
.home .site-content {
	display: block;
	max-width: none;
	padding: 0;
	width: 100%;
}

.county-home *,
.county-home *::before,
.county-home *::after {
	box-sizing: border-box;
}

.county-home a {
	text-decoration: none;
}

.county-home__inner {
	margin: 0 auto;
	max-width: 1280px;
	padding-left: 24px;
	padding-right: 24px;
}

.county-hero {
	background:
		linear-gradient(125deg, rgba(13, 53, 93, 0.98) 0%, rgba(22, 79, 134, 0.96) 56%, rgba(17, 99, 151, 0.92) 100%),
		radial-gradient(circle at 80% 20%, #4eafd0 0, transparent 42%);
	color: #fff;
	overflow: hidden;
	position: relative;
}

.county-hero::before {
	background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
	background-size: 34px 34px;
	content: "";
	inset: 0;
	position: absolute;
}

.county-hero__grid {
	align-items: center;
	display: grid;
	gap: 64px;
	grid-template-columns: minmax(0, 1.08fr) minmax(400px, 0.92fr);
	min-height: 590px;
	padding-bottom: 72px;
	padding-top: 72px;
	position: relative;
}

.county-hero__content {
	position: relative;
	z-index: 2;
}

.county-eyebrow {
	color: var(--county-gold);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.12em;
	margin: 0 0 15px;
	text-transform: uppercase;
}

.county-hero h1 {
	color: #fff;
	font-size: clamp(42px, 5vw, 66px);
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 1.04;
	margin: 0;
	max-width: 720px;
}

.county-hero__lead {
	color: #dceaf6;
	font-size: 18px;
	line-height: 1.65;
	margin: 24px 0 30px;
	max-width: 680px;
}

.county-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 13px;
}

.county-hero__phone {
	align-items: center;
	color: #dceaf6;
	display: flex;
	font-size: 13px;
	font-weight: 700;
	gap: 8px;
	margin: 16px 0 0;
}

.county-hero__phone svg {
	color: var(--county-gold);
	height: 18px;
	width: 18px;
}

.county-hero__phone a {
	color: #fff;
	text-decoration: underline;
	text-decoration-color: rgba(255, 255, 255, 0.45);
	text-underline-offset: 3px;
}

.county-hero__phone a:hover,
.county-hero__phone a:focus {
	color: var(--county-gold);
}

.county-home-button {
	align-items: center;
	border: 2px solid #fff;
	border-radius: 6px;
	color: #fff;
	display: inline-flex;
	font-size: 15px;
	font-weight: 800;
	gap: 10px;
	justify-content: center;
	min-height: 54px;
	padding: 10px 19px;
}

.county-home-button svg,
.county-home svg {
	fill: none;
	flex: 0 0 auto;
	height: 22px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
	width: 22px;
}

.county-home-button span,
.county-home-button small {
	display: block;
}

.county-home-button small {
	font-size: 10px;
	letter-spacing: 0.05em;
	line-height: 1.2;
	text-transform: uppercase;
}

.county-home-button--gold {
	background: var(--county-gold);
	border-color: var(--county-gold);
	color: var(--county-blue-dark);
}

.county-home-button--gold:hover,
.county-home-button--gold:focus {
	background: #ffc84f;
	border-color: #ffc84f;
	color: var(--county-blue-dark);
}

.county-home-button--outline:hover,
.county-home-button--outline:focus {
	background: #fff;
	color: var(--county-blue-dark);
}

.county-hero__checks {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 22px;
	list-style: none;
	margin: 28px 0 0;
	padding: 0;
}

.county-hero__checks li {
	align-items: center;
	color: #dceaf6;
	display: flex;
	font-size: 13px;
	font-weight: 700;
	gap: 6px;
}

.county-hero__checks svg {
	color: var(--county-gold);
	height: 17px;
	width: 17px;
}

.county-hero__visual {
	min-height: 450px;
	position: relative;
}

.county-hero__glow {
	background: rgba(68, 177, 208, 0.35);
	border-radius: 50%;
	filter: blur(2px);
	height: 390px;
	position: absolute;
	right: 15px;
	top: 20px;
	width: 390px;
}

.county-security-card {
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(225, 239, 249, 0.94));
	border: 1px solid rgba(255, 255, 255, 0.75);
	border-radius: 24px;
	box-shadow: 0 28px 60px rgba(3, 25, 48, 0.35);
	color: var(--county-blue-dark);
	height: 400px;
	left: 50%;
	overflow: hidden;
	padding: 25px;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%) rotate(2deg);
	width: 330px;
}

.county-security-card::before {
	background: var(--county-blue);
	border-radius: 50%;
	content: "";
	height: 280px;
	left: 50%;
	opacity: 0.08;
	position: absolute;
	top: 51%;
	transform: translate(-50%, -50%);
	width: 280px;
}

.county-security-card__top {
	align-items: center;
	display: flex;
	font-size: 13px;
	gap: 9px;
	position: relative;
	z-index: 2;
}

.county-security-card__top span {
	align-items: center;
	background: var(--county-blue);
	border-radius: 50%;
	color: #fff;
	display: inline-flex;
	height: 37px;
	justify-content: center;
	width: 37px;
}

.county-security-card__top svg {
	height: 20px;
	width: 20px;
}

.county-security-card__lock {
	height: 210px;
	margin: 25px auto 15px;
	position: relative;
	width: 180px;
}

.county-lock-shackle {
	border: 24px solid var(--county-blue-dark);
	border-bottom: 0;
	border-radius: 75px 75px 0 0;
	height: 125px;
	left: 30px;
	position: absolute;
	top: 0;
	width: 120px;
}

.county-lock-body {
	background: linear-gradient(145deg, #2076b8, var(--county-blue-dark));
	border-radius: 18px;
	bottom: 0;
	box-shadow: 0 15px 25px rgba(13, 53, 93, 0.25);
	height: 130px;
	left: 0;
	position: absolute;
	width: 180px;
}

.county-lock-body i {
	background: var(--county-gold);
	border-radius: 50%;
	height: 25px;
	left: 50%;
	position: absolute;
	top: 38px;
	transform: translateX(-50%);
	width: 25px;
}

.county-lock-body i::after {
	background: var(--county-gold);
	content: "";
	height: 34px;
	left: 9px;
	position: absolute;
	top: 17px;
	width: 7px;
}

.county-security-card__stats {
	border-top: 1px solid var(--county-line);
	display: grid;
	grid-template-columns: 1fr 1fr;
	padding-top: 17px;
	position: relative;
	z-index: 2;
}

.county-security-card__stats div + div {
	border-left: 1px solid var(--county-line);
	padding-left: 18px;
}

.county-security-card__stats strong,
.county-security-card__stats span {
	display: block;
}

.county-security-card__stats strong {
	color: var(--county-blue);
	font-size: 19px;
}

.county-security-card__stats span {
	color: var(--county-muted);
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
}

.county-hero__floating {
	align-items: center;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 12px 30px rgba(3, 25, 48, 0.28);
	color: var(--county-blue-dark);
	display: flex;
	font-size: 11px;
	gap: 10px;
	line-height: 1.3;
	padding: 12px 14px;
	position: absolute;
	z-index: 3;
}

.county-hero__floating:hover,
.county-hero__floating:focus {
	color: var(--county-blue);
	transform: translateY(-2px);
}

.county-hero__floating svg {
	color: var(--county-blue);
	height: 25px;
	width: 25px;
}

.county-hero__floating strong,
.county-hero__floating span {
	display: block;
}

.county-hero__floating strong {
	font-size: 12px;
}

.county-hero__floating--service {
	left: 0;
	top: 90px;
}

.county-hero__floating--hardware {
	bottom: 65px;
	right: 0;
}

.county-trust {
	background: #fff;
	border-bottom: 1px solid var(--county-line);
	box-shadow: 0 8px 22px rgba(13, 53, 93, 0.07);
	position: relative;
	z-index: 4;
}

.county-trust__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.county-trust__grid > div {
	align-items: center;
	display: flex;
	gap: 12px;
	min-height: 96px;
	padding: 18px 22px;
}

.county-trust__grid > div + div {
	border-left: 1px solid var(--county-line);
}

.county-trust svg {
	color: var(--county-blue);
	height: 28px;
	width: 28px;
}

.county-trust strong,
.county-trust span {
	display: block;
}

.county-trust strong {
	color: var(--county-blue-dark);
	font-size: 14px;
}

.county-trust span span {
	color: var(--county-muted);
	font-size: 12px;
}

.county-home-services {
	background: var(--county-surface);
	padding: 82px 0 92px;
}

.county-section-heading {
	align-items: end;
	display: grid;
	gap: 50px;
	grid-template-columns: 1fr 1fr;
	margin-bottom: 38px;
}

.county-section-heading h2 {
	color: var(--county-blue-dark);
	font-size: clamp(31px, 4vw, 45px);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.1;
	margin: 0;
}

.county-section-heading > p {
	color: var(--county-muted);
	font-size: 15px;
	line-height: 1.7;
	margin: 0;
}

.county-service-grid {
	display: grid;
	gap: 22px;
	grid-template-columns: repeat(3, 1fr);
}

.county-service-card {
	background: #fff;
	border: 1px solid var(--county-line);
	border-radius: 8px;
	box-shadow: 0 10px 25px rgba(13, 53, 93, 0.06);
	color: var(--county-ink);
	display: block;
	min-height: 300px;
	padding: 28px;
}

.county-service-card:hover,
.county-service-card:focus {
	border-color: #a9c7df;
	box-shadow: 0 18px 36px rgba(13, 53, 93, 0.13);
	transform: translateY(-4px);
}

.county-service-card--featured {
	background: var(--county-blue);
	border-color: var(--county-blue);
	color: #fff;
}

.county-service-card__icon {
	align-items: center;
	background: #e8f2f8;
	border-radius: 9px;
	color: var(--county-blue);
	display: inline-flex;
	height: 50px;
	justify-content: center;
	margin-bottom: 22px;
	width: 50px;
}

.county-service-card--featured .county-service-card__icon {
	background: rgba(255, 255, 255, 0.14);
	color: var(--county-gold);
}

.county-service-card__label {
	color: var(--county-blue);
	display: block;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.county-service-card--featured .county-service-card__label {
	color: var(--county-gold);
}

.county-service-card h3 {
	color: var(--county-blue-dark);
	font-size: 21px;
	font-weight: 800;
	line-height: 1.25;
	margin: 8px 0 12px;
}

.county-service-card--featured h3 {
	color: #fff;
}

.county-service-card p {
	color: var(--county-muted);
	font-size: 14px;
	line-height: 1.65;
	margin: 0 0 23px;
}

.county-service-card--featured p {
	color: #dceaf6;
}

.county-service-card > strong {
	align-items: center;
	color: var(--county-blue);
	display: flex;
	font-size: 13px;
	gap: 6px;
}

.county-service-card--featured > strong {
	color: var(--county-gold);
}

.county-service-card > strong svg {
	height: 17px;
	width: 17px;
}

.county-area-page {
	background: #fff;
	color: var(--county-ink);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.county-area-page *,
.county-area-page *::before,
.county-area-page *::after {
	box-sizing: border-box;
}

.county-area__inner {
	margin: 0 auto;
	max-width: 1280px;
	padding-left: 24px;
	padding-right: 24px;
}

.county-area-hero {
	background:
		linear-gradient(120deg, rgba(13, 53, 93, 0.99), rgba(22, 79, 134, 0.94)),
		radial-gradient(circle at 85% 20%, #48a8cb, transparent 42%);
	color: #fff;
	overflow: hidden;
	position: relative;
}

.county-area-hero::before {
	background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
	background-size: 34px 34px;
	content: "";
	inset: 0;
	position: absolute;
}

.county-area-hero__grid {
	align-items: center;
	display: grid;
	gap: 70px;
	grid-template-columns: minmax(0, 1fr) 300px;
	min-height: 430px;
	padding-bottom: 64px;
	padding-top: 64px;
	position: relative;
}

.county-area-hero h1 {
	color: #fff;
	font-size: clamp(39px, 5vw, 62px);
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 1.05;
	margin: 0;
	max-width: 820px;
}

.county-area-hero__grid > div:first-child > p:not(.county-eyebrow) {
	color: #dceaf6;
	font-size: 17px;
	line-height: 1.65;
	margin: 22px 0 27px;
	max-width: 760px;
}

.county-area-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.county-area-hero__summary {
	align-items: center;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 18px;
	display: flex;
	flex-direction: column;
	padding: 32px 25px;
	text-align: center;
}

.county-area-hero__summary svg {
	color: var(--county-gold);
	height: 42px;
	width: 42px;
}

.county-area-hero__summary strong,
.county-area-hero__summary span,
.county-area-hero__summary small {
	display: block;
}

.county-area-hero__summary strong {
	font-size: 66px;
	line-height: 1;
	margin-top: 12px;
}

.county-area-hero__summary span {
	font-size: 17px;
	font-weight: 800;
}

.county-area-hero__summary small {
	color: #dceaf6;
	font-size: 11px;
	line-height: 1.45;
	margin-top: 10px;
}

.county-area-counties {
	background: var(--county-surface);
	padding: 78px 0 88px;
}

.county-area-grid {
	display: grid;
	gap: 24px;
	grid-template-columns: 1fr 1fr;
}

.county-area-card {
	background: #fff;
	border: 1px solid var(--county-line);
	border-radius: 12px;
	box-shadow: 0 10px 25px rgba(13, 53, 93, 0.06);
	overflow: hidden;
}

.county-area-card header {
	align-items: center;
	background: var(--county-blue);
	color: #fff;
	display: flex;
	gap: 13px;
	padding: 19px 22px;
}

.county-area-card header > span {
	align-items: center;
	background: rgba(255, 255, 255, 0.14);
	border-radius: 50%;
	display: inline-flex;
	height: 43px;
	justify-content: center;
	width: 43px;
}

.county-area-card header svg {
	height: 23px;
	width: 23px;
}

.county-area-card h2 {
	color: #fff;
	font-size: 19px;
	font-weight: 800;
	line-height: 1.2;
	margin: 0;
}

.county-area-card header p {
	color: #dceaf6;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	margin: 3px 0 0;
	text-transform: uppercase;
}

.county-area-card ul {
	display: grid;
	gap: 9px 24px;
	grid-template-columns: 1fr 1fr;
	list-style: none;
	margin: 0;
	padding: 24px 22px 27px;
}

.county-area-card li {
	align-items: center;
	color: var(--county-muted);
	display: flex;
	font-size: 13px;
	gap: 7px;
	line-height: 1.3;
}

.county-area-card li svg {
	color: var(--county-blue);
	height: 15px;
	width: 15px;
}

.county-area-cta {
	background: var(--county-blue-dark);
	color: #fff;
}

.county-area-cta__inner {
	align-items: center;
	display: flex;
	gap: 35px;
	justify-content: space-between;
	min-height: 220px;
	padding-bottom: 38px;
	padding-top: 38px;
}

.county-area-cta h2 {
	color: #fff;
	font-size: clamp(29px, 4vw, 43px);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.1;
	margin: 0;
}

.county-area-cta p:not(.county-eyebrow) {
	color: #c4d2df;
	font-size: 14px;
	margin: 14px 0 0;
	max-width: 720px;
}

.county-area-cta .county-home-button {
	flex: 0 0 auto;
}

.county-resources-page {
	background: #fff;
	color: var(--county-ink);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.county-resources-page *,
.county-resources-page *::before,
.county-resources-page *::after {
	box-sizing: border-box;
}

.county-resources__inner {
	margin: 0 auto;
	max-width: 1280px;
	padding-left: 24px;
	padding-right: 24px;
}

.county-resources-hero {
	background:
		linear-gradient(120deg, rgba(13, 53, 93, 0.98), rgba(22, 79, 134, 0.94)),
		radial-gradient(circle at 85% 18%, rgba(244, 181, 46, 0.3), transparent 36%);
	color: #fff;
	overflow: hidden;
	position: relative;
}

.county-resources-hero::before {
	background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
	background-size: 34px 34px;
	content: "";
	inset: 0;
	position: absolute;
}

.county-resources-hero__grid {
	align-items: center;
	display: grid;
	gap: 64px;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
	min-height: 430px;
	padding-bottom: 64px;
	padding-top: 64px;
	position: relative;
}

.county-resources-hero h1 {
	color: #fff;
	font-size: clamp(39px, 5vw, 62px);
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 1.05;
	margin: 0;
	max-width: 880px;
}

.county-resources-hero p:not(.county-eyebrow) {
	color: #dceaf6;
	font-size: 17px;
	line-height: 1.65;
	margin: 22px 0 27px;
	max-width: 780px;
}

.county-resources-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.county-resources-hero__panel {
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 18px;
	box-shadow: 0 22px 50px rgba(3, 25, 48, 0.22);
	padding: 28px;
}

.county-resources-hero__panel strong {
	color: #fff;
	display: block;
	font-size: 20px;
	margin-bottom: 18px;
}

.county-resources-hero__panel ul {
	display: grid;
	gap: 14px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.county-resources-hero__panel li {
	align-items: center;
	color: #dceaf6;
	display: flex;
	font-weight: 700;
	gap: 11px;
}

.county-resources-hero__panel svg {
	color: var(--county-gold);
	fill: none;
	flex: 0 0 auto;
	height: 22px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
	width: 22px;
}

.county-resources-topics {
	background: var(--county-surface);
	padding: 76px 0 86px;
}

.county-resources-section-heading {
	margin-bottom: 34px;
	max-width: 780px;
}

.county-resources-section-heading h2,
.county-resources-feature h2,
.county-resources-cta h2 {
	color: var(--county-blue-dark);
	font-size: clamp(31px, 4vw, 44px);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.1;
	margin: 0;
}

.county-resources-section-heading p:not(.county-eyebrow),
.county-resource-card p,
.county-resources-feature p,
.county-resources-guide-list p {
	color: var(--county-muted);
	line-height: 1.62;
}

.county-resources-grid {
	display: grid;
	gap: 22px;
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.county-promotions-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.county-promotions-editor-section {
	background: #fff;
	padding: 76px 0 84px;
}

.county-promotions-content {
	color: var(--county-ink);
	font-size: 16px;
	line-height: 1.65;
}

.county-promotion-card-grid {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.county-promotion-card {
	background: linear-gradient(145deg, #fff, #f3f7fb);
	border: 1px solid var(--county-line);
	border-left: 5px solid var(--county-gold);
	border-radius: 12px;
	box-shadow: 0 14px 30px rgba(13, 53, 93, 0.08);
	color: var(--county-ink);
	display: flex;
	flex-direction: column;
	min-height: 250px;
	padding: 24px;
	text-decoration: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.county-promotion-card:hover,
.county-promotion-card:focus-visible {
	border-color: rgba(244, 181, 46, 0.9);
	box-shadow: 0 18px 38px rgba(13, 53, 93, 0.14);
	color: var(--county-ink);
	transform: translateY(-2px);
}

.county-promotion-card:focus-visible {
	outline: 3px solid rgba(244, 181, 46, 0.55);
	outline-offset: 3px;
}

.county-promotion-card__label {
	color: var(--county-blue-dark);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.08em;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.county-promotion-card h3 {
	color: var(--county-blue-dark);
	font-size: 24px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.16;
	margin: 0 0 12px;
}

.county-promotion-card p {
	color: var(--county-muted);
	font-size: 15px;
	line-height: 1.55;
	margin: 0 0 18px;
}

.county-promotion-card__link {
	align-items: center;
	color: var(--county-blue-dark);
	display: inline-flex;
	font-size: 13px;
	font-weight: 800;
	gap: 8px;
	margin-top: auto;
	text-transform: uppercase;
}

.county-promotion-card__link svg {
	fill: none;
	height: 15px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
	width: 15px;
}

.county-promotions-content > * {
	margin-bottom: 24px;
}

.county-promotions-content > *:last-child {
	margin-bottom: 0;
}

.county-promotions-content h2,
.county-promotions-content h3,
.county-promotions-content h4 {
	color: var(--county-blue-dark);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.18;
}

.county-promotions-content h2 {
	font-size: clamp(28px, 3vw, 40px);
}

.county-promotions-content h3 {
	font-size: 24px;
}

.county-promotions-content p,
.county-promotions-content li {
	color: var(--county-muted);
}

.county-promotions-content a {
	color: var(--county-blue-dark);
	font-weight: 800;
}

.county-promotions-content .wp-block-buttons {
	gap: 12px;
}

.county-promotions-content .wp-block-button__link {
	background: var(--county-blue-dark);
	border-radius: 7px;
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.2;
	padding: 13px 17px;
	text-transform: uppercase;
}

.county-promotions-content .is-style-outline > .wp-block-button__link,
.county-promotions-content .wp-block-button__link.is-style-outline {
	background: transparent;
	border: 2px solid var(--county-blue-dark);
	color: var(--county-blue-dark);
}

.county-promotions-content .wp-block-columns,
.county-promotions-content .wp-block-group,
.county-promotions-content .wp-block-media-text,
.county-promotions-content .wp-block-table {
	margin-bottom: 28px;
}

.county-promotions-content .wp-block-column,
.county-promotions-content .wp-block-group,
.county-promotions-content .wp-block-media-text,
.county-promotions-content .wp-block-table table {
	border-color: var(--county-line);
}

.county-promotions-content .wp-block-media-text,
.county-promotions-content .wp-block-group.has-background {
	border-radius: 12px;
	overflow: hidden;
}

.county-promotions-content .wp-block-table table {
	border-collapse: collapse;
	width: 100%;
}

.county-promotions-content .wp-block-table th,
.county-promotions-content .wp-block-table td {
	border: 1px solid var(--county-line);
	padding: 12px 14px;
	text-align: left;
}

.county-promotions-content .wp-block-table th {
	background: #e9f2f8;
	color: var(--county-blue-dark);
	font-weight: 800;
}

.county-promotions-content--landing > .wp-block-group {
	background: linear-gradient(145deg, #fff, #f3f7fb);
	border: 1px solid var(--county-line);
	border-left: 5px solid var(--county-gold);
	border-radius: 12px;
	box-shadow: 0 14px 30px rgba(13, 53, 93, 0.08);
	padding: 24px;
}

.county-promotions-content--landing > .wp-block-group h2,
.county-promotions-content--landing > .wp-block-group h3 {
	font-size: 24px;
	margin-bottom: 12px;
}

.county-promotions-content--landing > .wp-block-group p {
	font-size: 15px;
	line-height: 1.55;
}

.county-promotions-empty {
	background: linear-gradient(145deg, #fff, #f3f7fb);
	border: 1px solid var(--county-line);
	border-left: 5px solid var(--county-gold);
	border-radius: 12px;
	box-shadow: 0 14px 30px rgba(13, 53, 93, 0.08);
	max-width: 780px;
	padding: 28px;
}

.county-promotions-empty h2 {
	color: var(--county-blue-dark);
	font-size: 28px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.16;
	margin: 0 0 12px;
}

.county-promotions-empty p:not(.county-eyebrow) {
	color: var(--county-muted);
	font-size: 16px;
	line-height: 1.6;
	margin: 0 0 20px;
}

.county-resource-card {
	background: #fff;
	border: 1px solid var(--county-line);
	border-radius: 14px;
	box-shadow: 0 10px 25px rgba(13, 53, 93, 0.06);
	color: var(--county-ink);
	display: block;
	min-height: 260px;
	padding: 24px;
	text-decoration: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

a.county-resource-card:hover,
a.county-resource-card:focus {
	border-color: rgba(22, 79, 134, 0.35);
	box-shadow: 0 16px 32px rgba(13, 53, 93, 0.12);
	color: var(--county-ink);
	transform: translateY(-2px);
}

.county-resource-card__icon {
	align-items: center;
	background: #e9f2f8;
	border-radius: 50%;
	color: var(--county-blue);
	display: inline-flex;
	height: 48px;
	justify-content: center;
	margin-bottom: 17px;
	width: 48px;
}

.county-resource-card__icon svg {
	fill: none;
	height: 24px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
	width: 24px;
}

.county-resource-card h3,
.county-resources-guide-list h3 {
	color: var(--county-blue-dark);
	font-size: 19px;
	font-weight: 800;
	line-height: 1.2;
	margin: 0 0 10px;
}

.county-resource-card p {
	font-size: 14px;
	margin: 0;
}

.county-resource-card__link {
	align-items: center;
	color: var(--county-blue-dark);
	display: inline-flex;
	font-size: 14px;
	font-weight: 800;
	gap: 7px;
	margin-top: 18px;
}

.county-resource-card__link svg {
	fill: none;
	height: 16px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2.5;
	width: 16px;
}

.county-resources-guides {
	background: #fff;
	padding: 82px 0 90px;
}

.county-resources-guides__grid {
	align-items: start;
	display: grid;
	gap: 34px;
	grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
}

.county-resources-feature {
	background: linear-gradient(145deg, #fff, #f3f7fb);
	border: 1px solid var(--county-line);
	border-radius: 18px;
	box-shadow: 0 16px 35px rgba(13, 53, 93, 0.08);
	padding: 34px;
}

.county-resources-feature ul {
	display: grid;
	gap: 12px;
	list-style: none;
	margin: 24px 0 0;
	padding: 0;
}

.county-resources-feature li {
	align-items: flex-start;
	color: var(--county-ink);
	display: flex;
	font-weight: 700;
	gap: 10px;
	line-height: 1.4;
}

.county-resources-feature li svg {
	color: var(--county-gold);
	fill: none;
	flex: 0 0 auto;
	height: 19px;
	margin-top: 2px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2.5;
	width: 19px;
}

.county-resources-guide-list {
	display: grid;
	gap: 18px;
}

.county-resources-guide-list section {
	border: 1px solid var(--county-line);
	border-left: 5px solid var(--county-gold);
	border-radius: 12px;
	padding: 24px;
}

.county-resources-guide-list p {
	margin: 0;
}

.county-resources-cta {
	background: var(--county-blue-dark);
	color: #fff;
}

.county-resources-cta__inner {
	align-items: center;
	display: flex;
	gap: 35px;
	justify-content: space-between;
	min-height: 230px;
	padding-bottom: 42px;
	padding-top: 42px;
}

.county-resources-cta h2 {
	color: #fff;
	max-width: 860px;
}

.county-resource-detail-page {
	background: #fff;
	color: var(--county-ink);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.county-resource-detail-page *,
.county-resource-detail-page *::before,
.county-resource-detail-page *::after {
	box-sizing: border-box;
}

.county-resource-detail__inner {
	margin: 0 auto;
	max-width: 1280px;
	padding-left: 24px;
	padding-right: 24px;
}

.county-resource-detail-hero {
	background:
		linear-gradient(120deg, rgba(13, 53, 93, 0.98), rgba(22, 79, 134, 0.94)),
		radial-gradient(circle at 85% 18%, rgba(244, 181, 46, 0.28), transparent 36%);
	color: #fff;
	overflow: hidden;
	position: relative;
}

.county-resource-detail-hero::before {
	background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
	background-size: 34px 34px;
	content: "";
	inset: 0;
	position: absolute;
}

.county-resource-detail-hero__grid {
	align-items: center;
	display: grid;
	gap: 64px;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
	min-height: 430px;
	padding-bottom: 64px;
	padding-top: 64px;
	position: relative;
}

.county-resource-detail-hero h1 {
	color: #fff;
	font-size: clamp(39px, 5vw, 62px);
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 1.05;
	margin: 0;
	max-width: 880px;
}

.county-resource-detail-hero p:not(.county-eyebrow),
.county-resource-detail-note p {
	color: #dceaf6;
	font-size: 17px;
	line-height: 1.65;
	margin: 22px 0 27px;
	max-width: 780px;
}

.county-resource-detail-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.county-resource-detail-note {
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 18px;
	box-shadow: 0 22px 50px rgba(3, 25, 48, 0.22);
	padding: 28px;
}

.county-resource-detail-note > svg {
	color: var(--county-gold);
	fill: none;
	height: 42px;
	margin-bottom: 15px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
	width: 42px;
}

.county-resource-detail-note strong {
	color: #fff;
	display: block;
	font-size: 22px;
}

.county-resource-detail-note p {
	font-size: 15px;
	margin-bottom: 0;
}

.county-resource-detail-section,
.county-finish-chart-section {
	padding: 78px 0 88px;
}

.county-resource-detail-section--light,
.county-finish-chart-section {
	background: var(--county-surface);
}

.county-resource-detail-grid {
	align-items: stretch;
	display: grid;
	gap: 24px;
	grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
}

.county-resource-detail-card,
.county-resource-advice-card {
	background: #fff;
	border: 1px solid var(--county-line);
	border-radius: 14px;
	box-shadow: 0 10px 25px rgba(13, 53, 93, 0.06);
	padding: 30px;
}

.county-resource-detail-card--wide {
	background: linear-gradient(145deg, #fff, #f3f7fb);
}

.county-resource-detail-card h2,
.county-resource-detail-heading h2,
.county-resource-advice-card h2,
.county-resource-detail-cta h2 {
	color: var(--county-blue-dark);
	font-size: clamp(28px, 3.5vw, 40px);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.1;
	margin: 0;
}

.county-resource-detail-card p,
.county-resource-detail-heading p,
.county-resource-advice-card p {
	color: var(--county-muted);
	line-height: 1.65;
}

.county-resource-check-list {
	display: grid;
	gap: 12px;
	list-style: none;
	margin: 22px 0 0;
	padding: 0;
}

.county-resource-check-list li {
	align-items: flex-start;
	color: var(--county-ink);
	display: flex;
	font-weight: 800;
	gap: 10px;
	line-height: 1.35;
}

.county-resource-check-list svg {
	color: var(--county-gold);
	fill: none;
	flex: 0 0 auto;
	height: 18px;
	margin-top: 2px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2.5;
	width: 18px;
}

.county-resource-detail-heading {
	margin-bottom: 30px;
	max-width: 850px;
}

.county-finish-table-wrap {
	background: #fff;
	border: 1px solid var(--county-line);
	border-radius: 14px;
	box-shadow: 0 10px 25px rgba(13, 53, 93, 0.06);
	overflow-x: auto;
}

.county-finish-table {
	border-collapse: collapse;
	min-width: 780px;
	width: 100%;
}

.county-finish-table th,
.county-finish-table td {
	border-bottom: 1px solid var(--county-line);
	padding: 16px 18px;
	text-align: left;
	vertical-align: top;
}

.county-finish-table th {
	background: var(--county-blue-dark);
	color: #fff;
	font-size: 13px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.county-finish-table tr:last-child td {
	border-bottom: 0;
}

.county-finish-table td {
	color: var(--county-muted);
	font-size: 14px;
	line-height: 1.45;
}

.county-finish-table td strong {
	color: var(--county-blue-dark);
	font-size: 16px;
}

.county-resource-advice-grid {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.county-resource-advice-card > span {
	align-items: center;
	background: #e9f2f8;
	border-radius: 50%;
	color: var(--county-blue);
	display: inline-flex;
	height: 50px;
	justify-content: center;
	margin-bottom: 18px;
	width: 50px;
}

.county-resource-advice-card > span svg {
	fill: none;
	height: 24px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
	width: 24px;
}

.county-resource-source-grid {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.county-resource-source-grid a {
	background: #fff;
	border: 1px solid var(--county-line);
	border-radius: 14px;
	box-shadow: 0 10px 25px rgba(13, 53, 93, 0.06);
	color: var(--county-muted);
	display: grid;
	gap: 8px;
	line-height: 1.45;
	padding: 20px;
	text-decoration: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.county-resource-source-grid a:hover,
.county-resource-source-grid a:focus-visible {
	border-color: rgba(244, 181, 46, 0.85);
	box-shadow: 0 14px 30px rgba(13, 53, 93, 0.11);
	transform: translateY(-2px);
}

.county-resource-source-grid strong {
	color: var(--county-blue-dark);
	font-size: 16px;
}

.county-resource-source-grid span {
	font-size: 14px;
}

.county-resource-downloads-browse {
	padding-bottom: 58px;
}

.county-resource-search {
	background:
		linear-gradient(145deg, #fff, #f6fafc),
		radial-gradient(circle at top right, rgba(244, 181, 46, 0.14), transparent 34%);
	border: 1px solid var(--county-line);
	border-radius: 16px;
	box-shadow: 0 12px 28px rgba(13, 53, 93, 0.07);
	display: grid;
	gap: 10px;
	margin: 0 0 26px;
	padding: 18px;
}

.county-resource-search__field {
	align-items: center;
	background: #fff;
	border: 1px solid var(--county-line);
	border-radius: 12px;
	display: grid;
	gap: 12px;
	grid-template-columns: auto minmax(0, 1fr) auto;
	min-height: 54px;
	padding: 0 14px;
}

.county-resource-search__field:focus-within {
	border-color: rgba(244, 181, 46, 0.85);
	box-shadow: 0 0 0 3px rgba(244, 181, 46, 0.2);
}

.county-resource-search__field svg {
	fill: none;
	height: 20px;
	stroke: var(--county-blue);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
	width: 20px;
}

.county-resource-search__field input {
	background: transparent;
	border: 0;
	color: var(--county-ink);
	font: inherit;
	font-size: 16px;
	min-width: 0;
	outline: 0;
	width: 100%;
}

.county-resource-search__field input::placeholder {
	color: #6c7d8e;
}

.county-resource-search__field button {
	background: var(--county-blue);
	border: 0;
	border-radius: 999px;
	color: #fff;
	cursor: pointer;
	font-size: 13px;
	font-weight: 800;
	line-height: 1;
	padding: 9px 13px;
}

.county-resource-search__field button:hover,
.county-resource-search__field button:focus-visible {
	background: var(--county-blue-dark);
}

.county-resource-search__status,
.county-resource-search__empty {
	color: var(--county-muted);
	font-size: 14px;
	line-height: 1.4;
	margin: 0;
}

.county-resource-search__empty {
	color: var(--county-blue-dark);
	font-weight: 800;
}

.county-resource-search__results {
	border-top: 1px solid var(--county-line);
	display: grid;
	gap: 10px;
	padding-top: 12px;
}

.county-resource-search__results-heading {
	color: var(--county-blue-dark);
	font-size: 14px;
	font-weight: 900;
}

.county-resource-search__result {
	background: #fff;
	border: 1px solid var(--county-line);
	border-radius: 12px;
	color: var(--county-ink);
	display: grid;
	gap: 5px;
	padding: 14px;
	text-decoration: none;
}

.county-resource-search__result:hover,
.county-resource-search__result:focus-visible {
	border-color: rgba(244, 181, 46, 0.85);
	box-shadow: 0 10px 22px rgba(13, 53, 93, 0.08);
}

.county-resource-search__result span {
	color: var(--county-gold-dark);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.county-resource-search__result strong {
	color: var(--county-blue-dark);
	font-size: 16px;
	line-height: 1.3;
}

.county-resource-search__result small {
	color: var(--county-muted);
	font-size: 13px;
	line-height: 1.45;
}

.county-resource-detail-section--search {
	padding-bottom: 0;
}

.county-download-manufacturer-grid {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.county-download-manufacturer-card {
	background:
		linear-gradient(145deg, #fff, #f5f9fc),
		radial-gradient(circle at top right, rgba(244, 181, 46, 0.18), transparent 38%);
	border: 1px solid var(--county-line);
	border-radius: 16px;
	box-shadow: 0 12px 28px rgba(13, 53, 93, 0.07);
	color: var(--county-muted);
	display: grid;
	gap: 12px;
	min-height: 230px;
	padding: 26px;
	text-decoration: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.county-download-manufacturer-card:hover,
.county-download-manufacturer-card:focus-visible {
	border-color: rgba(244, 181, 46, 0.85);
	box-shadow: 0 16px 34px rgba(13, 53, 93, 0.12);
	transform: translateY(-3px);
}

.county-download-manufacturer-card > span {
	color: var(--county-gold-dark);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.county-download-manufacturer-card h3 {
	color: var(--county-blue-dark);
	font-size: clamp(24px, 3vw, 32px);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.12;
	margin: 0;
}

.county-download-manufacturer-card p {
	line-height: 1.6;
	margin: 0;
}

.county-download-manufacturer-card strong {
	align-items: center;
	align-self: end;
	color: var(--county-blue);
	display: inline-flex;
	font-size: 14px;
	gap: 8px;
	margin-top: 6px;
}

.county-download-manufacturer-card strong svg {
	fill: none;
	height: 15px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
	width: 15px;
}

.county-download-group-list {
	display: grid;
	gap: 22px;
}

.county-download-group {
	background: #fff;
	border: 1px solid var(--county-line);
	border-radius: 16px;
	box-shadow: 0 12px 28px rgba(13, 53, 93, 0.07);
	padding: 26px;
}

.county-download-group__header {
	align-items: flex-start;
	display: flex;
	gap: 24px;
	justify-content: space-between;
	margin-bottom: 20px;
}

.county-download-group__header h3 {
	color: var(--county-blue-dark);
	font-size: clamp(24px, 3vw, 32px);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.12;
	margin: 0 0 8px;
}

.county-download-group__header p {
	color: var(--county-muted);
	line-height: 1.55;
	margin: 0;
	max-width: 820px;
}

.county-download-group__header > a,
.county-download-link small {
	align-items: center;
	color: var(--county-blue);
	display: inline-flex;
	font-weight: 800;
	gap: 7px;
	text-decoration: none;
}

.county-download-group__header > a {
	flex: 0 0 auto;
	font-size: 14px;
	padding-top: 6px;
}

.county-download-group__header > a:hover,
.county-download-group__header > a:focus-visible,
.county-download-link:hover small,
.county-download-link:focus-visible small {
	color: var(--county-blue-dark);
}

.county-download-group__header svg,
.county-download-link small svg {
	fill: none;
	height: 15px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
	width: 15px;
}

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

.county-download-list--compact {
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.county-resource-detail-page [hidden] {
	display: none !important;
}

.county-download-link {
	background: #f8fbfd;
	border: 1px solid var(--county-line);
	border-radius: 12px;
	color: var(--county-ink);
	display: grid;
	gap: 7px;
	padding: 16px;
	text-decoration: none;
	transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.county-download-link:hover,
.county-download-link:focus-visible {
	background: #fff;
	border-color: rgba(244, 181, 46, 0.85);
	box-shadow: 0 12px 24px rgba(13, 53, 93, 0.1);
	transform: translateY(-2px);
}

.county-download-link span {
	color: var(--county-gold-dark);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.county-download-link strong {
	color: var(--county-blue-dark);
	font-size: 16px;
	line-height: 1.3;
}

.county-download-link small {
	font-size: 13px;
}

.county-faq-list {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.county-faq-item {
	background: #fff;
	border: 1px solid var(--county-line);
	border-radius: 14px;
	box-shadow: 0 10px 25px rgba(13, 53, 93, 0.06);
	padding: 26px;
}

.county-faq-item h3 {
	color: var(--county-blue-dark);
	font-size: 20px;
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.25;
	margin: 0 0 12px;
}

.county-faq-item p {
	color: var(--county-muted);
	line-height: 1.65;
	margin: 0;
}

.county-faq-item a {
	align-items: center;
	color: var(--county-blue);
	display: inline-flex;
	font-weight: 800;
	gap: 8px;
	margin-top: 16px;
	text-decoration: none;
}

.county-faq-item a:hover,
.county-faq-item a:focus-visible {
	color: var(--county-blue-dark);
}

.county-faq-item a svg {
	fill: none;
	height: 16px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
	width: 16px;
}

.county-resource-detail-cta {
	background: var(--county-blue-dark);
	color: #fff;
}

.county-resource-detail-cta__inner {
	align-items: center;
	display: flex;
	gap: 35px;
	justify-content: space-between;
	min-height: 230px;
	padding-bottom: 42px;
	padding-top: 42px;
}

.county-resource-detail-cta h2 {
	color: #fff;
	max-width: 860px;
}

.county-service-form-callout {
	align-items: center;
	background:
		linear-gradient(145deg, #fff, #f7fafc),
		radial-gradient(circle at top right, rgba(244, 181, 46, 0.16), transparent 36%);
	border: 1px solid var(--county-line);
	border-radius: 18px;
	box-shadow: 0 14px 34px rgba(13, 53, 93, 0.08);
	display: flex;
	gap: 28px;
	justify-content: space-between;
	margin: 48px auto;
	max-width: 1280px;
	padding: 30px;
}

.county-service-form-callout h2 {
	color: var(--county-blue-dark);
	font-size: clamp(26px, 3vw, 36px);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.12;
	margin: 0 0 10px;
}

.county-service-form-callout p:not(.county-eyebrow) {
	color: var(--county-muted);
	line-height: 1.65;
	margin: 0;
	max-width: 800px;
}

.county-service-form-callout .county-home-button {
	flex: 0 0 auto;
}

.county-product-service-callout {
	align-items: center;
	background: #f7fafc;
	border: 1px solid var(--county-line);
	border-left: 5px solid var(--county-gold);
	border-radius: 8px;
	display: flex;
	gap: 28px;
	justify-content: space-between;
	margin: 44px 0 12px;
	padding: 28px;
}

.county-product-service-callout__content {
	max-width: 760px;
}

.county-product-service-callout h2 {
	color: var(--county-blue-dark);
	font-size: 26px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.2;
	margin: 0 0 10px;
}

.county-product-service-callout__content > p:last-child {
	color: var(--county-muted);
	line-height: 1.65;
	margin: 0;
}

.county-product-service-callout__actions {
	align-items: center;
	display: flex;
	flex: 0 0 auto;
	flex-direction: column;
	gap: 12px;
}

.county-product-service-callout__coverage {
	align-items: center;
	color: var(--county-blue);
	display: inline-flex;
	font-size: 13px;
	font-weight: 800;
	gap: 7px;
}

.county-product-service-callout__coverage svg {
	height: 15px;
	width: 15px;
}

@media (max-width: 1050px) {
	.county-main {
		gap: 20px;
		grid-template-columns: 104px 1fr auto;
	}

	.county-main__actions .county-action:not(.county-action--call):not(.county-cart) {
		display: none;
	}

	.county-nav__list a {
		padding-left: 9px;
		padding-right: 9px;
	}

	.county-footer-cta__inner {
		align-items: flex-start;
		flex-direction: column;
		gap: 18px;
	}

	.county-footer-grid {
		gap: 40px;
		grid-template-columns: 1fr 1fr;
	}

	.county-hero__grid {
		gap: 30px;
		grid-template-columns: minmax(0, 1fr) 370px;
	}

	.county-hero__floating--service {
		left: -8px;
	}

	.county-hero__floating--hardware {
		right: -8px;
	}

	.county-trust__grid {
		grid-template-columns: 1fr 1fr;
	}

	.county-trust__grid > div:nth-child(3) {
		border-left: 0;
		border-top: 1px solid var(--county-line);
	}

	.county-trust__grid > div:nth-child(4) {
		border-top: 1px solid var(--county-line);
	}

	.county-area-hero__grid {
		gap: 35px;
		grid-template-columns: minmax(0, 1fr) 240px;
	}

	.county-area-card ul {
		grid-template-columns: 1fr;
	}
}

@media (min-width: 801px) {
	.county-product-categories {
		max-height: none;
		overflow: visible;
	}
}

@media (max-width: 800px) {
	body.county-shop-sidebar-open {
		overflow: hidden;
	}

	.county-shop-layout {
		grid-template-columns: 1fr;
	}

	.single-product .woocommerce-product-gallery__trigger {
		display: none !important;
		pointer-events: none;
	}

	.county-shop-sidebar {
		margin-bottom: 18px;
		position: sticky;
		top: env(safe-area-inset-top);
		z-index: 50;
	}

	.county-shop-sidebar.is-open {
		z-index: 10000;
	}

	.county-shop-sidebar__mobile-toggle {
		align-items: center;
		background: var(--county-blue-dark);
		border: 0;
		border-radius: 7px;
		color: #fff;
		cursor: pointer;
		display: inline-flex;
		font-size: 14px;
		font-weight: 800;
		justify-content: center;
		letter-spacing: 0.01em;
		padding: 13px 16px;
		width: 100%;
	}

	.county-shop-sidebar__mobile-toggle svg {
		fill: none;
		height: 18px;
		margin-right: 8px;
		stroke: currentColor;
		stroke-linecap: round;
		stroke-linejoin: round;
		stroke-width: 2;
		width: 18px;
	}

	.county-shop-sidebar__mobile-toggle:hover,
	.county-shop-sidebar__mobile-toggle:focus {
		background: var(--county-blue);
		color: #fff;
		outline: none;
	}

	.county-shop-sidebar__mobile-toggle:focus-visible {
		box-shadow: 0 0 0 3px rgba(244, 181, 46, 0.55);
	}

	.county-shop-sidebar__backdrop {
		background: rgba(13, 53, 93, 0.45);
		border: 0;
		display: block;
		inset: 0;
		position: fixed;
		z-index: 9990;
	}

	.county-shop-sidebar__backdrop[hidden] {
		display: none;
	}

	.county-shop-sidebar__panel {
		border-radius: 0 12px 12px 0;
		bottom: 0;
		box-shadow: 18px 0 45px rgba(13, 53, 93, 0.25);
		height: auto;
		left: 0;
		max-width: 380px;
		max-height: 100vh;
		max-height: 100svh;
		max-height: 100dvh;
		overflow-y: auto;
		overscroll-behavior: contain;
		padding-bottom: env(safe-area-inset-bottom);
		position: fixed;
		-webkit-overflow-scrolling: touch;
		top: 0;
		transform: translateX(-105%);
		transition: transform 0.25s ease;
		width: min(88vw, 380px);
		z-index: 10000;
	}

	.county-shop-sidebar.is-open .county-shop-sidebar__panel {
		transform: translateX(0);
	}

	body.admin-bar .county-shop-sidebar__backdrop {
		top: 46px;
	}

	body.admin-bar .county-shop-sidebar__panel {
		max-height: calc(100vh - 46px);
		max-height: calc(100dvh - 46px);
		top: 46px;
	}

	.county-shop-sidebar__close {
		align-items: center;
		background: rgba(255, 255, 255, 0.12);
		border: 0;
		border-radius: 999px;
		color: #fff;
		cursor: pointer;
		display: inline-flex;
		font-size: 28px;
		font-weight: 400;
		height: 38px;
		justify-content: center;
		line-height: 1;
		position: absolute;
		right: 12px;
		top: 12px;
		width: 38px;
		z-index: 2;
	}

	.county-shop-sidebar__close svg {
		flex: 0 0 20px;
		fill: none;
		height: 20px;
		min-width: 20px;
		stroke: currentColor;
		stroke-linecap: round;
		stroke-linejoin: round;
		stroke-width: 2;
		width: 20px;
	}

	.county-shop-sidebar__close:hover,
	.county-shop-sidebar__close:focus {
		background: var(--county-gold);
		color: var(--county-blue-dark);
		outline: none;
	}

	.county-product-categories {
		padding: 8px 0;
	}

	.county-product-categories ul {
		border-top: 1px solid var(--county-line);
		margin-left: 20px;
	}

	.county-header__inner {
		padding-left: 16px;
		padding-right: 16px;
	}

	.county-staging-notice .county-header__inner {
		align-items: flex-start;
		flex-direction: column;
		gap: 4px;
		padding-bottom: 8px;
		padding-top: 8px;
		text-align: left;
	}

	.county-utility__tagline {
		display: none;
	}

	.county-utility .county-header__inner {
		justify-content: center;
	}

	.county-utility__links li:first-child {
		display: none;
	}

	.county-main {
		gap: 14px;
		grid-template-columns: auto minmax(120px, 1fr) auto;
		padding-bottom: 14px;
		padding-top: 14px;
	}

	.county-logo {
		max-width: 82px;
	}

	.county-logo img {
		max-height: 82px;
		width: 82px;
	}

	.county-mobile-promise {
		align-items: center;
		border: 1px solid var(--county-line);
		border-radius: 8px;
		color: var(--county-blue-dark);
		display: flex;
		flex-direction: column;
		justify-content: center;
		line-height: 1.15;
		min-height: 54px;
		padding: 8px 10px;
		text-align: center;
	}

	.county-mobile-promise strong {
		color: var(--county-blue);
		font-size: 18px;
		letter-spacing: 0.04em;
	}

	.county-mobile-promise span {
		font-size: 12px;
		font-weight: 700;
	}

	.county-search {
		grid-column: 1 / -1;
		grid-row: 2;
	}

	.county-main__actions {
		gap: 8px;
	}

	.county-cart {
		border: 1px solid var(--county-line);
		border-radius: 8px;
		padding: 11px;
	}

	.county-cart__details {
		display: none;
	}

	.county-action--call {
		font-size: 0;
		padding: 11px;
	}

	.county-action--call svg {
		height: 24px;
		width: 24px;
	}

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

	.county-nav .county-header__inner {
		display: block;
	}

	.county-nav__list {
		display: none;
		padding-bottom: 10px;
	}

	.county-nav__list.is-open {
		display: block;
	}

	.county-nav__list a {
		border-top: 1px solid rgba(255, 255, 255, 0.18);
		padding: 13px 4px;
	}

	.county-nav__parent > a {
		justify-content: space-between;
	}

	.county-nav__parent:hover .county-nav__submenu,
	.county-nav__parent:focus-within .county-nav__submenu {
		display: none;
	}

	.county-nav__parent.is-open .county-nav__submenu {
		display: block;
	}

	.county-nav__parent.is-open > a svg {
		transform: rotate(180deg);
	}

	.county-nav__submenu {
		background: var(--county-blue-dark);
		border: 0;
		border-radius: 0;
		box-shadow: none;
		min-width: 0;
		padding: 0 0 4px 16px;
		position: static;
	}

	.county-nav__submenu .county-nav__submenu {
		border-left: 2px solid rgba(244, 181, 46, 0.45);
		left: auto;
		margin-left: 10px;
		padding-left: 12px;
		top: auto;
	}

	.county-nav__submenu a {
		border-top: 1px solid rgba(255, 255, 255, 0.13);
		color: #fff;
		padding: 12px 4px;
	}

	.county-nav__submenu a:hover,
	.county-nav__submenu a:focus {
		background: transparent;
		color: var(--county-gold);
	}

	.county-footer__inner {
		padding-left: 16px;
		padding-right: 16px;
	}

	.county-footer-cta__message {
		align-items: flex-start;
	}

	.county-footer-cta__message strong {
		font-size: 18px;
	}

	.county-footer-cta__actions {
		display: grid;
		grid-template-columns: 1fr 1fr;
		width: 100%;
	}

	.county-footer-grid {
		gap: 34px 28px;
		padding-bottom: 38px;
		padding-top: 40px;
	}

	.county-home__inner {
		padding-left: 16px;
		padding-right: 16px;
	}

	.county-hero__grid {
		gap: 26px;
		grid-template-columns: 1fr;
		padding-bottom: 48px;
		padding-top: 50px;
	}

	.county-hero h1 {
		font-size: clamp(39px, 10vw, 54px);
	}

	.county-hero__lead {
		font-size: 16px;
	}

	.county-hero__visual {
		min-height: 420px;
	}

	.county-security-card {
		height: 370px;
		width: 310px;
	}

	.county-hero__floating--service {
		left: calc(50% - 190px);
		top: 64px;
	}

	.county-hero__floating--hardware {
		bottom: 42px;
		right: calc(50% - 190px);
	}

	.county-section-heading {
		align-items: start;
		gap: 15px;
		grid-template-columns: 1fr;
	}

	.county-service-grid {
		grid-template-columns: 1fr;
	}

	.county-home-services {
		padding: 60px 0 68px;
	}

	.county-area__inner {
		padding-left: 16px;
		padding-right: 16px;
	}

	.county-area-hero__grid {
		gap: 28px;
		grid-template-columns: 1fr;
		padding-bottom: 48px;
		padding-top: 50px;
	}

	.county-area-hero__summary {
		align-items: center;
		display: grid;
		gap: 0 15px;
		grid-template-columns: auto auto 1fr;
		justify-content: start;
		padding: 18px 22px;
		text-align: left;
	}

	.county-area-hero__summary strong {
		font-size: 45px;
		margin: 0;
	}

	.county-area-hero__summary small {
		grid-column: 3;
		margin-top: 2px;
	}

	.county-area-counties {
		padding: 60px 0 68px;
	}

	.county-area-grid {
		grid-template-columns: 1fr;
	}

	.county-area-card ul {
		grid-template-columns: 1fr 1fr;
	}

	.county-area-cta__inner {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (max-width: 460px) {
	.county-product-categories {
		display: block;
	}

	.county-utility__links {
		gap: 14px;
	}

	.county-logo {
		max-width: 72px;
	}

	.county-logo img {
		max-height: 72px;
		width: 72px;
	}

	.county-search button {
		font-size: 0;
		min-width: 52px;
		padding: 0 14px;
	}

	.county-mobile-promise {
		min-height: 48px;
		padding: 6px 8px;
	}

	.county-mobile-promise strong {
		font-size: 15px;
	}

	.county-mobile-promise span {
		font-size: 11px;
	}

	.county-cart {
		padding: 10px;
	}

	.county-footer-cta__icon {
		display: none;
	}

	.county-footer-cta__actions {
		grid-template-columns: 1fr;
	}

	.county-footer-grid {
		grid-template-columns: 1fr;
	}

	.county-footer-brand p {
		max-width: none;
	}

	.county-footer-bottom .county-footer__inner {
		align-items: flex-start;
		flex-direction: column;
		gap: 5px;
		justify-content: center;
		padding-bottom: 12px;
		padding-top: 12px;
	}

	.county-footer-bottom__legal {
		align-items: flex-start;
		flex-direction: column;
	}

	.county-legal-toc__links {
		columns: 1;
	}

	.county-hero__actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.county-home-button {
		width: 100%;
	}

	.county-hero__checks {
		display: grid;
		gap: 9px;
		grid-template-columns: 1fr;
	}

	.county-hero__visual {
		min-height: 345px;
	}

	.county-security-card {
		height: 320px;
		padding: 20px;
		width: 250px;
	}

	.county-security-card__lock {
		height: 165px;
		margin-top: 20px;
		transform: scale(0.78);
		transform-origin: top center;
	}

	.county-security-card__stats {
		margin-top: -25px;
	}

	.county-hero__floating {
		padding: 10px;
	}

	.county-hero__floating--service {
		left: 0;
		top: 45px;
	}

	.county-hero__floating--hardware {
		bottom: 24px;
		right: 0;
	}

	.county-trust__grid {
		grid-template-columns: 1fr;
	}

	.county-trust__grid > div {
		min-height: 76px;
		padding: 14px 8px;
	}

	.county-trust__grid > div + div {
		border-left: 0;
		border-top: 1px solid var(--county-line);
	}

	.county-service-card {
		min-height: 0;
	}

	.county-area-hero__actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.county-area-card ul {
		grid-template-columns: 1fr;
	}

.county-area-cta .county-home-button {
	width: 100%;
	}
}

.county-coming-soon-page {
	background: #f4f1eb;
}

.county-coming-soon {
	background:
		linear-gradient(120deg, rgba(20, 52, 67, 0.94), rgba(16, 33, 42, 0.96)),
		url("assets/CtyLock.png") right -240px center / 620px auto no-repeat;
	color: #fff;
	min-height: 100vh;
}

.county-coming-soon__hero {
	min-height: 100vh;
	padding: 28px 20px;
}

.county-coming-soon__inner {
	margin: 0 auto;
	max-width: 1180px;
}

.county-coming-soon__top {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin-bottom: 90px;
}

.county-coming-soon__brand {
	align-items: center;
	color: #fff;
	display: inline-flex;
	font-weight: 800;
	gap: 14px;
	text-decoration: none;
}

.county-coming-soon__brand img {
	height: 58px;
	object-fit: contain;
	width: 58px;
}

.county-coming-soon__brand span {
	font-size: 1.05rem;
	letter-spacing: 0;
}

.county-terms-page {
	background: var(--county-surface);
	color: var(--county-ink);
}

.county-terms__inner {
	margin: 0 auto;
	max-width: 1180px;
	padding-left: 24px;
	padding-right: 24px;
}

.county-terms-hero {
	background: var(--county-blue-dark);
	color: #fff;
	padding: 72px 0 76px;
}

.county-terms-hero h1 {
	color: #fff;
	font-size: clamp(36px, 5vw, 58px);
	font-weight: 850;
	letter-spacing: 0;
	line-height: 1.08;
	margin: 0;
	max-width: 900px;
}

.county-terms-hero > .county-terms__inner > p:last-child {
	color: rgba(255, 255, 255, 0.8);
	font-size: 17px;
	line-height: 1.7;
	margin: 22px 0 0;
	max-width: 760px;
}

.county-terms-options {
	padding: 76px 0 86px;
}

.county-terms-section-heading {
	align-items: end;
	display: grid;
	gap: 44px;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	margin-bottom: 34px;
}

.county-terms-section-heading h2,
.county-terms-note h2 {
	color: var(--county-blue-dark);
	font-size: clamp(28px, 3.5vw, 40px);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.15;
	margin: 0;
}

.county-terms-section-heading p,
.county-terms-note p {
	color: var(--county-muted);
	line-height: 1.7;
	margin: 0;
}

.county-terms-grid {
	display: grid;
	gap: 22px;
	grid-template-columns: repeat(6, minmax(0, 1fr));
}

.county-terms-card {
	grid-column: span 2;
}

.county-terms-card {
	background: #fff;
	border: 1px solid var(--county-line);
	border-radius: 8px;
	box-shadow: 0 10px 25px rgba(13, 53, 93, 0.06);
	color: var(--county-ink);
	display: flex;
	flex-direction: column;
	min-height: 320px;
	padding: 28px;
	text-decoration: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.county-terms-card:hover,
.county-terms-card:focus {
	border-color: rgba(22, 79, 134, 0.38);
	box-shadow: 0 18px 36px rgba(13, 53, 93, 0.13);
	color: var(--county-ink);
	transform: translateY(-3px);
}

.county-terms-card__icon,
.county-terms-note__inner > span {
	align-items: center;
	background: #e8f2f8;
	border-radius: 8px;
	color: var(--county-blue);
	display: inline-flex;
	height: 50px;
	justify-content: center;
	width: 50px;
}

.county-terms-card__icon {
	margin-bottom: 22px;
}

.county-terms-card__icon svg,
.county-terms-note__inner > span svg {
	fill: none;
	height: 24px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
	width: 24px;
}

.county-terms-card h3 {
	color: var(--county-blue-dark);
	font-size: 21px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.25;
	margin: 0 0 12px;
}

.county-terms-card p {
	color: var(--county-muted);
	font-size: 14px;
	line-height: 1.65;
	margin: 0 0 24px;
}

.county-terms-card strong {
	align-items: center;
	color: var(--county-blue);
	display: inline-flex;
	font-size: 13px;
	gap: 7px;
	margin-top: auto;
}

.county-terms-card strong svg {
	fill: none;
	height: 16px;
	stroke: currentColor;
	stroke-width: 2.5;
	width: 16px;
}

.county-terms-note {
	background: #fff;
	border-top: 1px solid var(--county-line);
	padding: 48px 0;
}

.county-terms-note__inner {
	align-items: center;
	display: grid;
	gap: 22px;
	grid-template-columns: 50px minmax(0, 1fr) auto;
}

.county-terms-note h2 {
	font-size: 24px;
	margin-bottom: 6px;
}

@media (max-width: 840px) {
	.county-terms-section-heading,
	.county-terms-grid {
		grid-template-columns: 1fr;
	}

	.county-terms-card {
		grid-column: auto;
		min-height: 0;
	}
}

@media (max-width: 560px) {
	.county-terms-hero {
		padding: 54px 0 58px;
	}

	.county-terms-options {
		padding: 56px 0 64px;
	}

	.county-terms-note__inner {
		grid-template-columns: 50px minmax(0, 1fr);
	}

	.county-terms-note__inner > a {
		grid-column: 1 / -1;
		width: 100%;
	}
}

.county-coming-soon__phone {
	align-items: center;
	border: 1px solid rgba(255, 255, 255, 0.28);
	color: #fff;
	display: inline-flex;
	font-weight: 800;
	gap: 10px;
	padding: 12px 16px;
	text-decoration: none;
}

.county-coming-soon__phone svg,
.county-coming-soon__button svg,
.county-coming-soon__panel svg {
	fill: none;
	height: 20px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
	width: 20px;
}

.county-coming-soon__grid {
	align-items: center;
	display: grid;
	gap: 54px;
	grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
}

.county-coming-soon__eyebrow {
	color: #f2bf55;
	font-size: 0.82rem;
	font-weight: 900;
	letter-spacing: 0.12em;
	margin: 0 0 18px;
	text-transform: uppercase;
}

.county-coming-soon h1 {
	color: #fff;
	font-size: clamp(2.8rem, 6vw, 5.7rem);
	font-weight: 900;
	letter-spacing: 0;
	line-height: 0.98;
	margin: 0;
	max-width: 820px;
}

.county-coming-soon__lead {
	color: rgba(255, 255, 255, 0.82);
	font-size: 1.18rem;
	line-height: 1.75;
	margin: 26px 0 0;
	max-width: 700px;
}

.county-coming-soon__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 36px;
}

.county-coming-soon__button {
	align-items: center;
	display: inline-flex;
	font-weight: 900;
	gap: 10px;
	justify-content: center;
	min-height: 52px;
	padding: 14px 20px;
	text-decoration: none;
}

.county-coming-soon__button--primary {
	background: #f2bf55;
	color: #142d38;
}

.county-coming-soon__button--secondary {
	border: 1px solid rgba(255, 255, 255, 0.34);
	color: #fff;
}

.county-coming-soon__panel {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 8px;
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
	padding: 30px;
}

.county-coming-soon__panel-header {
	align-items: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.16);
	display: flex;
	gap: 12px;
	margin-bottom: 20px;
	padding-bottom: 18px;
}

.county-coming-soon__panel-header span {
	align-items: center;
	background: rgba(242, 191, 85, 0.18);
	border-radius: 8px;
	color: #f2bf55;
	display: inline-flex;
	height: 42px;
	justify-content: center;
	width: 42px;
}

.county-coming-soon__panel-header strong {
	color: #fff;
	font-size: 1.15rem;
}

.county-coming-soon__panel ul {
	display: grid;
	gap: 16px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.county-coming-soon__panel li {
	align-items: flex-start;
	color: rgba(255, 255, 255, 0.84);
	display: flex;
	gap: 12px;
	line-height: 1.5;
}

.county-coming-soon__panel li svg {
	color: #f2bf55;
	flex: 0 0 20px;
	margin-top: 2px;
}

@media (max-width: 840px) {
	.county-coming-soon {
		background:
			linear-gradient(120deg, rgba(20, 52, 67, 0.96), rgba(16, 33, 42, 0.98)),
			url("assets/CtyLock.png") right -180px bottom -160px / 420px auto no-repeat;
	}

	.county-coming-soon__top {
		align-items: flex-start;
		gap: 18px;
		margin-bottom: 58px;
	}

	.county-coming-soon__grid {
		grid-template-columns: 1fr;
	}

	.county-coming-soon h1 {
		font-size: 3rem;
	}
}

@media (max-width: 560px) {
	.county-coming-soon__hero {
		padding: 20px 16px 34px;
	}

	.county-coming-soon__top {
		display: grid;
	}

	.county-coming-soon__phone,
	.county-coming-soon__button {
		width: 100%;
	}

	.county-coming-soon__actions {
		display: grid;
	}

	.county-coming-soon h1 {
		font-size: 2.45rem;
	}

	.county-coming-soon__lead {
		font-size: 1.05rem;
	}

	.county-coming-soon__panel {
		padding: 24px 20px;
	}
}

@media (max-width: 1180px) {
	.county-resources-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.county-promotions-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.county-promotion-card-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 800px) {
	.county-resources__inner {
		padding-left: 16px;
		padding-right: 16px;
	}

	.county-resource-detail__inner {
		padding-left: 16px;
		padding-right: 16px;
	}

	.county-resources-hero__grid {
		gap: 28px;
		grid-template-columns: 1fr;
		padding-bottom: 52px;
		padding-top: 52px;
	}

	.county-resource-detail-hero__grid {
		gap: 28px;
		grid-template-columns: 1fr;
		padding-bottom: 52px;
		padding-top: 52px;
	}

	.county-resources-hero__actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.county-resource-detail-hero__actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.county-resources-hero__actions .county-home-button {
		width: 100%;
	}

	.county-resource-detail-hero__actions .county-home-button {
		width: 100%;
	}

	.county-resources-hero__panel {
		padding: 22px;
	}

	.county-resource-detail-note {
		padding: 22px;
	}

	.county-service-form-callout {
		align-items: flex-start;
		flex-direction: column;
		margin: 34px 12px;
		padding: 24px;
	}

	.county-service-form-callout .county-home-button {
		width: 100%;
	}

	.county-product-service-callout {
		align-items: flex-start;
		flex-direction: column;
		margin-top: 34px;
		padding: 24px;
	}

	.county-product-service-callout__actions,
	.county-product-service-callout .county-home-button {
		width: 100%;
	}

	.county-resources-topics {
		padding: 58px 0 66px;
	}

	.county-resources-grid {
		grid-template-columns: 1fr 1fr;
	}

	.county-resource-card {
		min-height: 0;
	}

	.county-resources-guides {
		padding: 64px 0 72px;
	}

	.county-resources-guides__grid {
		grid-template-columns: 1fr;
	}

	.county-resource-detail-section,
	.county-finish-chart-section {
		padding: 58px 0 66px;
	}

	.county-resource-detail-grid,
	.county-resource-advice-grid {
		grid-template-columns: 1fr;
	}

	.county-resource-source-grid {
		grid-template-columns: 1fr 1fr;
	}

	.county-download-group__header {
		display: grid;
	}

	.county-download-list {
		grid-template-columns: 1fr;
	}

	.county-faq-list {
		grid-template-columns: 1fr;
	}

	.county-resources-cta__inner {
		align-items: flex-start;
		flex-direction: column;
	}

	.county-resource-detail-cta__inner {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (max-width: 560px) {
	.county-resources-grid {
		grid-template-columns: 1fr;
	}

	.county-promotions-grid {
		grid-template-columns: 1fr;
	}

	.county-promotion-card-grid {
		grid-template-columns: 1fr;
	}

	.county-resources-feature {
		padding: 26px 22px;
	}

	.county-resources-guide-list section {
		padding: 22px;
	}

	.county-resources-cta .county-home-button {
		width: 100%;
	}

	.county-resource-detail-card,
	.county-resource-advice-card {
		padding: 24px 22px;
	}

	.county-resource-detail-cta .county-home-button {
		width: 100%;
	}

	.county-faq-item {
		padding: 22px;
	}

	.county-resource-source-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 360px) {
	.county-mobile-promise span {
		display: none;
	}
}

/* Seasonal theme layer. Controlled from Appearance > Customize > Seasonal Theme. */
.county-seasonal-notice {
	background: #0f376d;
	border-bottom: 1px solid rgba(255, 255, 255, 0.18);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0;
}

.county-seasonal-notice .county-header__inner {
	align-items: center;
	display: flex;
	gap: 12px;
	justify-content: center;
	min-height: 38px;
	text-align: center;
}

.county-seasonal-notice strong {
	background: #bf1e2e;
	border-radius: 4px;
	box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.16);
	color: #fff;
	padding: 4px 8px;
	text-transform: uppercase;
	white-space: nowrap;
}

.county-seasonal-notice span {
	line-height: 1.35;
}

.county-seasonal-notice a {
	background: #fff;
	border-radius: 4px;
	color: #0f376d;
	display: inline-flex;
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
	padding: 8px 10px;
	text-transform: uppercase;
	white-space: nowrap;
}

.county-seasonal-theme--july-fourth .county-utility {
	border-top: 3px solid #bf1e2e;
}

.county-seasonal-theme--july-fourth .county-nav {
	box-shadow: inset 0 -3px 0 #bf1e2e;
}

.county-seasonal-theme--july-fourth .county-shop-promotion,
.county-seasonal-theme--july-fourth .county-promotions-hero,
.county-seasonal-theme--july-fourth .county-promotion-detail-hero {
	background-image:
		linear-gradient(135deg, rgba(15, 55, 109, 0.96), rgba(16, 41, 77, 0.94)),
		linear-gradient(90deg, rgba(191, 30, 46, 0.2) 0 18%, transparent 18% 82%, rgba(255, 255, 255, 0.16) 82% 100%);
}

.county-seasonal-theme--july-fourth .county-shop-promotion {
	border-color: rgba(255, 255, 255, 0.2);
	border-left-color: #bf1e2e;
	color: #ffffff;
}

.county-seasonal-theme--july-fourth .county-shop-promotion__eyebrow {
	background: #bf1e2e;
	border-radius: 4px;
	color: #ffffff;
	display: inline-flex;
	padding: 4px 8px;
}

.county-seasonal-theme--july-fourth .county-shop-promotion h2 {
	color: #ffffff;
}

.county-seasonal-theme--july-fourth .county-shop-promotion p:last-child {
	color: rgba(255, 255, 255, 0.88);
}

.county-seasonal-theme--july-fourth .county-shop-promotion__button {
	background: #ffffff;
	color: #0f376d;
}

.county-seasonal-theme--july-fourth .county-shop-promotion__button:hover,
.county-seasonal-theme--july-fourth .county-shop-promotion__button:focus {
	background: #bf1e2e;
	color: #ffffff;
}

.county-seasonal-theme--july-fourth .county-home-button--primary,
.county-seasonal-theme--july-fourth .county-promotion-card__button {
	box-shadow: inset 0 -3px 0 rgba(191, 30, 46, 0.28);
}

@media (max-width: 760px) {
	.county-seasonal-notice .county-header__inner {
		align-items: stretch;
		flex-direction: column;
		gap: 8px;
		padding-bottom: 10px;
		padding-top: 10px;
	}

	.county-seasonal-notice a {
		justify-content: center;
		width: 100%;
	}
}

/* 4th of July header and footer treatment. */
.county-seasonal-theme--july-fourth .county-header {
	box-shadow: 0 3px 12px rgba(15, 55, 109, 0.18);
}

.county-seasonal-theme--july-fourth .county-header::before {
	background: linear-gradient(90deg, #bf1e2e 0 33.333%, #fff 33.333% 66.666%, #0f376d 66.666% 100%);
	content: "";
	display: block;
	height: 5px;
}

.county-seasonal-theme--july-fourth .county-utility {
	background: #f8fafc;
	border-top: 0;
	color: #27435d;
}

.county-seasonal-theme--july-fourth .county-utility__tagline::before {
	background: #bf1e2e;
	border-radius: 50%;
	content: "";
	display: inline-block;
	height: 6px;
	margin-right: 8px;
	vertical-align: 2px;
	width: 6px;
}

.county-seasonal-theme--july-fourth .county-main {
	background:
		linear-gradient(90deg, rgba(191, 30, 46, 0.045), transparent 24%, transparent 76%, rgba(15, 55, 109, 0.055)),
		#fff;
}

.county-seasonal-theme--july-fourth .county-search input[type="search"] {
	border-color: #0f376d;
}

.county-seasonal-theme--july-fourth .county-search button {
	background: #0f376d;
	border-color: #0f376d;
}

.county-seasonal-theme--july-fourth .county-action--call {
	background: #bf1e2e;
	color: #fff;
}

.county-seasonal-theme--july-fourth .county-action--call:hover,
.county-seasonal-theme--july-fourth .county-action--call:focus {
	background: #a81927;
	color: #fff;
}

.county-seasonal-theme--july-fourth .county-cart__count {
	background: #bf1e2e;
	color: #fff;
}

.county-seasonal-theme--july-fourth .county-nav {
	background: linear-gradient(90deg, #0b2f5f, #123f7a 48%, #0b2f5f);
	box-shadow: inset 0 -4px 0 #bf1e2e;
}

.county-seasonal-theme--july-fourth .county-nav__list a:hover,
.county-seasonal-theme--july-fourth .county-nav__list a:focus,
.county-seasonal-theme--july-fourth .county-nav__list .current-menu-item > a,
.county-seasonal-theme--july-fourth .county-nav__list .current-menu-parent > a,
.county-seasonal-theme--july-fourth .county-nav__list .current-menu-ancestor > a {
	background: #bf1e2e;
	color: #fff;
}

.county-seasonal-theme--july-fourth .county-nav__submenu a:hover,
.county-seasonal-theme--july-fourth .county-nav__submenu a:focus {
	background: rgba(191, 30, 46, 0.08);
	color: #bf1e2e;
}

.county-seasonal-theme--july-fourth .county-footer-cta {
	background:
		linear-gradient(135deg, rgba(11, 47, 95, 0.96), rgba(18, 63, 122, 0.95)),
		linear-gradient(90deg, rgba(191, 30, 46, 0.2), transparent 42%, rgba(255, 255, 255, 0.12));
	border-top: 5px solid #bf1e2e;
}

.county-seasonal-theme--july-fourth .county-footer-cta__icon {
	background: #bf1e2e;
	box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.18);
	color: #ffffff;
}

.county-seasonal-theme--july-fourth .county-footer-button--gold {
	background: #bf1e2e;
	border-color: #bf1e2e;
	color: #fff;
}

.county-seasonal-theme--july-fourth .county-footer-button--gold:hover,
.county-seasonal-theme--july-fourth .county-footer-button--gold:focus {
	background: #fff;
	border-color: #fff;
	color: #0f376d;
}

.county-seasonal-theme--july-fourth .county-footer-main {
	background:
		linear-gradient(180deg, rgba(11, 47, 95, 0.96), rgba(6, 34, 63, 0.98)),
		var(--county-blue-dark);
}

.county-seasonal-theme--july-fourth .county-footer-column h2::after {
	background: #bf1e2e;
}

.county-seasonal-theme--july-fourth .county-footer-hours strong,
.county-seasonal-theme--july-fourth .county-footer-column li a:hover,
.county-seasonal-theme--july-fourth .county-footer-column li a:focus,
.county-seasonal-theme--july-fourth .county-footer-contact a:hover,
.county-seasonal-theme--july-fourth .county-footer-contact a:focus {
	color: #fff;
}

.county-seasonal-theme--july-fourth .county-footer-bottom {
	background: linear-gradient(90deg, #bf1e2e, #0b2f5f 36%, #0b2f5f 64%, #bf1e2e);
	color: #fff;
}

.county-product-tech-figure {
	margin: 1.5rem 0;
	padding: 1rem;
	border: 1px solid rgba(15, 23, 42, 0.14);
	border-radius: 8px;
	background: #ffffff;
}

.county-product-tech-figure img {
	display: block;
	width: 100%;
	height: auto;
	max-width: 900px;
	margin: 0 auto;
}

.county-product-tech-figure figcaption {
	margin-top: 0.75rem;
	color: #4b5563;
	font-size: 0.925rem;
	line-height: 1.5;
	text-align: center;
}

.county-faceplate-compatibility {
	background: #f8fafc;
	border: 1px solid rgba(15, 23, 42, 0.12);
	border-left: 5px solid #c8a036;
	border-radius: 8px;
	margin: 2rem 0;
	padding: clamp(1.25rem, 2vw, 1.75rem);
}

.county-faceplate-compatibility__intro {
	max-width: 920px;
}

.county-faceplate-compatibility__eyebrow {
	color: #0f376d;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0;
	margin: 0 0 0.35rem;
	text-transform: uppercase;
}

.county-faceplate-compatibility h2 {
	color: #142f4c;
	font-size: clamp(1.45rem, 2vw, 1.85rem);
	margin: 0 0 0.5rem;
}

.county-faceplate-compatibility__intro p {
	color: #3f4f60;
	line-height: 1.65;
	margin: 0 0 0.75rem;
}

.county-faceplate-compatibility__included {
	background: #fff8df;
	border: 1px solid rgba(200, 160, 54, 0.35);
	border-radius: 6px;
	color: #4c3b10;
	font-weight: 700;
	padding: 0.85rem 1rem;
}

.county-faceplate-compatibility__grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	margin-top: 1.2rem;
}

.county-faceplate-card {
	background: #ffffff;
	border: 1px solid rgba(15, 23, 42, 0.12);
	border-radius: 8px;
	display: grid;
	grid-template-rows: auto 1fr;
	min-width: 0;
	overflow: hidden;
}

.county-faceplate-card__media {
	align-items: center;
	aspect-ratio: 16 / 9;
	background: linear-gradient(180deg, #ffffff, #eef3f7);
	border-bottom: 1px solid rgba(15, 23, 42, 0.1);
	display: flex;
	justify-content: center;
	padding: 1rem;
}

.county-faceplate-card__media img {
	display: block;
	height: 100%;
	max-height: 180px;
	max-width: 100%;
	object-fit: contain;
	width: auto;
}

.county-faceplate-card__media span {
	align-items: center;
	background: #0f376d;
	border-radius: 50%;
	color: #ffffff;
	display: inline-flex;
	font-size: 1.5rem;
	font-weight: 800;
	height: 4.25rem;
	justify-content: center;
	width: 4.25rem;
}

.county-faceplate-card__body {
	padding: 1rem;
}

.county-faceplate-card__code {
	background: #e8eef5;
	border-radius: 4px;
	color: #0f376d;
	display: inline-flex;
	font-size: 0.78rem;
	font-weight: 800;
	line-height: 1;
	margin: 0 0 0.55rem;
	padding: 0.35rem 0.5rem;
}

.county-faceplate-card h3 {
	color: #172b3f;
	font-size: 1.05rem;
	line-height: 1.3;
	margin: 0 0 0.9rem;
}

.county-faceplate-card dl {
	display: grid;
	gap: 0.8rem;
	margin: 0;
}

.county-faceplate-card dt {
	color: #66788a;
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0;
	margin: 0 0 0.15rem;
	text-transform: uppercase;
}

.county-faceplate-card dd {
	color: #2f3f50;
	font-size: 0.92rem;
	line-height: 1.55;
	margin: 0;
}

@media (max-width: 640px) {
	.county-faceplate-compatibility {
		border-left-width: 0;
		border-top: 5px solid #c8a036;
	}

	.county-faceplate-compatibility__grid {
		grid-template-columns: 1fr;
	}
}
