/*
 * Alternate Healthy Start header/footer based on HS Website Mockup Rev4.
 * Adobe Bree and Livvic typography build: 1.3.17.
 * This stylesheet is loaded only by template-mockup-page.php.
 */

:root {
	--chs-pink: #e84699;
	--chs-green: #7ac142;
	--chs-green-light: #c3dfa8;
	--chs-blue: #1d438c;
	--chs-text: #252525;
	--chs-white: #ffffff;
	--chs-header-max-width: 1848px;
	--chs-footer-max-width: 1848px;
	--chs-body-font: "Livvic", Verdana, Arial, sans-serif;
	--chs-display-font: "bree", "Livvic", Verdana, Arial, sans-serif;
}

body.chs-alt-template {
	margin: 0;
	background: var(--chs-white);
	color: var(--chs-text);
	font-family: var(--chs-body-font);
	/* Match the mockup's conventional alternate ampersand in Adobe Bree. */
	font-feature-settings: "ss03" 1;
	overflow-x: hidden;
}

body.chs-alt-template:not(.custom-background-image)::before,
body.chs-alt-template:not(.custom-background-image)::after {
	display: none;
}

body.chs-alt-template *,
body.chs-alt-template *::before,
body.chs-alt-template *::after {
	box-sizing: border-box;
}

body.chs-alt-template .site {
	max-width: none;
	margin: 0;
	background: var(--chs-white);
	overflow: visible;
}

body.chs-alt-template .chs-alt-site-inner {
	max-width: none;
	margin: 0;
	overflow: visible;
}

body.chs-alt-template a {
	box-shadow: none;
}

.chs-alt-header {
	position: relative;
	z-index: 100;
	width: 100%;
	background: var(--chs-white);
}

.chs-alt-header-stripe {
	height: 28px;
	background: var(--chs-pink);
}

.chs-alt-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 34px;
	width: min(calc(100% - 68px), var(--chs-header-max-width));
	min-height: 173px;
	margin: 0 auto;
}

.chs-alt-branding {
	flex: 0 0 auto;
}

.chs-alt-logo-link {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}

.chs-alt-logo {
	display: block;
	width: auto;
	max-width: 285px;
	max-height: 125px;
}

.chs-alt-logo-placeholder {
	display: grid;
	place-items: center;
	width: 238px;
	height: 92px;
	border: 2px dashed var(--chs-pink);
	border-radius: 4px;
	background: #fff7fb;
	color: var(--chs-pink);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-align: center;
}

.chs-alt-header-menu {
	margin-left: auto;
}

.chs-alt-nav {
	margin: 0;
}

.chs-alt-nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.chs-alt-menu {
	display: flex;
	align-items: stretch;
}

.chs-alt-menu > li {
	position: relative;
	display: flex;
	align-items: stretch;
	margin: 0;
}

.chs-alt-menu > li:not(:last-child)::after {
	position: absolute;
	top: 50%;
	right: 0;
	width: 1px;
	height: 42px;
	background: var(--chs-green);
	content: "";
	transform: translateY(-50%);
}

.chs-alt-menu a {
	display: flex;
	align-items: center;
	padding: 20px clamp(28px, 1.875vw, 36px);
	border: 0;
	color: var(--chs-pink);
	font-family: var(--chs-display-font);
	font-size: clamp(22px, 1.458vw, 28px);
	font-weight: 500;
	line-height: 1.2;
	text-decoration: none;
	transition: color 150ms ease, background-color 150ms ease;
}

.chs-alt-menu > li:hover > a,
.chs-alt-menu > li:focus-within > a,
.chs-alt-menu > .current-menu-item > a {
	background: var(--chs-green);
	color: var(--chs-white);
}

.chs-alt-menu a:focus-visible,
.chs-alt-donate a:focus-visible,
.chs-alt-footer a:focus-visible,
.chs-alt-copyright a:focus-visible {
	outline: 3px solid var(--chs-blue);
	outline-offset: 3px;
}

.chs-alt-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 110;
	display: none;
	width: clamp(300px, 21.2vw, 407px);
	margin: 0;
	padding: 7px 0;
	background: var(--chs-green-light);
	box-shadow: 0 10px 22px rgb(0 0 0 / 14%);
}

