/* ==========================================================================
   Cozy Home Canvas - design system
   Built on Kadence. Brand anchor is the logo pine green (#285048).
   Sections:  1 tokens  2 base  3 header  4 buttons  5 cards  6 homepage
              7 archives  8 single  9 pages  10 sidebar  11 footer
              12 comments  13 a11y + motion
   ========================================================================== */

/* 1 ---------------------------------------------------------------- tokens */
:root {
	--cozy-green: #285048;
	--cozy-green-dark: #1c3b34;
	--cozy-green-soft: #e9f0ec;
	--cozy-ink: #1b2a26;
	--cozy-body: #3d4744;
	--cozy-muted: #6b7772;
	--cozy-border: #e4e1d9;
	--cozy-border-strong: #d3cec3;
	--cozy-sand: #f0ebe3;
	--cozy-cream: #faf7f2;
	--cozy-accent: #9e6230;
	--cozy-accent-soft: #f6eadc;

	--cozy-radius: 14px;
	--cozy-radius-sm: 8px;
	--cozy-radius-pill: 999px;

	--cozy-shadow: 0 1px 2px rgba(27, 42, 38, .04), 0 8px 24px -14px rgba(27, 42, 38, .18);
	--cozy-shadow-lg: 0 2px 6px rgba(27, 42, 38, .06), 0 22px 44px -22px rgba(27, 42, 38, .30);

	--cozy-section-y: clamp(52px, 6.5vw, 92px);
	--cozy-gap: clamp(20px, 2.2vw, 30px);
	--cozy-ease: cubic-bezier(.22, .61, .36, 1);
}

/* 2 ------------------------------------------------------------------ base */
body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, .entry-title, .cozy-display {
	letter-spacing: -0.011em;
	text-wrap: balance;
}

h1 { letter-spacing: -0.018em; }

p, li { text-wrap: pretty; }

a { text-underline-offset: 0.18em; }

.cozy-eyebrow {
	display: inline-block;
	font-family: var(--global-base-font, inherit);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--cozy-accent);
	margin: 0 0 14px;
}

.cozy-lead {
	font-size: clamp(17px, 1.35vw, 19px);
	line-height: 1.68;
	color: var(--cozy-muted);
}

/* 3 ---------------------------------------------------------------- header */
.site-header-row-container-inner {
	border-color: var(--cozy-border);
}

.site-branding img {
	transition: opacity .25s var(--cozy-ease);
}

.site-branding a:hover img { opacity: .82; }

.header-navigation .header-menu-container > ul > li > a {
	font-size: 15px;
	font-weight: 500;
	letter-spacing: .005em;
	position: relative;
}

/* Understated underline that grows from the centre on hover / current page. */
.header-navigation .header-menu-container > ul > li.menu-item > a > .nav-drop-title-wrap::after,
.header-navigation .header-menu-container > ul > li.menu-item:not(.menu-item-has-children) > a::after {
	content: "";
	position: absolute;
	left: 50%;
	right: 50%;
	bottom: -6px;
	height: 2px;
	background: var(--cozy-green);
	border-radius: 2px;
	transition: left .28s var(--cozy-ease), right .28s var(--cozy-ease);
}

.header-navigation .header-menu-container > ul > li.menu-item:hover > a > .nav-drop-title-wrap::after,
.header-navigation .header-menu-container > ul > li.menu-item:hover:not(.menu-item-has-children) > a::after,
.header-navigation .header-menu-container > ul > li.current-menu-item > a > .nav-drop-title-wrap::after,
.header-navigation .header-menu-container > ul > li.current-menu-ancestor > a > .nav-drop-title-wrap::after,
.header-navigation .header-menu-container > ul > li.current-menu-item:not(.menu-item-has-children) > a::after {
	left: 0;
	right: 0;
}

.header-navigation .header-menu-container ul ul.sub-menu {
	border-radius: var(--cozy-radius-sm);
	box-shadow: var(--cozy-shadow-lg);
	border: 1px solid var(--cozy-border);
	overflow: hidden;
	padding-block: 6px;
}

.header-navigation .header-menu-container ul ul.sub-menu li a {
	font-size: 14.5px;
	padding-block: 9px;
}

.search-toggle-open .kadence-svg-iconset { color: var(--cozy-ink); }

/* Sticky header keeps a hairline instead of a heavy shadow. */
#main-header.item-is-fixed:not(.item-at-start) .site-header-row-container-inner {
	box-shadow: 0 1px 0 var(--cozy-border), 0 10px 26px -22px rgba(27, 42, 38, .5);
}

/* 4 --------------------------------------------------------------- buttons */
.wp-block-button__link,
.button,
input[type="submit"],
.kb-button {
	border-radius: var(--cozy-radius-pill);
	font-weight: 600;
	letter-spacing: .005em;
	transition: transform .18s var(--cozy-ease), background-color .2s var(--cozy-ease), box-shadow .2s var(--cozy-ease);
}

.wp-block-button__link:hover,
.button:hover,
input[type="submit"]:hover {
	transform: translateY(-1px);
	box-shadow: var(--cozy-shadow);
}

.cozy-btn {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 13px 26px;
	border-radius: var(--cozy-radius-pill);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	border: 1.5px solid transparent;
	transition: transform .18s var(--cozy-ease), background-color .2s var(--cozy-ease), color .2s var(--cozy-ease), border-color .2s var(--cozy-ease);
}

.cozy-btn--solid {
	background: var(--cozy-green);
	color: #fff;
}

.cozy-btn--solid:hover {
	background: var(--cozy-green-dark);
	color: #fff;
	transform: translateY(-1px);
}

.cozy-btn--ghost {
	background: transparent;
	color: var(--cozy-green);
	border-color: var(--cozy-border-strong);
}

.cozy-btn--ghost:hover {
	background: #fff;
	border-color: var(--cozy-green);
	color: var(--cozy-green-dark);
	transform: translateY(-1px);
}

.cozy-btn--light {
	background: #fff;
	color: var(--cozy-green);
}

.cozy-btn--light:hover {
	background: var(--cozy-cream);
	color: var(--cozy-green-dark);
	transform: translateY(-1px);
}

/* 5 ------------------------------------------------------------ post cards */
.cozy-posts .wp-block-post-template {
	gap: var(--cozy-gap);
	margin: 0;
	padding: 0;
	list-style: none;
}

