:root {
	--hh-plum: #5a344a;
	--hh-plum-dark: #3e2635;
	--hh-sage: #77937a;
	--hh-sage-dark: #536b56;
	--hh-gold: #d6a85b;
	--hh-ink: #241d22;
	--hh-body: #4d454a;
	--hh-muted: #766d72;
	--hh-blush: #f2e9ed;
	--hh-paper: #f8f5f1;
	--hh-white: #fff;
	--hh-line: #e4dadd;
	--hh-shadow: 0 18px 44px rgba(45, 28, 38, .09);
	--hh-radius: 22px;
}

html {
	scroll-behavior: smooth;
}

body.healthher-publication {
	background: var(--hh-white);
	color: var(--hh-body);
	font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.healthher-publication .site-header,
body.healthher-publication #colophon,
body.healthher-publication #mobile-drawer {
	display: none;
}

body.healthher-publication h1,
body.healthher-publication h2,
body.healthher-publication h3,
body.healthher-publication h4,
body.healthher-publication .entry-title {
	color: var(--hh-ink);
	font-family: "DM Serif Display", Georgia, serif;
	font-weight: 400;
	letter-spacing: -.018em;
	line-height: 1.08;
}

body.healthher-publication a {
	color: var(--hh-plum);
	text-decoration-thickness: .08em;
	text-underline-offset: .16em;
}

body.healthher-publication a:hover,
body.healthher-publication a:focus {
	color: var(--hh-plum-dark);
}

.site-container {
	margin-inline: auto;
	max-width: 1240px;
	padding-inline: clamp(18px, 3vw, 38px);
	width: 100%;
}

.hh-header {
	background: var(--hh-white);
	border-bottom: 1px solid var(--hh-line);
	position: relative;
	z-index: 20;
}

.hh-header__main {
	align-items: center;
	display: grid;
	gap: 28px;
	grid-template-columns: minmax(250px, .7fr) minmax(280px, 1.2fr) auto;
	min-height: 96px;
}

.hh-header__brand,
.hh-footer__brand > a {
	color: inherit;
	text-decoration: none;
}

.hh-brand {
	align-items: center;
	display: inline-flex;
	gap: 12px;
}

.hh-brand__mark {
	display: block;
	height: 54px;
	object-fit: contain;
	width: 54px;
}

.hh-brand__copy {
	display: grid;
	gap: 1px;
}

.hh-brand__name {
	color: var(--hh-ink);
	font-family: "DM Serif Display", Georgia, serif;
	font-size: clamp(30px, 3vw, 42px);
	letter-spacing: -.035em;
	line-height: .95;
}

.hh-brand__name span {
	color: var(--hh-plum);
}

.hh-brand__tag {
	color: var(--hh-muted);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .11em;
	text-transform: uppercase;
}

.hh-search {
	align-items: center;
	background: var(--hh-paper);
	border: 1px solid transparent;
	border-radius: 999px;
	display: flex;
	min-height: 46px;
	overflow: hidden;
}

.hh-search:focus-within {
	border-color: var(--hh-sage);
	box-shadow: 0 0 0 3px rgba(119, 147, 122, .18);
}

.hh-search input {
	background: transparent;
	border: 0;
	box-shadow: none;
	color: var(--hh-ink);
	flex: 1;
	font-size: 14px;
	min-width: 0;
	padding: 11px 18px;
}

.hh-search input:focus {
	box-shadow: none;
	outline: none;
}

.hh-search button {
	align-items: center;
	background: var(--hh-plum);
	border: 0;
	border-radius: 50%;
	color: var(--hh-white);
	display: inline-flex;
	height: 38px;
	justify-content: center;
	margin-right: 4px;
	padding: 0;
	width: 38px;
}

.hh-search svg {
	fill: none;
	height: 18px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-width: 1.8;
	width: 18px;
}

.hh-header__utility {
	align-items: center;
	display: flex;
	gap: 16px;
	white-space: nowrap;
}

.hh-header__utility a {
	color: var(--hh-ink);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .08em;
	text-decoration: none;
	text-transform: uppercase;
}