.chs-alt-menu li:hover > .sub-menu,
.chs-alt-menu li:focus-within > .sub-menu {
	display: block;
}

.chs-alt-menu .sub-menu li {
	margin: 0;
}

.chs-alt-menu .sub-menu a {
	display: block;
	padding: 10px clamp(20px, 1.65vw, 32px);
	color: var(--chs-text);
	font-family: var(--chs-body-font);
	font-size: clamp(19px, 1.25vw, 24px);
	font-weight: 400;
	line-height: 1.25;
}

.chs-alt-menu .sub-menu a:hover,
.chs-alt-menu .sub-menu a:focus-visible,
.chs-alt-menu .sub-menu .current-menu-item > a {
	background: transparent;
	color: var(--chs-pink);
	font-family: var(--chs-body-font);
	font-weight: 700;
}

/*
 * The existing child theme loads a second navigation stylesheet with fixed
 * 120px menu items, Calibri, uppercase text, and gray links. These selectors
 * intentionally outrank those global rules only on the alternate template.
 */
body.chs-alt-template .chs-alt-header-menu {
	margin: 0 0 0 auto;
}

body.chs-alt-template .chs-alt-nav .chs-alt-menu {
	display: flex;
	align-items: stretch;
}

body.chs-alt-template .chs-alt-nav .chs-alt-menu > li {
	display: flex;
	align-items: stretch;
	width: auto;
	height: auto;
	margin: 0;
	border-right: 0;
	font-size: inherit;
	text-align: center;
}

body.chs-alt-template .chs-alt-nav .chs-alt-menu > li > a,
body.chs-alt-template .chs-alt-nav .chs-alt-menu > li > a:focus {
	display: flex;
	align-items: center;
	padding: 20px clamp(28px, 1.875vw, 36px);
	color: var(--chs-pink);
	font-family: var(--chs-display-font);
	font-size: clamp(22px, 1.458vw, 28px);
	font-weight: 500 !important;
	line-height: 1.2;
	letter-spacing: 0;
	text-align: center;
	text-transform: none;
	white-space: nowrap;
}

body.chs-alt-template .chs-alt-nav .chs-alt-menu > li:hover > a,
body.chs-alt-template .chs-alt-nav .chs-alt-menu > li:focus-within > a,
body.chs-alt-template .chs-alt-nav .chs-alt-menu > .current-menu-item > a {
	background: var(--chs-green);
	color: var(--chs-white);
}

body.chs-alt-template .chs-alt-nav .chs-alt-menu .sub-menu {
	width: clamp(300px, 21.2vw, 407px);
	margin: 0;
	padding: 7px 0;
	border: 0;
	background: var(--chs-green-light);
}

body.chs-alt-template .chs-alt-nav .chs-alt-menu .sub-menu li {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	border: 0;
	background: var(--chs-green-light);
	text-align: left;
}

body.chs-alt-template .chs-alt-nav .chs-alt-menu .sub-menu a,
body.chs-alt-template .chs-alt-nav .chs-alt-menu .sub-menu a:focus {
	display: block;
	padding: 10px clamp(20px, 1.65vw, 32px);
	color: var(--chs-text);
	font-family: var(--chs-body-font) !important;
	font-size: clamp(19px, 1.25vw, 24px);
	font-weight: 400 !important;
	line-height: 1.25;
	letter-spacing: 0;
	text-align: left;
	text-transform: none;
	white-space: normal;
}

body.chs-alt-template .chs-alt-nav .chs-alt-menu .sub-menu a:hover,
body.chs-alt-template .chs-alt-nav .chs-alt-menu .sub-menu a:focus-visible,
body.chs-alt-template .chs-alt-nav .chs-alt-menu .sub-menu .current-menu-item > a {
	background: transparent;
	color: var(--chs-pink);
	font-family: var(--chs-body-font) !important;
	font-weight: 700 !important;
}

/*
 * Twenty Sixteen automatically adds `toggled-on` to the submenu containing
 * the current page. On desktop its inherited rules otherwise leave that menu
 * open and switch it from left- to right-alignment only after hover. Keep all
 * desktop open states on the same right-aligned geometry and show the submenu
 * only during intentional mouse or keyboard interaction. The mobile rules
 * below continue to expose the Programs links inside the collapsed menu.
 */