.cozy-posts .wp-block-post {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--cozy-border);
	border-radius: var(--cozy-radius);
	overflow: hidden;
	transition: transform .28s var(--cozy-ease), box-shadow .28s var(--cozy-ease), border-color .28s var(--cozy-ease);
}

.cozy-posts .wp-block-post:hover {
	transform: translateY(-4px);
	box-shadow: var(--cozy-shadow-lg);
	border-color: var(--cozy-border-strong);
}

.cozy-posts .wp-block-post-featured-image {
	margin: 0;
	overflow: hidden;
	background: var(--cozy-sand);
}

.cozy-posts .wp-block-post-featured-image img {
	width: 100%;
	height: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	display: block;
	transition: transform .5s var(--cozy-ease);
}

.cozy-posts .wp-block-post:hover .wp-block-post-featured-image img {
	transform: scale(1.045);
}

/* Card body gets its own padding wrapper in the block markup. */
.cozy-card-body {
	display: flex;
	flex-direction: column;
	gap: 9px;
	padding: 20px 22px 24px;
	flex: 1 1 auto;
}

.cozy-posts .wp-block-post-terms {
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--cozy-accent);
	margin: 0;
}

.cozy-posts .wp-block-post-terms a {
	color: inherit;
	text-decoration: none;
}

.cozy-posts .wp-block-post-terms a:hover { text-decoration: underline; }

.cozy-posts .wp-block-post-title {
	font-size: 19px;
	line-height: 1.38;
	font-weight: 600;
	margin: 0;
}

.cozy-posts .wp-block-post-title a {
	color: var(--cozy-ink);
	text-decoration: none;
	background-image: linear-gradient(var(--cozy-green), var(--cozy-green));
	background-size: 0 1.5px;
	background-position: 0 100%;
	background-repeat: no-repeat;
	transition: background-size .3s var(--cozy-ease), color .2s var(--cozy-ease);
}

.cozy-posts .wp-block-post:hover .wp-block-post-title a {
	color: var(--cozy-green);
	background-size: 100% 1.5px;
}

.cozy-posts .wp-block-post-excerpt {
	margin: 0;
}

.cozy-posts .wp-block-post-excerpt__excerpt {
	font-size: 14.5px;
	line-height: 1.62;
	color: var(--cozy-muted);
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	line-clamp: 3;
	overflow: hidden;
}

.cozy-posts .wp-block-post-date {
	font-size: 12.5px;
	color: var(--cozy-muted);
	margin: 2px 0 0;
}

/* 6 -------------------------------------------------------------- homepage */
.cozy-section {
	padding-block: var(--cozy-section-y);
}

.cozy-section--tight { padding-block: clamp(38px, 4.5vw, 62px); }

.cozy-section__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: clamp(24px, 3vw, 38px);
	padding-bottom: 16px;
	border-bottom: 1px solid var(--cozy-border);
}

.cozy-section__head h2 {
	margin: 0;
	font-size: clamp(24px, 2.4vw, 31px);
	line-height: 1.22;
}

.cozy-section__head p {
	margin: 8px 0 0;
	font-size: 15px;
	color: var(--cozy-muted);
	max-width: 56ch;
}

.cozy-viewall {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 14px;
	font-weight: 600;
	color: var(--cozy-green);
	text-decoration: none;
	white-space: nowrap;
	padding-bottom: 2px;
	border-bottom: 1.5px solid transparent;
	transition: border-color .22s var(--cozy-ease), gap .22s var(--cozy-ease);
}

.cozy-viewall:hover {
	border-color: var(--cozy-green);
	gap: 11px;
	color: var(--cozy-green-dark);
}

/* --- hero --- */
.cozy-hero {
	background:
		radial-gradient(120% 90% at 12% 0%, #fff 0%, rgba(255, 255, 255, 0) 58%),
		linear-gradient(168deg, var(--cozy-cream) 0%, var(--cozy-sand) 100%);
	padding-block: clamp(52px, 7vw, 96px) !important;
	text-align: center;
	border-bottom: 1px solid var(--cozy-border);
}

.cozy-hero__inner {
	max-width: 780px;
	margin-inline: auto;
}

.cozy-hero h1 {
	font-size: clamp(31px, 4.6vw, 52px);
	line-height: 1.12;
	margin: 0 0 18px;
	color: var(--cozy-ink);
}

.cozy-hero__lead {
	font-size: clamp(16.5px, 1.5vw, 19.5px);
	line-height: 1.65;
	color: var(--cozy-body);
	margin: 0 auto 30px;
	max-width: 60ch;
}

.cozy-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	margin-bottom: 30px;
}

.cozy-hero__pills {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	justify-content: center;
	align-items: center;
	font-size: 14px;
}

.cozy-hero__pills > span {
	color: var(--cozy-muted);
	margin-right: 3px;
}

.cozy-hero__pills a {
	display: inline-block;
	padding: 7px 15px;
	border-radius: var(--cozy-radius-pill);
	background: rgba(255, 255, 255, .8);
	border: 1px solid var(--cozy-border-strong);
	color: var(--cozy-body);
	text-decoration: none;
	font-size: 13.5px;
	font-weight: 500;
	transition: background-color .2s var(--cozy-ease), color .2s var(--cozy-ease), border-color .2s var(--cozy-ease), transform .2s var(--cozy-ease);
}

.cozy-hero__pills a:hover {
	background: var(--cozy-green);
	border-color: var(--cozy-green);
	color: #fff;
	transform: translateY(-1px);
}

/* --- browse by room --- */
.cozy-rooms {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--cozy-gap);
}

.cozy-room {
	position: relative;
	display: block;
	border-radius: var(--cozy-radius);
	overflow: hidden;
	aspect-ratio: 4 / 3;
	text-decoration: none;
	background: var(--cozy-green);
	box-shadow: var(--cozy-shadow);
	transition: transform .3s var(--cozy-ease), box-shadow .3s var(--cozy-ease);
}

.cozy-room:hover {
	transform: translateY(-4px);
	box-shadow: var(--cozy-shadow-lg);
}

.cozy-room img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .55s var(--cozy-ease);
}

.cozy-room:hover img { transform: scale(1.06); }

