/*
Theme Name: Gazette Harkness
Theme URI: https://www.roses.co.uk/
Description: Harkness Roses blog theme. Child of Gazette, restyled to match the main Harkness Roses brand (roses.co.uk). Uses brand colours Charcoal, French Grey and White; typography Forum and Raleway.
Version: 1.4.0
Author: Harkness Roses
Template: gazette
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gazette-harkness
*/

/*--------------------------------------------------------------
  Harkness brand
  Primary colour: #504e4e  |  Secondary colour: #b4b199
  Primary font: Forum  |  Secondary font: Raleway

  Design tokens (:root) — use these for new UI:
  - --harkness-card-surface / toolbar panel: card bodies, hero text, topics/filters bars
  - --harkness-cream: page bands (Explore section, blog main background)
  - --harkness-blog-toolbar-panel-*: topics strip + archive filters chrome
--------------------------------------------------------------*/

/* Smooth scroll for in-page links and programmatic scroll */
html {
	scroll-behavior: smooth;
}

:root {
	/* Brand colours */
	--harkness-primary: #504e4e;
	--harkness-secondary: #b4b199;
	--harkness-charcoal: #504e4e;
	--harkness-french-grey: #b4b199;
	--harkness-white: #ffffff;
	--harkness-cream: #f4f1e8;
	/* Blog card body, hero text panel, topics/filters bars — same off-white */
	--harkness-card-surface: #faf9f6;
	--harkness-sage: #d9dfca;
	--harkness-text: #504e4e;
	--harkness-body: #454545;
	--harkness-text-muted: #5c5c5c;
	/* Brand typography */
	--harkness-font-primary: Forum, Georgia, serif;
	--harkness-font-secondary: Raleway, sans-serif;
	/* Outline buttons: match header “Back to shop” – subtle corners, not pill */
	--harkness-outline-btn-radius: 4px;
	--harkness-card-radius: 8px;
	/* Popular topics strip + archive filter toolbar — same white bar height */
	--harkness-blog-toolbar-panel-min-height: 3.625rem;
	/* Shared “white bar” chrome (topics + filters) */
	--harkness-blog-toolbar-panel-bg: var(--harkness-card-surface);
	--harkness-blog-toolbar-panel-border: 1px solid rgba(80, 78, 78, 0.1);
	--harkness-blog-toolbar-panel-shadow: 0 2px 12px rgba(80, 78, 78, 0.06);
}

/* Skip link: focus target must be visible (tabindex="-1" on #content) */
#content.site-content:focus {
	outline: none;
}

#content.site-content:focus-visible {
	outline: 3px solid var(--harkness-primary);
	outline-offset: 4px;
}

/* Custom scrollbar – brand colours */
* {
	scrollbar-width: thin;
	scrollbar-color: var(--harkness-secondary) var(--harkness-cream);
}
*::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}
*::-webkit-scrollbar-track {
	background: var(--harkness-cream);
}
*::-webkit-scrollbar-thumb {
	background: var(--harkness-secondary);
	border-radius: 5px;
}
*::-webkit-scrollbar-thumb:hover {
	background: var(--harkness-primary);
}

/*--------------------------------------------------------------
  Trust bar – below header, not sticky (matches main site)
  bg #f2eadd, white text, vertical dividers, carousel on mobile
--------------------------------------------------------------*/
/* Banner below header – no animation, comfortable padding */
.harkness-trust-bar {
	background: #f2eadd;
	border-bottom: 1px solid rgba(80, 78, 78, 0.08);
	font-family: var(--harkness-font-secondary);
	font-size: 13px;
	/* Allow Trustpilot / scaled content to show vertically; clip horizontal only if needed */
	overflow-x: hidden;
	overflow-y: visible;
	padding: 14px 20px 16px;
	position: relative;
	z-index: 0;
	margin-top: 0;
}

/* No animation on banner, newsletter, footer, or post banners */
.harkness-trust-bar,
.harkness-newsletter,
.harkness-footer,
.single .entry-hero,
.single .harkness-single-header,
.single .harkness-breadcrumbs {
	transition: none !important;
	transform: none !important;
	opacity: 1 !important;
}

.harkness-trust-bar-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0 1.25em;
	max-width: 1200px;
	margin: 0 auto;
}

.harkness-trust-bar-item {
	color: var(--harkness-primary);
	font-weight: 500;
	text-align: center;
}

.harkness-trust-bar-sep {
	width: 1px;
	height: 1.2em;
	background: rgba(80, 78, 78, 0.25);
	flex-shrink: 0;
}

/* Trustpilot widget in trust bar – match USP text size; taller iframe avoids Trustpilot’s internal overflow clip */
.harkness-trust-bar-trustpilot {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	align-self: center;
	flex-shrink: 0;
	min-width: 0;
	width: auto;
	/* Tuck closer to divider (text USPs aren’t centered inside wide cells; Trustpilot was) */
	margin-left: -0.65em;
	margin-right: 0;
}
.harkness-trust-bar-trustpilot .harkness-trustpilot-align {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	/* Scale from left; translateY nudges widget up to align with USP text baseline */
	transform: translateY(4px) scale(0.82);
	transform-origin: left center;
}
.harkness-trust-bar-trustpilot .trustpilot-widget {
	position: relative;
	height: 28px;
	width: auto;
	min-width: 240px;
	max-width: none;
	display: block;
}
.harkness-trust-bar-trustpilot .trustpilot-widget iframe {
	display: block !important;
	border: none !important;
	/* Do not add margin-top/top here: iframe is fixed height with overflow:hidden inside Trustpilot */
}

/* Mobile: trust bar as horizontal scroll carousel */
@media screen and (max-width: 639px) {
	.harkness-trust-bar {
		padding: 12px 0 14px;
	}
	.harkness-trust-bar-inner {
		display: flex;
		flex-wrap: nowrap;
		gap: 0;
		justify-content: flex-start;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scroll-behavior: smooth;
		-webkit-overflow-scrolling: touch;
		padding: 6px 16px;
		max-width: none;
	}
	.harkness-trust-bar-item {
		flex: 0 0 100%;
		scroll-snap-align: center;
		scroll-snap-stop: always;
		min-width: 100%;
		box-sizing: border-box;
	}
	.harkness-trust-bar-sep {
		display: none;
	}
	/* Trustpilot slide: use full width so the widget isn’t clipped */
	.harkness-trust-bar-trustpilot {
		min-width: 0;
		max-width: 100%;
		margin-left: 0;
		justify-content: center;
	}
	.harkness-trust-bar-trustpilot .harkness-trustpilot-align {
		transform-origin: center center;
		transform: translateY(1px) scale(0.82);
	}
	.harkness-trust-bar-trustpilot .trustpilot-widget {
		min-width: 0;
		max-width: 100%;
	}
}

@media screen and (min-width: 640px) {
	.harkness-trust-bar-item {
		flex: 0 0 auto;
	}
}

/* Mobile menu backdrop (below header z-index so hamburger stays usable) */
.harkness-menu-backdrop {
	display: none;
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 40;
	background: rgba(0, 0, 0, 0.42);
	-webkit-tap-highlight-color: transparent;
}

body.harkness-menu-open .harkness-menu-backdrop {
	display: block;
}

/* Drawer title row – desktop inline nav has no drawer chrome */
.harkness-mobile-drawer-header {
	display: none;
}

@media screen and (min-width: 840px) {
	.harkness-mobile-drawer-header {
		display: none !important;
	}
}

/* No vertical dividers between nav items */
.main-navigation .nav-menu > li + li {
	border-left: none !important;
}

/*--------------------------------------------------------------
  Main header – charcoal background, white text
--------------------------------------------------------------*/
/* Page and header full width, centered – fix off-center layout and floating nav */
#page,
#page.site {
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 auto !important;
	margin-top: 0 !important;
	padding: 0 !important;
	box-sizing: border-box;
}
.site-header#masthead,
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	margin-top: 0 !important;
	width: 100% !important;
	max-width: 100% !important;
	background: var(--harkness-primary) !important;
	border-bottom: none !important;
	padding: 0 !important;
	margin-bottom: 0;
	box-sizing: border-box;
}
/*
 * Parent Gazette adds body.fixed and sets .site-header { position: fixed }, which pulls the header
 * out of flow so the trust bar + hero slide underneath. Keep sticky so content starts below the bar.
 */
body.fixed .site-header#masthead,
body.fixed .site-header {
	position: sticky !important;
	top: 0 !important;
}
.admin-bar .site-header#masthead,
.admin-bar .site-header {
	top: 32px;
}
.admin-bar.fixed .site-header#masthead,
.admin-bar.fixed .site-header {
	top: 32px !important;
}
@media screen and (max-width: 782px) {
	.admin-bar.fixed .site-header#masthead,
	.admin-bar.fixed .site-header {
		top: 46px !important;
	}
}
.harkness-trust-bar {
	width: 100% !important;
	max-width: 100% !important;
	box-sizing: border-box;
	margin-bottom: 0;
	margin-top: 0;
}
.site-header-inner {
	position: relative;
	z-index: 100060;
	margin-bottom: 0;
	padding: 14px 16px;
	min-height: 72px;
	width: 100% !important;
	max-width: 100% !important;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.5em 0.75em;
}
#content.site-content {
	width: 100% !important;
	max-width: 100% !important;
	box-sizing: border-box;
}

/* Optional cap on header width; parent theme controls exact width at each breakpoint */
@media screen and (min-width: 1380px) {
	.site-header-inner {
		max-width: 1260px !important;
	}
}

/* Header – no scroll animation; static appearance */
.site-header {
	transition: none;
}
.site-header .site-branding .custom-logo-link img,
.site-header .site-logo-link img {
	transition: none;
}

/* Hide site title and tagline in header – logo only */
.site-header .site-title,
.site-header .site-description {
	display: none !important;
}

/* Site title / logo – same-tab, no white block on tap/focus */
.site-branding a,
.site-title a,
.site-title,
.site-logo-link {
	-webkit-tap-highlight-color: transparent;
	tap-highlight-color: transparent;
}

.site-title,
.site-title a {
	color: var(--harkness-white) !important;
	font-family: var(--harkness-font-primary) !important;
	font-weight: 400;
	letter-spacing: 0.02em;
	text-decoration: none !important;
}

.site-title a:hover,
.site-title a:focus,
.site-title a:active,
.site-branding a:focus,
.site-logo-link:focus {
	color: var(--harkness-secondary) !important;
	background: transparent !important;
}

.site-title a:focus,
.site-branding a:focus,
.site-logo-link:focus {
	outline: 2px solid rgba(255, 255, 255, 0.6);
	outline-offset: 2px;
}

/* Search removed from header – nav sits right of logo */
#search-header,
.search-toggle {
	display: none !important;
}

.main-navigation {
	padding-right: 0 !important;
}

/* Header logo – capped height so nav row can center vertically with equal space above/below */
.site-header .site-branding .custom-logo-link,
.site-header .site-branding .site-logo-link {
	display: flex;
	align-items: center;
}
.site-header .site-branding .custom-logo-link img,
.site-header .site-logo-link img {
	max-height: 56px;
	width: auto;
	height: auto;
	display: block;
	vertical-align: middle;
}

/* Main navigation – white text */
.main-navigation {
	font-family: var(--harkness-font-secondary) !important;
}

.main-navigation a {
	color: var(--harkness-white) !important;
	background: transparent !important;
	background-color: transparent !important;
	-webkit-tap-highlight-color: transparent;
	tap-highlight-color: transparent;
}

.main-navigation a:hover,
.main-navigation a:focus,
.main-navigation a:active,
.main-navigation a:focus-visible {
	color: var(--harkness-secondary) !important;
	background: transparent !important;
	background-color: transparent !important;
}

.main-navigation a:focus,
.main-navigation a:focus-visible {
	outline: 2px solid rgba(255, 255, 255, 0.6);
	outline-offset: 2px;
}

.main-navigation .current_page_item > a,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_ancestor > a {
	color: var(--harkness-secondary) !important;
	background: transparent !important;
	background-color: transparent !important;
}

.site-header .main-navigation .current_page_item > a,
.site-header .main-navigation .current-menu-item > a {
	background: transparent !important;
	background-color: transparent !important;
}

/* Back to shop – far right, 1px white border, comfortable padding */
.harkness-back-to-shop {
	margin-left: auto;
	flex-shrink: 0;
	font-family: var(--harkness-font-secondary) !important;
	font-size: 15px !important;
	font-weight: 500 !important;
	color: var(--harkness-white) !important;
	text-decoration: none;
	-webkit-tap-highlight-color: transparent;
	border: 1px solid rgba(255, 255, 255, 0.9);
	padding: 10px 20px;
	border-radius: var(--harkness-outline-btn-radius);
}

.harkness-back-to-shop:hover,
.harkness-back-to-shop:focus {
	color: var(--harkness-white) !important;
	background: rgba(255, 255, 255, 0.1);
	border-color: #fff;
}

.harkness-back-to-shop:focus {
	outline: none;
	border-color: #fff;
}

/* Header: logo | Home News categories… Back to shop – one font size/weight, same baseline */
.harkness-header-nav-row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0 1.25em;
	flex: 1;
	min-width: 0;
	justify-content: flex-start;
	font-family: var(--harkness-font-secondary);
	font-size: 15px;
	font-weight: 500;
	line-height: 1;
}

.site-header .main-navigation {
	display: flex;
	align-items: center;
	line-height: 1;
	font-size: 15px;
	font-weight: 500;
	margin: 0;
	padding: 0;
}

.site-header .main-navigation .nav-menu {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0 1.25em;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none;
	border: none;
	line-height: 1;
	font-size: 15px;
	font-weight: 500;
}

.site-header .main-navigation .nav-menu li {
	display: flex;
	align-items: center;
	padding: 0 !important;
	margin: 0 !important;
	border: none !important;
	line-height: 1;
	float: none;
	background: transparent !important;
	background-color: transparent !important;
}

.site-header .main-navigation .nav-menu a {
	display: flex;
	align-items: center;
	line-height: 1;
	padding: 0 !important;
	vertical-align: middle;
	font-size: 15px !important;
	font-weight: 500 !important;
	background: transparent !important;
	background-color: transparent !important;
	-webkit-tap-highlight-color: transparent;
	tap-highlight-color: transparent;
}

.site-header .main-navigation .nav-menu a:hover,
.site-header .main-navigation .nav-menu a:focus,
.site-header .main-navigation .nav-menu a:active {
	background: transparent !important;
	background-color: transparent !important;
}

.site-header-inner {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.5em 0.75em;
}

.site-header-inner .site-branding,
.site-header-inner .main-navigation {
	float: none;
}

.site-header-inner .site-branding {
	flex-shrink: 0;
	align-self: center;
	display: flex;
	align-items: center;
}

/* Nav row takes remaining width so Back to shop can sit at far right; vertically centered */
.site-header-inner .harkness-header-nav-row {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	align-self: center;
}
.site-header-inner .main-navigation {
	flex: 1 1 auto;
	min-width: 0;
	max-width: 100%;
	display: flex;
	align-items: center;
	align-self: center;
}

/* Dropdown wrapper: nav, categories – equal alignment */
.harkness-nav-dropdown {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.5em 1.25em;
	justify-content: flex-start;
	width: 100%;
	max-width: 100%;
	min-width: 0;
}
.harkness-back-to-shop {
	flex-shrink: 0;
	white-space: nowrap;
}
@media screen and (min-width: 840px) {
	.harkness-nav-dropdown {
		flex-wrap: nowrap;
		gap: 0 1.25em;
	}
}

/* Tablet (hamburger visible): keep logo and menu control on one row */
@media screen and (min-width: 640px) and (max-width: 839px) {
	.site-header-inner {
		flex-wrap: nowrap;
		align-items: center;
	}
}

/* Desktop / tablet landscape: logo, category links, search, Back to shop on one row */
@media screen and (min-width: 840px) {
	.site-header-inner {
		flex-wrap: nowrap;
		align-items: center;
	}
	.harkness-header-nav-row {
		flex-wrap: nowrap;
	}
	.site-header-inner .main-navigation,
	.site-header .main-navigation .harkness-nav-dropdown {
		min-width: 0;
	}
	.site-header .main-navigation .harkness-nav-center {
		flex: 1 1 auto;
		min-width: 0;
		max-width: 100%;
		overflow: hidden;
	}
	.harkness-header-categories {
		min-width: 0;
		max-width: 100%;
	}
	.harkness-header-categories .harkness-blog-nav {
		min-width: 0;
		max-width: 100%;
	}
	/* One line of links; scroll horizontally if the bar is crowded */
	.harkness-header-categories .harkness-blog-nav-list {
		flex-wrap: nowrap;
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: thin;
		max-width: 100%;
	}
	.harkness-header-categories .harkness-blog-nav-list li {
		flex-shrink: 0;
	}
	/* Back to shop in hamburger only on mobile; hide dropdown-shop on desktop */
	.site-header .main-navigation .harkness-nav-dropdown-shop {
		display: none;
	}
}

.harkness-nav-center {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 1 auto;
	gap: 0 1.5em;
	min-width: 0;
}

.harkness-nav-spacer {
	flex: 1;
	min-width: 0;
}

.harkness-nav-dropdown .harkness-nav-spacer:first-of-type {
	display: block;
}

/* Grow so category links sit left and header actions stay on the right */
.harkness-nav-spacer-right {
	flex: 1 1 0%;
	min-width: 2em;
}

/* Content search form (e.g. 404 / "Nothing found" page) – prevent button text clipping */
.search-form input[type="submit"],
.search-form .search-submit {
	padding: 10px 20px;
	line-height: 1.25;
	min-height: 40px;
	min-width: 6em;
	white-space: nowrap;
	vertical-align: middle;
	box-sizing: border-box;
}

/* Search icon + Back to shop (sits right of the nav row) */
.harkness-header-actions {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	gap: 0.5em;
	margin-left: auto;
}

.harkness-header-search-trigger {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	margin: 0;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 8px;
	background: transparent;
	color: var(--harkness-white);
	cursor: pointer;
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;
	transition: background 0.2s ease, border-color 0.2s ease;
}

.harkness-header-search-trigger:hover,
.harkness-header-search-trigger:focus {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.55);
	color: var(--harkness-white);
	outline: none;
}

.harkness-header-search-trigger:focus-visible {
	outline: 2px solid rgba(255, 255, 255, 0.6);
	outline-offset: 2px;
}

.harkness-header-search-icon {
	display: block;
}

/* Search drawer: closed stacks under header inner (100060); open must sit above so panel covers search trigger */
.harkness-search-drawer {
	position: fixed;
	inset: 0;
	z-index: 100050;
	display: flex;
	justify-content: flex-end;
	align-items: stretch;
	pointer-events: none;
	visibility: hidden;
	background: transparent !important;
	background-image: none !important;
}

.harkness-search-drawer.is-open {
	z-index: 100100;
	pointer-events: auto;
	visibility: visible;
	background: transparent !important;
	background-image: none !important;
}

/* Hide Back to shop in header when search drawer is open so it doesn’t show through the panel */
body.harkness-search-drawer-open .harkness-back-to-shop,
body.harkness-search-drawer-open .harkness-back-to-shop-mobile {
	visibility: hidden !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

/* Invisible hit area to close drawer – no overlay (page stays fully visible; div not button to avoid native focus/hover paint) */
.harkness-search-drawer-backdrop {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background: transparent !important;
	background-color: transparent !important;
	background-image: none !important;
	opacity: 0;
	transition: none;
	cursor: pointer;
	border: none;
	padding: 0;
	margin: 0;
	font-size: 0;
	line-height: 0;
	color: transparent;
	box-shadow: none;
	outline: none;
}

.harkness-search-drawer-backdrop:hover,
.harkness-search-drawer-backdrop:focus,
.harkness-search-drawer-backdrop:focus-visible,
.harkness-search-drawer-backdrop:active {
	background: transparent !important;
	background-color: transparent !important;
	background-image: none !important;
	opacity: 0 !important;
	outline: none !important;
	box-shadow: none !important;
}

.harkness-search-drawer.is-open .harkness-search-drawer-backdrop {
	opacity: 0;
	background: transparent !important;
	background-color: transparent !important;
}

.harkness-search-drawer-panel {
	position: relative;
	z-index: 1;
	width: min(420px, 100vw);
	max-width: 100%;
	background: var(--harkness-cream);
	box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
	padding: 0;
	box-sizing: border-box;
	transform: translateX(100%);
	transition: transform 0.3s ease;
}

.harkness-search-drawer.is-open .harkness-search-drawer-panel {
	transform: translateX(0);
}

.harkness-search-drawer-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 1.25em 1.25em 1em;
	border-bottom: 1px solid rgba(80, 78, 78, 0.12);
	flex-shrink: 0;
}

.harkness-search-drawer-heading {
	font-family: var(--harkness-font-primary);
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--harkness-primary);
	margin: 0;
	line-height: 1.25;
}

.harkness-search-drawer-close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid rgba(80, 78, 78, 0.25);
	border-radius: 8px;
	background: var(--harkness-white);
	color: var(--harkness-primary);
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	flex-shrink: 0;
	-webkit-tap-highlight-color: transparent;
}

.harkness-search-drawer-close:hover,
.harkness-search-drawer-close:focus {
	background: rgba(80, 78, 78, 0.06);
	outline: none;
}

.harkness-search-drawer-form {
	display: flex;
	flex-direction: column;
	gap: 1em;
	padding: 1.25em 1.25em 1.5em;
	flex: 1;
	min-height: 0;
}

.harkness-search-drawer-input {
	width: 100%;
	box-sizing: border-box;
	padding: 12px 14px;
	font-family: var(--harkness-font-secondary);
	font-size: 16px;
	border: 1px solid rgba(80, 78, 78, 0.25);
	border-radius: var(--harkness-outline-btn-radius);
	background: var(--harkness-white);
	color: var(--harkness-body);
}

.harkness-search-drawer-input::placeholder {
	color: rgba(80, 78, 78, 0.45);
}

.harkness-search-drawer-submit {
	align-self: flex-start;
	font-family: var(--harkness-font-secondary);
	font-size: 14px;
	font-weight: 600;
	padding: 10px 22px;
	border: 1px solid var(--harkness-primary);
	border-radius: var(--harkness-outline-btn-radius);
	background: var(--harkness-primary);
	color: var(--harkness-white);
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease;
}

.harkness-search-drawer-submit:hover,
.harkness-search-drawer-submit:focus {
	background: var(--harkness-secondary);
	border-color: var(--harkness-secondary);
	outline: none;
}

/* No overflow:hidden on body when search is open – that breaks position:sticky on .site-header (header disappears / scrolls away) */
body.harkness-search-drawer-open {
	overscroll-behavior: none;
}
body.harkness-search-drawer-open::before,
body.harkness-search-drawer-open::after {
	display: none !important;
}

/*
 * Search drawer is a #page sibling after the trust bar (see header.php), so .harkness-search-drawer.is-open
 * (z-index 100100) stacks above .fixed .site-header (99999) and this bar. Keep USP z-index low while
 * search is open as a safeguard if the drawer markup ever moves back inside <header>.
 */
body.harkness-search-drawer-open .harkness-trust-bar {
	position: relative;
	z-index: 0;
}

/* Logged-in WP admin bar: drawer below bar */
body.admin-bar .harkness-search-drawer {
	inset: auto;
	left: 0;
	right: 0;
	top: 32px;
	bottom: 0;
}
@media screen and (max-width: 782px) {
	body.admin-bar .harkness-search-drawer {
		top: 46px;
	}
}

/* Category nav – same font/size and vertical alignment as Home & News */
.harkness-header-categories {
	border-top: none;
	padding: 0;
	width: auto;
}

.harkness-header-categories .harkness-blog-nav {
	border-bottom: none;
	margin: 0;
	padding: 0;
}

.harkness-header-categories .harkness-blog-nav-list {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0 0.9em;
	margin: 0;
	padding: 0;
	list-style: none;
	font-family: var(--harkness-font-secondary) !important;
	font-size: 14px !important;
	font-weight: 500 !important;
	line-height: 1;
}

.harkness-header-categories .harkness-blog-nav-list li {
	display: flex;
	align-items: center;
	padding: 0;
	line-height: 1;
}

.harkness-header-categories .harkness-blog-nav-list a {
	display: inline-block;
	color: var(--harkness-white) !important;
	text-decoration: none;
	font-family: var(--harkness-font-secondary) !important;
	font-size: 14px !important;
	font-weight: 500 !important;
	line-height: 1;
	padding: 3px 0;
	border-bottom: none !important;
	vertical-align: middle;
	background: transparent !important;
	background-color: transparent !important;
	-webkit-tap-highlight-color: transparent;
	tap-highlight-color: transparent;
}

.harkness-header-categories .harkness-blog-nav-list a:hover,
.harkness-header-categories .harkness-blog-nav-list a:focus,
.harkness-header-categories .harkness-blog-nav-list a:active {
	background: transparent !important;
	background-color: transparent !important;
}

.harkness-back-to-shop {
	line-height: 1;
	vertical-align: middle;
}

.harkness-header-categories .harkness-blog-nav-list a:hover {
	color: var(--harkness-secondary) !important;
}

/* No underline on current category (e.g. All articles) */
.harkness-header-categories .harkness-blog-nav-list .current-cat a {
	color: var(--harkness-secondary) !important;
	border-bottom: none !important;
}

/* Make Rose Finder stand out in header category links. */
.harkness-header-categories .harkness-blog-nav-list .harkness-nav-rose-finder a {
	border: 1px solid rgba(255, 255, 255, 0.65) !important;
	border-radius: 999px;
	padding: 6px 12px !important;
	line-height: 1.1;
	background: rgba(255, 255, 255, 0.08) !important;
	background-color: rgba(255, 255, 255, 0.08) !important;
}

.harkness-header-categories .harkness-blog-nav-list .harkness-nav-rose-finder a:hover,
.harkness-header-categories .harkness-blog-nav-list .harkness-nav-rose-finder a:focus {
	background: var(--harkness-white) !important;
	background-color: var(--harkness-white) !important;
	color: var(--harkness-primary) !important;
	border-color: var(--harkness-white) !important;
}

.harkness-header-categories .harkness-blog-nav-list .harkness-nav-rose-finder.current-cat a,
.harkness-header-categories .harkness-blog-nav-list .harkness-nav-rose-finder.current-menu-item a,
.harkness-header-categories .harkness-blog-nav-list .harkness-nav-rose-finder.current_page_item a {
	background: var(--harkness-white) !important;
	background-color: var(--harkness-white) !important;
	color: var(--harkness-primary) !important;
	border-color: var(--harkness-white) !important;
}

@media screen and (min-width: 1400px) {
	.harkness-header-categories .harkness-blog-nav-list {
		gap: 0 1em;
		font-size: 15px !important;
	}
	.harkness-header-categories .harkness-blog-nav-list a {
		font-size: 15px !important;
	}
}

.main-navigation.toggled > div {
	display: flex !important;
}

.main-navigation.toggled a {
	color: var(--harkness-white) !important;
	background: transparent !important;
	background-color: transparent !important;
}

.main-navigation.toggled a:hover,
.main-navigation.toggled a:focus,
.main-navigation.toggled a:active {
	color: var(--harkness-secondary) !important;
	background: transparent !important;
	background-color: transparent !important;
}

.main-navigation ul {
	border-bottom-color: rgba(255, 255, 255, 0.15) !important;
}

.main-navigation li {
	border-top-color: rgba(255, 255, 255, 0.15) !important;
}

/* No divider between logo and nav */
@media screen and (min-width: 840px) {
	/* Parent Gazette: strip vertical offsets on header nav so logo, links, and actions share one baseline */
	body:not(.long-menu) .site-header .main-navigation,
	body.long-menu .site-header .main-navigation {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
		margin-left: 0 !important;
		padding-top: 0 !important;
		padding-bottom: 0 !important;
		padding-left: 0 !important;
	}
	.main-navigation {
		border-left: none !important;
		margin-left: 0;
		padding-left: 0;
	}
	/* Parent Gazette: white vertical bar before menu when body.long-menu */
	body.long-menu .main-navigation > div:before,
	body:not(.long-menu) .main-navigation > div:before {
		display: none !important;
		content: none !important;
		width: 0 !important;
		height: 0 !important;
		background: transparent !important;
	}
	/* Parent Gazette: grey border-left on .main-navigation when not long-menu */
	body:not(.long-menu) .main-navigation {
		border-left: none !important;
	}
	.site-header .main-navigation .harkness-nav-dropdown {
		display: flex;
	}
}