.hh-header__utility a:last-child {
	background: var(--hh-blush);
	border-radius: 999px;
	color: var(--hh-plum);
	padding: 11px 15px;
}

.hh-primary {
	border-top: 1px solid var(--hh-line);
}

.hh-primary__menu {
	align-items: center;
	display: flex;
	gap: clamp(22px, 3vw, 42px);
	justify-content: center;
	list-style: none;
	margin: 0;
	min-height: 50px;
	padding: 0;
}

.hh-primary__menu li {
	margin: 0;
	position: relative;
}

.hh-primary__menu a {
	color: var(--hh-ink);
	display: block;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .1em;
	padding-block: 17px 14px;
	text-decoration: none;
	text-transform: uppercase;
}

.hh-primary__menu a::after {
	background: var(--hh-plum);
	bottom: 7px;
	content: "";
	height: 2px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%) scaleX(0);
	transition: transform .18s ease;
	width: 24px;
}

.hh-primary__menu a:hover::after,
.hh-primary__menu a:focus::after {
	transform: translateX(-50%) scaleX(1);
}

.hh-primary__menu .sub-menu {
	background: var(--hh-white);
	border: 1px solid var(--hh-line);
	box-shadow: var(--hh-shadow);
	display: none;
	left: -18px;
	list-style: none;
	margin: 0;
	min-width: 220px;
	padding: 10px 18px;
	position: absolute;
	top: 100%;
	z-index: 10;
}

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

.hh-trustbar {
	background: var(--hh-plum);
	color: var(--hh-white);
}

.hh-trustbar .site-container {
	align-items: center;
	display: flex;
	gap: 30px;
	justify-content: center;
	min-height: 38px;
}