@media (min-width: 1241px) {
	body.chs-alt-template .chs-alt-nav .chs-alt-menu .sub-menu,
	body.chs-alt-template .chs-alt-nav .chs-alt-menu .sub-menu.toggled-on {
		top: 100%;
		right: 0;
		left: auto;
		display: none;
		transform: none;
	}

	body.chs-alt-template .chs-alt-nav .chs-alt-menu > li:hover > .sub-menu,
	body.chs-alt-template .chs-alt-nav .chs-alt-menu > li:focus-within > .sub-menu,
	body.chs-alt-template .chs-alt-nav .chs-alt-menu > li.focus > .sub-menu {
		right: 0;
		left: auto;
		display: block;
		transform: none;
	}

	body.chs-alt-template .chs-alt-nav .chs-alt-menu .sub-menu::before,
	body.chs-alt-template .chs-alt-nav .chs-alt-menu .sub-menu::after {
		display: none;
	}
}

.chs-alt-menu-toggle {
	display: none;
	align-items: center;
	gap: 9px;
	min-width: 0;
	margin: 0;
	padding: 10px 13px;
	border: 2px solid var(--chs-pink);
	border-radius: 4px;
	background: var(--chs-white);
	color: var(--chs-pink);
	font-family: var(--chs-display-font);
	font-size: 15px;
	font-weight: 700;
	text-transform: none;
}

.chs-alt-menu-icon,
.chs-alt-menu-icon::before,
.chs-alt-menu-icon::after {
	display: block;
	width: 20px;
	height: 2px;
	background: currentColor;
	content: "";
}

.chs-alt-menu-icon {
	position: relative;
}

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

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

.chs-alt-content,
.chs-alt-main,
.chs-alt-page,
.chs-alt-entry-content {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
	border: 0;
	float: none;
}

.chs-alt-entry-content::before,
.chs-alt-entry-content::after {
	display: table;
	content: "";
}

.chs-alt-entry-content::after {
	clear: both;
}

.chs-alt-donate {
	padding: clamp(44px, 2.8vw, 54px) 24px clamp(44px, 2.6vw, 50px);
	background: linear-gradient(
		to bottom,
		var(--chs-white) 0 clamp(100px, 6.3vw, 121px),
		#f2f2f2 clamp(100px, 6.3vw, 121px) 100%
	);
	font-family: var(--chs-body-font);
	text-align: center;
}

.chs-alt-donate-inner {
	width: min(100%, 1560px);
	margin: 0 auto;
}

.chs-alt-donate h2 {
	margin: 0 0 clamp(30px, 1.9vw, 36px);
	font-family: var(--chs-display-font);
	font-weight: 400;
}

.chs-alt-donate-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: clamp(250px, 17.15vw, 329px);
	min-height: clamp(92px, 6.6vw, 127px);
	padding: 18px clamp(38px, 2.5vw, 48px);
	border-radius: clamp(12px, 1vw, 20px);
	background: var(--chs-pink);
	color: var(--chs-white);
	font-family: var(--chs-display-font);
	font-size: clamp(34px, 2.5vw, 48px);
	font-weight: 400;
	line-height: 1.05;
	text-decoration: none;
}

body.chs-alt-template .chs-alt-donate-button,
body.chs-alt-template .chs-alt-donate-button:visited {
	color: var(--chs-white);
}

body.chs-alt-template .chs-alt-donate-button:hover,
body.chs-alt-template .chs-alt-donate-button:focus {
	background: var(--chs-green);
	color: var(--chs-white);
}

.chs-alt-donate-button:hover,
.chs-alt-donate-button:focus {
	background: var(--chs-green);
	color: var(--chs-white);
}

.chs-alt-donate p {
	margin: 0 0 12px;
	font-size: clamp(23px, 1.667vw, 32px);
	font-weight: 400;
	line-height: 1.4;
	max-width: none;
}

.chs-alt-donate-more {
	color: var(--chs-pink);
	font-family: var(--chs-display-font);
	font-size: clamp(22px, 1.625vw, 31.2px);
	font-weight: 400;
	line-height: 1.2;
	text-decoration: none;
	text-transform: uppercase;
}