/* Parent Gazette (≥960px): vertical line on .site-branding before nav – remove on our header */
@media screen and (min-width: 960px) {
	body:not(.long-menu) .site-header .site-branding:before {
		display: none !important;
		content: none !important;
		width: 0 !important;
		height: 0 !important;
		background: transparent !important;
	}
}

/* Header shadow when scrolled (header stays static; is-scrolled added by header-scroll.js) */
.site-header.is-scrolled,
.fixed .site-header {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/*--------------------------------------------------------------
  Typography – Forum (body) & Raleway (headings)
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
	color: var(--harkness-body);
	font-family: var(--harkness-font-primary);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--harkness-font-secondary) !important;
	font-weight: 600;
	color: var(--harkness-primary);
}

/*--------------------------------------------------------------
  Links – charcoal, no blue
--------------------------------------------------------------*/
a {
	color: var(--harkness-primary) !important;
	font-weight: 600;
	text-decoration: none !important;
}

a:hover,
a:focus,
a:active {
	color: var(--harkness-secondary) !important;
}

/* Entry titles (post titles) – primary colour, no underline */
.archive .hentry .entry-title a,
.blog .hentry .entry-title a,
.search .hentry .entry-title a,
.entry-title a,
.page .entry-title,
.single .entry-title {
	color: var(--harkness-primary) !important;
	text-decoration: none !important;
}

/* Hero overlay: title/meta/breadcrumbs on image – light text for contrast */
.entry-hero .entry-title,
.entry-hero .entry-header-inner .entry-title {
	color: var(--harkness-white) !important;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 0, 0, 0.25);
}

.entry-hero .entry-meta,
.entry-hero .entry-meta a,
.entry-hero .harkness-single-meta-top,
.entry-hero .harkness-single-meta-top a,
.entry-hero .harkness-single-cat a,
.entry-hero .harkness-single-date,
.entry-hero .harkness-single-reading-time {
	color: rgba(255, 255, 255, 0.95) !important;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 0, 0, 0.2);
}

.entry-hero .harkness-single-cat a {
	background: rgba(255, 255, 255, 0.25);
	color: var(--harkness-white) !important;
}

/* Meta bar under hero image – white text, no grey gap above/below */
.entry-hero .post-thumbnail,
.entry-hero .harkness-single-thumbnail {
	margin-bottom: 0 !important;
	display: block;
	line-height: 0;
	text-align: center;
	height: min(380px, 50vh);
	height: min(380px, 50svh);
	min-height: 0;
	overflow: hidden;
}

.entry-hero .post-thumbnail img,
.entry-hero .harkness-single-thumbnail img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	vertical-align: top;
	margin: 0 auto;
}

/* Meta bar – below featured image: cleaner, more breathing room */
.entry-hero .harkness-single-meta-top {
	background: var(--harkness-primary);
	color: #fff !important;
	padding: 18px 28px;
	margin: 0 !important;
	width: 100%;
	box-sizing: border-box;
	border: none;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	font-family: var(--harkness-font-secondary);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	line-height: 1.4;
}

.entry-hero .harkness-single-meta-top,
.entry-hero .harkness-single-meta-top a,
.entry-hero .harkness-single-meta-top span,
.entry-hero .harkness-single-cat a,
.entry-hero .harkness-single-date,
.entry-hero .harkness-single-reading-time,
.entry-hero .harkness-single-meta-top time {
	color: #fff !important;
	text-shadow: none;
}

.entry-hero .harkness-single-meta-top .harkness-single-cat a {
	background: rgba(255, 255, 255, 0.18);
	padding: 6px 14px;
	border-radius: 3px;
	margin-right: 0.5em;
}

.entry-hero .harkness-single-meta-top .harkness-single-date::before {
	content: " · ";
	opacity: 0.8;
	margin: 0 0.25em;
}

.entry-hero .harkness-single-meta-top .harkness-single-reading-time::before {
	content: " · ";
	opacity: 0.8;
	margin: 0 0.25em;
}

.entry-hero .harkness-single-byline,
.entry-hero .harkness-single-byline a {
	color: rgba(255, 255, 255, 0.9) !important;
	text-shadow: none;
}
.entry-hero .harkness-single-meta-top .harkness-single-byline::before {
	content: " · ";
	opacity: 0.8;
	margin: 0 0.25em;
}

.entry-hero .harkness-single-cat a:hover {
	background: rgba(255, 255, 255, 0.35);
	color: #fff !important;
}

/* Breadcrumbs on hero (Yoast, etc.) */
.entry-hero .breadcrumb,
.entry-hero .breadcrumb a,
.entry-hero [class*="breadcrumb"] a,
.entry-hero [class*="breadcrumb"] {
	color: rgba(255, 255, 255, 0.9) !important;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Ensure hero overlay has enough contrast (all breakpoints) */
.entry-hero .entry-header-wrapper {
	background-image: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2) 40%, transparent);
}

.entry-hero {
	overflow: hidden;
}

/* Hero: title + meta over featured image */
.harkness-single-hero {
	position: relative;
	display: block;
}

.harkness-single-hero .harkness-single-thumbnail {
	display: block;
	line-height: 0;
	text-align: center;
	/* One height rule avoids reflow when max-height vs height resolve differently */
	height: min(380px, 50vh);
	height: min(380px, 50svh);
	min-height: 0;
	overflow: hidden;
}

.harkness-single-hero .harkness-single-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	margin-left: auto;
	margin-right: auto;
	display: block;
}

.harkness-single-hero-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 2em 1.5em 1.5em;
	background: linear-gradient( to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.4) 45%, transparent );
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	text-align: center;
	gap: 0.75em;
}

.harkness-single-hero-overlay .entry-title {
	margin: 0;
	max-width: 100%;
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	line-height: 1.2;
	color: #fff !important;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.3);
}

.harkness-single-hero-overlay .harkness-single-meta-top {
	background: transparent;
	border-top: none;
	padding: 0;
	margin: 0;
	font-size: 12px;
	letter-spacing: 0.05em;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 0 0.5em;
}

.harkness-single-hero-overlay .harkness-single-meta-top .harkness-single-cat a {
	background: rgba(255, 255, 255, 0.25);
}

@media screen and (min-width: 640px) {
	.harkness-single-hero-overlay {
		padding: 2.5em 2em 2em;
	}
	.harkness-single-hero-overlay .entry-title {
		font-size: clamp(2rem, 4vw, 2.75rem);
	}
}

/* Home intro – below category hero on front page */
.harkness-home-intro {
	background: var(--harkness-cream);
	padding: 1.5em 20px 1.75em;
	text-align: center;
	border-bottom: 1px solid rgba(80, 78, 78, 0.08);
}

.harkness-home-intro-inner {
	max-width: 640px;
	margin: 0 auto;
}

.harkness-home-intro-title {
	font-family: var(--harkness-font-secondary);
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--harkness-primary);
	margin: 0 0 0.35em;
	letter-spacing: 0.02em;
}

.harkness-home-intro-text {
	font-family: var(--harkness-font-primary);
	font-size: 1rem;
	line-height: 1.6;
	color: var(--harkness-body);
	margin: 0;
}

.harkness-home-divider {
	border: 0;
	height: 0;
	border-top: 1px solid rgba(80, 78, 78, 0.12);
	margin: 0 20px 1.5em;
}

@media screen and (min-width: 640px) {
	.harkness-home-intro {
		padding: 2em 24px 2.25em;
	}
	.harkness-home-intro-title {
		font-size: 1.75rem;
	}
	.harkness-home-divider {
		margin-left: 24px;
		margin-right: 24px;
		margin-bottom: 2em;
	}
}

/* Inspiration category hero – editorial split (image left, content right) */
.harkness-inspiration-hero {
	background: var(--harkness-cream);
	padding: 0 0 2em;
	margin-bottom: 0;
}

/* Front page: one vertical rhythm between trust bar → hero → 3 cards → tags → archive/filters (matches hero top padding) */
body.home {
	--harkness-home-section-v-gap: 1.35em;
	/* Space between Popular topics bar and filter bar (= section gap) */
	--harkness-home-toolbar-stack-gap: var(--harkness-home-section-v-gap);
}

@media screen and (max-width: 767px) {
	body.home {
		--harkness-home-section-v-gap: 1.1em;
		--harkness-home-toolbar-stack-gap: var(--harkness-home-section-v-gap);
	}
}

/* Home hero – same width as post cards: section padded like .content-area, inner max 1200px + 24px */
.harkness-home-hero.harkness-inspiration-hero {
	padding: var(--harkness-home-section-v-gap, 1.35em) 24px var(--harkness-home-section-v-gap, 1.35em);
	box-sizing: border-box;
}

.home .harkness-home-hero .harkness-inspiration-hero-inner,
.category .harkness-home-hero .harkness-inspiration-hero-inner {
	max-width: 1200px !important;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding-left: 24px;
	padding-right: 24px;
	box-sizing: border-box;
}

/* Shadow sits inside hero section padding (no extra margin — keeps gap = --harkness-home-section-v-gap) */
.home .harkness-home-hero .harkness-inspiration-hero-link {
	margin-bottom: 0;
}

/* -------- Home front polish: hero, feature cards, tags -------- */

/* Hero image → text: soft edge blend (desktop split layout only) */
@media screen and (min-width: 768px) {
	.home .harkness-home-hero .harkness-inspiration-hero-image {
		position: relative;
	}

	.home .harkness-home-hero .harkness-inspiration-hero-image::after {
		content: "";
		position: absolute;
		inset: 0;
		z-index: 1;
		pointer-events: none;
		background: linear-gradient(
			90deg,
			transparent 0%,
			transparent 42%,
			rgba(255, 255, 255, 0.14) 72%,
			rgba(255, 255, 255, 0.42) 100%
		);
	}
}

@media screen and (min-width: 768px) {
	.home .harkness-home-hero .harkness-inspiration-hero-link {
		height: 340px;
		min-height: 340px;
		transition: box-shadow 0.28s ease, transform 0.28s ease;
	}

	.home .harkness-home-hero .harkness-inspiration-hero-image {
		height: 340px;
		min-height: 340px;
	}

	/*
	 * Stack from top so overflow clips from the bottom only (centered flex + overflow
	 * was clipping mid-excerpt with a “half line” above READ MORE).
	 */
	.home .harkness-home-hero .harkness-inspiration-hero-content {
		height: 100%;
		overflow: hidden;
		justify-content: flex-start;
		box-sizing: border-box;
	}

	/* Don’t let label/title/CTA compress the excerpt’s line-clamp box */
	.home .harkness-home-hero .harkness-inspiration-hero-content > .harkness-inspiration-hero-label,
	.home .harkness-home-hero .harkness-inspiration-hero-content > .harkness-inspiration-hero-title,
	.home .harkness-home-hero .harkness-inspiration-hero-content > .harkness-inspiration-hero-cta {
		flex-shrink: 0;
	}

	.home .harkness-home-hero .harkness-inspiration-hero-link:hover,
	.home .harkness-home-hero .harkness-inspiration-hero-link:focus-visible {
		transform: translateY(-3px);
		box-shadow: 0 14px 36px rgba(80, 78, 78, 0.14);
	}
}

@media (prefers-reduced-motion: reduce) {
	.home .harkness-home-hero .harkness-inspiration-hero-link {
		transition: none;
	}

	.home .harkness-home-hero .harkness-inspiration-hero-link:hover,
	.home .harkness-home-hero .harkness-inspiration-hero-link:focus-visible {
		transform: none;
	}
}

/* Feature row cards: slightly stronger lift than grid cards */
.harkness-home-feature-row .harkness-home-feature-row-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 32px rgba(80, 78, 78, 0.13);
}

.harkness-home-feature-row .harkness-home-feature-row-card:focus-within {
	box-shadow: 0 12px 32px rgba(80, 78, 78, 0.13);
	outline: none;
}

.harkness-home-feature-row .harkness-home-feature-row-card .harkness-read-more:focus-visible {
	outline: 2px solid var(--harkness-primary);
	outline-offset: 2px;
}

/* Category archive banners – stronger David Austin–style hero (full width + depth) */
.harkness-category-archive-banner .harkness-inspiration-hero-link {
	box-shadow: 0 4px 28px rgba(80, 78, 78, 0.14);
}
.harkness-category-archive-banner .harkness-inspiration-hero-image {
	min-height: 240px;
}
@media screen and (min-width: 768px) {
	.harkness-category-archive-banner .harkness-inspiration-hero-link {
		min-height: 340px;
	}
	.harkness-category-archive-banner .harkness-inspiration-hero-image {
		min-height: 340px;
	}
}

/* Homepage products – same width as blog posts above (1200px + 24px padding) */
.harkness-home-products {
	background: var(--harkness-cream);
	padding: 2.5em 24px 3em;
	border-top: 1px solid rgba(80, 78, 78, 0.1);
}

.harkness-home-products-inner {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding: 0 24px;
	box-sizing: border-box;
}

.harkness-home-products-title {
	font-family: var(--harkness-font-primary);
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--harkness-primary);
	margin: 0 0 0.35em;
}

.harkness-home-products-header {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: 1em;
}

.harkness-home-products-header-left {
	display: flex;
	align-items: center;
	gap: 0.5em 1em;
	flex-wrap: wrap;
}

.harkness-home-products-nav {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	flex-shrink: 0;
}

.harkness-home-products-desc {
	font-family: var(--harkness-font-secondary);
	font-size: 1rem;
	color: var(--harkness-body);
	margin: 0 0 0.35em;
}

.harkness-home-products-trust {
	font-family: var(--harkness-font-secondary);
	font-size: 0.875rem;
	color: var(--harkness-body);
	margin: 0 0 1.25em;
	line-height: 1.45;
	max-width: 38em;
}

/* Force carousel layout (override .harkness-shop-the-scene-grid grid when used here) */
.harkness-home-products-carousel-wrap .harkness-home-products-carousel,
.harkness-home-products .harkness-shop-the-scene-grid {
	display: flex !important;
	flex-wrap: nowrap !important;
	grid-template-columns: none !important;
}

/* Product carousel row: arrows + scroll area */
.harkness-home-products-carousel-row {
	display: block;
	width: 100%;
}
.harkness-products-carousel-prev,
.harkness-products-carousel-next {
	display: inline-flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	padding: 0;
	border: 1px solid rgba(80, 78, 78, 0.25);
	background: var(--harkness-white);
	color: var(--harkness-primary);
	font-size: 1.1rem;
	line-height: 1;
	cursor: pointer;
	border-radius: var(--harkness-card-radius);
	transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.harkness-products-carousel-prev:hover:not(:disabled),
.harkness-products-carousel-next:hover:not(:disabled) {
	border-color: var(--harkness-secondary);
	background: var(--harkness-secondary);
	color: var(--harkness-white);
}
.harkness-products-carousel-prev:focus:not(:focus-visible),
.harkness-products-carousel-next:focus:not(:focus-visible) {
	outline: none;
}
.harkness-products-carousel-prev:focus-visible,
.harkness-products-carousel-next:focus-visible {
	outline: 2px solid var(--harkness-secondary);
	outline-offset: 3px;
}
.harkness-products-carousel-prev:disabled,
.harkness-products-carousel-next:disabled {
	opacity: 0.38;
	cursor: not-allowed;
}
.harkness-home-products-carousel-row .harkness-home-products-carousel-wrap {
	flex: 1 1 auto;
	min-width: 0;
}

/* Product carousel – 4 visible on desktop, swipe/scroll left-right, same width as blog grid */
.harkness-home-products-carousel-wrap {
	overflow-x: scroll;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	touch-action: pan-x;
	overscroll-behavior-x: contain;
	scroll-snap-type: none;
	scroll-behavior: smooth;
	margin: 0 -24px 0;
	padding: 0 24px 12px;
	width: 100%;
	position: relative;
}

.harkness-home-products-carousel {
	display: flex;
	flex-wrap: nowrap;
	align-items: stretch;
	gap: 1.5em;
	min-width: min-content;
}
/* One sizing system for all horizontal product carousels (homepage + Shop the scene, etc.) */
.harkness-home-products-carousel .harkness-shop-card,
.harkness-shop-scene-carousel .harkness-shop-card {
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
	min-width: 0;
	flex: 0 0 260px;
	width: 260px;
	max-width: 260px;
	touch-action: pan-x;
}
.harkness-home-products-carousel .harkness-shop-card a {
	touch-action: pan-x;
}
.harkness-shop-scene-carousel .harkness-shop-card a {
	touch-action: pan-x;
}
/* Same image proportions everywhere – fixed slot so placeholders and photos align */
.harkness-home-products-carousel .harkness-shop-card-image,
.harkness-shop-scene-carousel .harkness-shop-card-image {
	display: block;
	flex-shrink: 0;
	width: 100%;
	aspect-ratio: 4 / 5;
	min-height: 180px;
	height: auto;
	max-height: none;
	overflow: hidden;
	box-sizing: border-box;
	position: relative;
	background: linear-gradient(135deg, var(--harkness-secondary) 0%, var(--harkness-primary) 100%);
}

.harkness-shop-card-image-img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	transition: transform 0.35s ease;
}

.harkness-shop-card-badge {
	position: absolute;
	right: 10px;
	bottom: 10px;
	z-index: 2;
	max-width: calc(100% - 20px);
	font-family: var(--harkness-font-secondary);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: var(--harkness-primary);
	background: var(--harkness-white);
	padding: 6px 11px;
	border-radius: 999px;
	box-shadow: 0 1px 6px rgba(80, 78, 78, 0.14);
	line-height: 1.2;
	text-align: center;
	pointer-events: none;
}
.harkness-home-products-carousel .harkness-shop-card-content,
.harkness-shop-scene-carousel .harkness-shop-card-content {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	min-height: 0;
}

/* Mobile: prevent clipped cards – consistent padding, no negative-margin bleed, arrows visible */
@media screen and (max-width: 839px) {
	.harkness-home-products {
		padding-left: 16px;
		padding-right: 16px;
	}
	.harkness-home-products-inner {
		padding-left: 0;
		padding-right: 0;
		max-width: 100%;
	}
	.harkness-home-products-carousel-row { gap: 0; }
	.harkness-home-products-carousel-wrap {
		margin-left: 0;
		margin-right: 0;
		padding-left: 0;
		padding-right: 0;
		min-width: 0;
	}
	.harkness-home-products-carousel .harkness-shop-card,
	.harkness-shop-scene-carousel .harkness-shop-card {
		flex: 0 0 min(260px, 72vw);
		width: min(260px, 72vw);
		max-width: min(260px, 72vw);
	}
	.harkness-products-carousel-prev,
	.harkness-products-carousel-next {
		width: 40px;
		height: 40px;
		flex-shrink: 0;
	}
}
@media screen and (max-width: 480px) {
	.harkness-home-products-carousel .harkness-shop-card,
	.harkness-shop-scene-carousel .harkness-shop-card {
		flex: 0 0 min(220px, 75vw);
		width: min(220px, 75vw);
		max-width: min(220px, 75vw);
	}
}

@media screen and (min-width: 960px) {
	.harkness-home-products-carousel-wrap {
		margin-left: 0;
		margin-right: 0;
		padding-left: 0;
		padding-right: 0;
	}
	/* 4 cards visible; card width so 4 fit in same width as blog content (1152px) */
	.harkness-home-products-carousel {
		gap: 1.5em;
	}
	.harkness-home-products-carousel .harkness-shop-card,
	.harkness-shop-scene-carousel .harkness-shop-card {
		flex: 0 0 270px;
		width: 270px;
		max-width: 270px;
	}
}

.harkness-home-products-cta {
	margin: 1.5em 0 0;
}

/* Homepage: three split cards (below hero). Popular topics + filters are in #primary (.harkness-blog-toolbar-stack).
   Bottom padding = cream gap before toolbar stack (same token as gap between the two toolbar panels). */
.harkness-home-feature-row {
	padding: 0 0 var(--harkness-home-section-v-gap, 1.35em);
	margin-top: 0;
	box-sizing: border-box;
}

/* Topics + filters column (home + tag archive): one gap between panels; sticky on home only (see media query) */
.harkness-blog-toolbar-stack {
	display: flex;
	flex-direction: column;
	gap: var(--harkness-home-toolbar-stack-gap, var(--harkness-home-section-v-gap, 1.35em));
	width: 100%;
	min-width: 0;
	margin: 0;
	margin-bottom: var(--harkness-home-section-v-gap, 1.35em);
	box-sizing: border-box;
}

.harkness-blog-toolbar-stack .harkness-home-tags-compact {
	margin-top: 0;
}

.harkness-blog-toolbar-stack .harkness-archive-filters-toolbar {
	margin-bottom: 0;
}

.harkness-home-feature-row-shell {
	max-width: 1200px !important;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding-left: 24px;
	padding-right: 24px;
	box-sizing: border-box;
}

.harkness-home-feature-row-inner {
	display: grid;
	grid-template-columns: 1fr;
	/* Equal vertical stack gaps on small screens */
	column-gap: 1.25rem;
	row-gap: 1.25rem;
	min-width: 0;
}

.harkness-home-feature-row .harkness-home-feature-cat-card {
	margin: 0;
	background: var(--harkness-card-surface) !important;
}

.harkness-home-feature-cat-card-inner {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	align-items: stretch;
	background: var(--harkness-card-surface);
	min-height: 0;
}

.harkness-home-feature-row .harkness-home-feature-row-card .harkness-card-content {
	padding: 0.85em 0.95em 0.9em;
	background: var(--harkness-card-surface) !important;
}

.harkness-home-feature-row .harkness-home-feature-row-card .harkness-card-image {
	max-height: none;
	min-height: 130px;
	height: 100%;
}

.harkness-home-feature-row .harkness-home-feature-row-card .harkness-card-image img {
	height: 100%;
}

.harkness-home-feature-row .harkness-home-feature-row-card .entry-summary {
	margin-bottom: 0.55em;
	font-size: 0.88rem;
	line-height: 1.45;
}

.harkness-home-feature-row .harkness-home-feature-row-card .entry-summary p {
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin: 0;
}

/* Popular topics bar — shared panel tokens with .harkness-archive-filters-toolbar-inner */
.harkness-home-tags-compact {
	width: 100%;
	margin: 0;
	/* Match .harkness-archive-filters-toolbar-inner: same padding + min-height so both white bars align */
	min-height: var(--harkness-blog-toolbar-panel-min-height, 3.625rem);
	padding: 0.65em 1.15em;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.55em 0.85em;
	background: var(--harkness-blog-toolbar-panel-bg, var(--harkness-card-surface));
	border-radius: var(--harkness-card-radius);
	box-shadow: var(--harkness-blog-toolbar-panel-shadow);
	border: var(--harkness-blog-toolbar-panel-border);
	box-sizing: border-box;
}

.harkness-home-tags-compact-label {
	font-family: var(--harkness-font-secondary);
	font-size: 0.6875rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--harkness-body);
	font-weight: 600;
	margin: 0;
	flex-shrink: 0;
	line-height: 1.2;
}

/* Compact tag chips; left-clustered (no stretching across the bar) */
.harkness-home-tags-compact-list {
	flex: 1 1 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	align-content: center;
	column-gap: 0.5rem;
	row-gap: 0.4rem;
	list-style: none;
	margin: 0;
	padding: 0;
	min-width: 0;
}

.harkness-home-tags-compact-list li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.harkness-home-tags-compact-list a,
.harkness-home-tags-compact-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--harkness-font-secondary);
	font-size: 0.8125rem;
	font-weight: 500;
	min-height: 2.5rem;
	padding: 0.375rem 0.875rem;
	box-sizing: border-box;
	/* Rounded rectangle — same family as filter dropdowns, not pill */
	border-radius: var(--harkness-outline-btn-radius);
	text-decoration: none !important;
	color: var(--harkness-primary) !important;
	background: var(--harkness-card-surface);
	border: 1px solid rgba(80, 78, 78, 0.22);
	line-height: 1.25;
	transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.harkness-home-tags-compact-link.is-active {
	background: var(--harkness-primary);
	color: var(--harkness-white) !important;
	border-color: var(--harkness-primary);
	box-shadow: 0 1px 4px rgba(80, 78, 78, 0.15);
}

.harkness-home-tags-compact-link:focus-visible {
	outline: 2px solid var(--harkness-secondary);
	outline-offset: 2px;
}

.harkness-home-tags-compact-list a:hover,
.harkness-home-tags-compact-list a:focus,
.harkness-home-tags-compact-link:hover:not(.is-active),
.harkness-home-tags-compact-link:focus:not(.is-active) {
	background: var(--harkness-primary);
	color: var(--harkness-white) !important;
	border-color: var(--harkness-primary);
	transform: translateY(-1px);
	box-shadow: 0 2px 8px rgba(80, 78, 78, 0.12);
}

.harkness-home-tags-compact-link.is-active:hover,
.harkness-home-tags-compact-link.is-active:focus {
	background: var(--harkness-primary);
	color: var(--harkness-white) !important;
	border-color: var(--harkness-primary);
	transform: translateY(-1px);
	box-shadow: 0 2px 10px rgba(80, 78, 78, 0.18);
}

@media (prefers-reduced-motion: reduce) {
	.harkness-home-tags-compact-list a,
	.harkness-home-tags-compact-link {
		transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
	}

	.harkness-home-tags-compact-list a:hover,
	.harkness-home-tags-compact-list a:focus,
	.harkness-home-tags-compact-link:hover,
	.harkness-home-tags-compact-link:focus {
		transform: none;
	}
}

/* Far-right action — uses remaining visual balance when tag row is short */
.harkness-home-tags-compact-browse {
	flex-shrink: 0;
	margin-left: auto;
	font-family: var(--harkness-font-secondary);
	font-size: 0.65rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-decoration: none !important;
	color: var(--harkness-primary) !important;
	padding: 0.35em 0.15em 0.35em 0.5em;
	line-height: 1.2;
	white-space: nowrap;
	border-left: 1px solid rgba(80, 78, 78, 0.12);
	align-self: stretch;
	display: inline-flex;
	align-items: center;
	transition: color 0.18s ease, opacity 0.18s ease;
}

.harkness-home-tags-compact-browse:hover,
.harkness-home-tags-compact-browse:focus,
.harkness-home-tags-compact-browse:focus-visible {
	color: var(--harkness-secondary) !important;
	opacity: 0.92;
}

.harkness-home-tags-compact-browse-arrow {
	display: inline-block;
	font-weight: 600;
	transition: transform 0.22s ease;
}

.harkness-home-tags-compact-browse:hover .harkness-home-tags-compact-browse-arrow,
.harkness-home-tags-compact-browse:focus-visible .harkness-home-tags-compact-browse-arrow {
	transform: translateX(5px);
}

/* Narrow screens: label + tags wrap; keep browse on its own row, right-aligned */
@media screen and (max-width: 520px) {
	.harkness-home-tags-compact {
		align-items: flex-start;
	}

	.harkness-home-tags-compact-list {
		flex: 1 1 calc(100% - 7rem);
	}

	.harkness-home-tags-compact-browse {
		display: flex;
		margin-left: 0;
		border-left: 0;
		border-top: 1px solid rgba(80, 78, 78, 0.1);
		padding: 0.45em 0 0;
		margin-top: 0.15em;
		width: 100%;
		justify-content: flex-end;
	}
}

@media screen and (min-width: 960px) {
	.harkness-home-feature-row-inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		/* Explicit equal gutters between all three cards */
		column-gap: 1.25rem;
		row-gap: 1.25rem;
		align-items: stretch;
	}

	.harkness-home-feature-row .harkness-home-feature-row-card {
		height: 100%;
		display: flex;
		flex-direction: column;
	}

	.harkness-home-feature-row .harkness-home-feature-row-card .harkness-home-feature-cat-card-inner {
		flex: 1;
		min-height: 158px;
	}
}

@media screen and (max-width: 959px) {
	.harkness-home-feature-cat-card-inner {
		grid-template-columns: 1fr;
	}

	.harkness-home-feature-row .harkness-home-feature-row-card .harkness-card-image {
		min-height: 160px;
	}

	.harkness-home-tags-compact {
		min-height: var(--harkness-blog-toolbar-panel-min-height, 3.625rem);
		padding: 0.65em 1em;
	}
}