.cozy-room::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(21, 38, 33, .82) 0%, rgba(21, 38, 33, .42) 38%, rgba(21, 38, 33, .06) 72%);
	transition: background .3s var(--cozy-ease);
}

.cozy-room__label {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	padding: 20px 22px;
	color: #fff;
}

.cozy-room__label strong {
	display: block;
	font-family: var(--global-heading-font, inherit);
	font-size: clamp(18px, 1.7vw, 21px);
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: -0.01em;
}

.cozy-room__label span {
	display: inline-block;
	margin-top: 5px;
	font-size: 12.5px;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .82);
}

/* --- value / trust strip --- */
.cozy-values {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: var(--cozy-gap);
}

.cozy-value {
	background: #fff;
	border: 1px solid var(--cozy-border);
	border-radius: var(--cozy-radius);
	padding: 26px 24px;
}

.cozy-value h3 {
	font-size: 17px;
	margin: 0 0 8px;
	line-height: 1.3;
}

.cozy-value p {
	margin: 0;
	font-size: 14.5px;
	line-height: 1.6;
	color: var(--cozy-muted);
}

.cozy-value__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: var(--cozy-green-soft);
	color: var(--cozy-green);
	margin-bottom: 15px;
	line-height: 1;
}

.cozy-value__icon svg { width: 21px; height: 21px; display: block; }

/* --- about / trust band --- */
.cozy-about {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: clamp(28px, 4vw, 56px);
	align-items: center;
}

.cozy-about h2 {
	margin: 0 0 16px;
	font-size: clamp(25px, 2.5vw, 33px);
	line-height: 1.2;
}

.cozy-about p {
	color: var(--cozy-body);
	line-height: 1.72;
	margin: 0 0 16px;
}

.cozy-about__stats {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin: 24px 0 26px;
}

.cozy-stat {
	flex: 1 1 130px;
	background: #fff;
	border: 1px solid var(--cozy-border);
	border-radius: var(--cozy-radius-sm);
	padding: 15px 18px;
}

.cozy-stat strong {
	display: block;
	font-family: var(--global-heading-font, inherit);
	font-size: 25px;
	line-height: 1.1;
	color: var(--cozy-green);
}

.cozy-stat span {
	display: block;
	margin-top: 4px;
	font-size: 12.5px;
	letter-spacing: .05em;
	text-transform: uppercase;
	color: var(--cozy-muted);
}

.cozy-about__media img {
	width: 100%;
	border-radius: var(--cozy-radius);
	box-shadow: var(--cozy-shadow-lg);
	display: block;
}

/* --- closing CTA band --- */
.cozy-cta {
	background: var(--cozy-green);
	color: #fff;
	text-align: center;
	padding-block: clamp(48px, 6vw, 78px) !important;
}

.cozy-cta h2 {
	color: #fff;
	margin: 0 0 14px;
	font-size: clamp(25px, 2.7vw, 35px);
	line-height: 1.2;
}

.cozy-cta p {
	color: rgba(255, 255, 255, .84);
	max-width: 56ch;
	margin: 0 auto 28px;
	font-size: 16.5px;
	line-height: 1.65;
}

.cozy-cta .cozy-eyebrow { color: rgba(255, 255, 255, .72); }

.cozy-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
}

.cozy-chips a {
	display: inline-block;
	padding: 9px 18px;
	border-radius: var(--cozy-radius-pill);
	border: 1px solid rgba(255, 255, 255, .32);
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: background-color .2s var(--cozy-ease), border-color .2s var(--cozy-ease), transform .2s var(--cozy-ease);
}

.cozy-chips a:hover {
	background: #fff;
	border-color: #fff;
	color: var(--cozy-green);
	transform: translateY(-1px);
}

/* 7 -------------------------------------------------------------- archives */
.loop-entry.entry.content-bg {
	border: 1px solid var(--cozy-border);
	border-radius: var(--cozy-radius);
	overflow: hidden;
	box-shadow: none;
	transition: transform .28s var(--cozy-ease), box-shadow .28s var(--cozy-ease), border-color .28s var(--cozy-ease);
}

.loop-entry.entry.content-bg:hover {
	transform: translateY(-4px);
	box-shadow: var(--cozy-shadow-lg);
	border-color: var(--cozy-border-strong);
}

.loop-entry .post-thumbnail {
	overflow: hidden;
	background: var(--cozy-sand);
}

.loop-entry .post-thumbnail img {
	transition: transform .5s var(--cozy-ease);
}

.loop-entry:hover .post-thumbnail img { transform: scale(1.045); }

.loop-entry .entry-taxonomies,
.loop-entry .entry-taxonomies a {
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--cozy-accent);
}

.loop-entry .entry-title {
	font-size: 19px;
	line-height: 1.38;
	margin-block: 8px 10px;
}

.loop-entry .entry-title a { color: var(--cozy-ink); }
.loop-entry:hover .entry-title a { color: var(--cozy-green); }

.loop-entry .entry-summary p {
	font-size: 14.5px;
	line-height: 1.62;
	color: var(--cozy-muted);
}

.loop-entry .entry-meta { font-size: 12.5px; }

.loop-entry .entry-actions .post-more-link {
	font-size: 13.5px;
	font-weight: 600;
	color: var(--cozy-green);
}

/* Archive hero */
.entry-hero .entry-header .archive-title,
.entry-hero .entry-header h1 {
	line-height: 1.15;
}

.entry-hero-container-inner .entry-taxonomies a {
	color: var(--cozy-accent);
}

.archive-description {
	color: var(--cozy-muted);
	max-width: 68ch;
}

.archive-description p:last-child { margin-bottom: 0; }

/* Pagination (Kadence renders this as .navigation.pagination) */
.kadence-pagination .page-numbers,
.navigation.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	margin: 0 4px 8px 0;
	font-size: 15px;
	font-weight: 500;
	color: var(--cozy-body);
	text-decoration: none;
	background: #fff;
	border-radius: var(--cozy-radius-sm);
	border: 1px solid var(--cozy-border);
	transition: background-color .2s var(--cozy-ease), color .2s var(--cozy-ease), border-color .2s var(--cozy-ease);
}

.kadence-pagination .page-numbers.current,
.kadence-pagination .page-numbers:hover,
.navigation.pagination .page-numbers.current,
.navigation.pagination .page-numbers:hover {
	background: var(--cozy-green);
	border-color: var(--cozy-green);
	color: #fff;
}

