:root {
	--hhfp-ink: var(--hh-ink, #241d22);
	--hhfp-body: var(--hh-body, #4d454a);
	--hhfp-muted: var(--hh-muted, #766d72);
	--hhfp-plum: var(--hh-plum, #5a344a);
	--hhfp-plum-dark: var(--hh-plum-dark, #3e2635);
	--hhfp-sage: var(--hh-sage, #77937a);
	--hhfp-sage-dark: var(--hh-sage-dark, #536b56);
	--hhfp-gold: var(--hh-gold, #d6a85b);
	--hhfp-blush: var(--hh-blush, #f2e9ed);
	--hhfp-paper: var(--hh-paper, #f8f5f1);
	--hhfp-white: #fff;
	--hhfp-line: var(--hh-line, #e4dadd);
}

.hhfp {
	position: relative;
	overflow: hidden;
	border-bottom: 1px solid var(--hhfp-line);
	background:
		radial-gradient(circle at 94% 5%, rgba(214, 168, 91, .17), transparent 23rem),
		linear-gradient(180deg, #fffdf9 0%, #f7f2ea 100%);
	color: var(--hhfp-ink);
}

.hhfp::before {
	position: absolute;
	top: -190px;
	right: -150px;
	width: 420px;
	height: 420px;
	border: 1px solid rgba(90, 52, 74, .08);
	border-radius: 50%;
	content: "";
	pointer-events: none;
}

.hhfp__inner {
	width: min(1240px, calc(100% - 76px));
	margin: 0 auto;
	padding: clamp(44px, 5vw, 66px) 0 clamp(34px, 4vw, 50px);
}

.hhfp a {
	color: inherit;
}

.hhfp__intro {
	display: grid;
	grid-template-columns: minmax(0, 1.32fr) minmax(300px, .68fr);
	align-items: end;
	gap: 34px clamp(46px, 7vw, 96px);
	margin-bottom: clamp(30px, 4vw, 44px);
}

.hhfp__eyebrow,
.hhfp-story__category {
	margin: 0 0 10px;
	color: var(--hhfp-sage-dark);
	font: 800 11px/1.2 Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	letter-spacing: .15em;
	text-transform: uppercase;
}

.hhfp__intro h1 {
	max-width: 820px;
	margin: 0;
	color: var(--hhfp-ink);
	font-size: clamp(48px, 4.7vw, 66px);
	line-height: .98;
	letter-spacing: -.045em;
	text-wrap: balance;
}

.hhfp__intro-side {
	padding-bottom: 4px;
}

.hhfp__intro-side > p {
	margin: 0;
	color: var(--hhfp-body);
	font-size: clamp(16px, 1.4vw, 18px);
	line-height: 1.62;
}

.hhfp__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 20px;
}

.hhfp__actions a {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	min-height: 42px;
	padding: 10px 17px;
	border: 1px solid var(--hhfp-line);
	border-radius: 999px;
	background: rgba(255, 255, 255, .78);
	color: var(--hhfp-plum) !important;
	font: 800 10px/1.2 Inter, system-ui, sans-serif;
	letter-spacing: .1em;
	text-decoration: none;
	text-transform: uppercase;
	transition: border-color .18s ease, background .18s ease, color .18s ease, transform .18s ease;
}

.hhfp__actions a:first-child {
	border-color: var(--hhfp-plum);
	background: var(--hhfp-plum);
	color: var(--hhfp-white) !important;
}

.hhfp__actions a:hover,
.hhfp__actions a:focus-visible {
	border-color: var(--hhfp-plum-dark);
	background: var(--hhfp-plum-dark);
	color: var(--hhfp-white) !important;
	transform: translateY(-1px);
}

.hhfp-story,
.hhfp-slide {
	position: relative;
	min-width: 0;
	overflow: hidden;
	border: 1px solid rgba(74, 38, 57, .14);
	border-radius: 24px;
	background: var(--hhfp-white);
	box-shadow: 0 18px 48px rgba(53, 35, 47, .09);
}

.hhfp-story__media,
.hhfp-slide__media {
	display: block;
	min-width: 0;
	min-height: 0;
	overflow: hidden;
	background: linear-gradient(135deg, #eadfce, #d9bdc8);
}

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

.hhfp-story:hover .hhfp-story__image,
.hhfp-slide:hover .hhfp-story__image {
	transform: scale(1.022);
}

.hhfp-story__content {
	min-width: 0;
	padding: clamp(22px, 3vw, 34px);
}

.hhfp-story__category a {
	text-decoration: none;
}

.hhfp-story h2,
.hhfp-slide h2 {
	margin: 0;
	color: var(--hhfp-ink);
	font-size: clamp(26px, 3vw, 43px);
	line-height: 1.05;
	letter-spacing: -.028em;
	text-wrap: balance;
}

.hhfp-story--supporting h2 {
	font-size: clamp(21px, 1.8vw, 28px);
}

.hhfp-story--supporting h2 a {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
}

/* Engagement remains on the story and in the latest grid; the masthead stays editorial. */
.hhfp .msf-desktop-engagement-wrap {
	display: none !important;
}

.hhfp-story h2 a,
.hhfp-slide h2 a {
	color: inherit !important;
	font: inherit;
	letter-spacing: inherit;
	line-height: inherit;
	text-decoration: none;
}

.hhfp-story__excerpt {
	margin: 14px 0 0;
	color: var(--hhfp-body);
	font-size: 15px;
	line-height: 1.58;
}

.hhfp-story__footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px 18px;
	margin-top: 20px;
	color: var(--hhfp-muted);
	font: 750 10px/1.3 Inter, system-ui, sans-serif;
	letter-spacing: .09em;
	text-transform: uppercase;
}

.hhfp-story__read {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--hhfp-plum) !important;
	font-weight: 850;
	text-decoration: none;
}

.hhfp-editorial {
	display: grid;
	grid-template-columns: minmax(0, 1.48fr) minmax(340px, .72fr);
	gap: 24px;
	height: 620px;
}

.hhfp-story--lead {
	min-height: 0;
	isolation: isolate;
}

.hhfp-story--lead::after {
	position: absolute;
	z-index: 1;
	inset: 0;
	background: linear-gradient(180deg, rgba(25, 17, 22, .03) 16%, rgba(25, 17, 22, .28) 54%, rgba(25, 17, 22, .9) 100%);
	content: "";
	pointer-events: none;
}

.hhfp-story--lead .hhfp-story__media {
	position: absolute;
	inset: 0;
}

.hhfp-story__badge {
	position: absolute;
	z-index: 3;
	top: 22px;
	left: 22px;
	padding: 9px 13px;
	border: 1px solid rgba(255, 255, 255, .45);
	border-radius: 999px;
	background: rgba(36, 29, 34, .58);
	color: var(--hhfp-white);
	font: 800 9px/1 Inter, system-ui, sans-serif;
	letter-spacing: .12em;
	text-transform: uppercase;
	backdrop-filter: blur(9px);
}

.hhfp-story--lead .hhfp-story__content {
	position: absolute;
	z-index: 2;
	right: 0;
	bottom: 0;
	left: 0;
	padding: clamp(28px, 4vw, 48px);
}

.hhfp-story--lead .hhfp-story__category,
.hhfp-story--lead .hhfp-story__category a,
.hhfp-story--lead h2,
.hhfp-story--lead h2 a,
.hhfp-story--lead .hhfp-story__excerpt,
.hhfp-story--lead .hhfp-story__footer,
.hhfp-story--lead .hhfp-story__read {
	color: var(--hhfp-white) !important;
}

.hhfp-story--lead .hhfp-story__category {
	opacity: .82;
}

.hhfp-story--lead h2 {
	max-width: 760px;
	font-size: clamp(38px, 4vw, 54px);
}

.hhfp-story--lead .hhfp-story__excerpt {
	max-width: 720px;
	opacity: .88;
}

.hhfp-story--lead .hhfp-story__footer {
	border-top: 1px solid rgba(255, 255, 255, .24);
	padding-top: 17px;
}

.hhfp-editorial__supporting {
	display: grid;
	grid-template-rows: repeat(2, minmax(0, 1fr));
	gap: 24px;
	min-height: 0;
}

.hhfp-story--supporting {
	display: grid;
	grid-template-columns: minmax(135px, .78fr) minmax(0, 1.22fr);
}

.hhfp-story--supporting .hhfp-story__content {
	display: flex;
	flex-direction: column;
	padding: 22px;
}

.hhfp-story--supporting .hhfp-story__footer {
	margin-top: auto;
	padding-top: 16px;
}

.hhfp-story--supporting .hhfp-story__excerpt {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.hhfp-story--supporting .hhfp-story__read {
	white-space: nowrap;
}

.hhfp-slider {
	position: relative;
}

.hhfp-slider__viewport {
	position: relative;
	min-height: 610px;
}

.hhfp-slide {
	position: absolute;
	inset: 0;
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) minmax(350px, .72fr);
	visibility: hidden;
	opacity: 0;
	transform: translateX(18px);
	transition: opacity .42s ease, transform .42s ease, visibility 0s linear .42s;
}

.hhfp-slide.is-active {
	z-index: 1;
	visibility: visible;
	opacity: 1;
	transform: none;
	transition-delay: 0s;
}

.hhfp-slide .hhfp-slide__media {
	min-height: 100%;
}

.hhfp-slide .hhfp-story__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: var(--hhfp-white);
}

.hhfp-slide .hhfp-story__footer {
	margin-top: auto;
	padding-top: 28px;
}

.hhfp-slider__controls {
	position: relative;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin-top: 18px;
}

.hhfp-slider__arrow {
	display: grid;
	width: 44px;
	height: 44px;
	place-items: center;
	border: 1px solid var(--hhfp-line);
	border-radius: 50%;
	background: var(--hhfp-white);
	color: var(--hhfp-ink);
	box-shadow: 0 4px 14px rgba(53, 35, 47, .08);
	cursor: pointer;
}

.hhfp-slider__dots {
	display: flex;
	align-items: center;
	gap: 9px;
}

.hhfp-slider__dots button {
	width: 9px;
	height: 9px;
	padding: 0;
	border: 0;
	border-radius: 99px;
	background: #b8aeb4;
	cursor: pointer;
	transition: width .2s ease, background .2s ease;
}

.hhfp-slider__dots button.is-active {
	width: 30px;
	background: var(--hhfp-plum);
}

.hhfp-topics {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 10px;
	margin-top: 24px;
	padding-top: 22px;
	border-top: 1px solid var(--hhfp-line);
}

.hhfp-topics__label {
	grid-column: 1 / -1;
	color: var(--hhfp-muted);
	font: 800 10px/1.2 Inter, system-ui, sans-serif;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.hhfp-topics a {
	display: grid;
	grid-template-columns: 36px minmax(0, 1fr) auto;
	align-items: center;
	gap: 10px;
	min-width: 0;
	padding: 13px 14px;
	border: 1px solid var(--hhfp-line);
	border-radius: 14px;
	background: rgba(255, 255, 255, .78);
	color: var(--hhfp-ink) !important;
	text-decoration: none;
	transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.hhfp-topics a:hover,
.hhfp-topics a:focus-visible {
	border-color: rgba(90, 52, 74, .38);
	box-shadow: 0 10px 24px rgba(53, 35, 47, .08);
	transform: translateY(-2px);
}

.hhfp-topics svg {
	width: 32px;
	height: 32px;
	padding: 7px;
	border-radius: 10px;
	background: var(--hhfp-blush);
	color: var(--hhfp-plum);
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.6;
}

.hhfp-topics a > span:nth-child(2) {
	display: grid;
	min-width: 0;
	gap: 2px;
}

.hhfp-topics strong,
.hhfp-topics small {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.hhfp-topics strong {
	font: 800 10px/1.2 Inter, system-ui, sans-serif;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.hhfp-topics small {
	color: var(--hhfp-muted);
	font: 500 11px/1.35 Inter, system-ui, sans-serif;
}

.hhfp-topics a > span:last-child {
	color: var(--hhfp-plum);
	font-weight: 700;
}

@media (max-width: 1100px) {
	.hhfp__inner {
		width: min(100% - 48px, 1240px);
	}

	.hhfp-editorial {
		grid-template-columns: minmax(0, 1.35fr) minmax(310px, .65fr);
	}

	.hhfp-story--lead h2 {
		font-size: clamp(36px, 4vw, 47px);
	}

	.hhfp-topics {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.hhfp__intro {
		grid-template-columns: 1fr;
		align-items: start;
		gap: 20px;
	}

	.hhfp__intro-side {
		max-width: 740px;
	}

	.hhfp-editorial {
		grid-template-columns: 1fr;
		height: auto;
	}

	.hhfp-story--lead {
		min-height: 540px;
	}

	.hhfp-editorial__supporting {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-template-rows: none;
		min-height: 0;
	}

	.hhfp-story--supporting {
		grid-template-columns: 1fr;
		grid-template-rows: 210px auto;
	}

	.hhfp-slide {
		grid-template-columns: 1fr;
		grid-template-rows: minmax(340px, 50vw) auto;
	}

	.hhfp-slider__viewport {
		min-height: 780px;
	}
}

@media (max-width: 640px) {
	.hhfp::before {
		display: none;
	}

	.hhfp__inner {
		width: min(100% - 24px, 1240px);
		padding-top: 30px;
		padding-bottom: 28px;
	}

	.hhfp__intro {
		gap: 15px;
		margin-bottom: 22px;
	}

	.hhfp__eyebrow {
		margin-bottom: 7px;
	}

	.hhfp__intro h1 {
		font-size: clamp(38px, 11.5vw, 50px);
	}

	.hhfp__intro-side > p {
		font-size: 15px;
		line-height: 1.55;
	}

	.hhfp__actions {
		margin-top: 15px;
	}

	.hhfp__actions a {
		min-height: 39px;
		padding: 9px 14px;
	}

	.hhfp-editorial {
		gap: 16px;
	}

	.hhfp-story,
	.hhfp-slide {
		border-radius: 18px;
	}

	.hhfp-story--lead {
		display: grid;
		min-height: 0;
	}

	.hhfp-story--lead::after {
		display: none;
	}

	.hhfp-story--lead .hhfp-story__media {
		position: static;
		aspect-ratio: 4 / 3;
	}

	.hhfp-story__badge {
		top: 14px;
		left: 14px;
	}

	.hhfp-story--lead .hhfp-story__content {
		position: static;
		padding: 22px 19px 21px;
	}

	.hhfp-story--lead .hhfp-story__category,
	.hhfp-story--lead .hhfp-story__category a {
		color: var(--hhfp-sage-dark) !important;
	}

	.hhfp-story--lead h2,
	.hhfp-story--lead h2 a {
		color: var(--hhfp-ink) !important;
	}

	.hhfp-story--lead .hhfp-story__excerpt {
		color: var(--hhfp-body) !important;
	}

	.hhfp-story--lead .hhfp-story__footer {
		padding-top: 0;
		border-top: 0;
		color: var(--hhfp-muted) !important;
	}

	.hhfp-story--lead .hhfp-story__read {
		color: var(--hhfp-plum) !important;
	}

	.hhfp-story--lead h2 {
		font-size: clamp(31px, 8.8vw, 39px);
	}

	.hhfp-story--lead .hhfp-story__excerpt {
		display: -webkit-box;
		overflow: hidden;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
		font-size: 14px;
	}

	.hhfp-editorial__supporting {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.hhfp-story--supporting {
		grid-template-columns: 124px minmax(0, 1fr);
		grid-template-rows: none;
		min-height: 164px;
	}

	.hhfp-story--supporting .hhfp-story__content {
		padding: 15px;
	}

	.hhfp-story--supporting h2 {
		font-size: 19px;
	}

	.hhfp-story--supporting .hhfp-story__excerpt,
	.hhfp-story--supporting .hhfp-story__footer time {
		display: none;
	}

	.hhfp-story--supporting .hhfp-story__footer {
		margin-top: auto;
		padding-top: 12px;
	}

	.hhfp-slide {
		grid-template-rows: minmax(270px, 72vw) auto;
	}

	.hhfp-slider__viewport {
		min-height: 690px;
	}

	.hhfp-slide .hhfp-story__content {
		justify-content: flex-start;
	}

	.hhfp-slide h2 {
		font-size: clamp(28px, 8vw, 38px);
	}

	.hhfp-topics {
		display: flex;
		flex-wrap: nowrap;
		overflow-x: auto;
		margin-inline: -12px;
		padding-inline: 12px;
		padding-bottom: 5px;
		scroll-snap-type: x proximity;
		scrollbar-width: none;
	}

	.hhfp-topics::-webkit-scrollbar {
		display: none;
	}

	.hhfp-topics__label {
		display: none;
	}

	.hhfp-topics a {
		flex: 0 0 210px;
		scroll-snap-align: start;
	}
}

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