/* Small home viewports: feature row bottom rhythm */
@media screen and (max-width: 767px) {
	.harkness-home-feature-row {
		padding: 0 0 var(--harkness-home-section-v-gap, 1.1em);
		margin-top: 0;
	}
}

@media screen and (max-width: 639px) {
	.harkness-home-feature-row-shell {
		padding-left: 16px;
		padding-right: 16px;
	}

	/* Match .harkness-archive-filters-toolbar-inner mobile padding */
	.harkness-home-tags-compact {
		padding: 0.9em 1em;
		min-height: 0;
	}
}

.harkness-inspiration-hero-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.harkness-inspiration-hero-link {
	display: grid;
	grid-template-columns: 1fr;
	min-width: 0;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	text-decoration: none;
	color: inherit;
	background: var(--harkness-card-surface);
	box-shadow: 0 2px 12px rgba(80, 78, 78, 0.1);
	border-radius: var(--harkness-card-radius);
	overflow: hidden;
	transition: box-shadow 0.25s ease;
}

.harkness-inspiration-hero-link:hover {
	box-shadow: 0 8px 28px rgba(80, 78, 78, 0.15);
}

.harkness-inspiration-hero-link:hover .harkness-inspiration-hero-cta {
	background: var(--harkness-primary);
	color: var(--harkness-white) !important;
	border-color: var(--harkness-primary);
}

@media screen and (min-width: 768px) {
	.harkness-inspiration-hero-link {
		grid-template-columns: 1fr 1fr;
		min-height: 360px;
	}
}

.harkness-inspiration-hero-image {
	position: relative;
	min-height: 220px;
	overflow: hidden;
	background-color: var(--harkness-secondary);
	background-size: cover;
	background-position: center;
}

/* Real <img> hero (home / LCP); category banners may still use background-image */
.harkness-inspiration-hero-image .harkness-inspiration-hero-img {
	position: relative;
	z-index: 0;
	display: block;
	width: 100%;
	height: 100%;
	min-height: 220px;
	object-fit: cover;
	object-position: center;
}

@media screen and (min-width: 768px) {
	.harkness-inspiration-hero-link > .harkness-inspiration-hero-image {
		align-self: stretch;
		min-height: 0;
		height: 100%;
	}
}

.harkness-inspiration-hero-placeholder {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, var(--harkness-secondary) 0%, var(--harkness-primary) 100%);
	opacity: 0.6;
}

.harkness-inspiration-hero-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: stretch;
	min-width: 0;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	padding: 2.5em 1.5em 2em;
	text-align: left;
}

/* Flex items default to min-width:auto — without this, line-clamp / long text can overflow horizontally */
.harkness-inspiration-hero-content > * {
	min-width: 0;
	max-width: 100%;
	box-sizing: border-box;
}

@media screen and (min-width: 768px) {
	.harkness-inspiration-hero-content {
		padding: 3em 2.5em 2.5em 2em;
		max-width: 520px;
	}
}

.harkness-inspiration-hero-label {
	font-family: var(--harkness-font-secondary);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--harkness-text-muted);
	margin-bottom: 0.5em;
}

.harkness-inspiration-hero-title {
	font-family: var(--harkness-font-primary) !important;
	font-size: 1.5rem;
	line-height: 1.3;
	font-weight: 600;
	color: var(--harkness-primary);
	margin: 0 0 0.5em;
	max-width: 100%;
	overflow-wrap: break-word;
	word-wrap: break-word;
}

@media screen and (min-width: 768px) {
	.harkness-inspiration-hero-title {
		font-size: 1.75rem;
	}
}

.harkness-inspiration-hero-excerpt {
	font-family: var(--harkness-font-secondary);
	font-size: 14px;
	line-height: 1.5;
	color: var(--harkness-body);
	margin: 0 0 0.6em;
	min-width: 0;
	width: 100%;
	max-width: 100%;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	overflow-wrap: break-word;
	word-wrap: break-word;
	word-break: normal;
}
/* Category archive + home hero: more lines than default 2 (was clipping mid-sentence) */
.harkness-category-archive-banner .harkness-inspiration-hero-excerpt,
.home .harkness-home-hero.harkness-inspiration-hero .harkness-inspiration-hero-excerpt {
	-webkit-line-clamp: 5;
	line-clamp: 5;
}

/* Home hero excerpt: same secondary type as 3-card row (not bold) */
.home .harkness-home-hero.harkness-inspiration-hero .harkness-inspiration-hero-excerpt {
	font-size: 0.88rem;
	line-height: 1.45;
	font-weight: 400 !important;
	word-break: normal;
	overflow-wrap: normal;
	hyphens: none;
	-webkit-hyphens: none;
	-webkit-font-smoothing: antialiased;
	/* Prevent flex from shrinking the clamp box (avoids mid-line clip vs READ MORE) */
	flex-shrink: 0;
}

.harkness-category-archive-banner .harkness-inspiration-hero-excerpt {
	font-size: 0.88rem;
	line-height: 1.45;
	font-weight: 400 !important;
	word-break: normal;
	overflow-wrap: normal;
	hyphens: none;
	-webkit-hyphens: none;
	-webkit-font-smoothing: antialiased;
	flex-shrink: 0;
}

.home .harkness-home-hero.harkness-inspiration-hero .harkness-inspiration-hero-excerpt strong,
.home .harkness-home-hero.harkness-inspiration-hero .harkness-inspiration-hero-excerpt b,
.harkness-category-archive-banner .harkness-inspiration-hero-excerpt strong,
.harkness-category-archive-banner .harkness-inspiration-hero-excerpt b {
	font-weight: 400 !important;
}

.harkness-inspiration-hero-cta {
	display: inline-block;
	align-self: flex-start;
	font-family: var(--harkness-font-secondary);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 10px 20px;
	border: 1px solid var(--harkness-primary);
	border-radius: var(--harkness-outline-btn-radius);
	color: var(--harkness-primary);
	background: transparent;
	transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.harkness-inspiration-hero-cta:hover,
.harkness-inspiration-hero-cta:focus {
	background: var(--harkness-primary);
	color: var(--harkness-white) !important;
	border-color: var(--harkness-primary);
}

/* Mobile / small screens: match featured hero to blog cards (image height, cream body, shadow) */
@media screen and (max-width: 767px) {
	.harkness-inspiration-hero-inner {
		min-width: 0;
		max-width: 100%;
	}
	.harkness-category-archive-banner .harkness-inspiration-hero-link {
		min-height: 0;
	}
	.harkness-category-archive-banner .harkness-inspiration-hero-image {
		min-height: 0;
	}
	.harkness-inspiration-hero-image {
		min-width: 0;
		max-width: 100%;
		min-height: 0;
		max-height: 200px;
		height: 200px;
		background-size: cover;
		background-position: center;
	}
	.harkness-inspiration-hero-image .harkness-inspiration-hero-img {
		min-height: 0;
		height: 100%;
		max-height: 200px;
		object-fit: cover;
	}
	.harkness-inspiration-hero-content {
		justify-content: flex-start;
		padding: 1em 1.15em 1.15em;
		background: var(--harkness-card-surface);
		width: 100%;
		overflow-wrap: normal;
		word-break: normal;
		hyphens: none;
		-webkit-hyphens: none;
	}
	.harkness-inspiration-hero-title {
		overflow-wrap: normal;
		word-break: normal;
		width: 100%;
		hyphens: none;
		-webkit-hyphens: none;
	}
	/*
	 * iOS/WebKit: display:-webkit-box + line-clamp inside flex often ignores parent width and
	 * draws text past the viewport. Use normal block flow + max-height on small screens.
	 */
	.harkness-inspiration-hero-excerpt {
		display: block !important;
		-webkit-box-orient: unset !important;
		-webkit-line-clamp: unset !important;
		line-clamp: unset !important;
		overflow: hidden;
		overflow-wrap: normal !important;
		word-break: normal !important;
		width: 100% !important;
		min-width: 0 !important;
		max-height: calc(1.5em * 2);
		hyphens: none;
		-webkit-hyphens: none;
	}
	/*
	 * Home + category hero: keep -webkit-line-clamp here (block + max-height cut mid-line).
	 * Parent has min-width:0; add overflow-x containment so clamp respects width on iOS.
	 */
	.home .harkness-home-hero.harkness-inspiration-hero .harkness-inspiration-hero-excerpt,
	.harkness-category-archive-banner .harkness-inspiration-hero-excerpt {
		display: -webkit-box !important;
		-webkit-box-orient: vertical !important;
		-webkit-line-clamp: 5 !important;
		line-clamp: 5 !important;
		max-height: none !important;
		overflow: hidden !important;
	}
	.home .harkness-home-hero .harkness-inspiration-hero-content,
	.harkness-category-archive-banner .harkness-inspiration-hero-content {
		overflow-x: hidden;
	}
	.harkness-inspiration-hero-link {
		box-shadow: 0 2px 10px rgba(80, 78, 78, 0.06);
	}
	.harkness-inspiration-hero-title {
		font-size: 1.15rem;
		line-height: 1.28;
		margin: 0 0 0.35em;
	}
	.harkness-home-hero.harkness-inspiration-hero {
		padding-top: var(--harkness-home-section-v-gap, 1.1em);
		padding-left: 16px;
		padding-right: 16px;
		padding-bottom: var(--harkness-home-section-v-gap, 1.1em);
	}
	.home .harkness-home-hero .harkness-inspiration-hero-inner,
	.category .harkness-home-hero .harkness-inspiration-hero-inner {
		padding-left: 0;
		padding-right: 0;
	}
	.harkness-inspiration-hero-inner {
		padding-left: 0;
		padding-right: 0;
	}
}

/* Newsletter signup – above footer; no gap between this and footer */
.harkness-newsletter {
	position: relative;
	background: var(--harkness-primary);
	color: var(--harkness-white);
	padding: 2em 20px;
	text-align: center;
	margin-bottom: 0 !important;
}
/* Single full-width top edge so cream/footer junction doesn’t “step” at viewport sides */
.harkness-newsletter::before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 1px;
	background: var(--harkness-primary);
}

/* Remove gap between newsletter and footer: whatever follows (sidebar or footer) gets no top space and same dark background */
.harkness-newsletter + * {
	margin-top: 0 !important;
	padding-top: 0 !important;
	background: var(--harkness-primary);
}

.harkness-newsletter-inner {
	max-width: 560px;
	margin: 0 auto;
}

.harkness-newsletter-title {
	font-family: var(--harkness-font-primary);
	font-size: 1.35rem;
	font-weight: 600;
	margin: 0 0 0.35em;
	color: var(--harkness-white);
}

.harkness-newsletter-text {
	font-family: var(--harkness-font-secondary);
	font-size: 0.95rem;
	line-height: 1.5;
	margin: 0 0 1em;
	opacity: 0.95;
}

.harkness-newsletter-cta {
	display: inline-block;
	font-family: var(--harkness-font-secondary);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.02em;
	padding: 10px 20px;
	border: 1px solid rgba(255, 255, 255, 0.9);
	border-radius: var(--harkness-outline-btn-radius);
	background: transparent;
	color: var(--harkness-white) !important;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	line-height: 1.3;
}

/* Keep newsletter CTA as outlined white button (override global button rule). */
button.harkness-newsletter-cta,
input[type="button"].harkness-newsletter-cta,
input[type="submit"].harkness-newsletter-cta {
	background: transparent !important;
	border: 1px solid rgba(255, 255, 255, 0.9) !important;
	color: var(--harkness-white) !important;
}

.harkness-newsletter-cta:hover,
.harkness-newsletter-cta:focus {
	background: var(--harkness-white);
	color: var(--harkness-primary) !important;
}
button.harkness-newsletter-cta:hover,
button.harkness-newsletter-cta:focus {
	background: var(--harkness-white) !important;
	border-color: var(--harkness-white) !important;
	color: var(--harkness-primary) !important;
}

.harkness-newsletter-cta {
	cursor: pointer;
}

.harkness-newsletter-modal[hidden] {
	display: none !important;
}

.harkness-newsletter-modal {
	position: fixed;
	inset: 0;
	z-index: 99999;
	background: transparent !important;
}

.harkness-newsletter-modal__backdrop {
	position: absolute;
	inset: 0;
	background: transparent !important;
	opacity: 0 !important;
}

.harkness-newsletter-modal__dialog {
	position: relative;
	max-width: 460px;
	margin: min(10vh, 80px) auto 0;
	background: var(--harkness-white);
	color: var(--harkness-text);
	padding: 1.5em 1.25em 1.25em;
	border-radius: 8px;
	box-shadow: 0 12px 34px rgba(0, 0, 0, 0.25);
	z-index: 1;
}

.harkness-newsletter-modal__close {
	position: absolute;
	top: 8px;
	right: 8px;
	border: 0;
	background: transparent;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	color: var(--harkness-primary);
}

.harkness-newsletter-modal__title {
	margin: 0 0 0.35em;
	font-family: var(--harkness-font-primary);
	font-size: 1.35rem;
}

.harkness-newsletter-modal__text {
	margin: 0 0 1em;
	font-size: 0.95rem;
}

.harkness-newsletter-modal__label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 0.35em;
}

.harkness-newsletter-modal__input {
	display: block;
	width: 100%;
	border: 1px solid rgba(80, 78, 78, 0.28);
	border-radius: 6px;
	padding: 10px 12px;
	font-size: 15px;
	margin: 0 0 0.85em;
}

.harkness-newsletter-modal__submit {
	display: inline-block;
	border: 1px solid var(--harkness-primary);
	background: var(--harkness-primary);
	color: var(--harkness-white);
	border-radius: 999px;
	padding: 10px 18px;
	font-weight: 600;
	cursor: pointer;
}

.harkness-newsletter-modal__submit:disabled {
	opacity: 0.65;
	cursor: wait;
}

.harkness-newsletter-modal__status {
	margin: 0.75em 0 0;
	min-height: 1.2em;
	font-size: 0.92rem;
}

.harkness-newsletter-modal__status[data-state="error"] {
	color: #a12626;
}

.harkness-newsletter-modal__status[data-state="success"] {
	color: #1d6e37;
}

body.harkness-newsletter-modal-open {
	overflow: hidden;
}

/* Breadcrumbs */
.harkness-breadcrumbs {
	margin-bottom: 1em;
	padding: 0;
}

.harkness-breadcrumbs-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
	font-family: var(--harkness-font-secondary);
	font-size: 13px;
}

.harkness-breadcrumbs-item {
	display: flex;
	align-items: center;
}

.harkness-breadcrumbs-sep {
	color: var(--harkness-text-muted);
	margin: 0 0.35em;
}

.harkness-breadcrumbs a {
	color: var(--harkness-primary);
	text-decoration: none;
}

.harkness-breadcrumbs a:hover {
	color: var(--harkness-secondary);
}

.harkness-breadcrumbs-current {
	color: var(--harkness-text-muted);
}

.archive .hentry .entry-title a:hover,
.blog .hentry .entry-title a:hover,
.search .hentry .entry-title a:hover,
.entry-title a:hover {
	color: var(--harkness-secondary) !important;
}

/* Meta and footer links */
.entry-meta,
.entry-meta a,
.entry-footer,
.entry-footer a {
	color: var(--harkness-text-muted) !important;
}

.entry-meta a:hover,
.entry-footer a:hover {
	color: var(--harkness-primary) !important;
}

/* Continue reading / more link */
.more-link {
	background: transparent !important;
	border: 2px solid var(--harkness-primary) !important;
	color: var(--harkness-primary) !important;
	display: inline-block;
	font-family: var(--harkness-font-secondary) !important;
	font-weight: 600;
	margin-top: 0.5em;
	padding: 6px 14px;
	text-transform: uppercase;
}

.more-link:hover,
.more-link:focus,
.more-link:active {
	background: var(--harkness-primary) !important;
	color: var(--harkness-white) !important;
	border-color: var(--harkness-primary) !important;
}

/*--------------------------------------------------------------
  Buttons and form submit
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	background: var(--harkness-primary) !important;
	border-color: var(--harkness-primary) !important;
	color: var(--harkness-white) !important;
	font-family: var(--harkness-font-secondary) !important;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
button:focus,
input[type="submit"]:focus {
	background: var(--harkness-secondary) !important;
	border-color: var(--harkness-secondary) !important;
	color: var(--harkness-white) !important;
}

/*--------------------------------------------------------------
  Content area – light cream background option
--------------------------------------------------------------*/
body {
	background: var(--harkness-white);
}

.site-content {
	background: var(--harkness-white);
}

/* No white strip above footer – content and footer meet */
.blog .site-content,
.archive .site-content,
.single .site-content,
.page-template-page-rose-finder-php .site-content {
	background: var(--harkness-cream);
}
/* Single full-width boundary so footer top edge doesn’t “step” at the sides */
.blog .site-content,
.archive .site-content,
.single .site-content,
.page-template-page-rose-finder-php .site-content {
	border-bottom: 1px solid var(--harkness-cream);
	box-sizing: border-box;
}

/* Post cards / hentry borders */
.archive .hentry,
.blog .hentry,
.search .hentry {
	border-top-color: var(--harkness-secondary) !important;
}

/* Sticky post badge */
.sticky-post {
	background: var(--harkness-primary) !important;
	color: var(--harkness-white) !important;
}

.sticky-post:hover {
	background: var(--harkness-secondary) !important;
}

/* Featured content (if used) */
.featured-content .entry-title a {
	color: var(--harkness-white) !important;
}

.featured-content .entry-title a:hover {
	color: var(--harkness-secondary) !important;
}

/*--------------------------------------------------------------
  Footer – multi-column like main site (roses.co.uk)
--------------------------------------------------------------*/
.harkness-footer {
	position: relative;
	border-top: none;
	padding: 0;
	margin-top: 0;
}
/* Single full-width top edge when footer is first dark block (no step at viewport sides) */
.harkness-footer::before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 1px;
	background: var(--harkness-primary);
}

/* Main footer – same dark as bottom bar, white text (one logo in bottom only) */
.harkness-footer-main {
	background: var(--harkness-primary);
	color: var(--harkness-white);
	padding: 2.5em 20px 2em;
}

.harkness-footer-inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2em;
	max-width: 1200px;
	margin: 0 auto;
}

.harkness-footer-brand {
	margin-bottom: 1em;
}

.harkness-footer-brand a,
.harkness-footer-brand .site-logo-link {
	display: inline-block;
}

.harkness-footer-brand img {
	height: 40px;
	width: auto;
	max-height: 40px;
	vertical-align: middle;
}

.harkness-footer-site-name {
	color: var(--harkness-primary);
	font-family: var(--harkness-font-primary);
	font-size: 1.25rem;
	text-decoration: none;
}

.harkness-footer-site-name:hover {
	opacity: 0.85;
}

.harkness-footer-heading {
	font-family: var(--harkness-font-primary);
	font-size: 1rem;
	font-weight: 400;
	margin: 0 0 1em;
	text-transform: none;
	letter-spacing: 0.02em;
	color: var(--harkness-white);
}

.harkness-footer-links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.harkness-footer-links a {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	font-family: var(--harkness-font-secondary);
	font-size: 14px;
	line-height: 1.6;
}

.harkness-footer-links a:hover {
	color: var(--harkness-white);
	text-decoration: underline;
}

.harkness-footer-company .harkness-footer-name {
	font-family: var(--harkness-font-primary);
	font-weight: 400;
	margin: 0 0 0.5em;
	font-size: 1rem;
	color: var(--harkness-white);
}

.harkness-footer-address,
.harkness-footer-contact {
	font-family: var(--harkness-font-secondary);
	font-size: 14px;
	line-height: 1.6;
	margin: 0 0 0.5em;
	color: rgba(255, 255, 255, 0.9);
}

.harkness-footer-contact a {
	color: rgba(255, 255, 255, 0.95);
	text-decoration: none;
}

.harkness-footer-contact a:hover {
	color: var(--harkness-white);
	text-decoration: underline;
}

.harkness-footer-social ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75em;
	list-style: none;
	margin: 0;
	padding: 0;
}

.harkness-footer-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: rgba(255, 255, 255, 0.25);
	color: var(--harkness-white);
	border-radius: 50%;
	text-decoration: none;
	transition: background 0.2s ease, transform 0.15s ease;
}

.harkness-footer-social a:hover {
	background: rgba(255, 255, 255, 0.45);
	color: var(--harkness-white);
	transform: scale(1.05);
}

.harkness-social-x {
	font-family: var(--harkness-font-secondary);
	font-weight: 700;
	font-size: 16px;
	line-height: 1;
}

/* Single icon only – avoid double icons from parent ::before + menu/fallback icon. */
.harkness-footer-social-fallback a::before,
.harkness-footer-social-fallback a::after {
	display: none !important;
}
/* X (𝕏): size to match Genericon FB/IG in the same row (~22px circles use 22px icons). */
.harkness-footer-social-fallback a.harkness-share-twitter::before {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	content: "𝕏";
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	font-size: 22px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.02em;
	color: #fff !important;
}

/* Social menu: replace Genericons bird with 𝕏 at the same visual weight as other footer icons. */
.harkness-footer-social:not(.harkness-footer-social-fallback) a[href*="twitter.com"]::before,
.harkness-footer-social:not(.harkness-footer-social-fallback) a[href*="x.com"]::before {
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
	content: "𝕏" !important;
	font-size: 22px !important;
	font-weight: 800 !important;
	width: auto !important;
	height: auto !important;
	line-height: 1 !important;
	color: #fff !important;
}

.harkness-footer-social-fallback a.harkness-share-twitter:hover::before,
.harkness-footer-social-fallback a.harkness-share-twitter:focus::before,
.harkness-footer-social:not(.harkness-footer-social-fallback) a[href*="twitter.com"]:hover::before,
.harkness-footer-social:not(.harkness-footer-social-fallback) a[href*="twitter.com"]:focus::before,
.harkness-footer-social:not(.harkness-footer-social-fallback) a[href*="x.com"]:hover::before,
.harkness-footer-social:not(.harkness-footer-social-fallback) a[href*="x.com"]:focus::before {
	color: #fff !important;
}
.harkness-footer-social:not(.harkness-footer-social-fallback) a .genericon,
.harkness-footer-social:not(.harkness-footer-social-fallback) a [class*="genericon"] {
	display: none !important;
}

/* Icon visibility – ensure genericons/dashicons are white and sized */
.harkness-footer-social .genericon,
.harkness-footer-social [class*="genericon"],
.harkness-footer-social .dashicons,
.harkness-footer-social [class*="dashicons"] {
	color: #fff !important;
	font-size: 22px !important;
	width: 22px;
	height: 22px;
}

/* Bottom bar – dark charcoal; extra spacing so content isn’t flush to viewport bottom */
.harkness-footer-bottom {
	background: var(--harkness-primary);
	color: var(--harkness-white);
	padding: 1.5em 20px 2em;
}

.harkness-footer-bottom-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1em;
	max-width: 1200px;
	margin: 0 auto;
}

.harkness-footer-logo {
	flex-shrink: 0;
}

.harkness-footer-logo a {
	color: var(--harkness-white);
	font-family: var(--harkness-font-primary);
	font-size: 14px;
	text-decoration: none;
	letter-spacing: 0.02em;
}

.harkness-footer-logo a:hover {
	color: var(--harkness-secondary);
}

.harkness-footer-logo img {
	height: 80px;
	width: auto;
	max-height: 80px;
	vertical-align: middle;
	filter: brightness(0) invert(1);
}

.harkness-footer-logo .site-logo-link {
	display: inline-block;
}

/* Copyright – centered in bottom bar */
.harkness-footer-copyright {
	flex: 1;
	text-align: center;
	font-family: var(--harkness-font-secondary);
	font-size: 12px;
	margin: 0;
	line-height: 1.5;
	opacity: 0.95;
	color: var(--harkness-white);
}

/* Top button – flush right, text visible (white on dark) */
.harkness-footer-top {
	flex-shrink: 0;
	margin-left: auto;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.6);
	color: #fff !important;
	font-family: var(--harkness-font-secondary);
	font-size: 13px;
	font-weight: 600;
	padding: 8px 16px;
	text-decoration: none;
	border-radius: 2px;
}

.harkness-footer-top:hover,
.harkness-footer-top:focus {
	background: rgba(255, 255, 255, 0.15);
	border-color: var(--harkness-white);
	color: #fff !important;
}

/* Footer main: ensure all text is white (override any parent/dark styles) */
.harkness-footer-main,
.harkness-footer-main * {
	color: inherit;
}

.harkness-footer-main,
.harkness-footer-main .harkness-footer-heading,
.harkness-footer-main .harkness-footer-name,
.harkness-footer-main .harkness-footer-address,
.harkness-footer-main .harkness-footer-contact,
.harkness-footer-main .harkness-footer-contact a,
.harkness-footer-main .harkness-footer-links,
.harkness-footer-main .harkness-footer-links a,
.harkness-footer-main p {
	color: var(--harkness-white) !important;
}

.harkness-footer-main .harkness-footer-links a:hover {
	color: rgba(255, 255, 255, 0.95) !important;
}

.harkness-footer-main .harkness-footer-contact a:hover {
	color: rgba(255, 255, 255, 0.95) !important;
}

@media screen and (min-width: 640px) {
	.harkness-footer-inner {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (min-width: 960px) {
	.harkness-footer-inner {
		grid-template-columns: repeat(4, 1fr);
		gap: 2em 3em;
	}
}

/* Legacy footer elements (if present) */
.site-footer.site-footer .site-info,
.site-footer .footer-text {
	color: var(--harkness-text-muted);
}

/*--------------------------------------------------------------
  Widgets and sidebar
--------------------------------------------------------------*/
.widget-title {
	font-family: var(--harkness-font-secondary) !important;
	color: var(--harkness-primary);
}

/* Comments */
.comments-area {
	display: block;
	margin: 2em 0 0;
	padding: 1em;
	background: var(--harkness-white);
	border: 1px solid rgba(80, 78, 78, 0.1);
	width: 100%;
	max-width: 100%;
	margin-left: 0 !important;
	margin-right: 0 !important;
	box-sizing: border-box;
}

.comments-title,
.comment-reply-title {
	font-family: var(--harkness-font-secondary);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin: 0 0 1em;
}

.comment-list {
	list-style: none;
	margin: 0 0 0.85em;
	padding: 0;
}

.comment-list .comment {
	margin: 0 0 0.75em;
	padding: 0 0 0.75em;
	border-bottom: 1px solid rgba(80, 78, 78, 0.1);
}

.comment-list .comment:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.comment-author .avatar {
	border-radius: 50%;
	margin-right: 0.5em;
}

.comment-metadata {
	font-size: 12px;
	color: var(--harkness-text-muted);
}

.comment-content {
	margin-top: 0.4em;
}

.comment-respond {
	margin-top: 0.85em;
	margin-left: 0 !important;
	padding-top: 0 !important;
	border-top: 0 !important;
}

.comment-form textarea,
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"] {
	width: 100%;
	border: 1px solid rgba(80, 78, 78, 0.24);
	background: #fff;
	padding: 10px 12px;
}

.comments-area .comment-list .children {
	margin: 0.5em 0 0 0;
	padding-left: 1em;
}

.comments-area .comment-form p {
	margin: 0 0 0.65em;
}

.comments-area .comment-form-comment textarea {
	min-height: 95px;
}

.comments-area .comment-form-author,
.comments-area .comment-form-comment,
.comments-area .form-submit {
	margin-left: 0 !important;
	padding-left: 0 !important;
}

.comment-form .submit {
	border-radius: var(--harkness-outline-btn-radius);
}

/* Comments and pagination */
.comment-navigation a,
.posts-navigation a,
.post-navigation a {
	color: var(--harkness-primary) !important;
}

.comment-navigation a:hover,
.posts-navigation a:hover,
.post-navigation a:hover {
	color: var(--harkness-secondary) !important;
}

/* Older/Newer posts buttons: keep black text on hover (not blue). */
.posts-navigation a:hover,
.posts-navigation a:focus,
.posts-navigation a:active {
	color: var(--harkness-primary) !important;
	border-color: var(--harkness-primary) !important;
	background: var(--harkness-white) !important;
}

.posts-navigation .nav-previous a:hover,
.posts-navigation .nav-previous a:focus,
.posts-navigation .nav-previous a:active,
.posts-navigation .nav-next a:hover,
.posts-navigation .nav-next a:focus,
.posts-navigation .nav-next a:active {
	background: var(--harkness-white) !important;
	color: var(--harkness-primary) !important;
	border-color: var(--harkness-primary) !important;
}

.post-navigation .nav-next a,
.post-navigation .nav-previous a {
	border-color: var(--harkness-primary);
}

/* Fix duplicate date: theme outputs both .published and .updated; hide .updated when same line */
.entry-meta .updated {
	display: none;
}

/* Spacing between category and "Leave a comment" */
.entry-meta .comments-link::before {
	content: " · ";
	margin-left: 0.25em;
}

.entry-footer .comments-link::before {
	content: " · ";
	margin-left: 0.25em;
}

/* Blockquote and code accent */
blockquote:before {
	color: var(--harkness-secondary);
}

pre {
	border-left-color: var(--harkness-primary);
}

mark,
ins {
	background: var(--harkness-primary);
	color: var(--harkness-white);
}

/* Header image (optional) */
.header-image {
	margin-top: 20px;
}

/*--------------------------------------------------------------
  David Austin–style blog layout (Harkness colours/fonts)
--------------------------------------------------------------*/

/* Warm cream background on blog/archive */
.blog .site-content,
.archive .site-content,
.blog .site-main,
.archive .site-main {
	background: var(--harkness-cream);
}

.blog .content-area,
.archive .content-area {
	background: transparent;
	padding-top: 0;
}

/* Content wrapper: center the primary block; no asymmetric padding */
.home #content.site-content,
.blog #content.site-content,
.archive #content.site-content {
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

/* Full-bleed category / home heroes + home sections: flex parent centers children – stretch so no clipping */
.home #content.site-content > .harkness-home-hero,
.blog #content.site-content > .harkness-home-hero,
.archive #content.site-content > .harkness-home-hero,
.home #content.site-content > .harkness-home-feature-row,
.home #content.site-content > .harkness-home-products,
.home #content.site-content > .harkness-explore-the-series-home,
.category #content.site-content > .harkness-home-products,
.category #content.site-content > .harkness-explore-the-series-home {
	align-self: stretch !important;
	width: 100% !important;
	max-width: none !important;
	box-sizing: border-box;
}