.navigation.pagination .page-numbers.dots {
	border-color: transparent;
	background: transparent;
}

.navigation.pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-top: 12px;
}

/* 8 ---------------------------------------------------------------- single */
.single .entry-content {
	font-size: 18px;
	line-height: 1.78;
	color: var(--cozy-body);
}

.single .entry-content > p { margin-bottom: 1.35em; }

/* Keep the reading measure near 70 characters even though the content column is
   wider. Images, tables and figures deliberately keep the full column width. */
.single .entry-content > p,
.single .entry-content > ul,
.single .entry-content > ol,
.single .entry-content > h2,
.single .entry-content > h3,
.single .entry-content > h4,
.single .entry-content > h5,
.single .entry-content > blockquote {
	max-width: 66ch;
}

.single .entry-content h2 {
	margin-top: 2.1em;
	margin-bottom: .65em;
	padding-top: .55em;
	border-top: 1px solid var(--cozy-border);
	font-size: clamp(24px, 2.3vw, 30px);
	line-height: 1.26;
}

.single .entry-content h3 {
	margin-top: 1.75em;
	margin-bottom: .55em;
	font-size: clamp(20px, 1.8vw, 23px);
	line-height: 1.32;
}

.single .entry-content h4 {
	margin-top: 1.5em;
	margin-bottom: .5em;
	font-size: 19px;
}

.single .entry-content a:not(.wp-block-button__link):not(.cozy-btn) {
	color: var(--cozy-green);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-decoration-color: rgba(40, 80, 72, .38);
	transition: text-decoration-color .2s var(--cozy-ease), color .2s var(--cozy-ease);
}

.single .entry-content a:not(.wp-block-button__link):not(.cozy-btn):hover {
	color: var(--cozy-green-dark);
	text-decoration-color: var(--cozy-green);
}

.single .entry-content ul,
.single .entry-content ol {
	margin-bottom: 1.35em;
	padding-left: 1.35em;
}

.single .entry-content li { margin-bottom: .5em; }

.single .entry-content li::marker { color: var(--cozy-green); }

.single .entry-content blockquote {
	margin: 1.9em 0;
	padding: 22px 26px;
	background: var(--cozy-cream);
	border-left: 3px solid var(--cozy-green);
	border-radius: 0 var(--cozy-radius-sm) var(--cozy-radius-sm) 0;
	font-size: 18.5px;
	line-height: 1.62;
	color: var(--cozy-ink);
}

.single .entry-content blockquote p:last-child { margin-bottom: 0; }

.single .entry-content img,
.single .entry-content .wp-block-image img {
	border-radius: var(--cozy-radius-sm);
}

.single .entry-content figcaption,
.wp-element-caption {
	font-size: 13.5px;
	color: var(--cozy-muted);
	text-align: center;
	margin-top: 10px;
}

.single .entry-content table {
	border-collapse: separate;
	border-spacing: 0;
	width: 100%;
	margin: 1.8em 0;
	font-size: 15.5px;
	border: 1px solid var(--cozy-border);
	border-radius: var(--cozy-radius-sm);
	overflow: hidden;
}

.single .entry-content table th {
	background: var(--cozy-green);
	color: #fff;
	font-weight: 600;
	text-align: left;
	letter-spacing: .01em;
}

.single .entry-content table th,
.single .entry-content table td {
	padding: 12px 15px;
	border-bottom: 1px solid var(--cozy-border);
	vertical-align: top;
}

.single .entry-content table tbody tr:nth-child(even) { background: var(--cozy-cream); }
.single .entry-content table tbody tr:last-child td { border-bottom: 0; }

/* Tables must never force the page to scroll sideways. */
.single .entry-content .wp-block-table,
.single .entry-content figure.wp-block-table {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.single .entry-content hr,
.single .entry-content .wp-block-separator {
	border: 0;
	border-top: 1px solid var(--cozy-border);
	margin: 2.4em auto;
}

.cozy-read-time { color: var(--cozy-muted); }

/* Post hero: the above-content title band */
.entry-hero .entry-taxonomies a {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--cozy-accent);
	text-decoration: none;
}

.entry-hero .entry-taxonomies a:hover { text-decoration: underline; }

.entry-hero h1.entry-title {
	line-height: 1.14;
	max-width: 22ch;
}

.entry-hero-container-inner {
	border-bottom: 1px solid var(--cozy-border);
}

.entry-hero .entry-header > * + * { margin-top: 12px; }

.entry-hero .entry-meta {
	font-size: 14px;
	color: var(--cozy-muted);
	align-items: center;
}

.entry-hero .kadence-breadcrumbs {
	font-size: 13px;
	color: var(--cozy-muted);
	margin-bottom: 4px;
}

.entry-hero .kadence-breadcrumbs a { color: var(--cozy-muted); }
.entry-hero .kadence-breadcrumbs a:hover { color: var(--cozy-green); }

/* Featured image under the title band. */
.single .entry-content-wrap > .post-thumbnail,
.single .article-post-thumbnail {
	margin-bottom: 30px;
}

.single .post-thumbnail img,
.single .article-post-thumbnail img {
	border-radius: var(--cozy-radius);
}

/* Related posts carousel */
.entry-related {
	background: var(--cozy-cream);
	padding-block: clamp(40px, 5vw, 66px);
}

.entry-related .entry-related-title {
	margin-bottom: 26px;
}

.entry-related .loop-entry.entry.content-bg {
	background: #fff;
}

/* Author box / related / navigation */
.entry-author-profile {
	background: var(--cozy-cream);
	border: 1px solid var(--cozy-border);
	border-radius: var(--cozy-radius);
	padding: 26px;
}

.entry-author-profile .entry-author-name { font-size: 18px; }

.entry-related {
	border-top: 1px solid var(--cozy-border);
}

.entry-related .entry-related-title,
.comment-reply-title,
.comments-title {
	font-size: clamp(21px, 2vw, 26px);
}

.entry-related .loop-entry .entry-title { font-size: 17px; }

.post-navigation .nav-links a {
	color: var(--cozy-green);
	font-weight: 500;
}