body.chs-alt-template .chs-alt-donate-more,
body.chs-alt-template .chs-alt-donate-more:visited {
	color: var(--chs-pink);
}

body.chs-alt-template .chs-alt-donate-more:hover,
body.chs-alt-template .chs-alt-donate-more:focus {
	color: var(--chs-green);
}

.chs-alt-donate-more:hover,
.chs-alt-donate-more:focus {
	color: var(--chs-green);
}

.chs-alt-footer {
	padding: clamp(40px, 2.6vw, 50px) 24px clamp(40px, 2.65vw, 51px);
	background: var(--chs-pink);
	color: var(--chs-white);
	font-family: var(--chs-body-font);
}

.chs-alt-footer-inner {
	display: grid;
	grid-template-columns:
		minmax(290px, 1.1fr)
		minmax(190px, 0.7fr)
		minmax(340px, 1.1fr);
	align-items: end;
	column-gap: clamp(20px, 3vw, 78px);
	width: min(calc(100% - 80px), var(--chs-footer-max-width));
	margin: 0 auto;
}

.chs-alt-footer p,
.chs-alt-footer h2 {
	margin-top: 0;
	color: var(--chs-white);
}

.chs-alt-footer-contact p {
	margin-bottom: 0;
	font-size: clamp(17px, 1.25vw, 24px);
	font-weight: 400;
	line-height: 1.35;
}

.chs-alt-footer a {
	color: var(--chs-white);
	text-decoration: none;
}

body.chs-alt-template .chs-alt-footer a,
body.chs-alt-template .chs-alt-footer a:visited {
	color: var(--chs-white);
}

body.chs-alt-template .chs-alt-footer a:hover,
body.chs-alt-template .chs-alt-footer a:focus {
	color: var(--chs-green-light);
}

.chs-alt-footer a:hover,
.chs-alt-footer a:focus {
	color: var(--chs-green-light);
}

.chs-alt-footer-links {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding-bottom: 4px;
	font-size: clamp(17px, 1.25vw, 24px);
	font-weight: 400;
	line-height: 1.4;
}

.chs-alt-social h2 {
	margin-bottom: 18px;
	font-family: var(--chs-display-font);
	font-size: clamp(26px, 1.875vw, 36px);
	font-weight: 400 !important;
	letter-spacing: 0;
	line-height: 1.15;
	text-align: center;
	text-transform: none;
}

body.chs-alt-template .chs-alt-social h2 {
	font-family: var(--chs-display-font) !important;
	font-weight: 400 !important;
}

.chs-alt-social-groups {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0;
}

.chs-alt-social-group {
	padding: 0 14px;
	text-align: center;
}

.chs-alt-social-group + .chs-alt-social-group {
	border-left: 2px solid rgb(255 255 255 / 85%);
}

.chs-alt-social-group p {
	min-height: 42px;
	margin-bottom: 10px;
	font-size: clamp(14px, 0.9375vw, 18px);
	font-weight: 400;
	line-height: 1.25;
	white-space: nowrap;
}

/*
 * The second social label uses two lines. Keep the one-line Central Healthy
 * Start label aligned with its lower line without moving either icon row.
 */
.chs-alt-social-group:first-child p {
	transform: translateY(20px);
}

.chs-alt-social-icons {
	display: flex;
	justify-content: center;
	gap: 18px;
}

.chs-alt-social-icons a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
}

.chs-alt-social-icons img {
	display: block;
	width: 60px;
	height: 60px;
	max-width: 100%;
	object-fit: contain;
}

.chs-alt-copyright {
	padding: 36px 24px;
	background: var(--chs-green);
	color: var(--chs-white);
	font-family: var(--chs-body-font);
	text-align: center;
}

.chs-alt-copyright p {
	margin: 0;
	color: var(--chs-white);
	font-size: clamp(17px, 1.25vw, 24px);
	font-weight: 400;
	line-height: 1.5;
}

.chs-alt-copyright a {
	color: var(--chs-white);
	text-decoration: none;
}

body.chs-alt-template .chs-alt-copyright a,
body.chs-alt-template .chs-alt-copyright a:visited {
	color: var(--chs-white);
}