/* Same flex behavior + width cap as feature row shell so tags bar and #primary align */
.home #content.site-content > #primary.harkness-blog-primary {
	align-self: stretch !important;
	width: 100% !important;
	max-width: 1200px !important;
	box-sizing: border-box !important;
}

.home #content.site-content #primary,
.blog #content.site-content #primary,
.archive #content.site-content #primary {
	width: 100% !important;
	max-width: 1200px !important;
}

/* Override parent at ALL breakpoints: primary is the centered column (max 1200px) */
.blog .content-area.harkness-blog-primary,
.archive .content-area.harkness-blog-primary,
.search .content-area.harkness-blog-primary,
.home .content-area.harkness-blog-primary {
	width: 100% !important;
	max-width: 1200px !important;
	float: none !important;
	padding-left: 24px !important;
	padding-right: 24px !important;
	padding-bottom: 2em;
	margin-left: auto !important;
	margin-right: auto !important;
	display: block !important;
	box-sizing: border-box;
}

/* Re-apply centering in parent's media queries so we win at every breakpoint */
@media screen and (min-width: 768px) {
	.blog .content-area.harkness-blog-primary,
	.archive .content-area.harkness-blog-primary,
	.search .content-area.harkness-blog-primary,
	.home .content-area.harkness-blog-primary {
		width: 100% !important;
		max-width: 1200px !important;
		margin-left: auto !important;
		margin-right: auto !important;
	}
}
@media screen and (min-width: 960px) {
	.blog .content-area.harkness-blog-primary,
	.archive .content-area.harkness-blog-primary,
	.search .content-area.harkness-blog-primary,
	.home .content-area.harkness-blog-primary {
		width: 100% !important;
		max-width: 1200px !important;
		margin-left: auto !important;
		margin-right: auto !important;
	}
}
@media screen and (min-width: 1080px) {
	.blog .content-area.harkness-blog-primary,
	.archive .content-area.harkness-blog-primary,
	.search .content-area.harkness-blog-primary,
	.home .content-area.harkness-blog-primary {
		width: 100% !important;
		max-width: 1200px !important;
		margin-left: auto !important;
		margin-right: auto !important;
	}
}
@media screen and (min-width: 1380px) {
	.blog .content-area.harkness-blog-primary,
	.archive .content-area.harkness-blog-primary,
	.search .content-area.harkness-blog-primary,
	.home .content-area.harkness-blog-primary {
		width: 100% !important;
		max-width: 1200px !important;
		margin-left: auto !important;
		margin-right: auto !important;
	}
}

/* Blog main fills the centered primary */
.harkness-blog-primary .harkness-blog-main {
	display: block;
	width: 100%;
	max-width: none;
	padding: 0 0 2em;
	box-sizing: border-box;
}

/*
 * Parent theme Gazette adds .blog .site-main { margin-top: 30px } (60px from 768px+).
 * That stacks under the Popular topics bar and breaks vertical rhythm — remove for Harkness blog layout.
 */
.blog .harkness-blog-primary .site-main.harkness-blog-main,
.archive .harkness-blog-primary .site-main.harkness-blog-main,
.search .harkness-blog-primary .site-main.harkness-blog-main {
	margin-top: 0 !important;
}

.home .harkness-blog-primary .harkness-blog-main,
.blog .harkness-blog-primary .harkness-blog-main,
.archive .harkness-blog-primary .harkness-blog-main {
	display: block;
}

/* Grid: override parent's float/margin/clear on .hentry so grid layout works and stays centered */
.harkness-posts-grid .hentry,
.harkness-posts-grid article,
.harkness-posts-grid .harkness-blog-card {
	float: none !important;
	clear: none !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	width: 100% !important;
	height: 100%;
	min-height: 0;
	align-self: stretch;
}

.harkness-posts-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
	width: 100%;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}

@media screen and (min-width: 640px) {
	.harkness-posts-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}
}

@media screen and (min-width: 960px) {
	.harkness-posts-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 1.75rem;
	}
}

.harkness-filter-no-results {
	display: none;
	margin: 2em 0;
	padding: 1em;
	text-align: center;
	color: var(--harkness-primary, #504e4e);
}

/* Load more posts */
.harkness-load-more-wrap {
	text-align: center;
	margin: 2.5em 0 2em;
	padding: 0 24px;
}

.harkness-load-more-btn {
	font-family: var(--harkness-font-secondary);
	font-size: 14px;
	font-weight: 600;
	padding: 10px 22px;
	border: 1px solid var(--harkness-primary);
	border-radius: var(--harkness-card-radius);
	background: transparent;
	color: var(--harkness-primary);
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
}

.harkness-load-more-btn:hover:not(:disabled) {
	background: var(--harkness-primary);
	color: var(--harkness-white);
}

.harkness-load-more-btn:disabled {
	opacity: 0.7;
	cursor: wait;
}

.harkness-load-more-btn.is-loading {
	position: relative;
	pointer-events: none;
}

.harkness-load-more-btn.is-loading::after {
	content: "";
	display: inline-block;
	width: 0.9em;
	height: 0.9em;
	margin-left: 0.5em;
	vertical-align: -0.1em;
	border: 2px solid rgba(80, 78, 78, 0.25);
	border-top-color: var(--harkness-primary);
	border-radius: 50%;
	animation: harkness-spin 0.65s linear infinite;
}

@keyframes harkness-spin {
	to {
		transform: rotate(360deg);
	}
}

@media (prefers-reduced-motion: reduce) {
	.harkness-load-more-btn.is-loading::after {
		animation: none;
		border-top-color: rgba(80, 78, 78, 0.35);
	}
}

.harkness-load-more-btn-wrap {
	margin-bottom: 0.65em;
}

.harkness-load-more-totals {
	margin: 0;
	font-family: var(--harkness-font-secondary);
	font-size: 14px;
	font-weight: 500;
	color: var(--harkness-primary, #504e4e);
	line-height: 1.4;
}

/* No results (search, empty archive) – Harkness styled */
.harkness-no-results {
	padding: 2em 0 3em;
}
.harkness-no-results .page-header {
	margin-bottom: 1em;
}
.harkness-no-results-content {
	font-family: var(--harkness-font-secondary);
	font-size: 1rem;
	line-height: 1.6;
	color: var(--harkness-body);
	max-width: 42em;
}
.harkness-no-results-content p {
	margin: 0 0 1em;
}
.harkness-no-results-content .search-form {
	margin: 1.25em 0;
}
.harkness-no-results-actions {
	margin-top: 1.5em !important;
}
.harkness-no-results--filtered .page-title {
	font-size: 1.35rem;
}

.harkness-no-results-link {
	display: inline-block;
	font-weight: 600;
	color: var(--harkness-primary);
	text-decoration: none;
	border: 2px solid var(--harkness-primary);
	border-radius: 4px;
	padding: 10px 20px;
	transition: background 0.2s ease, color 0.2s ease;
}
.harkness-no-results-link:hover {
	background: var(--harkness-primary);
	color: var(--harkness-white);
}

/* Search page – same cream background as blog/archive */
.search .site-content,
.search .site-main {
	background: var(--harkness-cream);
}

/* Blog category filter nav */
.harkness-blog-nav {
	border-bottom: 1px solid rgba(80, 78, 78, 0.12);
	margin-bottom: 1.25em;
	padding-bottom: 0.5em;
}

.harkness-blog-nav-list {
	display: flex;
	flex-wrap: wrap;
	font-family: var(--harkness-font-secondary);
	font-size: 13px;
	font-weight: 500;
	gap: 0.35em 1.25em;
	list-style: none;
	margin: 0;
	padding: 0;
}

.harkness-blog-nav-list a {
	color: var(--harkness-primary);
	text-decoration: none !important;
}

.harkness-blog-nav-list a:hover {
	color: var(--harkness-secondary);
}

.harkness-blog-nav-list .current-cat a {
	border-bottom: 2px solid var(--harkness-primary);
	padding-bottom: 2px;
}

/* Blog cards – no top border, card wrapper */
.blog .site-main .hentry,
.archive .site-main .hentry,
.search .site-main .hentry {
	border-top: none !important;
	padding-top: 0 !important;
}

.harkness-blog-card {
	background: var(--harkness-card-surface);
	display: flex;
	flex-direction: column;
	margin-bottom: 1.25em;
	overflow: hidden;
	gap: 0;
	box-shadow: 0 2px 12px rgba(80, 78, 78, 0.08);
	border: 1px solid rgba(80, 78, 78, 0.07);
	transition: box-shadow 0.25s ease, transform 0.25s ease;
	border-radius: var(--harkness-card-radius);
}

.harkness-blog-card:hover {
	box-shadow: 0 8px 24px rgba(80, 78, 78, 0.12);
}

/* Image block with category overlay – no gap, capped height */
.harkness-card-image {
	display: block;
	position: relative;
	line-height: 0;
	margin: 0 !important;
	padding: 0 !important;
	margin-bottom: 0 !important;
	overflow: hidden;
	max-height: 200px;
}

.harkness-card-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	vertical-align: top;
	margin: 0;
	padding: 0;
	transition: transform 0.35s ease;
}

.harkness-blog-card:hover .harkness-card-image img {
	transform: scale(1.04);
}

/* Blog grid: stronger lift, shadow, and image zoom (homepage rhythm; reduced motion below) */
.harkness-posts-grid .harkness-blog-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 36px rgba(80, 78, 78, 0.14);
}

.harkness-posts-grid .harkness-blog-card:hover .harkness-card-image img {
	transform: scale(1.07);
}

/* Remove white space below images site-wide (blog, archive, front) */
.post-thumbnail,
.post-thumbnail a,
.harkness-card-image,
.harkness-card-image a,
.featured-content .post-thumbnail,
.featured-content .post-thumbnail a {
	line-height: 0;
	display: block;
}

.post-thumbnail img,
.harkness-card-image img,
.featured-content .post-thumbnail img,
.blog .hentry img.wp-post-image,
.archive .hentry img.wp-post-image {
	display: block;
	vertical-align: top;
	margin: 0;
	padding: 0;
}

/* Category badge – clean pill on image (main-site style) */
.harkness-card-category {
	background: var(--harkness-white);
	color: var(--harkness-primary);
	font-family: var(--harkness-font-secondary);
	font-size: 10px;
	font-weight: 700;
	left: 12px;
	letter-spacing: 0.08em;
	padding: 6px 12px;
	position: absolute;
	text-transform: uppercase;
	top: 12px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
	border-radius: 2px;
	line-height: 1.2;
}

.harkness-card-category-inline {
	position: static;
	display: inline-block;
	margin-bottom: 0.5em;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
	border-radius: 2px;
	padding: 5px 10px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	background: var(--harkness-white);
	color: var(--harkness-primary);
}

/* Below featured image: share + like stats (fills strip between image and body) */
.harkness-card-social-strip {
	flex-shrink: 0;
	background: #f3f3f1;
	border-bottom: 1px solid rgba(80, 78, 78, 0.1);
}

.harkness-card-social-strip-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 8px 12px;
	padding: 10px 12px;
}

.harkness-card-social-left {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px 10px;
	min-width: 0;
}

.harkness-card-social-label {
	font-family: var(--harkness-font-secondary);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--harkness-text-muted);
}

.harkness-card-social-icons {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.harkness-card-social-strip .harkness-social-icon--card {
	width: 28px;
	height: 28px;
	min-width: 28px;
	font-size: 11px;
}

.harkness-card-social-strip .harkness-share-twitter::before {
	font-size: 12px;
}

.harkness-card-social-strip .harkness-like-btn--card {
	width: auto;
	min-width: 56px;
	height: 28px;
	padding: 0 10px 0 8px;
	border-radius: 999px;
	gap: 2px;
}

.harkness-card-social-strip .harkness-like-btn--card .harkness-like-icon::before {
	font-size: 12px;
}

.harkness-card-social-strip .harkness-like-count {
	font-size: 11px;
	margin-left: 4px;
}

.harkness-card-like-wrap {
	display: flex;
	align-items: center;
}

/* No-thumbnail cards: social strip bleeds to card edges above cream body */
.harkness-card-content > .harkness-card-social-strip:first-child {
	margin: -1em -1.15em 0.85em;
	width: calc(100% + 2.3em);
	max-width: none;
	box-sizing: border-box;
	border-bottom: 1px solid rgba(80, 78, 78, 0.1);
}

@media screen and (max-width: 480px) {
	.harkness-card-content > .harkness-card-social-strip:first-child {
		margin-left: -0.9em;
		margin-right: -0.9em;
		width: calc(100% + 1.8em);
	}
}

/* Card content area – flush under image, no gap */
.harkness-card-content {
	background: var(--harkness-card-surface);
	flex: 1;
	padding: 1em 1.15em 1.15em;
	display: flex;
	flex-direction: column;
	margin-top: 0 !important;
	margin-bottom: 0;
}

/*
 * Card titles (Rose of the Month, Rose Finder, post grid, etc.): same scale as
 * .harkness-inspiration-hero-title (e.g. “The Jane Austen Rose Collection”).
 */
.harkness-card-content .entry-title {
	font-family: var(--harkness-font-primary) !important;
	font-size: calc(1.5rem - 2px);
	line-height: 1.3;
	font-weight: 600;
	margin: 0 0 0.5em;
	word-break: normal;
	overflow-wrap: normal;
	hyphens: none;
	-webkit-hyphens: none;
}

@media screen and (min-width: 768px) {
	.harkness-card-content .entry-title {
		font-size: calc(1.75rem - 2px);
	}
}

@media screen and (max-width: 767px) {
	.harkness-card-content .entry-title {
		font-size: calc(1.15rem - 2px);
		line-height: 1.28;
		margin: 0 0 0.35em;
	}
}

.harkness-card-content .entry-title a:hover {
	color: var(--harkness-secondary) !important;
}

.harkness-card-meta {
	font-family: var(--harkness-font-secondary);
	font-size: 11px;
	letter-spacing: 0.04em;
	margin-bottom: 0.5em;
	padding: 0;
	text-transform: uppercase;
}

.harkness-card-meta a {
	color: var(--harkness-text-muted) !important;
}

.harkness-card-meta a:hover {
	color: var(--harkness-primary) !important;
}

/* Parent theme hides sticky post dates on archive/blog/search; keep date visible in Harkness cards. */
.archive .sticky .harkness-card-meta .posted-on,
.blog .sticky .harkness-card-meta .posted-on,
.search .sticky .harkness-card-meta .posted-on {
	display: inline !important;
}

.harkness-card-meta-sep {
	color: var(--harkness-text-muted);
	font-weight: 400;
}

.harkness-card-read-time {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--harkness-text-muted);
}

/* Match home hero + feature-row card excerpt (see .harkness-inspiration-hero-excerpt, .harkness-home-feature-row-card .entry-summary) */
.harkness-card-content .entry-summary {
	flex: 1 1 auto;
	flex-shrink: 1;
	min-height: 0;
	font-family: var(--harkness-font-secondary);
	font-size: 0.88rem;
	line-height: 1.45;
	margin: 0 0 0.6em;
	display: block;
	overflow: hidden;
	/* Fallback for non-line-clamp engines: exactly 3 full lines, no half-line cut */
	max-height: calc(1.45em * 3);
	max-height: calc(3 * 1lh);
	word-break: normal;
	overflow-wrap: normal;
	hyphens: none;
	-webkit-hyphens: none;
	-webkit-font-smoothing: antialiased;
}

/* the_excerpt() outputs <p>; remove its margin so clamp cuts on full lines only */
.harkness-card-content .entry-summary p {
	margin: 0;
	line-height: inherit;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.harkness-posts-grid .harkness-card-content .entry-summary {
	line-height: 1.45;
}

/* READ MORE – outline button (same radius as Back to shop / Sign up) */
.harkness-read-more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--harkness-font-secondary) !important;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.04em;
	margin-top: auto;
	text-transform: uppercase;
	text-decoration: none !important;
	padding: 10px 20px;
	border: 1px solid var(--harkness-primary);
	border-radius: var(--harkness-outline-btn-radius);
	color: var(--harkness-primary) !important;
	background: transparent;
	box-sizing: border-box;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	-webkit-tap-highlight-color: transparent;
}

.harkness-read-more:hover,
.harkness-read-more:focus {
	text-decoration: none !important;
	background: var(--harkness-primary);
	color: var(--harkness-white) !important;
	border-color: var(--harkness-primary);
}

.harkness-posts-grid .harkness-read-more:focus-visible {
	outline: 2px solid var(--harkness-secondary);
	outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
	.harkness-posts-grid .harkness-blog-card {
		transition: none;
	}

	.harkness-posts-grid .harkness-blog-card:hover {
		transform: none;
		box-shadow: 0 2px 12px rgba(80, 78, 78, 0.08);
	}

	.harkness-posts-grid .harkness-card-image img {
		transition: none;
	}

	.harkness-posts-grid .harkness-blog-card:hover .harkness-card-image img {
		transform: none;
	}

	.harkness-posts-grid .harkness-read-more {
		transition: none;
	}
}

/* Hide default more-link on blog cards if present */
.harkness-blog-card .more-link {
	display: none;
}

/* Archive page title and grid */
.archive .page-header,
.archive .harkness-archive-header {
	border-bottom: 1px solid rgba(80, 78, 78, 0.12);
	margin-bottom: 1.5em;
	padding-bottom: 0.75em;
}

.archive .taxonomy-description,
.search .taxonomy-description {
	font-family: var(--harkness-font-secondary);
	font-size: 1rem;
	line-height: 1.6;
	color: var(--harkness-body);
	margin: 0.5em 0 0;
	max-width: 42em;
}

.archive .page-title,
.search .page-title {
	color: var(--harkness-primary);
	font-family: var(--harkness-font-primary);
	font-size: 1.5rem;
	font-weight: 600;
	margin: 0 0 0.25em;
}

.search .page-title span {
	font-weight: 400;
	opacity: 0.95;
}

.archive .harkness-blog-main .harkness-archive-header + .harkness-posts-grid {
	margin-top: 0;
}

/* Archive filters toolbar – panel, custom selects, count, clear */
.harkness-archive-filters-toolbar {
	margin-bottom: 1.5em;
}

/* Home / tag archive: toolbar stack is first in main — no extra top margin */
body.home .harkness-blog-main > .harkness-blog-toolbar-stack:first-child,
body.tag .harkness-blog-main > .harkness-blog-toolbar-stack:first-child {
	margin-top: 0;
}

.harkness-archive-filters-toolbar-inner {
	background: var(--harkness-blog-toolbar-panel-bg, var(--harkness-card-surface));
	border: var(--harkness-blog-toolbar-panel-border);
	border-radius: var(--harkness-card-radius);
	box-shadow: var(--harkness-blog-toolbar-panel-shadow);
	padding: 0.65em 1.15em;
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem 1.5rem;
	min-height: var(--harkness-blog-toolbar-panel-min-height, 3.625rem);
}

.harkness-archive-filters-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 0.65em 1.1rem;
	flex-shrink: 0;
	text-align: right;
}

.harkness-archive-filters-count {
	margin: 0;
	font-family: var(--harkness-font-secondary);
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--harkness-primary);
	letter-spacing: 0.02em;
}

.harkness-archive-filters-clear {
	font-family: var(--harkness-font-secondary);
	font-size: 0.8125rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--harkness-primary) !important;
	text-decoration: none !important;
	border-bottom: 1px solid rgba(80, 78, 78, 0.35);
	padding-bottom: 2px;
	transition: color 0.15s ease, border-color 0.15s ease;
}

.harkness-archive-filters-clear:hover,
.harkness-archive-filters-clear:focus-visible {
	color: var(--harkness-secondary) !important;
	border-bottom-color: var(--harkness-secondary);
}

/* Archive filters – month, category, sort by */
.harkness-archive-filters {
	margin-bottom: 0;
	display: flex;
	align-items: center;
	gap: 0.75em 1.25em;
	flex-wrap: wrap;
	flex: 1 1 240px;
	min-width: 0;
}

.harkness-archive-filter-group {
	display: flex;
	align-items: center;
	gap: 0.5em;
}

.harkness-archive-filter-label {
	font-family: var(--harkness-font-secondary);
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--harkness-body);
	margin: 0;
}

.harkness-archive-filter-select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font-family: var(--harkness-font-secondary);
	font-size: 0.9375rem;
	min-height: 2.5rem;
	padding: 8px 38px 8px 12px;
	border: 1px solid rgba(80, 78, 78, 0.22);
	border-radius: var(--harkness-outline-btn-radius);
	background-color: var(--harkness-card-surface);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23504e4e' d='M2.5 4.5 6 8l3.5-3.5'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: 14px 14px;
	color: var(--harkness-primary);
	min-width: 168px;
	cursor: pointer;
	transition: border-color 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
}

.harkness-archive-filter-select:hover,
.harkness-archive-filter-select:focus {
	border-color: var(--harkness-primary);
	background-color: var(--harkness-card-surface);
	outline: none;
	box-shadow: 0 0 0 2px rgba(80, 78, 78, 0.08);
}

.harkness-archive-filter-select:focus-visible {
	box-shadow: 0 0 0 2px var(--harkness-secondary);
}

@media screen and (min-width: 960px) {
	.harkness-archive-filters-toolbar {
		position: sticky;
		top: 10px;
		z-index: 35;
		margin-bottom: 1.5em;
		padding-top: 2px;
	}

	/* WP admin bar is 32px on wide screens; keep same gap below it as `top: 10px` */
	body.admin-bar .harkness-archive-filters-toolbar {
		top: 42px;
	}

	/* Home / tag archive: stick topics + filters together above the grid */
	body.home .harkness-blog-toolbar-stack,
	body.tag .harkness-blog-toolbar-stack {
		position: sticky;
		top: 10px;
		z-index: 35;
		padding-top: 2px;
	}

	body.home.admin-bar .harkness-blog-toolbar-stack,
	body.tag.admin-bar .harkness-blog-toolbar-stack {
		top: 42px;
	}

	body.home .harkness-blog-toolbar-stack .harkness-archive-filters-toolbar,
	body.tag .harkness-blog-toolbar-stack .harkness-archive-filters-toolbar {
		position: static;
		top: auto;
		padding-top: 0;
		margin-bottom: 0;
		z-index: auto;
	}
}

/* Category archive: sibling chips, intro when hero is a post */
.harkness-category-context {
	margin: 0 0 1.25rem;
	padding: 1rem 1.125rem;
	background: var(--harkness-card-surface);
	border: 1px solid rgba(80, 78, 78, 0.12);
	border-radius: var(--harkness-outline-btn-radius);
	box-shadow: 0 1px 2px rgba(80, 78, 78, 0.04);
}

.harkness-category-context-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.65rem 1rem;
}

.harkness-category-context-label {
	font-family: var(--harkness-font-secondary);
	font-size: 0.8125rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--harkness-primary);
	margin: 0;
	flex-shrink: 0;
}

.harkness-category-siblings {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.harkness-category-sibling-chip {
	display: inline-block;
	font-family: var(--harkness-font-secondary);
	font-size: 0.875rem;
	font-weight: 600;
	padding: 0.35em 0.85em;
	border-radius: 999px;
	background: rgba(180, 177, 153, 0.2);
	color: var(--harkness-primary);
	border: 1px solid rgba(80, 78, 78, 0.14);
	text-decoration: none;
	transition: background-color 0.15s ease, border-color 0.15s ease;
}

.harkness-category-sibling-chip:hover,
.harkness-category-sibling-chip:focus {
	background: rgba(180, 177, 153, 0.35);
	border-color: var(--harkness-secondary);
	color: var(--harkness-primary);
	text-decoration: none;
}

.harkness-category-archive-desc {
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(80, 78, 78, 0.1);
	font-family: var(--harkness-font-secondary);
	font-size: 0.9375rem;
	line-height: 1.55;
	color: var(--harkness-body);
}

.harkness-category-archive-desc > p:first-child {
	margin-top: 0;
}

.harkness-category-archive-desc > p:last-child {
	margin-bottom: 0;
}

.harkness-category-low-count {
	margin: 1.75rem 0 0;
	padding: 1rem 1.125rem;
	background: rgba(180, 177, 153, 0.12);
	border: 1px dashed rgba(80, 78, 78, 0.2);
	border-radius: var(--harkness-outline-btn-radius);
}

.harkness-category-low-count-lead {
	margin: 0 0 0.5rem;
	font-family: var(--harkness-font-secondary);
	font-size: 0.9375rem;
	color: var(--harkness-body);
}

.harkness-category-low-count-actions {
	margin: 0;
	font-family: var(--harkness-font-secondary);
	font-size: 0.9375rem;
}

.harkness-category-low-count-actions a {
	font-weight: 700;
	color: var(--harkness-primary);
}

/* Keyboard: first newly loaded card after “Load more” */
.harkness-posts-grid article.harkness-load-more-focus-target:focus {
	outline: 2px solid var(--harkness-secondary);
	outline-offset: 3px;
}

/* Anchor target for "Browse all articles" jump link in sticky toolbar context. */
#harkness-posts-grid {
	scroll-margin-top: 8.5rem;
}

@media screen and (max-width: 639px) {
	.harkness-archive-filters-toolbar-inner {
		flex-direction: column;
		align-items: stretch;
		padding: 0.9em 1em;
		min-height: 0;
	}

	.harkness-archive-filters-meta {
		justify-content: space-between;
		text-align: left;
		padding-top: 0.15em;
		border-top: 1px solid rgba(80, 78, 78, 0.08);
		width: 100%;
		margin: 0;
	}

	.harkness-archive-filters {
		flex-direction: column;
		align-items: stretch;
		gap: 1rem;
		flex: none;
		width: 100%;
	}

	.harkness-archive-filter-group {
		flex-direction: column;
		align-items: stretch;
		align-self: stretch;
		gap: 0.35em;
		width: 100%;
	}

	.harkness-archive-filter-label {
		font-size: 0.8125rem;
	}

	.harkness-archive-filter-select {
		width: 100%;
		min-width: 0;
		min-height: 48px;
		padding: 10px 36px 10px 14px;
		font-size: 16px;
		box-sizing: border-box;
	}
}