/* Tags */
.entry-tags a,
.tags-links a {
	display: inline-block;
	padding: 5px 13px;
	margin: 0 6px 6px 0;
	border-radius: var(--cozy-radius-pill);
	background: var(--cozy-sand);
	border: 1px solid var(--cozy-border);
	font-size: 13px;
	color: var(--cozy-body);
	text-decoration: none;
	transition: background-color .2s var(--cozy-ease), color .2s var(--cozy-ease);
}

.entry-tags a:hover,
.tags-links a:hover {
	background: var(--cozy-green);
	color: #fff;
	border-color: var(--cozy-green);
}

/* 9 ----------------------------------------------------------------- pages */
.page .entry-content h2 {
	margin-top: 1.9em;
	margin-bottom: .6em;
}

.cozy-prose {
	font-size: 17.5px;
	line-height: 1.78;
}

/* Contact / form styling (Contact Form 7) */
.wpcf7-form label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: var(--cozy-ink);
	margin-bottom: 16px;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="url"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
	display: block;
	width: 100%;
	margin-top: 7px;
	padding: 12px 15px;
	font-size: 15.5px;
	font-weight: 400;
	color: var(--cozy-body);
	background: #fff;
	border: 1px solid var(--cozy-border-strong);
	border-radius: var(--cozy-radius-sm);
	transition: border-color .2s var(--cozy-ease), box-shadow .2s var(--cozy-ease);
}

.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
	outline: none;
	border-color: var(--cozy-green);
	box-shadow: 0 0 0 3px rgba(40, 80, 72, .14);
}

.wpcf7-form textarea { min-height: 170px; resize: vertical; }

.wpcf7-form .wpcf7-submit {
	background: var(--cozy-green);
	color: #fff;
	border: 0;
	padding: 13px 30px;
	font-size: 15px;
	border-radius: var(--cozy-radius-pill);
	cursor: pointer;
}

.wpcf7-form .wpcf7-submit:hover { background: var(--cozy-green-dark); }

.wpcf7 form .wpcf7-response-output {
	border-radius: var(--cozy-radius-sm);
	border-width: 1px;
	margin: 18px 0 0;
	padding: 12px 16px;
	font-size: 14.5px;
}

/* 10 -------------------------------------------------------------- sidebar */
.primary-sidebar .widget {
	background: #fff;
	border: 1px solid var(--cozy-border);
	border-radius: var(--cozy-radius);
	padding: 22px 24px;
	margin-bottom: 26px;
}

.primary-sidebar .widget-title {
	font-size: 15px;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--cozy-ink);
	padding-bottom: 12px;
	margin-bottom: 16px;
	border-bottom: 1px solid var(--cozy-border);
}

.primary-sidebar .widget ul { list-style: none; margin: 0; padding: 0; }

.primary-sidebar .widget ul li {
	padding: 9px 0;
	border-bottom: 1px solid var(--cozy-border);
	font-size: 15px;
	line-height: 1.45;
}

.primary-sidebar .widget ul li:last-child { border-bottom: 0; padding-bottom: 0; }
.primary-sidebar .widget ul li a { color: var(--cozy-body); text-decoration: none; }
.primary-sidebar .widget ul li a:hover { color: var(--cozy-green); }

.primary-sidebar .widget_search .search-field,
.primary-sidebar input[type="search"] {
	border-radius: var(--cozy-radius-pill);
	border: 1px solid var(--cozy-border-strong);
	padding: 11px 18px;
}

/* 11 --------------------------------------------------------------- footer */
.site-footer .site-footer-row-container-inner { border-color: rgba(255, 255, 255, .12); }

.site-footer .widget-title,
.site-footer .footer-widget-area .widget-title {
	font-size: 14px;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	margin-bottom: 15px;
}

.site-footer .footer-widget-area ul { list-style: none; margin: 0; padding: 0; }

.site-footer .footer-widget-area li { padding: 6px 0; font-size: 14.5px; }

.site-footer .footer-navigation .footer-menu-container > ul > li > a {
	font-size: 14.5px;
}

.cozy-footer-brand img { max-width: 190px; height: auto; }

.cozy-footer-brand p {
	font-size: 14.5px;
	line-height: 1.68;
	margin: 12px 0 0;
	max-width: 34ch;
}

.cozy-footer-note {
	font-size: 13px;
	line-height: 1.6;
	opacity: .78;
}

/* 12 ------------------------------------------------------------- comments */
.comment-respond input[type="text"],
.comment-respond input[type="email"],
.comment-respond input[type="url"],
.comment-respond textarea {
	border: 1px solid var(--cozy-border-strong);
	border-radius: var(--cozy-radius-sm);
	padding: 12px 15px;
}

.comment-respond input:focus,
.comment-respond textarea:focus {
	outline: none;
	border-color: var(--cozy-green);
	box-shadow: 0 0 0 3px rgba(40, 80, 72, .14);
}

.comment-body {
	border: 1px solid var(--cozy-border);
	border-radius: var(--cozy-radius);
	padding: 22px 24px;
	background: #fff;
}

.comment-list .children { margin-left: clamp(14px, 3vw, 40px); }

/* 12b ------------------------------------- homepage plumbing + section skins */

/* Full-bleed sections written as raw HTML still need the shared inner rail. */
.cozy-inner {
	max-width: 1240px;
	margin-inline: auto;
	padding-inline: clamp(18px, 4vw, 32px);
	width: 100%;
}

.cozy-section--white { background: #fff; }
.cozy-section--cream { background: var(--cozy-cream); }
.cozy-section--sand { background: var(--cozy-sand); }

/* Group-wrapped sections: neutralise the block layout gap and inherited padding. */
.wp-block-group.cozy-section {
	margin-block: 0;
}

.wp-block-group.cozy-section > .cozy-inner > * { margin-block: 0; }

.wp-block-group.cozy-section > .cozy-inner > .wp-block-query {
	margin-block: 0;
}

/* Core query loop grid: keep equal-height cards. */
.cozy-posts .wp-block-post-template.is-layout-grid {
	align-items: stretch;
}

.cozy-posts .wp-block-post-template > li { margin: 0; }

/* Front page starts flush against the header. */
.cozy-front .site-container,
.cozy-front .content-area { padding-block: 0; }

.cozy-front .entry-content > *:first-child { margin-top: 0; }

/* --- sidebar widgets built for this design ------------------------------- */
.cozy-widget__title,
.primary-sidebar .cozy-widget h3 {
	font-size: 15px;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--cozy-ink);
	padding-bottom: 12px;
	margin: 0 0 16px;
	border-bottom: 1px solid var(--cozy-border);
	font-family: var(--global-base-font, inherit);
}