body.chs-alt-template .chs-alt-copyright a:hover,
body.chs-alt-template .chs-alt-copyright a:focus {
	color: var(--chs-white);
	text-decoration: underline;
}

.chs-alt-copyright a:hover,
.chs-alt-copyright a:focus {
	text-decoration: underline;
}


@media (min-width: 1000px) {
	.chs-alt-donate p {
		white-space: nowrap;
	}
}

@media (max-width: 1320px) {
	.chs-alt-header-inner {
		gap: 20px;
		width: min(calc(100% - 68px), var(--chs-header-max-width));
	}

	.chs-alt-menu a {
		padding-right: 24px;
		padding-left: 24px;
		font-size: 22px;
	}

	body.chs-alt-template .chs-alt-nav .chs-alt-menu > li > a,
	body.chs-alt-template .chs-alt-nav .chs-alt-menu > li > a:focus {
		padding: 18px 24px;
		font-size: 22px;
	}
}

/* Keep the three-column mockup layout through standard desktop widths. */
@media (max-width: 960px) {

	.chs-alt-footer-inner {
		grid-template-columns: 1fr 1fr;
		width: 100%;
	}

	.chs-alt-social {
		grid-column: 1 / -1;
		width: min(100%, 560px);
		margin: 10px auto 0;
	}

	.chs-alt-social-groups {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 1240px) {
	.chs-alt-header-stripe {
		height: 22px;
	}

	.chs-alt-header-inner {
		position: relative;
		flex-wrap: wrap;
		min-height: 108px;
		padding: 14px 0;
	}

	.chs-alt-logo,
	.chs-alt-logo-placeholder {
		max-width: 190px;
		max-height: 78px;
	}

	.chs-alt-logo-placeholder {
		width: 190px;
		height: 72px;
	}

	.chs-alt-menu-toggle {
		display: inline-flex;
	}

	.chs-alt-header-menu {
		display: none;
		width: 100%;
		margin: 0;
		padding-top: 8px;
	}

	.chs-alt-header-menu.toggled-on {
		display: block;
	}

	.chs-alt-nav {
		display: block;
		width: 100%;
		margin: 0;
		padding: 0;
	}

	.chs-alt-menu {
		display: block;
		border-top: 1px solid #e7e7e7;
	}

	body.chs-alt-template .chs-alt-nav .chs-alt-menu {
		display: block;
	}

	.chs-alt-menu > li {
		display: block;
		border-bottom: 1px solid #e7e7e7;
	}

	body.chs-alt-template .chs-alt-nav .chs-alt-menu > li {
		display: block;
		width: 100%;
		border-bottom: 1px solid #e7e7e7;
		text-align: left;
	}

	.chs-alt-menu > li::after {
		display: none;
	}

	.chs-alt-menu a {
		display: block;
		padding: 12px 14px;
	}

	body.chs-alt-template .chs-alt-nav .chs-alt-menu > li > a,
	body.chs-alt-template .chs-alt-nav .chs-alt-menu > li > a:focus {
		display: block;
		padding: 13px 16px;
		font-size: 18px;
		text-align: left;
		white-space: normal;
	}

	.chs-alt-menu .sub-menu {
		position: static;
		display: block;
		width: 100%;
		padding: 2px 0 7px;
		box-shadow: none;
	}

	.chs-alt-menu .sub-menu a {
		padding: 8px 28px;
	}

	body.chs-alt-template .chs-alt-nav .chs-alt-menu .sub-menu,
	body.chs-alt-template .chs-alt-nav .chs-alt-menu .sub-menu li {
		width: 100%;
	}

	body.chs-alt-template .chs-alt-nav .chs-alt-menu .sub-menu a,
	body.chs-alt-template .chs-alt-nav .chs-alt-menu .sub-menu a:focus {
		padding: 8px 28px;
	}
}

@media (max-width: 700px) {
	.chs-alt-donate {
		padding: 34px 20px;
		background: linear-gradient(
			to bottom,
			var(--chs-white) 0 61px,
			#f2f2f2 61px 100%
		);
	}

	.chs-alt-donate-button {
		min-width: 190px;
		min-height: 70px;
		font-size: 30px;
	}

	.chs-alt-donate p {
		font-size: 18px;
	}

	.chs-alt-donate-more {
		font-size: 18px;
	}

	.chs-alt-footer {
		padding: 36px 22px;
	}

	.chs-alt-footer-contact p,
	.chs-alt-footer-links {
		font-size: 18px;
	}

	.chs-alt-footer-inner {
		display: block;
		text-align: center;
	}

	.chs-alt-footer-links {
		margin: 28px 0;
	}

	.chs-alt-social {
		width: 100%;
		margin: 0;
	}

	.chs-alt-social-group {
		padding: 0 8px;
	}

	.chs-alt-social-icons {
		gap: 12px;
	}

	.chs-alt-social-icons a,
	.chs-alt-social-icons img {
		width: 54px;
		height: 54px;
	}

	.chs-alt-copyright {
		padding: 25px 20px;
	}

	.chs-alt-copyright p {
		font-size: 17px;
	}
}

@media (max-width: 420px) {
	.chs-alt-header-inner {
		width: min(100% - 24px, var(--chs-header-max-width));
	}

	.chs-alt-logo,
	.chs-alt-logo-placeholder {
		max-width: 158px;
	}

	.chs-alt-logo-placeholder {
		width: 158px;
		font-size: 11px;
	}

	.chs-alt-menu-label {
		display: none;
	}

	.chs-alt-social-groups {
		display: block;
	}

	.chs-alt-social-group + .chs-alt-social-group {
		margin-top: 24px;
		padding-top: 24px;
		border-top: 1px solid rgb(255 255 255 / 70%);
		border-left: 0;
	}

	.chs-alt-social-group p {
		min-height: 0;
	}

	.chs-alt-social-group:first-child p {
		transform: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.chs-alt-menu a {
		transition: none;
	}
}

/* ========================================================================
 * MENU LAYER FIX V2 — 2026-09-01
 *
 * Keep the dropdown in the same root stacking context as the header and do
 * not give the page content its own positive z-index. The earlier patch put
 * #content into a z-index:1 stacking context, which could cover the portion
 * of the submenu extending below the masthead.
 * ======================================================================== */

body.chs-alt-template #page.chs-alt-site {
	position: relative;
	isolation: isolate;
	overflow: visible;
}

body.chs-alt-template #masthead.chs-alt-header {
	position: relative !important;
	z-index: 100000 !important;
	overflow: visible !important;
}