/* Legacy month-only class (kept for any remaining use) */
.harkness-archive-month-select {
	margin-bottom: 1.5em;
	display: flex;
	align-items: center;
	gap: 0.75em;
	flex-wrap: wrap;
}
.harkness-archive-month-label {
	font-family: var(--harkness-font-secondary);
	font-size: 0.95rem;
	color: var(--harkness-body);
	margin: 0;
}
.harkness-archive-month-select-el {
	font-family: var(--harkness-font-secondary);
	font-size: 0.95rem;
	padding: 8px 12px;
	border: 1px solid rgba(80, 78, 78, 0.25);
	border-radius: 4px;
	background: var(--harkness-cream);
	color: var(--harkness-primary);
	min-width: 180px;
	cursor: pointer;
}
.harkness-archive-month-select-el:hover,
.harkness-archive-month-select-el:focus {
	border-color: var(--harkness-primary);
	outline: none;
}

/*--------------------------------------------------------------
  Single post – enhanced (reading time, meta, featured image)
--------------------------------------------------------------*/
.single .site-content,
.single .site-main {
	background: var(--harkness-cream);
}

.harkness-single-wrapper {
	background: var(--harkness-cream);
}

/* Single post layout – two columns: content + sidebar (TOC, More in category) */
.single .site-content-inner.harkness-single-wrapper {
	margin-left: auto;
	margin-right: auto;
	padding-left: 24px;
	padding-right: 24px;
	box-sizing: border-box;
	max-width: 1360px;
}

.harkness-single-layout {
	display: block;
	min-width: 0;
}

@media screen and (min-width: 960px) {
	.harkness-single-layout {
		display: grid;
		grid-template-columns: minmax(0, 1fr) 360px;
		gap: 2em 2.5em;
		align-items: start;
	}
	/* Let the main column shrink below intrinsic content width (fixes horizontal bleed) */
	.harkness-single-layout > .harkness-single-primary,
	.harkness-single-layout > .harkness-single-sidebar {
		min-width: 0;
	}
}

.single .harkness-single-primary .site-main {
	width: 100% !important;
	max-width: none !important;
	border: none !important;
	float: none !important;
	padding-right: 0 !important;
	padding-left: 0 !important;
}

/* Sticky sidebar – TOC and "More" stay in view when scrolling */
.harkness-single-sidebar {
	display: block;
}

/* Inline TOC – after breadcrumbs on phone/tablet; sidebar TOC is desktop-only */
.harkness-toc-inline-wrap {
	margin: 0 0 1.25rem;
}
@media screen and (min-width: 960px) {
	.harkness-toc-inline-wrap {
		display: none !important;
	}
}
@media screen and (max-width: 959px) {
	.harkness-single-sidebar--desktop-toc {
		display: none !important;
	}
}

/* TOC: collapsible on small screens; summary hidden on desktop */
.harkness-toc-collapsible {
	margin: 0;
	padding: 0;
	border: none;
	background: transparent;
}

.harkness-toc-collapsible-summary {
	list-style: none;
	cursor: pointer;
	font-family: var(--harkness-font-secondary);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--harkness-primary);
	padding: 0.85em 1em;
	margin: 0 0 0.5em;
	background: var(--harkness-card-surface);
	border: 1px solid rgba(80, 78, 78, 0.12);
	border-radius: 6px;
}

.harkness-toc-collapsible-summary::-webkit-details-marker {
	display: none;
}

.harkness-toc-collapsible-summary::after {
	content: '+';
	float: right;
	font-weight: 700;
	opacity: 0.6;
}

.harkness-toc-collapsible[open] > .harkness-toc-collapsible-summary::after {
	content: '–';
}

@media screen and (min-width: 960px) {
	.harkness-toc-collapsible-summary {
		display: none;
	}

	.harkness-toc-collapsible > .harkness-toc-sidebar {
		display: block;
	}

	/* Avoid duplicate “In this article” with visually hidden H3 on narrow viewports only */
	.harkness-toc-collapsible .harkness-toc-title {
		display: block;
	}
}

@media screen and (max-width: 959px) {
	.harkness-toc-collapsible .harkness-toc-title {
		position: absolute !important;
		height: 1px;
		width: 1px;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
		white-space: nowrap;
		border: 0;
		margin: -1px;
		padding: 0;
	}
}

@media screen and (min-width: 960px) {
	.harkness-single-sidebar {
		position: sticky;
		top: 90px;
		margin-top: 100px;
		align-self: start;
	}
	.admin-bar .harkness-single-sidebar {
		top: 122px;
	}
	@media screen and (max-width: 782px) {
		.admin-bar .harkness-single-sidebar {
			top: 136px;
		}
	}
	.harkness-toc-sidebar .harkness-toc {
		margin-bottom: 1.5em;
	}
}

.harkness-sidebar-more {
	background: var(--harkness-white);
	border: 1px solid rgba(80, 78, 78, 0.1);
	border-radius: 6px;
	padding: 1.25em 1.25em 1em;
	margin-top: 1em;
}

.harkness-sidebar-more-title {
	font-family: var(--harkness-font-secondary);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--harkness-primary);
	margin: 0 0 0.75em;
}

.harkness-sidebar-more-list {
	list-style: none;
	margin: 0 0 0.75em;
	padding: 0;
}

.harkness-sidebar-more-list li {
	margin-bottom: 0.5em;
	padding-bottom: 0.5em;
	border-bottom: 1px solid rgba(80, 78, 78, 0.08);
}

.harkness-sidebar-more-list li:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.harkness-sidebar-more-list a {
	font-size: 14px;
	color: var(--harkness-primary) !important;
	text-decoration: none;
}

.harkness-sidebar-more-list a:hover {
	color: var(--harkness-secondary) !important;
}

.harkness-sidebar-more-cta {
	margin: 0;
	font-size: 13px;
}

.harkness-sidebar-more-cta a {
	color: var(--harkness-secondary) !important;
	font-weight: 600;
	text-decoration: none;
}

.harkness-sidebar-more-cta a:hover {
	text-decoration: underline;
}

/* More in category – below post and product content (full width) */
.harkness-more-in-category-below {
	margin-top: 2.5em;
	padding-top: 2em;
	border-top: 1px solid rgba(80, 78, 78, 0.12);
}
.harkness-more-in-category-below-inner {
	max-width: 100%;
	margin: 0 auto;
	padding: 0;
}
.harkness-more-in-category-below .harkness-sidebar-more-title {
	margin-top: 0;
}

.harkness-more-in-category-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
	gap: 1.25rem 1.5rem;
	list-style: none;
	margin: 0 0 1rem;
	padding: 0;
}

.harkness-more-in-category-card {
	margin: 0;
	min-width: 0;
}

.harkness-more-in-category-card-link {
	display: flex;
	flex-direction: column;
	height: 100%;
	text-decoration: none;
	color: var(--harkness-primary) !important;
	font-family: var(--harkness-font-secondary);
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 1.35;
	border-radius: 6px;
	overflow: hidden;
	background: var(--harkness-white);
	border: 1px solid rgba(80, 78, 78, 0.1);
	box-shadow: 0 1px 3px rgba(80, 78, 78, 0.06);
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.harkness-more-in-category-card-link:hover {
	border-color: var(--harkness-secondary);
	box-shadow: 0 3px 10px rgba(80, 78, 78, 0.08);
}

.harkness-more-in-category-card-image {
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: rgba(180, 177, 153, 0.15);
}

.harkness-more-in-category-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.harkness-more-in-category-card-image--placeholder {
	min-height: 100px;
}

.harkness-more-in-category-card-title {
	display: block;
	padding: 0.85em 1em 1em;
	font-family: var(--harkness-font-primary);
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.35;
}

/* Explore the Series – carousel: title + excerpt on top, image below (single posts) */
.harkness-explore-the-series {
	margin-top: 2.5em;
	padding-top: 2em;
	border-top: 1px solid rgba(80, 78, 78, 0.1);
}

/* Homepage: Explore the Series – same width as product cards above (1200px + 24px padding) */
.harkness-explore-the-series-home {
	margin-top: 0;
	padding-top: 0;
	border-top: none;
	background: var(--harkness-cream);
	padding: 2.5em 24px 3em;
}

/* Tighter gap below Customer favourites — same rhythm as other home sections */
body.home .harkness-explore-the-series-home,
.category .harkness-explore-the-series-home {
	padding-top: var(--harkness-home-section-v-gap, 1.35em);
}
.harkness-explore-the-series-home .harkness-explore-the-series-inner {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding: 0 24px;
	box-sizing: border-box;
}
.harkness-explore-the-series-home .harkness-explore-the-series-carousel-wrap {
	margin-left: -24px;
	margin-right: -24px;
	padding-left: 24px;
	padding-right: 24px;
}
@media screen and (max-width: 839px) {
	.harkness-explore-the-series-home {
		padding-left: 16px;
		padding-right: 16px;
	}
	/* Single posts & any non-home explore: same carousel behaviour as homepage */
	.harkness-explore-the-series:not(.harkness-explore-the-series-home) {
		padding-left: 16px;
		padding-right: 16px;
		box-sizing: border-box;
	}
	.harkness-explore-the-series-home .harkness-explore-the-series-inner,
	.harkness-explore-the-series:not(.harkness-explore-the-series-home) .harkness-explore-the-series-inner {
		padding-left: 0;
		padding-right: 0;
	}
	.harkness-explore-the-series-home .harkness-explore-the-series-carousel-wrap,
	.harkness-explore-the-series .harkness-explore-the-series-carousel-wrap {
		margin-left: 0;
		margin-right: 0;
		padding-left: 0;
		padding-right: 0;
	}
	.harkness-explore-the-series-carousel .harkness-explore-card {
		flex: 0 0 min(260px, 78vw);
		width: min(260px, 78vw);
	}
	.harkness-explore-card-text {
		min-height: 8.5rem;
		padding: 1em 1em 0;
	}
	.harkness-explore-carousel-prev,
	.harkness-explore-carousel-next {
		width: 40px;
		height: 40px;
	}
	/* Shorter card images on small screens – matches compact product-style cards */
	.harkness-explore-card-image,
	.harkness-explore-card-image a {
		min-height: 200px;
	}
	.harkness-explore-card-image img,
	.harkness-explore-card-image-placeholder {
		height: 200px;
		min-height: 200px;
	}
}
@media screen and (min-width: 960px) {
	.harkness-explore-the-series-home .harkness-explore-the-series-carousel-wrap {
		margin-left: 0;
		margin-right: 0;
		padding-left: 0;
		padding-right: 0;
	}
}

.harkness-explore-the-series-inner {
	max-width: 100%;
	margin: 0;
	padding: 0 0 0.5em;
}
/* Same header pattern as .harkness-home-products-header — title + arrows in one row */
.harkness-explore-the-series-header {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: 1em;
	margin-bottom: 0;
}

.harkness-explore-the-series-header-left {
	display: flex;
	align-items: center;
	gap: 0.5em 1em;
	flex-wrap: wrap;
}

.harkness-explore-the-series-intro {
	font-family: var(--harkness-font-secondary);
	font-size: 0.9375rem;
	color: var(--harkness-body);
	line-height: 1.5;
	margin: 0 0 1.25em;
	max-width: 38em;
}

.harkness-explore-the-series-nav {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	flex-shrink: 0;
}

/* Text escape hatch next to carousel arrows (keyboard / screen-reader friendly) */
.harkness-carousel-see-all {
	flex-shrink: 0;
	font-family: var(--harkness-font-secondary);
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-decoration: none !important;
	color: var(--harkness-primary) !important;
	border-bottom: 1px solid rgba(80, 78, 78, 0.35);
	padding-bottom: 2px;
	line-height: 1.2;
	transition: color 0.15s ease, border-color 0.15s ease;
}

.harkness-carousel-see-all:hover,
.harkness-carousel-see-all:focus-visible {
	color: var(--harkness-secondary) !important;
	border-bottom-color: var(--harkness-secondary);
}

.harkness-carousel-see-all:focus-visible {
	outline: 2px solid var(--harkness-secondary);
	outline-offset: 3px;
}

/* Injected by carousel-drag.js — arrow press announcements for assistive tech */
.harkness-carousel-live-region {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.harkness-explore-the-series,
.harkness-explore-the-series-home,
.harkness-home-products,
.harkness-shop-the-scene {
	position: relative;
}

.harkness-explore-the-series-title {
	font-family: var(--harkness-font-primary);
	font-size: 1.35rem;
	font-weight: 600;
	color: var(--harkness-primary);
	margin: 0 0 0.35em;
	letter-spacing: 0.01em;
}
.harkness-explore-carousel-prev,
.harkness-explore-carousel-next {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	padding: 0;
	border: 1px solid rgba(80, 78, 78, 0.25);
	background: var(--harkness-white);
	color: var(--harkness-primary);
	font-size: 1.1rem;
	line-height: 1;
	cursor: pointer;
	border-radius: var(--harkness-card-radius);
	transition: border-color 0.2s, background 0.2s, color 0.2s, opacity 0.2s;
}
.harkness-explore-carousel-prev:hover:not(:disabled),
.harkness-explore-carousel-next:hover:not(:disabled) {
	border-color: var(--harkness-secondary);
	background: var(--harkness-secondary);
	color: var(--harkness-white);
}
.harkness-explore-carousel-prev:focus:not(:focus-visible),
.harkness-explore-carousel-next:focus:not(:focus-visible) {
	outline: none;
}
.harkness-explore-carousel-prev:focus-visible,
.harkness-explore-carousel-next:focus-visible {
	outline: 2px solid var(--harkness-secondary);
	outline-offset: 3px;
}
.harkness-explore-carousel-prev:disabled,
.harkness-explore-carousel-next:disabled {
	opacity: 0.38;
	cursor: not-allowed;
}
.harkness-explore-the-series-carousel-wrap {
	overflow-x: scroll;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	touch-action: pan-x;
	overscroll-behavior-x: contain;
	scroll-snap-type: none;
	scrollbar-width: thin;
	scrollbar-color: rgba(80, 78, 78, 0.25) transparent;
	margin: 0 -24px 0;
	padding: 0 24px 16px;
	width: 100%;
	position: relative;
}
.harkness-explore-the-series-carousel-wrap {
	cursor: grab;
}
.harkness-explore-the-series-carousel-wrap.is-dragging {
	cursor: grabbing;
	user-select: none;
	-webkit-user-select: none;
	scroll-snap-type: none;
	scroll-behavior: auto;
}
.harkness-explore-the-series-carousel-wrap img {
	-webkit-user-drag: none;
	user-select: none;
	-webkit-user-select: none;
}

/*
 * Single posts: article.harkness-single uses overflow-x: clip — negative horizontal margin
 * pulls the track left and the first card is clipped. Flush alignment keeps card 1 fully visible.
 */
.single .harkness-explore-the-series:not(.harkness-explore-the-series-home) .harkness-explore-the-series-carousel-wrap {
	margin-left: 0;
	margin-right: 0;
	padding-left: 0;
	padding-right: 0;
}
.harkness-explore-the-series-carousel-wrap::-webkit-scrollbar {
	height: 6px;
}
.harkness-explore-the-series-carousel-wrap::-webkit-scrollbar-track {
	background: transparent;
}
.harkness-explore-the-series-carousel-wrap::-webkit-scrollbar-thumb {
	background: rgba(80, 78, 78, 0.2);
	border-radius: 3px;
}
.harkness-explore-the-series-carousel {
	display: flex;
	flex-wrap: nowrap;
	gap: 1.5em;
	min-width: min-content;
	align-items: stretch;
}
.harkness-explore-card {
	flex: 0 0 260px;
	width: 260px;
	display: flex;
	flex-direction: column;
	background: var(--harkness-card-surface);
	border: 1px solid rgba(80, 78, 78, 0.1);
	border-radius: var(--harkness-card-radius);
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(80, 78, 78, 0.08);
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.harkness-explore-card:hover {
	box-shadow: 0 10px 28px rgba(80, 78, 78, 0.12);
	transform: translateY(-4px);
}

.harkness-explore-card:hover .harkness-explore-card-image img,
.harkness-explore-card:hover .harkness-explore-card-image-placeholder {
	transform: scale(1.05);
}

.harkness-explore-card a {
	display: block;
}
.harkness-explore-card-text {
	padding: 1.1em 1.15em 0;
	flex: 0 0 auto;
	min-height: 10rem;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
	background: var(--harkness-card-surface);
	border-bottom: 1px solid rgba(80, 78, 78, 0.08);
}
.harkness-explore-card-title {
	font-family: var(--harkness-font-primary);
	font-size: 1.05rem;
	font-weight: 600;
	margin: 0 0 0.5em;
	line-height: 1.35;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	word-break: normal !important;
	overflow-wrap: normal !important;
	word-wrap: normal !important;
}
.harkness-explore-card-title a {
	color: var(--harkness-primary);
	text-decoration: none;
}
.harkness-explore-card-title a:hover {
	color: var(--harkness-secondary);
}
.harkness-explore-card-excerpt {
	font-family: var(--harkness-font-secondary);
	font-size: 16px;
	font-weight: 400;
	color: var(--harkness-body);
	margin: 0 0 0.5em;
	line-height: 1.45;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	word-break: normal !important;
	overflow-wrap: normal !important;
	word-wrap: normal !important;
}

/* Single posts: keep Explore-the-Series supporting copy normal weight (match homepage). */
.single .harkness-explore-the-series .harkness-explore-the-series-intro,
.single .harkness-explore-the-series .harkness-explore-card-excerpt {
	font-weight: 400 !important;
}
.harkness-explore-card-image {
	margin-top: auto;
	flex-shrink: 0;
	overflow: hidden;
	min-height: 280px;
}
.harkness-explore-card-image a {
	display: block;
	height: 100%;
	min-height: 280px;
	pointer-events: none;
}
.harkness-explore-card-image img {
	width: 100%;
	height: 280px;
	min-height: 280px;
	object-fit: cover;
	object-position: center;
	display: block;
	vertical-align: top;
	transition: transform 0.35s ease;
}
.harkness-explore-card-image-placeholder {
	display: block;
	width: 100%;
	height: 280px;
	min-height: 280px;
	transition: transform 0.35s ease;
}

/* 840px+ so max-width:839px mobile rules (compact cards/images) are not overridden */
@media screen and (min-width: 840px) {
	.harkness-explore-the-series-carousel .harkness-explore-card {
		flex: 0 0 280px;
		width: 280px;
	}
	.harkness-explore-card-image,
	.harkness-explore-card-image a {
		min-height: 300px;
	}
	.harkness-explore-card-image img,
	.harkness-explore-card-image-placeholder {
		height: 300px;
		min-height: 300px;
	}
}
@media screen and (min-width: 1024px) {
	.harkness-explore-the-series-carousel .harkness-explore-card {
		flex: 0 0 320px;
		width: 320px;
	}
	.harkness-explore-card-image,
	.harkness-explore-card-image a {
		min-height: 320px;
	}
	.harkness-explore-card-image img,
	.harkness-explore-card-image-placeholder {
		height: 320px;
		min-height: 320px;
	}
}

.single .site-main {
	width: 100% !important;
	max-width: none !important;
	border: none !important;
	float: none !important;
	padding-right: 0 !important;
	padding-left: 0 !important;
}

.single .widget-area {
	display: none !important;
	border: none !important;
}

.single .widget-area:before {
	display: none !important;
}

/* Override parent theme’s narrow .single .entry-content (e.g. 540px at 1380px) – stay within grid column */
.single .entry-content,
.single article.harkness-single .entry-content {
	width: 100% !important;
	max-width: 100% !important;
	float: none !important;
	clear: both !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}

/*
 * Gazette parent: @media (min-width: 1080px) .single .site-main { width: 705px; }
 * and @media (min-width: 1380px) .single .entry-content { width: 540px; float: right; }
 * Re-assert full-width article body inside our grid (higher specificity + same breakpoints).
 */
@media screen and (min-width: 1080px) {
	.single article.harkness-single .entry-content {
		width: 100% !important;
		max-width: 100% !important;
		float: none !important;
		clear: both !important;
	}
	.single .harkness-single-primary .site-main {
		width: 100% !important;
		max-width: 100% !important;
		float: none !important;
	}
}

@media screen and (min-width: 1380px) {
	.single article.harkness-single .entry-content {
		width: 100% !important;
		max-width: 100% !important;
		float: none !important;
		clear: both !important;
	}
}

@media screen and (min-width: 960px) {
	.single .site-content-inner.harkness-single-wrapper {
		padding-left: 40px;
		padding-right: 40px;
	}
}

@media screen and (min-width: 1200px) {
	.single .site-content-inner.harkness-single-wrapper {
		padding-left: 48px;
		padding-right: 48px;
	}
}

.harkness-single-header {
	margin-bottom: 0;
}

/* Meta bar – single band under hero (category, date, author | share) */
.harkness-post-meta-bar {
	background: var(--harkness-card-surface);
	border: 1px solid rgba(80, 78, 78, 0.12);
	border-radius: 0 0 10px 10px;
	box-shadow: 0 4px 20px rgba(80, 78, 78, 0.07);
	margin-top: 0;
	margin-bottom: 1.75rem;
	padding: 0.9rem 1.1rem 1rem;
}

/* Flush under hero image: one continuous block */
.single-post.has-post-thumbnail .harkness-single-thumbnail {
	margin-bottom: 0;
	border-radius: 0;
}

.single-post.has-post-thumbnail .harkness-single-hero {
	border-radius: 0;
	overflow: hidden;
}

.single-post.has-post-thumbnail .harkness-post-meta-bar {
	border-top: none;
	border-radius: 0 0 10px 10px;
	box-shadow: 0 8px 24px rgba(80, 78, 78, 0.08);
}

.single-post:not(.has-post-thumbnail) .harkness-post-meta-bar {
	margin-top: 0.5rem;
	border-radius: 10px;
}

.harkness-post-meta-bar-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem 1.25rem;
}

.harkness-post-meta-primary {
	flex: 1 1 12rem;
	min-width: 0;
}

@media screen and (min-width: 720px) {
	.harkness-post-meta-social {
		flex-shrink: 0;
		padding-left: 1.25rem;
		margin-left: 0.25rem;
		border-left: 1px solid rgba(80, 78, 78, 0.14);
	}
}

@media screen and (max-width: 719px) {
	.harkness-post-meta-social {
		width: 100%;
		padding-top: 0.85rem;
		margin-top: 0.1rem;
		border-top: 1px solid rgba(80, 78, 78, 0.1);
		margin-left: 0;
		padding-left: 0;
		border-left: none;
		justify-content: flex-start;
	}
}

@media screen and (min-width: 640px) {
	.harkness-post-meta-bar {
		padding: 1rem 1.35rem 1.05rem;
	}
}
@media screen and (min-width: 960px) {
	.harkness-post-meta-bar {
		padding: 1.05rem 1.5rem 1.1rem;
	}
}

.harkness-post-meta-items {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	font-family: var(--harkness-font-secondary);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--harkness-body);
	gap: 0 0.5em;
}

.harkness-post-meta-kicker {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0 0.5em;
	min-width: 0;
}

/* Category · date (inside kicker row) */
.harkness-post-meta-kicker .harkness-meta-cat + .harkness-meta-date::before {
	content: "·";
	margin-right: 0.5em;
	opacity: 0.6;
}

/* Kicker row · byline — desktop inline */
.harkness-post-meta-items > .harkness-post-meta-kicker + .harkness-meta-byline::before {
	content: "·";
	margin-right: 0.5em;
	opacity: 0.6;
}

.harkness-meta-cat a {
	display: inline-block;
	background: rgba(80, 78, 78, 0.12);
	color: var(--harkness-primary) !important;
	padding: 4px 10px;
	border-radius: 999px;
	text-decoration: none;
}

.harkness-meta-cat a:hover {
	background: var(--harkness-secondary);
	color: var(--harkness-white) !important;
}

.harkness-meta-date time,
.harkness-meta-byline {
	color: var(--harkness-text-muted);
}

.harkness-meta-byline a {
	color: var(--harkness-primary) !important;
	text-decoration: none;
}

.harkness-meta-date {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.35em 0.5em;
	max-width: 100%;
}

/* Small screens: stack kicker vs byline, tighter type (no extra mid-line bullets) */
@media screen and (max-width: 639px) {
	.harkness-post-meta-bar {
		padding: 0.75rem 0.9rem 0.85rem;
		margin-bottom: 1.25rem;
	}

	.harkness-post-meta-items {
		flex-direction: row;
		flex-wrap: nowrap;
		align-items: center;
		justify-content: flex-start;
		gap: 0 0.35rem;
		font-size: 10px;
		letter-spacing: 0.06em;
		line-height: 1.35;
		white-space: nowrap;
		overflow-x: auto;
		overflow-y: hidden;
		scrollbar-width: none;
	}

	.harkness-post-meta-items::-webkit-scrollbar {
		display: none;
	}

	.harkness-post-meta-items > .harkness-post-meta-kicker + .harkness-meta-byline::before {
		content: "·";
		margin-right: 0.35em;
		opacity: 0.6;
	}

	.harkness-post-meta-kicker {
		width: auto;
		flex-wrap: nowrap;
		align-items: center;
		column-gap: 0.35em;
		white-space: nowrap;
	}

	.harkness-meta-cat a {
		padding: 3px 8px;
		font-size: 9px;
		letter-spacing: 0.07em;
	}

	.harkness-meta-byline {
		font-weight: 500;
		letter-spacing: 0.05em;
		white-space: nowrap;
	}

	.harkness-post-meta-social {
		padding-top: 0.65rem;
		margin-top: 0.15rem;
	}
}

.harkness-editorial-disclaimer {
	font-family: var(--harkness-font-secondary);
	font-size: 0.875rem;
	line-height: 1.55;
	color: var(--harkness-body);
	margin: -0.5rem 0 1.25rem;
	padding: 0.85em 1em;
	background: rgba(180, 177, 153, 0.15);
	border-left: 3px solid var(--harkness-secondary);
	border-radius: 0 4px 4px 0;
}

.harkness-editorial-disclaimer p:last-child {
	margin-bottom: 0;
}

.harkness-mid-article-cta {
	margin: 1.75rem 0 2rem;
	padding: 1rem 1.15rem;
	background: var(--harkness-card-surface);
	border: 1px solid rgba(80, 78, 78, 0.12);
	border-radius: var(--harkness-outline-btn-radius);
	box-shadow: 0 1px 2px rgba(80, 78, 78, 0.04);
}

.harkness-mid-article-cta-lead {
	font-family: var(--harkness-font-secondary);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--harkness-primary);
	margin: 0 0 0.35em;
}

.harkness-mid-article-cta-links {
	margin: 0;
	font-family: var(--harkness-font-secondary);
	font-size: 0.9375rem;
	font-weight: 600;
}

.harkness-mid-article-cta-link {
	color: var(--harkness-primary) !important;
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.harkness-mid-article-cta-link:hover,
.harkness-mid-article-cta-link:focus {
	color: var(--harkness-charcoal) !important;
}

.harkness-mid-article-cta-sep {
	margin: 0 0.35em;
	color: rgba(80, 78, 78, 0.45);
}

.comment-notes-harkness {
	font-size: 0.875rem;
	color: var(--harkness-body);
}

.comment-form-harkness-privacy {
	font-family: var(--harkness-font-secondary);
	font-size: 0.8125rem;
	line-height: 1.45;
	margin-top: 1em;
}

.comment-form-harkness-privacy label {
	display: flex;
	align-items: flex-start;
	gap: 0.5em;
	cursor: pointer;
}

.comment-form-harkness-privacy input {
	margin-top: 0.2em;
	flex-shrink: 0;
}

.harkness-post-meta-social {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.45rem 0.5rem;
}

.harkness-social-label {
	font-family: var(--harkness-font-secondary);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--harkness-text-muted);
	margin-right: 0.25em;
}

.harkness-social-icon,
.harkness-like-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border: none;
	background: rgba(80, 78, 78, 0.1);
	color: var(--harkness-primary);
	border-radius: 50%;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
	text-decoration: none;
}

.harkness-post-meta-social .harkness-social-icon {
	width: 36px;
	height: 36px;
	background: var(--harkness-white);
	border: 1px solid rgba(80, 78, 78, 0.14);
}

.harkness-post-meta-social .harkness-like-btn--meta {
	width: auto;
	min-width: 56px;
	height: 36px;
	padding: 0 10px 0 8px;
	border-radius: 999px;
	background: var(--harkness-white);
	border: 1px solid rgba(80, 78, 78, 0.14);
	gap: 2px;
}

.harkness-social-icon:hover,
.harkness-like-btn:hover {
	background: var(--harkness-primary);
	color: var(--harkness-white);
	border-color: var(--harkness-primary);
}

.harkness-post-meta-social .harkness-social-icon:hover {
	transform: translateY(-1px);
}