.cozy-roomlist { list-style: none; margin: 0; padding: 0; }

.cozy-roomlist li { border-bottom: 1px solid var(--cozy-border); }
.cozy-roomlist li:last-child { border-bottom: 0; }

.cozy-roomlist a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 10px 0;
	font-size: 15px;
	color: var(--cozy-body);
	text-decoration: none;
	transition: color .2s var(--cozy-ease);
}

.cozy-roomlist a:hover { color: var(--cozy-green); }

.cozy-roomlist em {
	flex: 0 0 auto;
	font-style: normal;
	font-size: 12px;
	font-weight: 600;
	min-width: 30px;
	text-align: center;
	padding: 3px 8px;
	border-radius: var(--cozy-radius-pill);
	background: var(--cozy-green-soft);
	color: var(--cozy-green);
}

.cozy-mini-posts,
.primary-sidebar .wp-block-latest-posts {
	list-style: none;
	margin: 0;
	padding: 0;
}

.primary-sidebar .wp-block-latest-posts li {
	display: flex;
	gap: 13px;
	align-items: flex-start;
	padding: 12px 0;
	border-bottom: 1px solid var(--cozy-border);
}

.primary-sidebar .wp-block-latest-posts li:last-child { border-bottom: 0; padding-bottom: 0; }

.primary-sidebar .wp-block-latest-posts__featured-image {
	flex: 0 0 74px;
	margin: 0;
}

.primary-sidebar .wp-block-latest-posts__featured-image img {
	width: 74px;
	height: 60px;
	object-fit: cover;
	border-radius: var(--cozy-radius-sm);
	display: block;
}

.primary-sidebar .wp-block-latest-posts__post-title {
	font-family: var(--global-heading-font, inherit);
	font-size: 15px;
	line-height: 1.4;
	font-weight: 600;
	color: var(--cozy-ink);
	text-decoration: none;
}

.primary-sidebar .wp-block-latest-posts__post-title:hover { color: var(--cozy-green); }

.cozy-widget--about img { max-width: 150px; height: auto; margin-bottom: 12px; }

.cozy-widget--about p {
	font-size: 14.5px;
	line-height: 1.62;
	color: var(--cozy-muted);
	margin: 0 0 14px;
}

.cozy-widget__link {
	font-size: 14px;
	font-weight: 600;
	color: var(--cozy-green);
	text-decoration: none;
	border-bottom: 1.5px solid var(--cozy-green);
	padding-bottom: 1px;
}

.primary-sidebar .wp-block-search__inside-wrapper {
	border: 1px solid var(--cozy-border-strong);
	border-radius: var(--cozy-radius-pill);
	overflow: hidden;
	padding: 3px 3px 3px 6px;
	background: #fff;
}

.primary-sidebar .wp-block-search__input {
	border: 0;
	background: transparent;
	padding: 9px 12px;
	font-size: 14.5px;
}

.primary-sidebar .wp-block-search__input:focus { outline: none; }

.primary-sidebar .wp-block-search__button {
	background: var(--cozy-green);
	color: #fff;
	border: 0;
	border-radius: var(--cozy-radius-pill);
	padding: 9px 18px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
}

.primary-sidebar .wp-block-search__button:hover { background: var(--cozy-green-dark); }

/* --- footer columns ------------------------------------------------------ */
.cozy-footer-col__title {
	font-family: var(--global-base-font, inherit);
	font-size: 13.5px;
	font-weight: 600;
	letter-spacing: .11em;
	text-transform: uppercase;
	color: #fff;
	margin: 0 0 14px;
}

.cozy-footer-col ul { list-style: none; margin: 0; padding: 0; }

.cozy-footer-col li { padding: 5px 0; }

.cozy-footer-col a {
	font-size: 14.5px;
	color: rgba(255, 255, 255, .74);
	text-decoration: none;
	transition: color .2s var(--cozy-ease);
}

.cozy-footer-col a:hover { color: #fff; }

.site-footer .cozy-footer-brand p { color: rgba(255, 255, 255, .74); }

/* Header keeps a hairline under the main row. */
.site-header-main-section-inner-items,
#main-header .site-header-row-container.site-header-focus-item {
	border-bottom: 1px solid var(--cozy-border);
}

/* 12c ----------------------------------------- about / contact / author pages */

/* Prose band inside a full-width section. */
.cozy-prose-band {
	max-width: 72ch;
}

.cozy-prose-band h2 { margin: 0 0 16px; }

.cozy-prose-band p {
	color: var(--cozy-body);
	line-height: 1.75;
	margin: 0 0 16px;
}

.cozy-prose-band p:last-child { margin-bottom: 0; }

.cozy-prose-band--flush { margin-bottom: 28px; }

/* Numbered method steps. */
.cozy-steps {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: var(--cozy-gap);
}

.cozy-step {
	background: #fff;
	border: 1px solid var(--cozy-border);
	border-radius: var(--cozy-radius);
	padding: 26px 24px;
}

.cozy-step__num {
	display: inline-block;
	font-family: var(--global-heading-font, inherit);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .08em;
	color: var(--cozy-accent);
	padding: 4px 10px;
	border-radius: var(--cozy-radius-pill);
	background: var(--cozy-accent-soft);
	margin-bottom: 14px;
}

.cozy-step h3 {
	font-size: 17px;
	line-height: 1.32;
	margin: 0 0 8px;
}

.cozy-step p {
	margin: 0;
	font-size: 14.5px;
	line-height: 1.62;
	color: var(--cozy-muted);
}

/* Author card. */
.cozy-author {
	display: flex;
	gap: clamp(18px, 2.4vw, 28px);
	align-items: flex-start;
	background: #fff;
	border: 1px solid var(--cozy-border);
	border-radius: var(--cozy-radius);
	padding: clamp(22px, 2.6vw, 32px);
	max-width: 820px;
}

.cozy-author--wide { max-width: none; margin-bottom: 34px; }