body.chs-alt-template #masthead .chs-alt-header-inner,
body.chs-alt-template #masthead #site-header-menu,
body.chs-alt-template #masthead #site-navigation,
body.chs-alt-template #masthead #chs-alt-menu-list,
body.chs-alt-template #masthead #chs-alt-menu-list > li {
	overflow: visible !important;
}

body.chs-alt-template #content.chs-alt-content {
	position: relative;
	z-index: 0;
}

@media (min-width: 1241px) {
	body.chs-alt-template #masthead #chs-alt-menu-list > li:hover,
	body.chs-alt-template #masthead #chs-alt-menu-list > li:focus-within,
	body.chs-alt-template #masthead #chs-alt-menu-list > li.focus {
		z-index: 100001;
	}

	body.chs-alt-template #masthead #chs-alt-menu-list > li > .sub-menu,
	body.chs-alt-template #masthead #chs-alt-menu-list > li > .sub-menu.toggled-on {
		z-index: 100002 !important;
		overflow: visible !important;
	}
}


/* ========================================================================
 * TOP-LEVEL ACTIVE STATE FIX — 2026-09-01
 *
 * WordPress adds current-menu-parent/current-menu-ancestor to a top-level item
 * whenever the current page is one of its submenu children. The redesign only
 * wants the green top-level state on hover/focus, or when that top-level page
 * itself is the current page.
 * ======================================================================== */

body.chs-alt-template .chs-alt-nav .chs-alt-menu >
.current-menu-parent:not(:hover):not(:focus-within) > a,
body.chs-alt-template .chs-alt-nav .chs-alt-menu >
.current-menu-ancestor:not(:hover):not(:focus-within) > a,
body.chs-alt-template .chs-alt-nav .chs-alt-menu >
.current-page-ancestor:not(:hover):not(:focus-within) > a {
	background: transparent !important;
	color: var(--chs-pink) !important;
}