.harkness-like-btn[aria-pressed="true"] {
	background: var(--harkness-secondary);
	color: var(--harkness-white);
}

.harkness-like-count {
	font-size: 12px;
	font-weight: 600;
	margin-left: 2px;
}

/* Social icons – simple shapes (no images) */
.harkness-share-facebook::before { content: "f"; font-weight: 700; }
.harkness-share-twitter::before { content: "𝕏"; font-size: 14px; }
.harkness-share-linkedin::before { content: "in"; font-size: 10px; font-weight: 700; }
.harkness-share-copy::before { content: "⎘"; font-size: 14px; }
.harkness-like-icon::before { content: "♥"; }
.harkness-social-icon .screen-reader-text,
.harkness-like-btn .screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.harkness-social-icon,
.harkness-like-btn { position: relative; }

.harkness-share-copy.harkness-copied { background: var(--harkness-secondary); color: var(--harkness-white); }

.harkness-single-thumbnail {
	display: block;
	line-height: 0;
	margin: 0 0 1.25em;
	overflow: hidden;
	text-align: center;
	height: min(380px, 50vh);
	height: min(380px, 50svh);
	min-height: 0;
}

.harkness-single-thumbnail img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	vertical-align: top;
	margin-left: auto;
	margin-right: auto;
}

/* Single-post hero: letterbox (contain) — fixed box size; bars match page cream, not harsh black. */
.single-post .harkness-single-hero .harkness-single-thumbnail {
	background: var(--harkness-cream);
}
.single-post .harkness-single-hero .harkness-single-thumbnail img {
	object-fit: contain !important;
	object-position: center center;
}

.harkness-single-meta-top {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	font-family: var(--harkness-font-secondary);
	font-size: 12px;
	gap: 0.75em 1em;
	letter-spacing: 0.04em;
	margin-bottom: 0.75em;
	text-transform: uppercase;
}

.harkness-single-cat a,
.harkness-single-date,
.harkness-single-reading-time {
	color: var(--harkness-text-muted);
}

.harkness-single-byline {
	color: var(--harkness-text-muted);
}
.harkness-single-byline a {
	color: var(--harkness-primary) !important;
}
.harkness-single-meta-top .harkness-single-byline::before {
	content: " · ";
	opacity: 0.8;
	margin: 0 0.25em;
}

.harkness-single-cat a:hover {
	color: var(--harkness-primary);
}

.harkness-single-cat a {
	background: rgba(244, 241, 232, 0.9);
	padding: 4px 8px;
	text-decoration: none;
}

.harkness-single .entry-title {
	font-family: var(--harkness-font-primary);
	font-size: clamp(1.75rem, 4vw, 2.25rem);
	line-height: 1.25;
	margin: 0 0 0.5em;
}

/* Reading progress bar – fixed at very top so it stays visible when header is fixed on scroll */
.harkness-reading-progress {
	position: fixed;
	top: 0;
	left: 0;
	height: 5px;
	background: var(--harkness-secondary);
	width: 0;
	z-index: 999999;
	transition: width 0.15s ease-out;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
	pointer-events: none;
}

/* Table of contents – visible card above content when post has headings */
.harkness-toc {
	background: rgba(244, 241, 232, 0.85);
	border: 1px solid rgba(80, 78, 78, 0.12);
	border-radius: 4px;
	margin: 0 0 2em;
	padding: 1.25em 1.5em;
	box-shadow: 0 1px 2px rgba(80, 78, 78, 0.04);
}

.harkness-toc-title {
	font-family: var(--harkness-font-secondary);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	margin: 0 0 0.75em;
	text-transform: uppercase;
	color: var(--harkness-primary);
}

.harkness-toc-empty {
	font-family: var(--harkness-font-secondary);
	font-size: 14px;
	color: var(--harkness-body);
	margin: 0;
	opacity: 0.85;
}

.harkness-toc-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.harkness-toc-list li {
	margin: 0.35em 0;
	padding: 0;
}

.harkness-toc-list li.harkness-toc-sub {
	margin-left: 1em;
	padding-left: 0.5em;
	border-left: 2px solid var(--harkness-secondary);
}

.harkness-toc-list li.harkness-toc-sub2 {
	margin-left: 1.75em;
	padding-left: 0.5em;
	border-left: 1px solid rgba(80, 78, 78, 0.25);
	font-size: 0.95em;
}

.harkness-toc-list a {
	font-family: var(--harkness-font-secondary);
	font-size: 14px;
	color: var(--harkness-primary);
	overflow-wrap: normal;
	word-wrap: normal;
	word-break: normal;
	hyphens: none;
	-webkit-hyphens: none;
}

.harkness-toc-list a:hover {
	color: var(--harkness-secondary);
}

/* Anchor jump offset: keep TOC target headings visible below sticky header */
.single .harkness-single .entry-content [id] {
	scroll-margin-top: 160px;
}

.admin-bar .single .harkness-single .entry-content [id] {
	scroll-margin-top: 190px;
}

.harkness-single .entry-content {
	display: flow-root;
	background: var(--harkness-white);
	padding: 2em 2.25em 2.5em;
	margin: 0 0 2em;
	color: var(--harkness-body);
	font-family: var(--harkness-font-secondary);
	/* Body copy: 18px. In-content h1–h6 keep their own sizes below. */
	font-size: 18px;
	line-height: 1.7;
	box-shadow: 0 1px 3px rgba(80, 78, 78, 0.06);
	border: 1px solid rgba(80, 78, 78, 0.06);
	width: 100%;
	min-width: 0;
	max-width: 100%;
	box-sizing: border-box;
	/*
	 * Clip horizontal bleed without forcing overflow-y: auto (overflow-x: hidden + visible y
	 * computes to y:auto and shows an inner scrollbar with the theme’s * scrollbar styles).
	 */
	overflow-x: clip;
	overflow-y: visible;
	white-space: normal;
	word-break: normal;
	/* normal = whole words wrap to next line; avoids “specif” + “y” splits from break-word */
	overflow-wrap: normal;
	word-wrap: normal;
	hyphens: none;
	-webkit-hyphens: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

/* Older engines: x:hidden forces y:auto; hide any stray inner scrollbar on the article body */
@supports not (overflow: clip) {
	.harkness-single .entry-content {
		overflow-x: hidden;
		overflow-y: visible;
		scrollbar-width: none;
		-ms-overflow-style: none;
	}
	.harkness-single .entry-content::-webkit-scrollbar {
		width: 0;
		height: 0;
		display: none;
	}
}

.harkness-single .entry-content > * {
	max-width: 100%;
	box-sizing: border-box;
}

/* Elementor inside post content: keep builder wrappers in our content column */
.single article.harkness-single .entry-content .elementor,
.single article.harkness-single .entry-content .elementor-section,
.single article.harkness-single .entry-content .elementor-container,
.single article.harkness-single .entry-content .elementor-column,
.single article.harkness-single .entry-content .elementor-widget-wrap {
	width: 100% !important;
	max-width: 100% !important;
	float: none !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	box-sizing: border-box;
}

/* Classic floated images/tables from older editors should not collapse the text column */
.single article.harkness-single .entry-content::after {
	content: "";
	display: table;
	clear: both;
}

/* Reusable 2-column content block for post body (text + image). */
.harkness-single .entry-content .harkness-rose-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(220px, 270px);
	gap: 1.2rem 1.5rem;
	align-items: start;
	margin: 1.1rem 0 1.35rem;
}

.harkness-single .entry-content .harkness-rose-grid > * {
	margin-top: 0;
	margin-bottom: 0.85rem;
}

.harkness-single .entry-content .harkness-rose-grid .harkness-rose-grid-media {
	grid-column: 2;
	grid-row: 1 / span 20;
}

.harkness-single .entry-content .harkness-rose-grid .harkness-rose-grid-media img {
	display: block;
	width: 100%;
	height: auto;
}

@media screen and (max-width: 767px) {
	.harkness-single .entry-content .harkness-rose-grid {
		grid-template-columns: 1fr;
		gap: 0.85rem;
	}
	.harkness-single .entry-content .harkness-rose-grid .harkness-rose-grid-media {
		grid-column: auto;
		grid-row: auto;
	}
}
/* Long URLs / unbroken strings in links only */
.harkness-single .entry-content a {
	overflow-wrap: anywhere;
	word-wrap: break-word;
	word-break: normal;
}

/* Fallback containment: keep malformed/unbroken post text inside white article box. */
.harkness-single .entry-content p,
.harkness-single .entry-content li,
.harkness-single .entry-content blockquote,
.harkness-single .entry-content td,
.harkness-single .entry-content th {
	overflow-wrap: anywhere;
	word-wrap: break-word;
	word-break: normal;
	max-width: 100%;
}

@media screen and (min-width: 640px) {
	.harkness-single .entry-content {
		padding: 2.25em 2.75em 2.5em;
	}
}

@media screen and (min-width: 960px) {
	.harkness-single .entry-content {
		padding: 2.5em 3em 2.5em;
	}
}

.harkness-single .entry-content > p:first-of-type {
	font-size: 18px;
	line-height: 1.65;
}

/* Prose: break at word boundaries only (not mid-word like break-word) */
.harkness-single .entry-content p,
.harkness-single .entry-content h1,
.harkness-single .entry-content h2,
.harkness-single .entry-content h3,
.harkness-single .entry-content h4,
.harkness-single .entry-content li,
.harkness-single .entry-content blockquote,
.harkness-single .entry-content td,
.harkness-single .entry-content th {
	word-break: normal;
	overflow-wrap: normal;
	word-wrap: normal;
	hyphens: none !important;
	-webkit-hyphens: none !important;
	white-space: normal;
	max-width: 100%;
}
.harkness-single .entry-content p {
	margin-bottom: 1.25em;
	font-size: 18px;
	font-weight: 400;
}

.harkness-single .entry-content li,
.harkness-single .entry-content blockquote,
.harkness-single .entry-content td,
.harkness-single .entry-content th {
	font-size: 18px;
	font-weight: 400;
}

/* Inline emphasis: avoid heavier than needed when copy still has occasional strong tags */
.harkness-single .entry-content p strong,
.harkness-single .entry-content p b,
.harkness-single .entry-content li strong,
.harkness-single .entry-content li b,
.harkness-single .entry-content blockquote strong,
.harkness-single .entry-content blockquote b {
	font-weight: 600;
	color: var(--harkness-body);
}

@supports (text-wrap: pretty) {
	.harkness-single .entry-content p {
		text-wrap: pretty;
	}
}

/* Standard pages: same readable wrapping as single posts (Raleway body, no mid-word breaks) */
.page .entry-content {
	font-family: var(--harkness-font-secondary);
	font-size: 18px;
	line-height: 1.7;
	color: var(--harkness-body);
	word-break: normal;
	overflow-wrap: normal;
	word-wrap: normal;
	hyphens: none;
	-webkit-hyphens: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}
.page .entry-content a {
	overflow-wrap: anywhere;
	word-wrap: break-word;
	word-break: normal;
}
.page .entry-content p,
.page .entry-content li,
.page .entry-content blockquote,
.page .entry-content td,
.page .entry-content th {
	word-break: normal;
	overflow-wrap: normal;
	word-wrap: normal;
	hyphens: none;
	-webkit-hyphens: none;
	max-width: 100%;
}
.page .entry-content p,
.page .entry-content li,
.page .entry-content blockquote,
.page .entry-content td,
.page .entry-content th {
	font-size: 18px;
}

.page .entry-content p {
	margin-bottom: 1.25em;
}

.page .entry-content p strong,
.page .entry-content p b,
.page .entry-content li strong,
.page .entry-content li b {
	font-weight: 600;
	color: var(--harkness-body);
}
@supports (text-wrap: pretty) {
	.page .entry-content p {
		text-wrap: pretty;
	}
}

.harkness-single .entry-content pre,
.harkness-single .entry-content code {
	max-width: 100%;
	box-sizing: border-box;
}

.harkness-single .entry-content pre {
	overflow-x: auto;
	white-space: pre;
	word-break: normal;
	overflow-wrap: normal;
}

.harkness-single .entry-content iframe,
.harkness-single .entry-content embed,
.harkness-single .entry-content video {
	max-width: 100%;
}

.harkness-single .entry-content blockquote {
	border-left: 4px solid var(--harkness-secondary);
	margin: 1.5em 0;
	padding: 0.75em 0 0.75em 1.25em;
	font-style: italic;
	color: var(--harkness-primary);
}

.harkness-single .entry-content blockquote p:last-child {
	margin-bottom: 0;
}

.harkness-single .entry-content h1,
.harkness-single .entry-content h2,
.harkness-single .entry-content h3,
.harkness-single .entry-content h4,
.harkness-single .entry-content h5,
.harkness-single .entry-content h6 {
	color: var(--harkness-primary);
}

.harkness-single-footer {
	font-family: var(--harkness-font-secondary);
	font-size: 13px;
	color: var(--harkness-text-muted);
}

.harkness-single-footer .tags-links a {
	color: var(--harkness-secondary);
}

.harkness-single-footer .tags-links a:hover {
	color: var(--harkness-primary);
}

/* Author bio – E-E-A-T */
.harkness-author-bio {
	margin: 2.5em 0 2em;
	padding: 1.5em 1.25em;
	background: rgba(244, 241, 232, 0.8);
	border: 1px solid rgba(80, 78, 78, 0.1);
	border-radius: 6px;
}

.harkness-author-bio-inner {
	display: flex;
	flex-wrap: wrap;
	gap: 1.25em;
	align-items: flex-start;
}

.harkness-author-bio-avatar {
	flex-shrink: 0;
}

.harkness-author-bio-avatar img {
	display: block;
	border-radius: 50%;
	width: 80px;
	height: 80px;
	object-fit: cover;
}

.harkness-author-avatar-fallback {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: rgba(80, 78, 78, 0.18);
	color: var(--harkness-primary);
	font-family: var(--harkness-font-secondary);
	font-size: 1.4rem;
	font-weight: 700;
}

.harkness-author-bio-text {
	flex: 1;
	min-width: 0;
}

.harkness-author-bio-heading {
	font-family: var(--harkness-font-secondary);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--harkness-primary);
	margin: 0 0 0.35em;
}

.harkness-author-bio-name {
	font-family: var(--harkness-font-secondary);
	font-size: 1rem;
	font-weight: 600;
	margin: 0 0 0.5em;
}

.harkness-author-bio-name a {
	color: var(--harkness-primary) !important;
}

.harkness-author-bio-desc {
	font-size: 0.95rem;
	line-height: 1.6;
	color: var(--harkness-body);
	margin: 0;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	line-clamp: 1;
	overflow: hidden;
	text-overflow: ellipsis;
}

.harkness-author-bio-desc p {
	margin: 0 0 0.5em;
}

.harkness-author-bio-desc p:last-child {
	margin-bottom: 0;
}

.harkness-post-tags {
	margin: 1.75em 0 0;
	padding-top: 1em;
	border-top: 1px solid rgba(80, 78, 78, 0.12);
}

.harkness-post-tags-title {
	font-family: var(--harkness-font-secondary);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin: 0 0 0.7em;
}

.harkness-post-tags-list a {
	display: inline-block;
	margin: 0 0.45em 0.45em 0;
	padding: 6px 10px;
	border: 1px solid rgba(80, 78, 78, 0.2);
	border-radius: 999px;
	font-family: var(--harkness-font-secondary);
	font-size: 12px;
	color: var(--harkness-primary) !important;
	text-decoration: none;
	background: var(--harkness-white);
}

.harkness-post-tags-list a:hover {
	background: var(--harkness-primary);
	color: var(--harkness-white) !important;
	border-color: var(--harkness-primary);
}

/* Related posts – engagement (card grid) */
.harkness-related-posts {
	margin: 2em 0 0;
	padding: 1.5em 0 0;
	border-top: 1px solid rgba(80, 78, 78, 0.12);
}

.harkness-related-posts-title {
	font-family: var(--harkness-font-secondary);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--harkness-primary);
	margin: 0 0 1em;
}

.harkness-related-posts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
	gap: 1.35rem 1.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.harkness-related-posts-card {
	margin: 0;
	min-width: 0;
}

.harkness-related-posts-card-link {
	display: flex;
	flex-direction: column;
	height: 100%;
	text-decoration: none;
	color: var(--harkness-primary) !important;
	background: var(--harkness-white);
	border: 1px solid rgba(80, 78, 78, 0.1);
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(80, 78, 78, 0.06);
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.harkness-related-posts-card-link:hover {
	border-color: var(--harkness-secondary);
	box-shadow: 0 3px 12px rgba(80, 78, 78, 0.08);
}

.harkness-related-posts-card-image {
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: rgba(180, 177, 153, 0.15);
}

.harkness-related-posts-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.harkness-related-posts-card-image--placeholder {
	min-height: 120px;
}

.harkness-related-posts-card-body {
	display: flex;
	flex-direction: column;
	padding: 0.75em 0.85em 0.95em;
	flex: 1;
	min-height: 0;
}

.harkness-related-posts-card-title {
	font-weight: 600;
	font-family: var(--harkness-font-primary);
	font-size: 1.05rem;
	line-height: 1.35;
	color: var(--harkness-primary);
}

.harkness-related-posts-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.35em 0.65em;
	font-size: 0.8125rem;
	color: rgba(80, 78, 78, 0.65);
	margin-top: 0.35em;
}

.harkness-related-posts-read {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.harkness-related-posts-date {
	font-size: 12px;
	color: rgba(80, 78, 78, 0.6);
	font-weight: 400;
}

/* Post FAQs – accordion, divider above */
.harkness-post-faqs {
	margin: 2em 0 0;
	padding: 2em 0 0;
	border-top: 2px solid rgba(80, 78, 78, 0.2);
}

.harkness-post-faqs-title {
	font-family: var(--harkness-font-primary);
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--harkness-primary);
	margin: 0 0 1em;
}

.harkness-post-faqs-accordion {
	margin: 0;
	padding: 0;
	list-style: none;
}

.harkness-post-faqs-li {
	list-style: none;
	margin: 0 0 0.5em;
}

.harkness-post-faqs-li:last-child {
	margin-bottom: 0;
}

.harkness-post-faqs-item {
	margin: 0;
	border: 1px solid rgba(80, 78, 78, 0.12);
	border-radius: 4px;
	overflow: hidden;
	background: var(--harkness-white);
}

.harkness-post-faqs-item[open] {
	border-color: rgba(80, 78, 78, 0.2);
}

.harkness-post-faqs-q {
	font-family: var(--harkness-font-secondary);
	font-size: 15px;
	font-weight: 600;
	color: var(--harkness-primary);
	margin: 0;
	padding: 1em 2.5em 1em 1.25em;
	display: block;
	cursor: pointer;
	list-style: none;
	position: relative;
	transition: background 0.2s ease, color 0.2s ease;
}

.harkness-post-faqs-q::-webkit-details-marker,
.harkness-post-faqs-q::marker {
	display: none;
}

.harkness-post-faqs-q::after {
	content: '';
	position: absolute;
	right: 1em;
	top: 50%;
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 6px solid var(--harkness-primary);
	transform: translateY(-50%);
	transition: transform 0.2s ease;
}

.harkness-post-faqs-item[open] .harkness-post-faqs-q::after {
	transform: translateY(-50%) rotate(180deg);
}

.harkness-post-faqs-q:hover {
	background: rgba(244, 241, 232, 0.8);
	color: var(--harkness-primary);
}

.harkness-post-faqs-a {
	font-family: var(--harkness-font-secondary);
	font-size: 14px;
	line-height: 1.6;
	color: var(--harkness-body);
	margin: 0;
	padding: 0.5em 1.25em 1em 1.25em;
	border-top: 1px solid rgba(80, 78, 78, 0.08);
}

/* Shop the scene – placeholder product cards (David Austin style) */
.harkness-shop-the-scene {
	margin: 2.5em 0 2em;
	padding: 2em 0;
	border-top: 1px solid rgba(80, 78, 78, 0.12);
}
@media screen and (max-width: 639px) {
	.harkness-shop-the-scene-inner {
		max-width: 100%;
		min-width: 0;
	}
}

.harkness-shop-the-scene-title {
	font-family: var(--harkness-font-primary);
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--harkness-primary);
	margin: 0 0 0.35em;
}

.harkness-shop-the-scene-desc {
	font-family: var(--harkness-font-secondary);
	font-size: 0.95rem;
	color: var(--harkness-body);
	margin: 0 0 1.5em;
}

.harkness-shop-the-scene-header {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: 1em;
}

.harkness-shop-the-scene-header-left {
	display: flex;
	align-items: center;
	gap: 0.5em 1em;
	flex-wrap: wrap;
}

/* Shop the scene – horizontal carousel (matches homepage featured roses) */
.harkness-shop-scene-carousel-row {
	display: block;
	width: 100%;
}
.harkness-shop-scene-carousel-prev,
.harkness-shop-scene-carousel-next {
	display: inline-flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	padding: 0;
	border: 1px solid rgba(80, 78, 78, 0.25);
	background: var(--harkness-white);
	color: var(--harkness-primary);
	font-size: 1.1rem;
	line-height: 1;
	cursor: pointer;
	border-radius: var(--harkness-card-radius);
	transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.harkness-shop-scene-carousel-prev:hover:not(:disabled),
.harkness-shop-scene-carousel-next:hover:not(:disabled) {
	border-color: var(--harkness-secondary);
	background: var(--harkness-secondary);
	color: var(--harkness-white);
}
.harkness-shop-scene-carousel-prev:focus:not(:focus-visible),
.harkness-shop-scene-carousel-next:focus:not(:focus-visible) {
	outline: none;
}
.harkness-shop-scene-carousel-prev:focus-visible,
.harkness-shop-scene-carousel-next:focus-visible {
	outline: 2px solid var(--harkness-secondary);
	outline-offset: 3px;
}
.harkness-shop-scene-carousel-prev:disabled,
.harkness-shop-scene-carousel-next:disabled {
	opacity: 0.38;
	cursor: not-allowed;
}
.harkness-shop-scene-carousel-row .harkness-shop-scene-carousel-wrap {
	flex: none;
	min-width: 0;
}
.harkness-shop-scene-carousel-wrap {
	overflow-x: scroll;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	touch-action: pan-x;
	overscroll-behavior-x: contain;
	scroll-snap-type: none;
	scroll-behavior: smooth;
	margin: 0;
	padding: 0 0 12px;
	width: 100%;
	position: relative;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}

.harkness-home-products-carousel-wrap,
.harkness-shop-scene-carousel-wrap {
	cursor: grab;
}
.harkness-home-products-carousel-wrap.is-dragging,
.harkness-shop-scene-carousel-wrap.is-dragging {
	cursor: grabbing;
	user-select: none;
	-webkit-user-select: none;
	scroll-snap-type: none;
	scroll-behavior: auto;
}
.harkness-home-products-carousel-wrap img,
.harkness-shop-scene-carousel-wrap img {
	-webkit-user-drag: none;
	user-select: none;
	-webkit-user-select: none;
}
.harkness-shop-scene-carousel {
	display: flex;
	flex-wrap: nowrap;
	align-items: stretch;
	gap: 1.5em;
	min-width: min-content;
}

/* Legacy grid class – still used by homepage products inner carousel */
.harkness-shop-the-scene-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25em;
	width: 100%;
	min-width: 0;
}

@media screen and (min-width: 520px) {
	.harkness-shop-the-scene-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (min-width: 768px) {
	.harkness-shop-the-scene-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 1.5em;
	}
}

@media screen and (max-width: 839px) {
	.harkness-shop-the-scene {
		padding-left: 16px;
		padding-right: 16px;
	}
	.harkness-shop-scene-carousel-row {
		gap: 0;
	}
	.harkness-shop-scene-carousel-wrap {
		padding-right: 0;
	}
	.harkness-shop-scene-carousel-prev,
	.harkness-shop-scene-carousel-next {
		width: 40px;
		height: 40px;
	}
}

.harkness-shop-card {
	background: var(--harkness-card-surface);
	overflow: hidden;
	box-shadow: 0 2px 14px rgba(80, 78, 78, 0.1);
	border: 1px solid rgba(80, 78, 78, 0.08);
	border-radius: var(--harkness-card-radius);
	transition: box-shadow 0.25s ease, transform 0.25s ease;
	/* Equal-height row: pin footer link to bottom of card */
	display: flex;
	flex-direction: column;
	height: 100%;
	align-self: stretch;
}

.harkness-shop-card:hover {
	box-shadow: 0 10px 28px rgba(80, 78, 78, 0.14);
	transform: translateY(-4px);
}

.harkness-shop-card:hover .harkness-shop-card-image-img {
	transform: scale(1.05);
}

.harkness-home-products.harkness-animate-on-scroll.harkness-in-view .harkness-shop-card:hover {
	transform: translateY(-4px);
}

.harkness-shop-card-image {
	aspect-ratio: 4 / 5;
	min-height: 180px;
	position: relative;
	background: linear-gradient(135deg, var(--harkness-secondary) 0%, var(--harkness-primary) 100%);
	overflow: hidden;
}

.harkness-shop-card-image-link {
	display: block;
	flex-shrink: 0;
	text-decoration: none;
	color: inherit;
	pointer-events: none;
}

.harkness-shop-card-title a {
	color: inherit;
	text-decoration: none;
}

.harkness-shop-card-title a:hover {
	color: var(--harkness-secondary) !important;
}

.harkness-shop-card-content {
	padding: 0.85em 1.1em 1em;
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	min-height: 0;
}

.harkness-shop-card-title {
	font-family: var(--harkness-font-primary);
	font-size: 1.05rem;
	font-weight: 600;
	margin: 0 0 0.25em;
	color: var(--harkness-primary);
	line-height: 1.28;
	min-height: calc(1.28em * 2);
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	overflow: hidden;
}

.harkness-shop-card-price {
	font-family: var(--harkness-font-secondary);
	font-size: 13px;
	font-weight: 500;
	color: var(--harkness-body);
	margin: 0 0 0.4em;
	line-height: 1.35;
	min-height: 0;
}

.harkness-shop-card-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--harkness-font-secondary);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: var(--harkness-primary) !important;
	text-decoration: none !important;
	margin-top: auto;
	align-self: flex-start;
	padding: 8px 14px;
	border: 1px solid var(--harkness-primary);
	border-radius: var(--harkness-outline-btn-radius);
	background: transparent;
	box-sizing: border-box;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	-webkit-tap-highlight-color: transparent;
}

.harkness-shop-card-link:hover {
	color: var(--harkness-white) !important;
	background: var(--harkness-primary);
	border-color: var(--harkness-primary);
}

.harkness-shop-card-link:focus-visible {
	outline: 2px solid var(--harkness-secondary);
	outline-offset: 3px;
}

.harkness-shop-the-scene-cta {
	margin: 1.5em 0 0;
}

/* Same outline treatment as READ MORE / Back to shop (not pill-shaped) */
.harkness-shop-the-scene-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--harkness-font-secondary) !important;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 10px 20px;
	border: 1px solid var(--harkness-primary);
	border-radius: var(--harkness-card-radius);
	color: var(--harkness-primary) !important;
	text-decoration: none !important;
	background: transparent;
	box-sizing: border-box;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	-webkit-tap-highlight-color: transparent;
}

.harkness-shop-the-scene-btn:hover,
.harkness-shop-the-scene-btn:focus {
	background: var(--harkness-primary);
	color: var(--harkness-white) !important;
	border-color: var(--harkness-primary);
	text-decoration: none !important;
}

/*--------------------------------------------------------------
  Rose Finder page
--------------------------------------------------------------*/
.harkness-rose-finder-primary .harkness-rose-finder-main {
	/* Desktop container: full-width background from parent, centered content column. */
	max-width: 820px;
	margin: 0 auto;
	width: 100%;
	padding: 2em 24px 3em;
	background: var(--harkness-cream) !important;
}

@media screen and (max-width: 959px) {
	/* Mobile: keep the narrower centred feel. */
	.harkness-rose-finder-primary .harkness-rose-finder-main {
		max-width: 720px;
		margin: 0 auto;
		width: auto;
	}
}

/* Ensure the parent content wrapper can expand. */
.harkness-rose-finder-primary {
	width: 100% !important;
	max-width: none !important;
	box-sizing: border-box;
	background: var(--harkness-cream) !important;
	/* Desktop: center the quiz column reliably. */
	display: flex;
	justify-content: center;
	border-right: 0 !important;
	float: none !important;
}