.cozy-author__avatar {
	flex: 0 0 auto;
	width: 88px;
	height: 88px;
	border-radius: 50%;
	object-fit: cover;
	background: var(--cozy-sand);
}

/* Monogram stands in for a Gravatar the site authors do not have. */
.cozy-monogram {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--cozy-green-soft);
	color: var(--cozy-green);
	font-family: var(--global-heading-font, inherit);
	font-weight: 600;
	letter-spacing: .02em;
	line-height: 1;
	text-transform: uppercase;
	overflow: hidden;
	flex: 0 0 auto;
	vertical-align: middle;
}

.cozy-author__avatar.cozy-monogram { font-size: 32px; }

.entry-meta .cozy-monogram { font-size: 12px; }

/*
 * Flex items get an implicit min-width:auto (sized to their content), which
 * can stop a text-heavy sibling from shrinking the way it looks like it
 * should and, in cramped or zoomed layouts, let it push back into the fixed-
 * width avatar next to it. min-width:0 is the standard fix so this column
 * always yields to the avatar's fixed size instead of fighting it.
 */
.cozy-author__body {
	flex: 1 1 auto;
	min-width: 0;
}

.cozy-author__body h2,
.cozy-author__body h3 {
	margin: 0 0 4px;
	font-size: clamp(19px, 1.8vw, 22px);
	line-height: 1.25;
}

.cozy-author__role {
	display: block;
	font-size: 13px;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--cozy-muted);
	margin-bottom: 12px;
}

.cozy-author__body p {
	margin: 0 0 14px;
	color: var(--cozy-body);
	line-height: 1.7;
	font-size: 16px;
}

/* Ghost button sitting on the dark CTA band. */
.cozy-btn--on-dark {
	color: #fff;
	border-color: rgba(255, 255, 255, .4);
}

.cozy-btn--on-dark:hover {
	background: rgba(255, 255, 255, .1);
	border-color: #fff;
	color: #fff;
}

/* Contact page. */
.cozy-contact {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: clamp(26px, 3.4vw, 48px);
	align-items: start;
	margin-bottom: 34px;
}

.cozy-contact__form h2 { margin: 0 0 12px; }

.cozy-contact__form p {
	margin: 0;
	color: var(--cozy-body);
	line-height: 1.72;
}

.cozy-contact__aside {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.cozy-infocard {
	background: var(--cozy-cream);
	border: 1px solid var(--cozy-border);
	border-radius: var(--cozy-radius);
	padding: 18px 20px;
}

.cozy-infocard h3 {
	font-family: var(--global-base-font, inherit);
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: .11em;
	text-transform: uppercase;
	color: var(--cozy-muted);
	margin: 0 0 6px;
}

.cozy-infocard p {
	margin: 0;
	font-size: 15.5px;
	line-height: 1.55;
	color: var(--cozy-ink);
}

.cozy-infocard a { color: var(--cozy-green); font-weight: 500; }

.cozy-help { margin-top: 38px; }

.cozy-help h2 { margin: 0 0 16px; }

.cozy-checklist {
	list-style: none;
	margin: 0;
	padding: 0;
	max-width: 68ch;
}

.cozy-checklist li {
	position: relative;
	padding-left: 30px;
	margin-bottom: 12px;
	line-height: 1.65;
	color: var(--cozy-body);
}

.cozy-checklist li::before {
	content: "";
	position: absolute;
	left: 0;
	top: .52em;
	width: 15px;
	height: 9px;
	border-left: 2px solid var(--cozy-green);
	border-bottom: 2px solid var(--cozy-green);
	transform: rotate(-45deg);
	border-radius: 1px;
}

/* Contact form 7 sits directly in the page flow. */
.page .wpcf7 {
	background: #fff;
	border: 1px solid var(--cozy-border);
	border-radius: var(--cozy-radius);
	padding: clamp(22px, 2.6vw, 32px);
	max-width: 720px;
}

@media (max-width: 1024px) {
	.cozy-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.cozy-contact { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
	.cozy-steps { grid-template-columns: 1fr; }
	.cozy-author { flex-direction: column; }
	.cozy-author__avatar { width: 72px; height: 72px; }
}

/* 12d ------------------------------------------------- 404 / empty search */
.cozy-error { max-width: 900px; }

.cozy-error__lead {
	font-size: 17.5px;
	line-height: 1.7;
	color: var(--cozy-body);
	margin: 0 0 22px;
	max-width: 60ch;
}

.cozy-error__search { max-width: 520px; margin-bottom: 34px; }

.cozy-error__search .search-form,
.cozy-error__search form {
	display: flex;
	gap: 10px;
}

.cozy-error__search input[type="search"] {
	flex: 1 1 auto;
	padding: 12px 18px;
	font-size: 15.5px;
	border: 1px solid var(--cozy-border-strong);
	border-radius: var(--cozy-radius-pill);
	background: #fff;
}

.cozy-error__search input[type="search"]:focus {
	outline: none;
	border-color: var(--cozy-green);
	box-shadow: 0 0 0 3px rgba(40, 80, 72, .14);
}

.cozy-error__search button,
.cozy-error__search input[type="submit"] {
	background: var(--cozy-green);
	color: #fff;
	border: 0;
	padding: 12px 24px;
	border-radius: var(--cozy-radius-pill);
	font-weight: 600;
	cursor: pointer;
}

.cozy-error__heading {
	font-size: 15px;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--cozy-muted);
	font-family: var(--global-base-font, inherit);
	margin: 0 0 14px;
}

/* Chips on a light background flip the CTA-band colours. */
.cozy-chips--light { margin-bottom: 34px; }

.cozy-chips--light a {
	border-color: var(--cozy-border-strong);
	color: var(--cozy-body);
	background: #fff;
}

.cozy-chips--light a:hover {
	background: var(--cozy-green);
	border-color: var(--cozy-green);
	color: #fff;
}

.cozy-error__posts {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-bottom: 34px;
}

.cozy-error__post {
	display: block;
	text-decoration: none;
	background: #fff;
	border: 1px solid var(--cozy-border);
	border-radius: var(--cozy-radius);
	overflow: hidden;
	transition: transform .25s var(--cozy-ease), box-shadow .25s var(--cozy-ease);
}

.cozy-error__post:hover {
	transform: translateY(-3px);
	box-shadow: var(--cozy-shadow-lg);
}

.cozy-error__post img {
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	display: block;
	background: var(--cozy-sand);
}

.cozy-error__post-title {
	display: block;
	padding: 14px 16px 18px;
	font-family: var(--global-heading-font, inherit);
	font-size: 16px;
	line-height: 1.38;
	font-weight: 600;
	color: var(--cozy-ink);
}

.cozy-error__post:hover .cozy-error__post-title { color: var(--cozy-green); }

.cozy-error__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 0;
}