.hh-trustbar span {
	font-size: 10px;
	font-weight: 750;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.hh-trustbar span + span::before {
	color: var(--hh-gold);
	content: "•";
	margin-right: 30px;
}

.hh-eyebrow,
.entry-taxonomies,
.entry-meta {
	color: var(--hh-sage-dark);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.content-area {
	margin-bottom: clamp(52px, 8vw, 110px);
	margin-top: clamp(40px, 6vw, 76px);
}

/* Editorial homepage */
.hh-home-hero {
	background:
		radial-gradient(circle at 92% 2%, rgba(214, 168, 91, .2), transparent 27%),
		linear-gradient(145deg, var(--hh-paper), #fff 62%);
	border-bottom: 1px solid var(--hh-line);
	padding: clamp(48px, 6vw, 78px) 0 30px;
}

.hh-home-hero__intro {
	align-items: end;
	display: grid;
	gap: clamp(28px, 6vw, 84px);
	grid-template-columns: minmax(0, 1.4fr) minmax(290px, .6fr);
	margin-bottom: clamp(38px, 5vw, 58px);
}

.hh-home-hero__intro .hh-eyebrow {
	margin: 0 0 10px;
}

.hh-home-hero__intro h1 {
	font-size: clamp(48px, 6.2vw, 82px);
	margin: 0;
	max-width: 900px;
}

.hh-home-hero__intro > p {
	border-left: 3px solid var(--hh-gold);
	font-size: clamp(16px, 1.55vw, 19px);
	line-height: 1.65;
	margin: 0 0 7px;
	padding-left: 22px;
}

.hh-home-features {
	display: grid;
	gap: clamp(26px, 3.2vw, 42px);
	grid-template-columns: minmax(0, 1.42fr) minmax(330px, .58fr);
}

.hh-home-features__supporting {
	display: grid;
	gap: 24px;
	grid-template-rows: repeat(2, minmax(0, 1fr));
}

.hh-home-story {
	background: var(--hh-white);
	border: 1px solid var(--hh-line);
	display: grid;
	min-width: 0;
	overflow: hidden;
}

.hh-home-story--lead {
	grid-template-rows: 430px auto;
}

.hh-home-story--supporting {
	grid-template-columns: 124px minmax(0, 1fr);
}

.hh-home-story__media {
	background: var(--hh-blush);
	display: block;
	min-height: 0;
	overflow: hidden;
}

.hh-home-story__image,
.hh-home-story__placeholder {
	display: block;
	height: 100%;
	object-fit: cover;
	transition: transform .4s ease;
	width: 100%;
}

.hh-home-story__placeholder {
	background: linear-gradient(135deg, var(--hh-blush), var(--hh-paper));
	min-height: 190px;
}

.hh-home-story:hover .hh-home-story__image {
	transform: scale(1.018);
}

.hh-home-story__content {
	display: flex;
	flex-direction: column;
	padding: 22px 24px;
}

.hh-home-story--lead .hh-home-story__content {
	padding: clamp(26px, 3vw, 38px);
}

.hh-home-story--supporting .hh-home-story__content {
	padding: 18px;
}

.hh-home-story__category {
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .13em;
	margin: 0 0 10px;
	text-transform: uppercase;
}

.hh-home-story__category a {
	color: var(--hh-sage-dark) !important;
	text-decoration: none;
}

.hh-home-story h2 {
	font-size: clamp(24px, 2.2vw, 34px);
	margin: 0 0 12px;
}

.hh-home-story--lead h2 {
	font-size: clamp(35px, 3.5vw, 52px);
}

.hh-home-story--supporting h2 {
	display: -webkit-box;
	font-size: 21px;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	overflow: hidden;
}

.hh-home-story h2 a {
	color: var(--hh-ink) !important;
	text-decoration: none;
}

.hh-home-story__excerpt {
	font-size: 14px;
	line-height: 1.62;
	margin: 0 0 18px;
}

.hh-home-story--lead .hh-home-story__excerpt {
	font-size: 16px;
	max-width: 720px;
}

.hh-home-story--supporting .hh-home-story__excerpt {
	display: -webkit-box;
	font-size: 13px;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.hh-home-story__footer {
	align-items: center;
	display: flex;
	gap: 16px;
	justify-content: space-between;
	margin-top: auto;
}

.hh-home-story__meta,
.hh-home-story__read {
	color: var(--hh-muted);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .08em;
	margin: 0;
	text-transform: uppercase;
}

.hh-home-story__read {
	color: var(--hh-plum) !important;
	text-decoration: none;
	white-space: nowrap;
}

.hh-home-topics {
	align-items: center;
	display: flex;
	gap: 10px;
	margin-top: 28px;
	overflow-x: auto;
	padding-bottom: 1px;
	scrollbar-width: none;
}

.hh-home-topics::-webkit-scrollbar {
	display: none;
}

.hh-home-topics span,
.hh-home-topics a {
	flex: none;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .09em;
	text-transform: uppercase;
}

.hh-home-topics span {
	color: var(--hh-muted);
	margin-right: 4px;
}

.hh-home-topics a {
	background: var(--hh-white);
	border: 1px solid var(--hh-line);
	border-radius: 999px;
	color: var(--hh-ink) !important;
	padding: 9px 14px;
	text-decoration: none;
}

.hh-home-latest {
	align-items: end;
	border-bottom: 1px solid var(--hh-line);
	display: flex;
	justify-content: space-between;
	padding-bottom: 18px;
	padding-top: clamp(44px, 6vw, 72px);
}

.hh-home-latest p,
.hh-home-latest h2 {
	margin: 0;
}

.hh-home-latest h2 {
	font-size: clamp(34px, 4vw, 48px);
	margin-top: 5px;
}

.hh-home-latest > a {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .09em;
	text-decoration: none;
	text-transform: uppercase;
}

.home .content-area {
	margin-top: 28px;
}

.home #archive-container {
	gap: 42px 28px;
}

.entry.loop-entry {
	background: var(--hh-white);
	border: 0;
	border-bottom: 1px solid var(--hh-line);
	border-radius: 0;
	box-shadow: none;
	overflow: hidden;
	transition: opacity .2s ease;
}

.entry.loop-entry:hover {
	box-shadow: none;
	opacity: .94;
}

.loop-entry .post-thumbnail {
	margin: 0;
}

.loop-entry .post-thumbnail img {
	aspect-ratio: 3 / 2;
	object-fit: cover;
	width: 100%;
}

.loop-entry .entry-content-wrap {
	padding: 18px 2px 24px;
}

.loop-entry .entry-title {
	font-size: clamp(23px, 2.15vw, 31px);
	margin: 8px 0 12px;
}

.loop-entry .entry-summary {
	color: var(--hh-body);
	font-size: 15px;
	line-height: 1.65;
}

.loop-entry .more-link-wrap {
	margin-top: 18px;
}

.loop-entry .post-more-link {
	color: var(--hh-plum);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .11em;
	text-transform: uppercase;
}

.single-content,
.entry-content {
	font-size: clamp(16px, 1.55vw, 18px);
	line-height: 1.78;
}

.single-content > p,
.single-content > ul,
.single-content > ol,
.single-content > blockquote,
.entry-content > p,
.entry-content > ul,
.entry-content > ol {
	margin-bottom: 1.45em;
}

.single-entry .entry-header {
	margin-bottom: 30px;
}

.single-entry .entry-title {
	font-size: clamp(40px, 5.5vw, 66px);
	max-width: 1050px;
}

.single-entry .entry-meta {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 8px 14px;
	margin-top: 20px;
}

.single-entry .post-thumbnail {
	border-radius: var(--hh-radius);
	overflow: hidden;
}

.single-entry .post-thumbnail img {
	max-height: 680px;
	object-fit: cover;
	width: 100%;
}

.single-content h2 {
	font-size: clamp(34px, 4vw, 48px);
	margin-top: 1.6em;
}

.single-content h3 {
	font-size: clamp(28px, 3vw, 37px);
	margin-top: 1.4em;
}

.single-content blockquote {
	background: var(--hh-blush);
	border: 0;
	border-left: 5px solid var(--hh-plum);
	border-radius: 0 var(--hh-radius) var(--hh-radius) 0;
	color: var(--hh-ink);
	font-family: "DM Serif Display", Georgia, serif;
	font-size: 1.28em;
	margin-inline: 0;
	padding: 28px 30px;
}

.author-box {
	background: var(--hh-paper);
	border: 1px solid var(--hh-line);
	border-radius: var(--hh-radius);
	padding: 28px;
}

.author-box .avatar {
	border: 3px solid var(--hh-white);
	box-shadow: 0 0 0 1px var(--hh-line);
}

.wprm-recipe-container {
	border: 1px solid var(--hh-line);
	border-radius: var(--hh-radius);
	box-shadow: var(--hh-shadow);
	margin-block: 36px;
	overflow: hidden;
}

.wprm-recipe-container .wprm-recipe-template-default {
	background: var(--hh-white);
	color: var(--hh-body);
}

.wprm-recipe-container .wprm-recipe-name {
	color: var(--hh-ink);
	font-family: "DM Serif Display", Georgia, serif !important;
}

.wprm-recipe-container .wprm-recipe-jump,
.wprm-recipe-container .wprm-recipe-print,
.wprm-recipe-container .wprm-recipe-button {
	background: var(--hh-plum) !important;
	border-radius: 999px !important;
	color: var(--hh-white) !important;
}

.hh-footer {
	background: var(--hh-ink);
	color: rgba(255, 255, 255, .78);
}

.hh-footer a {
	color: rgba(255, 255, 255, .86) !important;
	text-decoration: none;
}

.hh-footer__grid {
	display: grid;
	gap: clamp(36px, 7vw, 90px);
	grid-template-columns: minmax(280px, 1.4fr) 1fr 1fr;
	padding-block: 64px;
}

.hh-footer .hh-brand__name,
.hh-footer h2 {
	color: var(--hh-white);
}

.hh-footer .hh-brand__tag {
	color: rgba(255, 255, 255, .6);
}

.hh-footer__brand p {
	max-width: 470px;
}

.hh-footer h2 {
	font-family: Inter, system-ui, sans-serif;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .13em;
	text-transform: uppercase;
}

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

.hh-footer li {
	margin: 10px 0;
}

.hh-footer__legal {
	background: #1b1619;
	border-top: 1px solid rgba(255, 255, 255, .1);
}

.hh-footer__legal .site-container {
	display: flex;
	font-size: 12px;
	gap: 30px;
	justify-content: space-between;
	padding-block: 18px;
}

.hh-footer__legal p {
	margin: 0;
}

.hh-mobile-tabs {
	display: none;
}

.screen-reader-text:focus {
	background: var(--hh-white);
	border-radius: 4px;
	box-shadow: var(--hh-shadow);
	color: var(--hh-ink);
}

/* MailerPress newsletter band */
.hh-newsletter {
	background: var(--hh-plum-dark);
	color: rgba(255, 255, 255, .82);
	padding: clamp(42px, 6vw, 72px) 0;
}

.hh-newsletter__inner {
	align-items: center;
	display: grid;
	gap: clamp(30px, 6vw, 86px);
	grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
}

.hh-newsletter .hh-eyebrow {
	color: var(--hh-gold);
	margin: 0 0 10px;
}

.hh-newsletter h2 {
	color: var(--hh-white) !important;
	font-size: clamp(34px, 4vw, 52px);
	margin: 0 0 12px;
}

.hh-newsletter__copy > p:last-child {
	margin: 0;
	max-width: 680px;
}

.hh-newsletter .mailerpress-optin-form {
	align-items: end;
	display: grid;
	gap: 10px;
	grid-template-columns: minmax(0, 1fr) auto;
}

.hh-newsletter .mailerpress_shortcode-optin-form__field label {
	color: rgba(255, 255, 255, .72);
	display: block;
	font-size: 11px;
	font-weight: 750;
	letter-spacing: .08em;
	margin-bottom: 7px;
	text-transform: uppercase;
}

.hh-newsletter .mailerpress_shortcode-optin-form__field input {
	background: var(--hh-white);
	border: 0;
	border-radius: 999px;
	box-sizing: border-box;
	min-height: 48px;
	padding: 12px 18px;
	width: 100%;
}

.hh-newsletter .mailerpress_shortcode-optin-form__button {
	border: 0;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .1em;
	min-height: 48px;
	padding: 12px 22px;
	text-transform: uppercase;
	white-space: nowrap;
}

.hh-newsletter__privacy {
	color: rgba(255, 255, 255, .6);
	font-size: 11px;
	line-height: 1.5;
	margin: 10px 4px 0;
}

/* Newsroom */
.page-healthher-news .entry-header,
.page-healthher-news .entry-content > p:empty {
	display: none;
}

.page-healthher-news .content-area,
.page-healthher-news .site-main,
.page-healthher-news .content-container {
	max-width: none;
	padding: 0;
	width: 100%;
}

.page-healthher-news .content-area {
	margin: 0;
}

.hh-news-hub {
	margin: 0 auto;
	max-width: 1240px;
	padding: 0 clamp(18px, 3vw, 38px) clamp(70px, 8vw, 110px);
}

.hh-news-hero {
	background:
		radial-gradient(circle at 88% 20%, rgba(214, 168, 91, .18), transparent 28%),
		linear-gradient(120deg, var(--hh-paper), var(--hh-blush));
	margin-inline: calc(clamp(18px, 3vw, 38px) * -1);
	padding: clamp(50px, 8vw, 96px) max(clamp(18px, 3vw, 38px), calc((100vw - 1240px) / 2 + 38px));
}

.hh-news-hero > div {
	max-width: 880px;
}

.hh-news-hero h1 {
	font-size: clamp(46px, 7vw, 82px);
	margin: 10px 0 18px;
}

.hh-news-hero p:last-child {
	font-size: clamp(17px, 2vw, 21px);
	max-width: 700px;
}

.hh-news-topics {
	display: flex;
	gap: 10px;
	overflow-x: auto;
	padding: 22px 0 32px;
	scrollbar-width: none;
}

.hh-news-topics a {
	border: 1px solid var(--hh-line);
	border-radius: 999px;
	color: var(--hh-ink) !important;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .08em;
	padding: 9px 14px;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
}

.hh-news-card {
	display: grid;
	min-width: 0;
}

.hh-news-card--lead {
	align-items: stretch;
	background: var(--hh-paper);
	grid-template-columns: minmax(0, 1.1fr) minmax(420px, .9fr);
	margin-bottom: clamp(52px, 7vw, 84px);
}

.hh-news-card__media {
	display: block;
	min-height: 0;
	overflow: hidden;
}

.hh-news-card__image,
.hh-news-card__placeholder {
	aspect-ratio: 3 / 2;
	display: block;
	height: auto;
	object-fit: cover;
	width: 100%;
}

.hh-news-card--lead .hh-news-card__image,
.hh-news-card--lead .hh-news-card__placeholder {
	aspect-ratio: auto;
	height: 100%;
	min-height: 480px;
}

.hh-news-card__placeholder {
	background: linear-gradient(135deg, var(--hh-blush), var(--hh-paper));
}

.hh-news-card__content {
	padding-top: 18px;
}

.hh-news-card--lead .hh-news-card__content {
	align-self: center;
	padding: clamp(28px, 3.2vw, 44px);
}

.hh-news-card__eyebrow {
	color: var(--hh-sage-dark);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .13em;
	margin: 0 0 10px;
	text-transform: uppercase;
}

.hh-news-card h2 {
	font-size: clamp(25px, 2.5vw, 36px);
	margin: 0 0 12px;
}

.hh-news-card--lead h2 {
	font-size: clamp(34px, 3.4vw, 48px);
}

.hh-news-card h2 a {
	color: var(--hh-ink);
	text-decoration: none;
}

.hh-news-card__excerpt {
	font-size: 15px;
	line-height: 1.68;
	margin: 0 0 16px;
}

.hh-news-card__meta {
	color: var(--hh-muted);
	display: flex;
	flex-wrap: wrap;
	font-size: 11px;
	font-weight: 700;
	gap: 7px;
	letter-spacing: .04em;
	margin: 0;
	text-transform: uppercase;
}

.hh-news-section-heading {
	align-items: end;
	border-bottom: 1px solid var(--hh-line);
	display: flex;
	justify-content: space-between;
	margin-bottom: 28px;
	padding-bottom: 16px;
}

.hh-news-section-heading p,
.hh-news-section-heading h2 {
	margin: 0;
}

.hh-news-section-heading h2 {
	font-size: clamp(33px, 4vw, 48px);
}

.hh-news-grid {
	display: grid;
	gap: 42px 28px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hh-news-pagination {
	margin-top: 50px;
	text-align: center;
}

.hh-news-pagination .page-numbers {
	display: inline-block;
	margin: 3px;
	padding: 9px 13px;
}

/* Article Kit: HealthHer brand and readable layout */
.mak-article-body--toc {
	column-gap: clamp(28px, 4vw, 52px);
	grid-template-columns: minmax(220px, 270px) minmax(0, 760px);
	justify-content: center;
}

.mak-toc-widget {
	min-width: 0;
}

.mak-toc__card {
	border-color: var(--hh-line);
	border-radius: 12px;
	box-shadow: none;
}

.mak-toc__link:hover,
.mak-toc__link:focus-visible,
.mak-toc__link.is-active {
	background: var(--hh-blush);
	color: var(--hh-plum);
}

.mak-key-moments {
	--mak-km-accent: var(--hh-plum);
	--mak-km-border: var(--hh-line);
	--mak-km-title: var(--hh-ink);
	--mak-km-text: var(--hh-body);
	background: var(--hh-paper);
	border: 0;
	border-left: 4px solid var(--hh-gold);
	border-radius: 0 14px 14px 0;
	box-shadow: none;
	margin: 32px 0 42px;
}

.mak-key-moments__title {
	font-family: "DM Serif Display", Georgia, serif;
	font-size: 28px;
	font-weight: 400;
}

.mak-key-moments__item {
	border-color: var(--hh-line);
}

/* Keep SheShoppes affiliate widgets contained within article width. */
.single-content .outer-shopstyle-wrapper,
.entry-content .outer-shopstyle-wrapper {
	box-sizing: border-box;
	margin: 42px auto;
	max-width: 100%;
	overflow: hidden;
	width: 100%;
}

.single-content .outer-shopstyle-wrapper .wp-block-group,
.entry-content .outer-shopstyle-wrapper .wp-block-group {
	max-width: 100%;
}

@media (max-width: 980px) {
	.hh-newsletter__inner {
		grid-template-columns: 1fr;
	}

	.hh-news-card--lead {
		grid-template-columns: 1fr;
	}

	.hh-news-card--lead .hh-news-card__image,
	.hh-news-card--lead .hh-news-card__placeholder {
		aspect-ratio: 3 / 2;
		min-height: 0;
	}

	.hh-news-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hh-home-hero__intro {
		align-items: start;
		grid-template-columns: 1fr;
	}

	.hh-home-hero__intro > p {
		max-width: 720px;
	}

	.hh-home-features {
		grid-template-columns: 1fr;
	}

	.hh-home-features__supporting {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-template-rows: none;
	}

	.hh-home-story--supporting {
		grid-template-columns: 1fr;
		grid-template-rows: 220px auto;
	}

	.mak-article-body--toc {
		display: block;
	}

	.mak-toc-widget {
		margin-bottom: 26px;
	}

	.hh-header__main {
		gap: 18px;
		grid-template-columns: 1fr minmax(240px, .9fr);
		min-height: 82px;
	}

	.hh-header__utility {
		display: none;
	}

	.hh-primary {
		overflow-x: auto;
		scrollbar-width: none;
	}

	.hh-primary::-webkit-scrollbar {
		display: none;
	}

	.hh-primary__menu {
		gap: 22px;
		justify-content: flex-start;
		min-width: max-content;
		padding-inline: 4px;
	}

	.hh-trustbar .site-container {
		gap: 16px;
		justify-content: flex-start;
		overflow: hidden;
		white-space: nowrap;
	}

	.hh-trustbar span + span::before {
		margin-right: 16px;
	}
}

@media (max-width: 767px) {
	body.healthher-publication {
		padding-bottom: calc(68px + env(safe-area-inset-bottom));
	}

	.hh-newsletter {
		padding: 38px 0 42px;
	}

	.hh-newsletter h2 {
		font-size: 36px;
	}

	.hh-newsletter .mailerpress-optin-form {
		grid-template-columns: 1fr;
	}

	.hh-newsletter .mailerpress_shortcode-optin-form__button {
		width: 100%;
	}

	.hh-news-hub {
		padding-inline: 16px;
	}

	.hh-news-hero {
		margin-inline: -16px;
		padding: 42px 16px 46px;
	}

	.hh-news-hero h1 {
		font-size: clamp(42px, 13vw, 58px);
	}

	.hh-news-card--lead .hh-news-card__content {
		padding: 26px 20px 30px;
	}

	.hh-news-card--lead h2 {
		font-size: 36px;
	}

	.hh-news-grid {
		gap: 34px;
		grid-template-columns: 1fr;
	}

	.hh-home-hero {
		padding: 38px 0 24px;
	}

	.hh-home-hero__intro {
		gap: 22px;
		margin-bottom: 32px;
	}

	.hh-home-hero__intro h1 {
		font-size: clamp(43px, 12.5vw, 58px);
	}

	.hh-home-hero__intro > p {
		font-size: 16px;
		padding-left: 16px;
	}

	.hh-home-story--lead {
		grid-template-rows: 250px auto;
	}

	.hh-home-story--lead .hh-home-story__content {
		padding: 24px 20px 26px;
	}

	.hh-home-story--lead h2 {
		font-size: 34px;
	}

	.hh-home-features__supporting {
		gap: 20px;
		grid-template-columns: 1fr;
	}

	.hh-home-story--supporting {
		grid-template-columns: minmax(112px, .38fr) minmax(0, .62fr);
		grid-template-rows: none;
	}

	.hh-home-story--supporting .hh-home-story__content {
		padding: 18px;
	}

	.hh-home-story--supporting h2 {
		font-size: 23px;
	}

	.hh-home-story--supporting .hh-home-story__excerpt,
	.hh-home-story--supporting .hh-home-story__meta {
		display: none;
	}

	.hh-home-topics {
		margin-inline: -16px;
		padding-inline: 16px;
	}

	.hh-home-latest {
		align-items: flex-start;
		display: block;
		padding-bottom: 15px;
		padding-top: 40px;
	}

	.hh-home-latest > a {
		display: inline-block;
		margin-top: 12px;
	}

	.hh-news-section-heading {
		align-items: flex-start;
		display: block;
	}

	.mak-key-moments {
		margin-block: 24px 32px;
		padding: 22px 18px 12px;
	}

	.mak-key-moments__row {
		gap: 11px;
	}

	.site-container {
		padding-inline: 16px;
	}

	.hh-header__main {
		display: flex;
		gap: 12px;
		justify-content: space-between;
		min-height: 68px;
	}

	.hh-brand__mark {
		height: 40px;
		width: 40px;
	}

	.hh-brand__name {
		font-size: 29px;
	}

	.hh-brand__tag {
		display: none;
	}

	.hh-search {
		background: transparent;
		border: 0;
		flex: none;
		min-height: auto;
	}

	.hh-search input {
		background: var(--hh-paper);
		border: 1px solid var(--hh-line);
		border-radius: 999px;
		inset: 70px 16px auto;
		opacity: 0;
		pointer-events: none;
		position: absolute;
		transform: translateY(-6px);
		transition: opacity .18s ease, transform .18s ease;
		width: calc(100% - 32px);
		z-index: 30;
	}

	.hh-search:focus-within input {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}

	.hh-search button {
		background: var(--hh-blush);
		color: var(--hh-plum);
		height: 42px;
		margin: 0;
		width: 42px;
	}

	.hh-primary__menu a {
		font-size: 10px;
		padding-block: 14px 12px;
	}

	.hh-trustbar {
		display: none;
	}

	.content-area {
		margin-bottom: 52px;
		margin-top: 36px;
	}

	.single-entry .entry-title {
		font-size: clamp(36px, 11vw, 50px);
	}

	.single-entry .post-thumbnail img {
		max-height: 480px;
	}

	.loop-entry .entry-content-wrap {
		padding: 19px 20px 23px;
	}

	.hh-footer__grid {
		grid-template-columns: 1fr 1fr;
		padding-block: 44px;
	}

	.hh-footer__brand {
		grid-column: 1 / -1;
	}

	.hh-footer__legal .site-container {
		display: block;
	}

	.hh-footer__legal p + p {
		margin-top: 8px;
	}

	.hh-mobile-tabs {
		align-items: center;
		background: rgba(255, 255, 255, .97);
		border-top: 1px solid var(--hh-line);
		bottom: 0;
		display: grid;
		grid-template-columns: repeat(5, 1fr);
		left: 0;
		padding: 7px 5px calc(6px + env(safe-area-inset-bottom));
		position: fixed;
		right: 0;
		z-index: 9995;
	}

	body.msf-feed-eligible:not(.msf-feed-dismissed) .hh-mobile-tabs {
		display: none;
	}

	html.msf-feed-dismissed body.msf-feed-eligible .hh-mobile-tabs {
		display: grid;
	}

	.hh-mobile-tabs a {
		align-items: center;
		color: var(--hh-muted) !important;
		display: flex;
		flex-direction: column;
		font-size: 9px;
		font-weight: 750;
		gap: 3px;
		letter-spacing: .04em;
		text-decoration: none;
	}

	.hh-mobile-tabs a:nth-child(1) svg {
		color: var(--hh-plum);
	}

	.hh-mobile-tabs a:nth-child(2) svg {
		color: #b95069;
	}

	.hh-mobile-tabs a:nth-child(3) svg {
		background: var(--hh-gold);
		border-radius: 50%;
		color: var(--hh-ink);
		margin-top: -22px;
		padding: 8px;
	}

	.hh-mobile-tabs a:nth-child(4) svg {
		color: var(--hh-sage-dark);
	}

	.hh-mobile-tabs a:nth-child(5) svg {
		color: #725b8d;
	}

	.hh-mobile-tabs svg {
		fill: none;
		height: 24px;
		stroke: currentColor;
		stroke-linecap: round;
		stroke-linejoin: round;
		stroke-width: 1.8;
		width: 24px;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
	}
}