/* Remove inherited content divider on Rose Finder pages. */
.page-template-page-rose-finder-php #primary.content-area,
.page-template-page-rose-finder-php .content-area.harkness-rose-finder-primary {
	width: 100% !important;
	max-width: none !important;
	float: none !important;
	margin-left: auto !important;
	margin-right: auto !important;
	border-left: 0 !important;
	border-right: 0 !important;
}
.page-template-page-rose-finder-php #primary.content-area::before,
.page-template-page-rose-finder-php #primary.content-area::after {
	border: 0 !important;
	box-shadow: none !important;
}

/* Parent theme adds a desktop right divider on .page .site-main; disable for Rose Finder. */
.page-template-page-rose-finder-php .site-main {
	border-right: 0 !important;
	float: none !important;
	padding-right: 0 !important;
	width: 100% !important;
}

/* Keep Rose Finder as a single-column page (no sidebar divider/column). */
.page-template-page-rose-finder-php .widget-area {
	display: none !important;
	border: 0 !important;
	padding: 0 !important;
	margin: 0 !important;
}

/* Belt-and-braces: remove any inherited vertical divider on Rose Finder template variants. */
.page-template-page-rose-finder #content,
.page-template-page-rose-finder-php #content,
.page-template-page-rose-finder .site-content-inner,
.page-template-page-rose-finder-php .site-content-inner,
.page-template-page-rose-finder #primary,
.page-template-page-rose-finder-php #primary,
.page-template-page-rose-finder .site-main,
.page-template-page-rose-finder-php .site-main,
.page-template-page-rose-finder .widget-area,
.page-template-page-rose-finder-php .widget-area {
	border-left: 0 !important;
	border-right: 0 !important;
	box-shadow: none !important;
}
.page-template-page-rose-finder .site-content-inner::before,
.page-template-page-rose-finder .site-content-inner::after,
.page-template-page-rose-finder-php .site-content-inner::before,
.page-template-page-rose-finder-php .site-content-inner::after,
.page-template-page-rose-finder #content::before,
.page-template-page-rose-finder #content::after,
.page-template-page-rose-finder-php #content::before,
.page-template-page-rose-finder-php #content::after,
.page-template-page-rose-finder #primary::before,
.page-template-page-rose-finder #primary::after,
.page-template-page-rose-finder-php #primary::before,
.page-template-page-rose-finder-php #primary::after {
	border: 0 !important;
	box-shadow: none !important;
}

@media screen and (max-width: 959px) {
	/* Mobile: allow normal flow so padding/stacking stays correct. */
	.harkness-rose-finder-primary {
		display: block;
	}
}

.harkness-rose-finder-header {
	text-align: center;
	margin-bottom: 2.5em;
}

.harkness-rose-finder-title {
	font-family: var(--harkness-font-primary);
	font-size: 1.75rem;
	color: var(--harkness-primary);
	margin: 0 0 0.5em;
}

.harkness-rose-finder-intro {
	font-family: var(--harkness-font-secondary);
	font-size: 1rem;
	line-height: 1.6;
	color: var(--harkness-body);
	margin: 0 0 1em;
}

.harkness-rose-finder-cta {
	display: inline-block;
	font-family: var(--harkness-font-secondary);
	font-weight: 600;
	padding: 10px 22px;
	border: 2px solid var(--harkness-primary);
	border-radius: 999px;
	color: var(--harkness-primary) !important;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}

.harkness-rose-finder-cta:hover {
	background: var(--harkness-primary);
	color: var(--harkness-white) !important;
}

#harkness-rf-start {
	scroll-margin-top: 140px;
}

.harkness-rf-step {
	display: none;
	background: var(--harkness-white);
	padding: 2em 1.75em 1.75em;
	border-radius: 12px;
	border: 1px solid rgba(80, 78, 78, 0.12);
	box-shadow: 0 10px 28px rgba(80, 78, 78, 0.1);
}

.harkness-rf-step.active {
	display: block;
}

.harkness-rf-step[aria-hidden="false"] {
	display: block;
}

.harkness-rf-step[aria-hidden="true"] {
	display: none;
}

.harkness-rf-step-title {
	font-family: var(--harkness-font-secondary);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--harkness-secondary);
	margin: 0 0 0.6em;
}

.harkness-rf-step-q {
	font-family: var(--harkness-font-primary);
	font-size: 1.35rem;
	font-weight: 600;
	color: var(--harkness-primary);
	line-height: 1.3;
	margin: 0 0 0.35em;
}

.harkness-rf-step-hint {
	font-size: 12px;
	color: var(--harkness-text-muted);
	margin: 0 0 1.15em;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.harkness-rf-options {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6em 0.75em;
	margin-bottom: 1.25em;
}

.harkness-rf-option {
	display: inline-flex;
	align-items: center;
	font-family: var(--harkness-font-secondary);
	font-size: 14px;
	cursor: pointer;
	padding: 9px 14px;
	background: #f7f7f7;
	border: 1px solid rgba(80, 78, 78, 0.18);
	border-radius: 999px;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.12s ease;
}

.harkness-rf-option:hover {
	border-color: rgba(80, 78, 78, 0.35);
	transform: translateY(-1px);
}

.harkness-rf-option input { margin-right: 0.5em; }
.harkness-rf-option:has(input:checked) {
	background: var(--harkness-secondary);
	border-color: var(--harkness-secondary);
	color: var(--harkness-white);
}

.harkness-rf-nav {
	display: flex;
	gap: 1em;
	margin-top: 1.25em;
}

.harkness-rf-nav .harkness-rf-back,
.harkness-rf-nav .harkness-rf-next,
.harkness-rf-nav .harkness-rf-show-results {
	font-family: var(--harkness-font-secondary);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	padding: 10px 18px;
	border-radius: 6px;
	cursor: pointer;
	border: 1px solid var(--harkness-primary);
	background: transparent;
	color: var(--harkness-primary);
}

.harkness-rf-nav .harkness-rf-next:not(:disabled),
.harkness-rf-nav .harkness-rf-show-results {
	background: var(--harkness-primary);
	color: var(--harkness-white);
}

.harkness-rf-nav .harkness-rf-back:hover,
.harkness-rf-nav .harkness-rf-back:focus {
	background: rgba(80, 78, 78, 0.08);
}

.harkness-rf-nav .harkness-rf-next:not(:disabled):hover,
.harkness-rf-nav .harkness-rf-next:not(:disabled):focus,
.harkness-rf-nav .harkness-rf-show-results:hover,
.harkness-rf-nav .harkness-rf-show-results:focus {
	background: var(--harkness-secondary);
	border-color: var(--harkness-secondary);
}

.harkness-rf-nav .harkness-rf-next:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.harkness-rf-review-list {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.35em 1.5em;
	margin: 1em 0 1.5em;
	font-size: 14px;
}

.harkness-rf-review-list dt { color: var(--harkness-text-muted); }
.harkness-rf-review-list dd { margin: 0; font-weight: 500; }

.harkness-rf-results-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 1.25em;
	margin: 1.5em 0;
}

.harkness-rf-result-card {
	background: var(--harkness-cream);
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(80, 78, 78, 0.08);
}

.harkness-rf-result-image {
	aspect-ratio: 1;
	background: linear-gradient(135deg, var(--harkness-secondary) 0%, var(--harkness-primary) 100%);
}

.harkness-rf-result-content { padding: 1em; }
.harkness-rf-result-title {
	font-family: var(--harkness-font-primary);
	font-size: 1rem;
	margin: 0 0 0.25em;
	color: var(--harkness-primary);
}

.harkness-rf-result-price {
	font-size: 13px;
	color: var(--harkness-text-muted);
	margin: 0 0 0.5em;
}

.harkness-rf-result-link {
	font-size: 13px;
	font-weight: 600;
	color: var(--harkness-primary) !important;
	text-decoration: none;
	border-bottom: 1px solid currentColor;
}

.harkness-rf-results-cta { margin: 1.5em 0 0.5em; }
.harkness-rf-results-cta .harkness-btn {
	display: inline-block;
	padding: 10px 22px;
	border: 2px solid var(--harkness-primary);
	border-radius: 999px;
	color: var(--harkness-primary) !important;
	font-weight: 600;
	text-decoration: none;
}
.harkness-rf-results-cta .harkness-btn:hover {
	background: var(--harkness-primary);
	color: var(--harkness-white) !important;
}

.harkness-rf-start-again {
	margin-top: 1em;
	font-size: 13px;
	background: none;
	border: none;
	color: var(--harkness-text-muted);
	text-decoration: underline;
	cursor: pointer;
}

.harkness-rf-start-again:hover { color: var(--harkness-primary); }

/* Rose Finder visual refresh */
.harkness-rose-finder-app {
	max-width: 980px;
	margin: 0 auto;
}

.harkness-rf-progress-wrap {
	background: var(--harkness-white);
	border: 1px solid rgba(80, 78, 78, 0.1);
	border-radius: 10px;
	padding: 0.85rem 1rem 0.95rem;
	margin: 0 0 1rem;
}

.harkness-rf-progress-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.45rem;
}

.harkness-rf-progress-label,
.harkness-rf-progress-step {
	font-family: var(--harkness-font-secondary);
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.harkness-rf-progress-label {
	color: var(--harkness-text-muted);
}

.harkness-rf-progress-step {
	color: var(--harkness-primary);
}

.harkness-rf-progress-track {
	height: 8px;
	background: rgba(80, 78, 78, 0.13);
	border-radius: 999px;
	overflow: hidden;
}

.harkness-rf-progress-fill {
	display: block;
	width: 25%;
	height: 100%;
	background: linear-gradient(90deg, #b4b199 0%, #504e4e 100%);
	transition: width 0.2s ease;
}

.harkness-rf-step {
	padding: 2.2em 2em 1.85em;
	border-radius: 14px;
}

.harkness-rf-step-q {
	font-size: 1.55rem;
	margin-bottom: 0.45em;
}

.harkness-rf-options {
	gap: 0.75em 0.85em;
}

.harkness-rf-option {
	min-height: 46px;
	padding: 10px 15px;
	border-radius: 12px;
	background: #fff;
}

.harkness-rf-option input {
	accent-color: var(--harkness-secondary);
}

.harkness-rf-options-multi .harkness-rf-option,
[data-step="1"] .harkness-rf-option {
	flex: 1 1 calc(50% - 0.85em);
}

[data-step="2"] .harkness-rf-option,
[data-step="3"] .harkness-rf-option {
	flex: 1 1 calc(33.333% - 0.85em);
}

.harkness-rf-nav {
	margin-top: 1.35em;
	padding-top: 0.85rem;
	border-top: 1px solid rgba(80, 78, 78, 0.12);
}

.harkness-rf-nav .harkness-rf-back,
.harkness-rf-nav .harkness-rf-next,
.harkness-rf-nav .harkness-rf-show-results {
	min-height: 42px;
	border-radius: 999px;
	padding: 10px 20px;
}

.harkness-rf-review-list {
	background: rgba(255, 255, 255, 0.5);
	border: 1px solid rgba(80, 78, 78, 0.12);
	border-radius: 10px;
	padding: 0.85rem 1rem;
}

.harkness-rf-results-grid {
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 1.1em;
}

.harkness-rf-result-card {
	border-radius: 12px;
	border: 1px solid rgba(80, 78, 78, 0.12);
	box-shadow: 0 8px 24px rgba(80, 78, 78, 0.09);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.harkness-rf-result-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(80, 78, 78, 0.14);
}

.harkness-rf-result-image {
	aspect-ratio: 4 / 3;
}

.harkness-rf-result-content {
	padding: 1rem 1rem 1.15rem;
}

.harkness-rf-result-title {
	font-size: 1.08rem;
	line-height: 1.3;
}

.harkness-rf-result-price {
	font-size: 0.82rem;
	margin-bottom: 0.7rem;
}

.harkness-rf-result-link {
	display: inline-block;
	padding: 0.35rem 0.7rem;
	border-radius: 999px;
	border: 1px solid rgba(80, 78, 78, 0.28);
	text-decoration: none !important;
}

.harkness-rf-result-link:hover,
.harkness-rf-result-link:focus-visible {
	border-color: var(--harkness-secondary);
	color: var(--harkness-secondary) !important;
}

@media screen and (max-width: 760px) {
	.harkness-rf-step {
		padding: 1.55em 1.2em 1.35em;
	}
	.harkness-rf-step-q {
		font-size: 1.28rem;
	}
	.harkness-rf-options-multi .harkness-rf-option,
	[data-step="1"] .harkness-rf-option,
	[data-step="2"] .harkness-rf-option,
	[data-step="3"] .harkness-rf-option {
		flex: 1 1 100%;
	}
	.harkness-rf-nav {
		flex-wrap: wrap;
	}
}

/* In-content images – engaging when you add media */
.harkness-single .entry-content figure,
.harkness-single .entry-content .wp-block-image {
	margin: 1.75em 0;
}

.harkness-single .entry-content .harkness-injected-featured-image {
	display: block;
	width: auto;
	height: auto;
	max-width: min(100%, 760px);
	margin: 1.75em auto;
	border-radius: 4px;
}

.harkness-single .entry-content figure img,
.harkness-single .entry-content .wp-block-image img {
	display: block;
	width: auto;
	max-width: min(100%, 760px);
	height: auto;
	border-radius: 4px;
}

.harkness-single .entry-content figcaption,
.harkness-single .entry-content .wp-block-image figcaption {
	font-family: var(--harkness-font-secondary);
	font-size: 13px;
	color: var(--harkness-text-muted);
	line-height: 1.5;
	margin-top: 0.5em;
	padding: 0 0.25em;
	text-align: center;
	word-break: normal;
	overflow-wrap: normal;
	hyphens: none;
	-webkit-hyphens: none;
}

/* Hide edit link on single posts (clean front-end) */
.single .edit-link {
	display: none !important;
}

/*
 * In-content headings: smaller than Gazette’s global h2 (39px) so subtitles read as sections, not page titles.
 * Applies to single posts and standard pages (same body typography for SEO-friendly hierarchy under one h1).
 */
.harkness-single .entry-content h1,
.page .entry-content h1 {
	font-size: clamp(1.25rem, 2.4vw, 1.4rem);
	font-weight: 600;
	margin-top: 1.5em;
	margin-bottom: 0.55em;
	line-height: 1.35;
	letter-spacing: -0.02em;
}

.harkness-single .entry-content h1:first-child,
.page .entry-content h1:first-child {
	margin-top: 0;
}

.harkness-single .entry-content h2,
.page .entry-content h2 {
	font-size: clamp(1.15rem, 2.2vw, 1.3rem);
	font-weight: 600;
	margin-top: 1.65em;
	margin-bottom: 0.55em;
	line-height: 1.35;
	letter-spacing: -0.015em;
}

.harkness-single .entry-content h3,
.page .entry-content h3 {
	font-size: clamp(1.05rem, 2vw, 1.15rem);
	font-weight: 600;
	margin-top: 1.4em;
	margin-bottom: 0.5em;
	line-height: 1.4;
}

.harkness-single .entry-content h4,
.page .entry-content h4 {
	font-size: 1.0625rem;
	font-weight: 600;
	margin-top: 1.25em;
	margin-bottom: 0.45em;
	line-height: 1.4;
}

.harkness-single .entry-content h5,
.page .entry-content h5 {
	font-size: 1rem;
	font-weight: 600;
	margin-top: 1.1em;
	margin-bottom: 0.4em;
	line-height: 1.45;
}

.harkness-single .entry-content h6,
.page .entry-content h6 {
	font-size: 0.9375rem;
	font-weight: 600;
	margin-top: 1em;
	margin-bottom: 0.35em;
	line-height: 1.45;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: var(--harkness-text-muted);
}

.harkness-single .entry-content h2:first-child,
.harkness-single .entry-content h3:first-child,
.harkness-single .entry-content h4:first-child,
.page .entry-content h2:first-child,
.page .entry-content h3:first-child,
.page .entry-content h4:first-child {
	margin-top: 0;
}

/* Remove horizontal dividers from post and page content (hr / Separator blocks) */
.harkness-single .entry-content hr,
.harkness-single .entry-content .wp-block-separator,
.page .entry-content hr,
.page .entry-content .wp-block-separator {
	display: none !important;
}

.harkness-single .entry-content ul,
.harkness-single .entry-content ol {
	margin: 0 0 1.25em 1.5em;
}

.harkness-single .entry-content li {
	margin-bottom: 0.35em;
}

.harkness-single .entry-content img {
	display: block;
	width: auto !important;
	height: auto;
	max-width: min(100%, 760px);
	vertical-align: middle;
}

/* Legacy imported WP markup (align classes) */
.harkness-single .entry-content img.aligncenter {
	margin-left: auto;
	margin-right: auto;
}

.harkness-single .entry-content img.alignleft {
	float: left;
	margin: 0.25em 1.5em 1em 0;
}

.harkness-single .entry-content img.alignright {
	float: right;
	margin: 0.25em 0 1em 1.5em;
}

@media screen and (max-width: 767px) {
	.harkness-single .entry-content img.alignleft,
	.harkness-single .entry-content img.alignright {
		float: none;
		margin-left: 0;
		margin-right: 0;
	}
}

/* Block editor: flex columns must shrink so text wraps inside the white column (not clipped) */
.harkness-single .entry-content .wp-block-columns,
.harkness-single .entry-content .wp-block-group,
.harkness-single .entry-content .wp-block-group__inner-container,
.harkness-single .entry-content .alignwide,
.harkness-single .entry-content .alignfull {
	max-width: 100%;
	box-sizing: border-box;
}
.harkness-single .entry-content .wp-block-column {
	min-width: 0;
}

/* Wide tables: scroll inside the white column instead of stretching the layout */
.harkness-single .entry-content .wp-block-table {
	overflow-x: auto;
	max-width: 100%;
	-webkit-overflow-scrolling: touch;
}
.harkness-single .entry-content .wp-block-table table {
	max-width: 100%;
}
/* Full/wide blocks: core uses 100vw and negative margins – confine to the white column */
.harkness-single .entry-content .alignfull {
	width: 100% !important;
	max-width: 100% !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}
.harkness-single .entry-content .alignwide {
	max-width: 100% !important;
	margin-left: auto;
	margin-right: auto;
}

.harkness-single-footer {
	margin-top: 1.5em;
	padding-top: 1em;
	border-top: 1px solid rgba(80, 78, 78, 0.1);
}

/*--------------------------------------------------------------
  Prev/Next post navigation – consistent boxes, full border
--------------------------------------------------------------*/
.harkness-post-nav {
	clear: both;
	margin: 2em 0 0;
	padding-top: 1.5em;
	border-top: 1px solid rgba(80, 78, 78, 0.15);
}

.harkness-post-nav .nav-links {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.25em;
	align-items: stretch;
}

.harkness-post-nav .nav-previous,
.harkness-post-nav .nav-next {
	margin: 0;
	min-width: 0;
}

.harkness-post-nav .nav-previous a,
.harkness-post-nav .nav-next a {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	height: 100%;
	min-height: 5.5em;
	background: var(--harkness-white);
	color: var(--harkness-primary);
	font-family: var(--harkness-font-secondary);
	padding: 1.25em 1.35em;
	text-decoration: none;
	transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
	border-radius: 4px;
	box-sizing: border-box;
	border: 1px solid rgba(80, 78, 78, 0.2) !important;
	box-shadow: 0 1px 3px rgba(80, 78, 78, 0.06);
}

.harkness-post-nav .nav-next a {
	align-items: flex-end;
	text-align: right;
}

/* Ensure next/prev titles share the same contrast (fixes washed-out “next” text) */
.harkness-post-nav .nav-next .harkness-nav-title,
.harkness-post-nav .nav-previous .harkness-nav-title {
	color: var(--harkness-primary);
	opacity: 1;
}

.harkness-post-nav .nav-previous a:hover,
.harkness-post-nav .nav-next a:hover {
	border-color: var(--harkness-secondary) !important;
	box-shadow: 0 4px 12px rgba(80, 78, 78, 0.1);
	background: #fafaf9;
}

.harkness-nav-label {
	display: block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--harkness-secondary);
	margin-bottom: 0.4em;
}

.harkness-nav-title {
	display: block;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.35;
}

.harkness-post-nav .nav-previous .harkness-nav-label::before {
	content: "← ";
	opacity: 0.8;
}

.harkness-post-nav .nav-next .harkness-nav-label::after {
	content: " →";
	opacity: 0.8;
}

/*--------------------------------------------------------------
  Sidebar – better placement and styling
--------------------------------------------------------------*/
.single .widget-area {
	background: transparent;
}

.single .widget-area .widget {
	background: var(--harkness-white);
	border: 1px solid rgba(80, 78, 78, 0.08);
	margin-bottom: 1.5em;
	padding: 1.25em 1.25em 1.5em;
}

.single .widget-area .widget-title {
	font-family: var(--harkness-font-secondary);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin-bottom: 1em;
	padding-bottom: 0.5em;
	border-bottom: 2px solid var(--harkness-secondary);
}

.single .widget-area ul {
	list-style: none;
	padding-left: 0;
	margin: 0 0 0.5em;
}

.single .widget-area li {
	margin-bottom: 0.5em;
	padding-bottom: 0.5em;
	border-bottom: 1px solid rgba(80, 78, 78, 0.06);
}

.single .widget-area li:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.single .widget-area a {
	font-size: 14px;
}

/* Search widget in sidebar */
.single .widget_search .search-form {
	display: flex;
	gap: 0;
}

.single .widget_search .search-field {
	border: 1px solid rgba(80, 78, 78, 0.2);
	border-right: 0;
	flex: 1;
	min-width: 0;
}

.single .widget_search .search-submit {
	background: var(--harkness-primary);
	border: 1px solid var(--harkness-primary);
	color: var(--harkness-white);
	font-family: var(--harkness-font-secondary);
	font-weight: 600;
	padding: 0.5em 1em;
}

.single .widget_search .search-submit:hover {
	background: var(--harkness-secondary);
	border-color: var(--harkness-secondary);
}

/*--------------------------------------------------------------
  Responsive – single and blog
--------------------------------------------------------------*/
@media screen and (max-width: 839px) {
	/* Hamburger / close: match header (no white Gazette parent box or seam) */
	.site-header .main-navigation .menu-toggle {
		position: relative;
		right: auto;
		top: auto;
		margin-top: 0;
		width: 44px;
		height: 44px;
		min-width: 44px;
		min-height: 44px;
		padding: 0;
		background: transparent;
		border: 1px solid rgba(255, 255, 255, 0.35);
		border-radius: 8px;
		color: var(--harkness-white);
		z-index: 3;
		box-sizing: border-box;
	}
	.site-header .main-navigation .menu-toggle:hover,
	.site-header .main-navigation .menu-toggle:focus,
	.site-header .main-navigation .menu-toggle:focus-visible {
		background: rgba(255, 255, 255, 0.1);
		border-color: rgba(255, 255, 255, 0.55);
		color: var(--harkness-white);
		outline: none;
	}
	.site-header .main-navigation.toggled .menu-toggle {
		background: rgba(255, 255, 255, 0.12);
		border-color: rgba(255, 255, 255, 0.5);
	}
	.site-header .main-navigation .menu-toggle::before {
		height: 42px;
		line-height: 42px;
		width: 100%;
		text-align: center;
		color: inherit;
		font-size: 18px;
	}

	/* Mobile: full-bleed drawer below header (no floating card look) */
	.site-header .main-navigation .harkness-nav-dropdown {
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		width: 100%;
		padding: 0;
		gap: 0;
		background: var(--harkness-primary);
		border-radius: 0;
		box-shadow: none;
		text-align: left;
	}
	.site-header .main-navigation .harkness-nav-center {
		flex: none;
		width: 100%;
		justify-content: flex-start;
		padding: 8px 0 0;
	}
	.site-header .main-navigation .harkness-nav-spacer {
		display: none;
	}
	.site-header .main-navigation.toggled {
		position: static;
		width: 100%;
	}
	/* Edge-to-edge overlay */
	.site-header .main-navigation.toggled .harkness-nav-dropdown {
		display: flex !important;
		position: fixed !important;
		/* 100vw avoids % width resolving to narrow flex ancestor (sticky/header) */
		left: 0 !important;
		right: 0 !important;
		width: 100vw !important;
		max-width: 100vw !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
		/* Top / height set via --harkness-drawer-top from mobile-menu.js (header bottom) */
		top: var(--harkness-drawer-top, 88px) !important;
		z-index: 99998;
		box-sizing: border-box;
		min-height: calc(100vh - var(--harkness-drawer-top, 88px));
		min-height: calc(100dvh - var(--harkness-drawer-top, 88px));
		max-height: calc(100vh - var(--harkness-drawer-top, 88px));
		max-height: calc(100dvh - var(--harkness-drawer-top, 88px));
		overflow-y: auto;
		overflow-x: hidden;
		-webkit-overflow-scrolling: touch;
		padding-bottom: max(24px, env(safe-area-inset-bottom, 0px));
		border-top: 1px solid rgba(255, 255, 255, 0.08);
	}

	.site-header .main-navigation.toggled .harkness-mobile-drawer-header {
		display: flex !important;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
		flex-shrink: 0;
		padding: 14px 20px 16px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.14);
	}

	/* Single close control: keep header X only; hide the small × next to "Menu" */
	.site-header .main-navigation.toggled .harkness-mobile-drawer-close {
		display: none !important;
	}

	.harkness-mobile-drawer-title {
		font-family: var(--harkness-font-secondary);
		font-size: 1.05rem;
		font-weight: 600;
		color: var(--harkness-white);
		letter-spacing: 0.02em;
	}

	.harkness-mobile-drawer-close {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 44px;
		height: 44px;
		padding: 0;
		margin: 0;
		border: 1px solid rgba(255, 255, 255, 0.45);
		border-radius: 10px;
		background: rgba(255, 255, 255, 0.08);
		color: var(--harkness-white);
		font-size: 1.75rem;
		line-height: 1;
		cursor: pointer;
		-webkit-tap-highlight-color: transparent;
	}

	.harkness-mobile-drawer-close:hover,
	.harkness-mobile-drawer-close:focus {
		background: rgba(255, 255, 255, 0.18);
		border-color: rgba(255, 255, 255, 0.75);
		outline: none;
	}

	.site-header .main-navigation.toggled .harkness-nav-center {
		padding-top: 4px;
	}
	/* When mobile menu is open, hide the trust bar so it doesn’t show over the overlay */
	.site-header:has(.main-navigation.toggled) + .harkness-trust-bar {
		visibility: hidden;
	}
	/* Category list already mirrors primary links – hide duplicate WP menu */
	.site-header .main-navigation .nav-menu {
		display: none !important;
	}
	.site-header .main-navigation .harkness-header-categories {
		width: 100%;
		margin: 0;
		padding: 0 20px;
		text-align: left;
	}
	.site-header .main-navigation .harkness-header-categories .harkness-blog-nav {
		width: 100%;
	}
	.site-header .main-navigation .harkness-header-categories .harkness-blog-nav-list {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		width: 100%;
	}
	/* Ensure wp_nav_menu output is visible in the mobile drawer (parent theme may hide ul variants). */
	.site-header .main-navigation.toggled .harkness-header-categories .harkness-blog-nav-list {
		display: flex !important;
		visibility: visible !important;
		opacity: 1 !important;
	}
	.site-header .main-navigation .harkness-header-categories .harkness-blog-nav-list li {
		width: 100%;
		margin: 0;
		padding: 0;
		/* Parent Gazette .main-navigation li adds border-top – removes double rule under “Menu” */
		border-top: none !important;
		border-bottom: 1px solid rgba(255, 255, 255, 0.14);
	}
	.site-header .main-navigation.toggled .harkness-header-categories .harkness-blog-nav-list li {
		display: block !important;
	}
	.site-header .main-navigation .harkness-header-categories .harkness-blog-nav-list li:last-child {
		border-bottom: none;
	}
	.site-header .main-navigation .harkness-header-categories .harkness-blog-nav-list a {
		display: flex;
		align-items: center;
		padding: 18px 4px;
		min-height: 52px;
		box-sizing: border-box;
		line-height: 1.35;
		border-bottom: none;
		font-size: 16px !important;
		font-weight: 500 !important;
		text-align: left;
	}
	.site-header .main-navigation.toggled .harkness-header-categories .harkness-blog-nav-list a {
		display: flex !important;
		color: var(--harkness-white) !important;
		visibility: visible !important;
		opacity: 1 !important;
	}
	/* Mobile: hide search and header-actions; Back to shop moves into hamburger menu */
	.site-header .harkness-header-actions {
		display: none !important;
	}
	.site-header .main-navigation .harkness-nav-dropdown-shop {
		display: block;
		width: 100%;
		padding: 12px 16px;
		border-top: 1px solid rgba(255, 255, 255, 0.15);
		margin-top: 8px;
		flex-shrink: 0;
	}
	.site-header .main-navigation .harkness-nav-dropdown-shop .harkness-back-to-shop-mobile {
		display: inline-block;
		width: 100%;
		box-sizing: border-box;
		text-align: center;
		padding: 14px 16px;
		min-height: 44px;
		font-family: var(--harkness-font-secondary) !important;
		font-size: 15px !important;
		font-weight: 500 !important;
		color: var(--harkness-white) !important;
		text-decoration: none;
		border: 1px solid rgba(255, 255, 255, 0.9);
		border-radius: var(--harkness-outline-btn-radius);
		-webkit-tap-highlight-color: transparent;
	}
	.site-header .main-navigation .harkness-nav-dropdown-shop .harkness-back-to-shop-mobile:hover,
	.site-header .main-navigation .harkness-nav-dropdown-shop .harkness-back-to-shop-mobile:focus {
		background: rgba(255, 255, 255, 0.1);
		border-color: #fff;
		color: var(--harkness-white) !important;
	}

	/* Single post: use more of screen width on mobile */
	.single .site-content-inner.harkness-single-wrapper {
		padding-left: 16px;
		padding-right: 16px;
	}
	.harkness-single .entry-content {
		padding: 1.5em 1.1em 1.75em;
	}
	.harkness-single-hero-overlay {
		padding: 1.5em 1em 1.25em;
	}
	.harkness-single-hero-overlay .entry-title {
		font-size: clamp(1.35rem, 5vw, 1.75rem);
	}

	.harkness-post-nav .nav-links {
		grid-template-columns: 1fr;
	}
	.harkness-post-nav .nav-next a {
		text-align: left;
	}
	.single .widget-area .widget {
		padding: 1em 1em 1.25em;
	}
}