@media (max-width: 640px) {
	.cozy-error__posts { grid-template-columns: 1fr; }
	.cozy-error__search form { flex-direction: column; }
	.cozy-error__actions .cozy-btn { flex: 1 1 auto; justify-content: center; }
}

/* 12e -------------------------------------------- affiliate product cards */
/* The article generator emits .product-showcase-card with psc-* classes and no
   stylesheet of its own, so these rules are what make the cards render. Older
   posts carry an inline-styled variant of the same block and are left alone. */

.entry-content .product-showcase-card {
	background: #fff;
	border: 1px solid var(--cozy-border);
	border-radius: var(--cozy-radius);
	padding: clamp(18px, 2.2vw, 26px);
	margin: 2em 0;
	max-width: none;
	box-shadow: var(--cozy-shadow);
}

/* wpautop leaves empty paragraphs between the card's children. */
.entry-content .product-showcase-card > p:empty,
.entry-content .product-showcase-card p:empty {
	display: none;
}

.psc-head {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 16px;
}

.psc-rank {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--cozy-green);
	color: #fff;
	font-family: var(--global-heading-font, inherit);
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
}

.psc-heading { flex: 1 1 auto; min-width: 0; }

.psc-badge {
	display: inline-block;
	margin-bottom: 8px;
	padding: 4px 11px;
	border-radius: var(--cozy-radius-pill);
	background: var(--cozy-accent-soft);
	color: var(--cozy-accent);
	font-family: var(--global-base-font, inherit);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	line-height: 1.4;
}

.psc-badge--best-value {
	background: var(--cozy-green-soft);
	color: var(--cozy-green);
}

.entry-content h3.psc-title {
	margin: 0;
	font-size: clamp(17px, 1.6vw, 19px);
	line-height: 1.35;
	color: var(--cozy-ink);
	border-top: 0;
	padding-top: 0;
	max-width: none;
}

.psc-media {
	margin: 0 0 16px;
	text-align: center;
	background: var(--cozy-cream);
	border-radius: var(--cozy-radius-sm);
	padding: 16px;
}

.psc-media img {
	max-height: 230px;
	width: auto;
	max-width: 100%;
	display: inline-block;
	border-radius: 0;
	mix-blend-mode: multiply;
}

/*
 * Kadence's global stylesheet sets img{display:block}, which silently
 * defeats every `text-align:center` wrapper the article generator writes
 * around a product photo (block elements ignore text-align; only inline/
 * inline-block content responds to it). That leaves product images sitting
 * flush left in the older, inline-styled cards instead of centered. Auto
 * inline margins center a block-level image regardless of what display
 * value wins, so this is a belt-and-braces fix that works whether Kadence's
 * block default applies or the inline-block rule above does.
 */
.entry-content .product-showcase-card img {
	margin-inline: auto;
}

.psc-action {
	margin: 0;
	text-align: center;
	max-width: none;
}

.entry-content a.psc-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 13px 30px;
	border-radius: var(--cozy-radius-pill);
	background: var(--cozy-green);
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	transition: background-color .2s var(--cozy-ease), transform .18s var(--cozy-ease);
}

.entry-content a.psc-cta::after { content: "92"; }

.entry-content a.psc-cta:hover {
	background: var(--cozy-green-dark);
	color: #fff;
	text-decoration: none;
	transform: translateY(-1px);
}

@media (max-width: 560px) {
	.entry-content a.psc-cta { display: flex; width: 100%; }
	.psc-media img { max-height: 190px; }
}

/* 13 ------------------------------------------------------- a11y + motion */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.cozy-room:focus-visible,
.cozy-btn:focus-visible {
	outline: 3px solid var(--cozy-green);
	outline-offset: 3px;
	border-radius: 4px;
}

.cozy-room:focus-visible { outline-offset: 4px; }

.skip-link:focus {
	background: var(--cozy-green);
	color: #fff;
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
		scroll-behavior: auto !important;
	}

	.cozy-posts .wp-block-post:hover,
	.loop-entry.entry.content-bg:hover,
	.cozy-room:hover,
	.cozy-btn:hover { transform: none; }
}

/* --------------------------------------------------------------- responsive */
@media (max-width: 1024px) {
	.cozy-rooms { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.cozy-values { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.cozy-about { grid-template-columns: 1fr; }
	.cozy-about__media { order: -1; }
	.cozy-about__media img { max-height: 340px; object-fit: cover; }
}

@media (max-width: 767px) {
	:root { --cozy-gap: 18px; }

	.cozy-rooms { grid-template-columns: repeat(2, minmax(0, 1fr)); }

	.cozy-room { aspect-ratio: 1 / 1; }
	.cozy-room__label { padding: 14px 15px; }
	.cozy-room__label strong { font-size: 15.5px; }
	.cozy-room__label span { font-size: 11px; margin-top: 3px; }

	.cozy-values { grid-template-columns: 1fr; }

	.cozy-section__head {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}

	.cozy-hero__actions .cozy-btn { flex: 1 1 auto; justify-content: center; }

	.cozy-card-body { padding: 16px 17px 20px; }
	.cozy-posts .wp-block-post-title { font-size: 17.5px; }

	.single .entry-content { font-size: 17px; line-height: 1.74; }
	.single .entry-content blockquote { padding: 18px 20px; font-size: 17px; }
	.single .entry-content table { font-size: 14.5px; }
	.single .entry-content table th,
	.single .entry-content table td { padding: 10px 12px; }

	.cozy-about__stats { gap: 10px; }
	.cozy-stat { flex: 1 1 calc(50% - 5px); padding: 13px 14px; }
	.cozy-stat strong { font-size: 21px; }
}

@media (max-width: 420px) {
	.cozy-rooms { grid-template-columns: 1fr; }
	.cozy-room { aspect-ratio: 16 / 10; }
}