@media screen and (max-width: 639px) {
	.blog .content-area.harkness-blog-primary,
	.archive .content-area.harkness-blog-primary,
	.home .content-area.harkness-blog-primary {
		padding-left: 16px !important;
		padding-right: 16px !important;
	}
	.harkness-posts-grid {
		width: 100%;
		min-width: 0;
		overflow: hidden;
	}
	.harkness-load-more-wrap {
		padding-left: 0;
		padding-right: 0;
	}
}

@media screen and (max-width: 600px) {
	.blog .site-main,
	.archive .site-main {
		padding-left: 0;
		padding-right: 0;
	}
	.harkness-blog-nav-list {
		font-size: 12px;
	}
	.harkness-card-content {
		padding: 0.9em 1em 1em;
	}
}

@media screen and (max-width: 480px) {
	.single .site-content-inner.harkness-single-wrapper {
		padding-left: 12px;
		padding-right: 12px;
	}
	.harkness-single .entry-content {
		padding: 1.35em 0.9em 1.5em;
	}
	.harkness-single-hero-overlay {
		padding: 1.25em 0.75em 1em;
	}
	.harkness-toc {
		padding: 1em 1.1em;
		margin-bottom: 1.5em;
	}
}

/*--------------------------------------------------------------
  Mobile – header and single post fully optimized
--------------------------------------------------------------*/
@media screen and (max-width: 639px) {
	/* Header: logo left, hamburger far right – single row (avoid width:100% + order forcing wrap) */
	.site-header-inner {
		padding: 12px 16px;
		min-height: 52px;
		align-items: center;
		flex-wrap: nowrap;
		justify-content: space-between;
		gap: 12px;
	}
	.site-header-inner .site-branding {
		flex: 1 1 auto;
		min-width: 0;
	}
	.site-header-inner .harkness-header-nav-row,
	.site-header-inner .harkness-header-actions {
		transform: none;
	}
	.site-header-inner .harkness-header-nav-row {
		flex: 0 0 auto;
		width: auto;
		min-width: 0;
		margin-left: auto;
		justify-content: flex-end;
	}
	.site-header-inner .main-navigation {
		flex: 0 0 auto;
		max-width: none;
	}
	.harkness-header-nav-row {
		width: auto;
		order: 0;
		justify-content: flex-end;
		border-left: none;
		padding-left: 0;
	}
	.harkness-header-categories {
		width: 100%;
	}
	.harkness-header-categories .harkness-blog-nav-list {
		font-size: 12px;
		gap: 0.35em 1em;
		justify-content: flex-start;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		padding-bottom: 2px;
		border-left: none;
		padding-left: 0;
	}
	.site-branding {
		min-height: 44px;
		display: flex;
		align-items: center;
	}
	.site-branding a,
	.site-title a {
		min-height: 44px;
		display: inline-flex;
		align-items: center;
		-webkit-tap-highlight-color: transparent;
		tap-highlight-color: transparent;
	}
	.site-logo-link {
		-webkit-tap-highlight-color: transparent;
		tap-highlight-color: transparent;
	}
	.site-logo-link img {
		max-height: 36px;
		width: auto;
		height: auto;
	}
	.menu-toggle {
		min-width: 44px;
		min-height: 44px;
		padding: 10px;
		-webkit-tap-highlight-color: transparent;
		tap-highlight-color: transparent;
	}
	.main-navigation .nav-menu a {
		display: block;
		padding: 14px 16px;
		min-height: 44px;
		box-sizing: border-box;
		-webkit-tap-highlight-color: transparent;
		tap-highlight-color: transparent;
	}
	.main-navigation.toggled .nav-menu {
		padding: 8px 0;
	}

	/* Single post: TOC, progress, meta, prev/next */
	.harkness-single .entry-content {
		padding: 1.25em 1em 1.5em;
	}
	.harkness-toc {
		margin: 0 0 1.25em;
		padding: 1em 1em 1.25em;
	}
	.harkness-toc-list a {
		font-size: 15px;
		padding: 6px 0;
		display: block;
		min-height: 44px;
		box-sizing: border-box;
		line-height: 1.4;
		-webkit-tap-highlight-color: transparent;
		tap-highlight-color: transparent;
	}
	.harkness-reading-progress {
		height: 4px;
	}
	.harkness-post-nav .nav-links {
		gap: 12px;
	}
	.harkness-post-nav .nav-previous a,
	.harkness-post-nav .nav-next a {
		padding: 1em 1em 1.25em;
		min-height: 52px;
		display: flex;
		align-items: center;
		-webkit-tap-highlight-color: transparent;
		tap-highlight-color: transparent;
	}
}

/* Single post: full-width centered layout, no white box behind header */
.single #page,
.single body {
	background: var(--harkness-cream) !important;
}
.single .site-content-inner.harkness-single-wrapper {
	width: 100% !important;
	margin-bottom: 0;
}
.single .content-area.harkness-single-primary,
.single .harkness-single-primary {
	width: 100% !important;
	min-width: 0;
	max-width: 100% !important;
}
.single .harkness-single-primary .site-main {
	width: 100% !important;
	max-width: 100% !important;
	min-width: 0;
}
.single article.harkness-single {
	width: 100%;
	min-width: 0;
	max-width: 100%;
	box-sizing: border-box;
	overflow-x: clip;
	overflow-y: visible;
}
.single .harkness-single-header .entry-title,
.single .harkness-single-hero-overlay .entry-title {
	max-width: 100%;
	overflow-wrap: normal;
	word-break: normal;
	hyphens: none;
	-webkit-hyphens: none;
}
.single .harkness-breadcrumbs {
	margin-top: 1.25em;
	margin-bottom: 1em;
}

.site-content {
	padding-bottom: 0;
	margin-bottom: 0;
}
.single .site-content {
	margin-bottom: 0 !important;
}
.single .site-main,
.archive .site-main,
.blog .site-main {
	padding-bottom: 0;
}
.harkness-single .entry-content {
	margin-bottom: 0;
}
.single .harkness-post-nav {
	margin-bottom: 0;
}
.harkness-footer {
	margin-top: 0 !important;
	padding-top: 0;
}
/* Footer widget area – same dark as footer so no gap between newsletter and footer */
.footer-widget {
	background: var(--harkness-primary);
	padding-top: 0;
	margin-top: 0;
	margin-bottom: 0;
	border-top: none;
}
.footer-widget .widget-title,
.footer-widget .widget a,
.footer-widget .widget {
	color: rgba(255, 255, 255, 0.95);
}
.footer-widget .widget a:hover {
	color: var(--harkness-white);
}

/* Keep newsletter flush with footer on single posts/pages: collapse intermediary footer widget strip. */
.harkness-newsletter + .footer-widget {
	margin: 0 !important;
	padding: 0 !important;
	min-height: 0 !important;
	height: 0 !important;
	border: 0 !important;
	overflow: hidden !important;
	background: var(--harkness-primary) !important;
}

/* Hard stop for any parent-theme spacing between newsletter and footer. */
.harkness-newsletter + #colophon.harkness-footer {
	margin-top: 0 !important;
	padding-top: 0 !important;
	border-top: 0 !important;
	background: var(--harkness-primary) !important;
}

.harkness-newsletter + #colophon.harkness-footer .harkness-footer-main {
	margin-top: 0 !important;
	padding-top: 2.5em !important;
	border-top: 0 !important;
}

.harkness-newsletter + #colophon.harkness-footer::before {
	top: 0 !important;
	height: 0 !important;
	display: none !important;
}

/* Parent theme fallback: remove inherited top padding/white background on site-footer itself. */
#colophon.site-footer.harkness-footer {
	margin-top: 0 !important;
	padding-top: 0 !important;
	background: var(--harkness-primary) !important;
	border-top: 0 !important;
}

#colophon.site-footer.harkness-footer > .harkness-footer-main {
	margin-top: 0 !important;
}

/*--------------------------------------------------------------
  Section animations – slide up on scroll (content always visible, no fade-out)
--------------------------------------------------------------*/
.harkness-animate-on-scroll {
	opacity: 1;
	transform: translateY(24px);
	transition: transform 0.5s ease-out;
}

.harkness-animate-on-scroll.harkness-in-view {
	transform: translateY(0);
}

/* Stagger children in grids – transform only, no opacity */
.harkness-posts-grid.harkness-animate-on-scroll .hentry,
.harkness-posts-grid.harkness-animate-on-scroll article,
.harkness-posts-grid.harkness-animate-on-scroll .harkness-blog-card {
	opacity: 1;
	transform: translateY(18px);
	transition: transform 0.4s ease-out;
	transition-delay: calc(0.05s * var(--harkness-stagger, 0));
}
.harkness-posts-grid.harkness-animate-on-scroll.harkness-in-view .hentry,
.harkness-posts-grid.harkness-animate-on-scroll.harkness-in-view article,
.harkness-posts-grid.harkness-animate-on-scroll.harkness-in-view .harkness-blog-card {
	transform: translateY(0);
}

.harkness-home-products.harkness-animate-on-scroll .harkness-shop-card {
	opacity: 1;
	transform: translateY(16px);
	transition: transform 0.4s ease-out;
	transition-delay: calc(0.04s * var(--harkness-stagger, 0));
}
.harkness-home-products.harkness-animate-on-scroll.harkness-in-view .harkness-shop-card {
	transform: translateY(0);
}

/* Trust bar and hero – same: always visible, slide up when in view */
.harkness-trust-bar.harkness-animate-on-scroll,
.harkness-home-hero.harkness-animate-on-scroll {
	opacity: 1;
	transition-duration: 0.5s;
}
body .harkness-trust-bar.harkness-animate-on-scroll {
	transform: translateY(10px);
}
/* Home hero: no translateY — a positive offset stacked above the lower-specificity
 * `.harkness-in-view { transform: translateY(0) }` rule, so the hero stayed shifted down
 * and its shadow overlapped the three-card row. Keep hero flush to layout. */
body .harkness-home-hero.harkness-animate-on-scroll {
	transform: translateY(0);
}

/* Home feature row: no whole-block slide (stagger children only; avoids overlap + layout shift) */
body.home .harkness-home-feature-row.harkness-animate-on-scroll {
	transform: translateY(0);
}

.harkness-home-feature-row.harkness-animate-on-scroll .harkness-home-feature-row-card {
	opacity: 1;
	transform: translateY(20px);
	transition: transform 0.45s ease-out, box-shadow 0.25s ease;
	transition-delay: calc(0.07s * var(--harkness-stagger, 0));
}

.harkness-home-feature-row.harkness-animate-on-scroll.harkness-in-view .harkness-home-feature-row-card {
	transform: translateY(0);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
	.harkness-animate-on-scroll,
	.harkness-posts-grid.harkness-animate-on-scroll .hentry,
	.harkness-posts-grid.harkness-animate-on-scroll article,
	.harkness-posts-grid.harkness-animate-on-scroll .harkness-blog-card,
	.harkness-home-products.harkness-animate-on-scroll .harkness-shop-card {
		transform: none !important;
		transition: none !important;
	}
	.harkness-shop-card:hover,
	.harkness-home-products.harkness-animate-on-scroll.harkness-in-view .harkness-shop-card:hover {
		transform: none !important;
	}
	.harkness-shop-card:hover .harkness-shop-card-image-img,
	.harkness-shop-card-image-img {
		transition: none !important;
		transform: none !important;
	}
	.harkness-explore-card:hover {
		transform: none !important;
	}
	.harkness-explore-card:hover .harkness-explore-card-image img,
	.harkness-explore-card:hover .harkness-explore-card-image-placeholder {
		transform: none !important;
	}
	.harkness-explore-card-image img,
	.harkness-explore-card-image-placeholder {
		transition: none !important;
	}
	.harkness-home-feature-row.harkness-animate-on-scroll .harkness-home-feature-row-card,
	.harkness-home-feature-row.harkness-animate-on-scroll.harkness-in-view .harkness-home-feature-row-card {
		transform: none !important;
		transition: none !important;
	}
	.harkness-animate-on-scroll.harkness-in-view {
		transform: none !important;
	}

	html {
		scroll-behavior: auto;
	}
}

/* Share / like controls: clear focus for keyboard users */
.harkness-social-icon:focus {
	outline: none;
}
.harkness-social-icon:focus-visible,
.harkness-like-btn:focus-visible {
	outline: 3px solid var(--harkness-primary);
	outline-offset: 3px;
}

/* Editorial sources shortcode [harkness_sources] */
.harkness-article-sources {
	margin: 2rem 0;
	padding: 1.25rem 1.5rem;
	background: var(--harkness-card-surface);
	border: 1px solid rgba(80, 78, 78, 0.12);
	border-radius: var(--harkness-card-radius);
}
.harkness-article-sources-title {
	font-family: var(--harkness-font-primary);
	font-size: 1.1rem;
	margin: 0 0 0.75rem;
	color: var(--harkness-primary);
}
.harkness-article-sources-body {
	font-family: var(--harkness-font-secondary);
	font-size: 0.9375rem;
	line-height: 1.55;
	color: var(--harkness-body);
}
.harkness-article-sources-body ul {
	margin: 0;
	padding-left: 1.25rem;
}
.harkness-article-sources-body li {
	margin-bottom: 0.35em;
}

/* Category archive – sticky “featured in this topic” */
.harkness-category-sticky-pick {
	margin: 0 0 1.75rem;
	padding: 1.25rem 1.5rem;
	background: linear-gradient(135deg, rgba(180, 177, 153, 0.15) 0%, var(--harkness-card-surface) 55%);
	border: 1px solid rgba(80, 78, 78, 0.1);
	border-radius: var(--harkness-card-radius);
}
.harkness-category-sticky-pick-kicker {
	font-family: var(--harkness-font-primary);
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--harkness-text-muted);
	margin: 0 0 0.75rem;
}
.harkness-category-sticky-pick-body {
	display: flex;
	gap: 1.25rem;
	align-items: flex-start;
}
.harkness-category-sticky-pick-thumb {
	flex-shrink: 0;
	width: 140px;
	max-width: 38%;
	line-height: 0;
	border-radius: 6px;
	overflow: hidden;
}
.harkness-category-sticky-pick-thumb img {
	display: block;
	width: 100%;
	height: auto;
}
.harkness-category-sticky-pick-title {
	font-family: 'Forum', var(--harkness-font-primary) !important;
	font-size: clamp(1.15rem, 2.5vw, 1.45rem);
	margin: 0 0 0.5rem;
	line-height: 1.25;
}
.harkness-category-sticky-pick-title a {
	font-family: 'Forum', var(--harkness-font-primary) !important;
	text-decoration: none;
	color: var(--harkness-primary);
}
.harkness-category-sticky-pick-title a:hover {
	text-decoration: underline;
}
.harkness-category-sticky-pick-excerpt {
	font-family: var(--harkness-font-secondary);
	font-size: 0.9375rem;
	line-height: 1.5;
	margin: 0 0 0.75rem;
	color: var(--harkness-body);
}
.harkness-category-sticky-pick-cta {
	margin: 0;
}
.harkness-category-sticky-pick-link {
	font-family: var(--harkness-font-secondary);
	font-weight: 600;
	font-size: 0.875rem;
}
@media (max-width: 520px) {
	.harkness-category-sticky-pick-body {
		flex-direction: column;
	}
	.harkness-category-sticky-pick-thumb {
		max-width: 100%;
		width: 100%;
	}
}

/* No-results + 404: topic link lists */
.harkness-no-results-topics,
.harkness-404-topics {
	margin-top: 1.75rem;
	padding-top: 1.25rem;
	border-top: 1px solid rgba(80, 78, 78, 0.12);
}
.harkness-no-results-topics-heading,
.harkness-404-topics-heading {
	font-family: var(--harkness-font-primary);
	font-size: 1rem;
	margin: 0 0 0.75rem;
	color: var(--harkness-primary);
}
.harkness-no-results-topic-list,
.harkness-404-topic-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 0.75rem;
}
.harkness-no-results-topic-list a,
.harkness-404-topic-list a {
	font-family: var(--harkness-font-secondary);
	font-size: 0.875rem;
	font-weight: 500;
	text-decoration: none;
	color: var(--harkness-primary);
	padding: 0.35rem 0.65rem;
	border-radius: var(--harkness-outline-btn-radius);
	background: rgba(80, 78, 78, 0.06);
}
.harkness-no-results-topic-list a:hover,
.harkness-404-topic-list a:hover {
	background: rgba(80, 78, 78, 0.12);
}

/* Single: full-width when TOC sidebar hidden */
@media screen and (min-width: 960px) {
	.harkness-single-layout--full {
		grid-template-columns: minmax(0, 1fr);
	}
}

/* Series navigation */
.harkness-series-nav {
	margin: 2rem 0 1.5rem;
	padding: 1.25rem 1.35rem;
	background: var(--harkness-card-surface);
	border: 1px solid rgba(80, 78, 78, 0.12);
	border-radius: var(--harkness-card-radius);
}
.harkness-series-nav-label {
	margin: 0 0 0.75rem;
	font-family: var(--harkness-font-secondary);
	font-size: 0.8125rem;
	font-weight: 600;
}
.harkness-series-nav-label a {
	color: var(--harkness-primary);
}
.harkness-series-nav-links {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.85rem;
}
@media screen and (min-width: 560px) {
	.harkness-series-nav-links {
		grid-template-columns: 1fr 1fr;
	}
}
.harkness-series-nav-prev,
.harkness-series-nav-next {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	text-decoration: none;
	color: var(--harkness-primary);
	padding: 0.65rem 0.75rem;
	border-radius: 6px;
	background: rgba(80, 78, 78, 0.05);
}
.harkness-series-nav-prev:hover,
.harkness-series-nav-next:hover {
	background: rgba(80, 78, 78, 0.1);
}
.harkness-series-nav-direction {
	font-family: var(--harkness-font-secondary);
	font-size: 0.65rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--harkness-text-muted);
}
.harkness-series-nav-title {
	font-family: var(--harkness-font-primary);
	font-size: 1rem;
	line-height: 1.3;
	color: var(--harkness-primary);
}

/* Related by primary tag */
.harkness-related-by-tag {
	margin: 2.5rem 0 0;
	padding-top: 2rem;
	border-top: 1px solid rgba(80, 78, 78, 0.12);
}
.harkness-related-by-tag-title {
	font-family: var(--harkness-font-primary);
	font-size: 1.25rem;
	margin: 0 0 1rem;
	color: var(--harkness-primary);
}
.harkness-related-by-tag-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
	gap: 1.35rem 1.5rem;
}
.harkness-related-by-tag-link {
	display: flex;
	flex-direction: column;
	height: 100%;
	text-decoration: none;
	color: inherit;
	background: var(--harkness-card-surface);
	border-radius: var(--harkness-card-radius);
	overflow: hidden;
	border: 1px solid rgba(80, 78, 78, 0.1);
	transition: box-shadow 0.2s ease;
}
.harkness-related-by-tag-link:hover {
	box-shadow: 0 6px 20px rgba(80, 78, 78, 0.12);
}
.harkness-related-by-tag-image {
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	line-height: 0;
	background: rgba(80, 78, 78, 0.08);
}
.harkness-related-by-tag-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.harkness-related-by-tag-image--placeholder {
	min-height: 120px;
}
.harkness-related-by-tag-body {
	padding: 0.85rem 1rem 1rem;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	flex: 1;
}
.harkness-related-by-tag-card-title {
	font-family: var(--harkness-font-primary);
	font-size: 1rem;
	color: var(--harkness-primary);
	line-height: 1.3;
}
.harkness-related-by-tag-meta {
	font-family: var(--harkness-font-secondary);
	font-size: 0.8rem;
	color: var(--harkness-text-muted);
}

/* Trust / editorial note (Customizer) */
.harkness-trust-note {
	margin: 2rem 0 0;
	padding: 1rem 1.15rem;
	font-family: var(--harkness-font-secondary);
	font-size: 0.875rem;
	line-height: 1.55;
	color: var(--harkness-body);
	background: rgba(180, 177, 153, 0.12);
	border-left: 4px solid var(--harkness-secondary);
	border-radius: 0 var(--harkness-card-radius) var(--harkness-card-radius) 0;
}

.harkness-fact-check-note {
	margin: 0.85rem 0 0;
	padding: 0.85rem 1rem;
	font-family: var(--harkness-font-secondary);
	font-size: 0.8125rem;
	line-height: 1.55;
	color: var(--harkness-body);
	background: rgba(80, 78, 78, 0.06);
	border-radius: var(--harkness-card-radius);
}

/* Home grid kicker + lead card */
.harkness-home-grid-kicker {
	margin: 0 0 1rem;
	font-family: var(--harkness-font-secondary);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--harkness-text-muted);
}

.harkness-blog-card--lead {
	position: relative;
	box-shadow: 0 12px 36px rgba(80, 78, 78, 0.14);
	border-radius: calc(var(--harkness-card-radius) + 2px);
}

.harkness-blog-card--lead::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	pointer-events: none;
	box-shadow: inset 0 0 0 2px var(--harkness-secondary);
	opacity: 0.35;
	z-index: 1;
}

.harkness-card-series {
	margin: 0.15rem 0 0.35rem;
	font-family: var(--harkness-font-secondary);
	font-size: 0.8125rem;
	line-height: 1.35;
}

.harkness-card-series-link {
	color: var(--harkness-secondary);
	text-decoration: none;
	font-weight: 600;
}

.harkness-card-series-link:hover,
.harkness-card-series-link:focus-visible {
	text-decoration: underline;
}

.harkness-category-low-count-siblings-label {
	margin: 1rem 0 0.35rem;
	font-family: var(--harkness-font-secondary);
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--harkness-primary);
}

.harkness-category-low-count-siblings {
	margin: 0 0 0.5rem;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1rem;
}

.harkness-category-low-count-siblings a {
	font-weight: 600;
	text-decoration: none;
	border-bottom: 1px solid rgba(80, 78, 78, 0.2);
}

.harkness-category-low-count-siblings a:hover,
.harkness-category-low-count-siblings a:focus-visible {
	color: var(--harkness-secondary);
	border-bottom-color: var(--harkness-secondary);
}

/* Popular posts (404 / no results) */
.harkness-popular-posts-inline {
	margin: 1.75rem 0 0;
	padding-top: 1.25rem;
	border-top: 1px solid rgba(80, 78, 78, 0.12);
}

.harkness-popular-posts-inline-heading {
	margin: 0 0 0.65rem;
	font-family: var(--harkness-font-primary);
	font-size: 1.1rem;
	color: var(--harkness-primary);
}

.harkness-popular-posts-inline-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
}

.harkness-popular-posts-inline-link {
	font-family: var(--harkness-font-secondary);
	font-weight: 600;
	text-decoration: none;
	color: var(--harkness-primary);
	border-bottom: 1px solid rgba(80, 78, 78, 0.2);
}

.harkness-popular-posts-inline-link:hover,
.harkness-popular-posts-inline-link:focus-visible {
	color: var(--harkness-secondary);
	border-bottom-color: var(--harkness-secondary);
}

/* Back to top */
.harkness-back-to-top {
	position: fixed;
	right: 1.15rem;
	bottom: 1.15rem;
	z-index: 90;
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 50%;
	border: 1px solid rgba(80, 78, 78, 0.22);
	background: var(--harkness-card-surface);
	box-shadow: 0 6px 22px rgba(80, 78, 78, 0.15);
	cursor: pointer;
	color: var(--harkness-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.harkness-back-to-top:hover,
.harkness-back-to-top:focus-visible {
	color: var(--harkness-secondary);
	box-shadow: 0 8px 26px rgba(80, 78, 78, 0.2);
	transform: translateY(-2px);
}

.harkness-back-to-top[hidden] {
	display: none !important;
}

.harkness-back-to-top-icon {
	font-size: 1.15rem;
	line-height: 1;
	font-weight: 700;
}

/* Content image lightbox */
.harkness-image-lightbox {
	position: relative;
	max-width: min(96vw, 1100px);
	width: 100%;
	padding: 0;
	border: none;
	background: rgba(20, 20, 20, 0.92);
	color: #fff;
}

.harkness-image-lightbox::backdrop {
	background: rgba(0, 0, 0, 0.55);
}

.harkness-image-lightbox-img {
	display: block;
	max-width: 100%;
	max-height: 86vh;
	width: auto;
	height: auto;
	margin: 0 auto;
}

.harkness-image-lightbox-close {
	position: absolute;
	top: 0.5rem;
	right: 0.5rem;
	width: 2.25rem;
	height: 2.25rem;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.harkness-image-lightbox-close:hover,
.harkness-image-lightbox-close:focus-visible {
	background: rgba(255, 255, 255, 0.28);
}

@media (prefers-reduced-motion: reduce) {
	.harkness-related-by-tag-link {
		transition: none;
	}
	.harkness-post-meta-social .harkness-social-icon:hover {
		transform: none;
	}
}

/*--------------------------------------------------------------
  Print – article-first, minimal chrome
--------------------------------------------------------------*/
@media print {
	body {
		background: #fff !important;
		color: #000 !important;
	}
	#masthead.site-header,
	.site-footer .footer-widgets,
	.harkness-announcement,
	.harkness-trust-bar,
	.harkness-post-meta-social,
	.harkness-like-wrap,
	.comment-respond,
	.harkness-load-more-wrap,
	.harkness-home-products,
	.harkness-explore-the-series,
	.harkness-explore-carousel-prev,
	.harkness-explore-carousel-next,
	.harkness-products-carousel-prev,
	.harkness-products-carousel-next,
	.harkness-shop-scene-carousel-prev,
	.harkness-shop-scene-carousel-next,
	.harkness-blog-toolbar-stack,
	.harkness-breadcrumbs,
	.harkness-page-transition-overlay,
	.post-navigation,
	.harkness-related-posts,
	.harkness-related-by-tag,
	.harkness-more-in-category-below,
	.harkness-back-to-top,
	.harkness-home-grid-kicker {
		display: none !important;
	}
	.harkness-reading-progress-wrap,
	#harkness-reading-progress {
		display: none !important;
	}
	.entry-content a,
	.entry-summary a {
		text-decoration: underline;
	}
	.entry-content {
		max-width: none !important;
	}
	.harkness-single .entry-header {
		page-break-after: avoid;
	}
}
