/* ==========================================================================
   Keynote Detail — editorial layout system
   Split hero · framework lead · two-column fit/outcomes · stat accent ·
   cross-sell cards. Used by templates/page-keynote-detail.html (posts 101-104).
   Prefix: kog-kd-
   ========================================================================== */

.kog-kd {
	--kd-gold: var(--wp--preset--color--gold);
	--kd-forest: var(--wp--preset--color--forest);
	--kd-cream: var(--wp--preset--color--cream);
	--kd-warm-white: var(--wp--preset--color--warm-white);
	--kd-charcoal: var(--wp--preset--color--charcoal);
}

/* --------------------------------------------------------------------------
   1. Split hero
   -------------------------------------------------------------------------- */
.kog-kd-hero {
	position: relative;
	overflow: hidden;
	background-color: var(--wp--preset--color--forest);
	color: var(--wp--preset--color--warm-white);
}
/* generated brand texture layer — a plain div with an inline background-image.
   Sits under the forest, very subtle. */
.kog-kd-hero__texture {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0.32;
	mix-blend-mode: screen;
	pointer-events: none;
}

/* shared inner constraint for every band */
.kog-kd-inner {
	max-width: 1200px;
	margin-inline: auto;
	padding-inline: clamp(1.25rem, 4vw, 2rem);
	/* raw-HTML divs default to content-box; without this, a width:100% override
	   (e.g. .kog-kd-stage .kog-kd-inner) adds the padding on top of 100% and
	   overflows the viewport on mobile. Keep the padding inside the width. */
	box-sizing: border-box;
}

.kog-kd-hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: clamp(2rem, 5vw, 4.5rem);
	align-items: center;
	padding-block: clamp(3.5rem, 7vw, 6.5rem);
}
.kog-kd-hero__text > * { margin-block: 0; }
.kog-kd-hero__text > * + * { margin-top: 1.15rem; }

.kog-kd-hero__title {
	font-family: var(--wp--preset--font-family--playfair);
	font-size: clamp(2.6rem, 5.6vw, 4.25rem);
	line-height: 1.04;
	letter-spacing: -0.01em;
	font-weight: 600;
}
.kog-kd-hero__title em { font-style: italic; color: var(--wp--preset--color--gold); }

.kog-kd-hero__subtitle {
	font-size: 0.8rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--wp--preset--color--gold-light);
	/* No width cap: short subtitles sit on one line; only subtitles that exceed
	   the hero text column wrap (e.g. the longer Human Layer / Performance Rx copy). */
	max-width: none;
}
.kog-kd-hero__tagline {
	font-family: var(--wp--preset--font-family--playfair);
	font-style: italic;
	font-size: clamp(1.2rem, 2vw, 1.5rem);
	line-height: 1.5;
	color: var(--wp--preset--color--cream);
	max-width: 40ch;
}
.kog-kd-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1rem;
	align-items: center;
	margin-top: 1.75rem !important;
}
.kog-kd-btn {
	display: inline-block;
	padding: 0.85rem 1.6rem;
	font-family: var(--wp--preset--font-family--dm-sans);
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 2px;
	transition: background 0.25s ease, color 0.25s ease;
}
.kog-kd-btn--gold {
	background: var(--wp--preset--color--gold);
	color: var(--wp--preset--color--forest);
}
.kog-kd-btn--gold:hover { background: var(--wp--preset--color--gold-light); }
.kog-kd-btn--ghost {
	border: 1px solid var(--wp--preset--color--gold-border);
	color: var(--wp--preset--color--cream);
}
.kog-kd-btn--ghost:hover { background: rgba(196,151,58,0.14); }

/* watch-reel trigger button (reuses .kog-kd-btn--ghost base) */
button.kog-kd-reel-trigger {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	background: transparent;
	cursor: pointer;
}
.kog-kd-reel-icon {
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0.34rem 0 0.34rem 0.56rem;
	border-color: transparent transparent transparent var(--wp--preset--color--gold);
	flex: 0 0 auto;
}

/* reel lightbox */
.kog-kd-lightbox {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(1rem, 5vmin, 3rem);
	background: rgba(10,18,12,0.92);
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
}
.kog-kd-lightbox[hidden] { display: none; }
.kog-kd-lightbox__video {
	width: auto;
	height: auto;
	max-width: min(1100px, 94vw);
	max-height: 84vh;
	border-radius: 4px;
	background: #000;
	box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.kog-kd-lightbox__close {
	position: absolute;
	top: clamp(0.75rem, 4vmin, 2rem);
	right: clamp(0.75rem, 4vmin, 2rem);
	width: 2.75rem;
	height: 2.75rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.4);
	background: rgba(0,0,0,0.3);
	color: #fff;
	font-size: 1.7rem;
	line-height: 1;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
}
.kog-kd-lightbox__close:hover {
	background: var(--wp--preset--color--gold);
	color: var(--wp--preset--color--forest);
	border-color: var(--wp--preset--color--gold);
}

.kog-kd-hero__figure {
	position: relative;
	margin: 0;
}
.kog-kd-hero__figure img {
	display: block;
	width: 100%;
	height: clamp(360px, 52vw, 560px);
	object-fit: cover;
	border-radius: 4px;
	box-shadow: 0 30px 60px -28px rgba(0,0,0,0.55);
}
/* thin gold frame accent */
.kog-kd-hero__figure::after {
	content: "";
	position: absolute;
	inset: 14px -14px -14px 14px;
	border: 1px solid var(--wp--preset--color--gold-border);
	border-radius: 4px;
	z-index: -1;
}

/* ---- photographic hero variant (full-bleed action shot, light type) ---- */
.kog-kd-hero--photo {
	background-color: var(--wp--preset--color--forest);
	color: var(--wp--preset--color--warm-white);
	min-height: clamp(520px, 70vh, 720px);
	display: flex;
	align-items: center;
}
.kog-kd-hero__photo {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-size: cover;
	background-position: center right;
}
.kog-kd-hero__photo::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg,
		rgba(26,58,42,0.92) 0%,
		rgba(26,58,42,0.74) 34%,
		rgba(26,58,42,0.32) 62%,
		rgba(26,58,42,0.06) 100%);
}
.kog-kd-hero--photo .kog-kd-hero__inner {
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	padding-block: clamp(3rem, 6vw, 5rem);
}
.kog-kd-hero--photo .kog-kd-hero__text { max-width: 600px; }

/* ---- light hero variant (cream ground, dark type, cutout figure) ---- */
.kog-kd-hero--light {
	background-color: var(--wp--preset--color--warm-white);
	color: var(--wp--preset--color--charcoal);
}
.kog-kd-hero--light .kog-kd-hero__title { color: var(--wp--preset--color--charcoal); }
.kog-kd-hero--light .kog-kd-hero__subtitle { color: var(--wp--preset--color--gold); }
.kog-kd-hero--light .kog-kd-hero__tagline { color: var(--wp--preset--color--forest); }
.kog-kd-hero--light .kog-kd-btn--ghost {
	border-color: var(--wp--preset--color--gold);
	color: var(--wp--preset--color--charcoal);
}
.kog-kd-hero--light .kog-kd-btn--ghost:hover { background: var(--wp--preset--color--gold-pale); }
.kog-kd-hero--light .kog-kd-hero__inner { align-items: stretch; }
/* faint brand texture wash on the light ground (normal blend, low opacity) */
.kog-kd-hero--light .kog-kd-hero__texture {
	opacity: 0.2;
	mix-blend-mode: normal;
}

/* cutout figure + decorative brand shape behind it */
.kog-kd-hero__cutout {
	position: relative;
	margin: 0;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	min-height: clamp(480px, 60vw, 660px);
	/* cancel the inner's bottom padding so the figure reaches the hero's
	   bottom edge and butts up against the solid section below */
	margin-bottom: calc(-1 * clamp(3.5rem, 7vw, 6.5rem));
}
.kog-kd-hero__cutout img {
	position: relative;
	z-index: 1;
	width: auto;
	max-width: 100%;
	max-height: clamp(480px, 66vw, 700px);
	object-fit: contain;
	object-position: bottom center;
}
/* soft contact shadow so she reads as grounded on the section edge below */
.kog-kd-hero__cutout::after {
	content: "";
	position: absolute;
	z-index: 0;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 66%;
	height: 26px;
	background: radial-gradient(ellipse at center, rgba(28,28,26,0.22), rgba(28,28,26,0) 72%);
}
/* Hero cutout reveal — fade-in + lift + scale-in as the figure enters the
   viewport. Opts into the shared section-animations.js observer, which toggles
   `.is-visible`. The figure-level transform handles the entrance; it settles at
   scale(1) so nothing is cropped at rest. */
.kog-kd-hero__cutout {
	opacity: 0;
	transform: translateY(4%) scale(0.94);
	will-change: transform, opacity;
	transition: opacity 0.9s ease-out,
	            transform 1.1s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.kog-kd-hero__cutout.is-visible {
	opacity: 1;
	transform: none;
}
/* Scroll-bound scale on the inner <img> — composes with the figure's entrance
   transform. Driven by keynote-detail.js, which sets --hero-scroll-scale from
   page scroll so it starts at 1 on load (no crop) and grows gently on scroll. */
.kog-kd-hero__cutout img {
	transform-origin: center bottom;
	transform: scale(var(--hero-scroll-scale, 1));
	transition: transform 140ms linear;
	will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
	.kog-kd-hero__cutout {
		opacity: 1;
		transform: none;
		transition: none;
	}
	.kog-kd-hero__cutout img {
		transform: none;
	}
}

.kog-kd-hero__shape {
	position: absolute;
	z-index: 0;
	left: 50%;
	bottom: 12%;
	width: min(360px, 74%);
	height: 80%;
	transform: translateX(-50%);
	border-radius: 200px 200px 0 0;
	background: var(--wp--preset--color--forest);
}
.kog-kd-hero__shape--ring {
	background: transparent;
	border: 1px solid var(--wp--preset--color--gold-border);
	width: min(500px, 96%);
	bottom: 2%;
}

/* full-bleed keynote sections butt flush against each other — kill the
   constrained-layout block gap so the hero and following bands have no seam */
.kog-kd-hero,
.kog-kd-banner,
.kog-kd-lead,
.kog-kd-split,
.kog-kd-stage,
.kog-kd-stat,
.kog-kd-pullquote,
.kog-kd-cols,
.kog-kd-cross {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

/* --------------------------------------------------------------------------
   1d. Stage composite — figure on a blurred stage that blends into the cream
   (banner style: content left, stage photo right)
   -------------------------------------------------------------------------- */
.kog-kd-stage {
	position: relative;
	overflow: hidden;
	background-color: var(--wp--preset--color--cream);
	min-height: clamp(460px, 54vw, 620px);
	display: flex;
	align-items: center;
}
.kog-kd-stage__photo {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	width: 64%;
	background-size: cover;
	background-position: center right;
	/* fade the photo's left edge into the cream content */
	-webkit-mask-image: linear-gradient(to right, transparent 2%, rgba(0,0,0,0.55) 26%, #000 48%);
	mask-image: linear-gradient(to right, transparent 2%, rgba(0,0,0,0.55) 26%, #000 48%);
}
/* crisp cutout figure layered on top of the blurred stage background */
.kog-kd-stage__figure {
	position: absolute;
	z-index: 1;
	right: clamp(0.5rem, 5vw, 6rem);
	bottom: 0;
	height: 94%;
	width: auto;
	max-width: 48%;
	object-fit: contain;
	object-position: bottom;
}
.kog-kd-stage .kog-kd-inner {
	position: relative;
	z-index: 3;
	width: 100%;
}
.kog-kd-stage__content {
	max-width: 47%;
	padding-block: clamp(3rem, 6vw, 5rem);
}
.kog-kd-stage__content .kog-kd-split__eyebrow { margin-bottom: 1.1rem; }

@media (max-width: 860px) {
	.kog-kd-stage { display: block; min-height: 0; }
	/* on mobile, drop the stage background photo and the figure — content only */
	.kog-kd-stage__photo,
	.kog-kd-stage__figure { display: none; }
	.kog-kd-stage__content { max-width: 100%; padding-top: 0; }
}

/* --------------------------------------------------------------------------
   1c. Framework split — image + editorial copy
   -------------------------------------------------------------------------- */
.kog-kd-split { padding-block: clamp(3.75rem, 6.5vw, 6rem); }
.kog-kd-split__grid {
	display: grid;
	grid-template-columns: 0.92fr 1.08fr;
	gap: clamp(2rem, 5vw, 4.5rem);
	align-items: center;
}
.kog-kd-split__figure { position: relative; margin: 0; }
.kog-kd-split__figure img {
	display: block;
	width: 100%;
	height: clamp(360px, 46vw, 540px);
	object-fit: cover;
	object-position: center;
	border-radius: 4px;
	box-shadow: 0 26px 50px -28px rgba(28,28,26,0.45);
}
/* gold offset frame, echoes the hero figure treatment */
.kog-kd-split__figure::after {
	content: "";
	position: absolute;
	inset: 16px -16px -16px 16px;
	border: 1px solid var(--wp--preset--color--gold-border);
	border-radius: 4px;
	z-index: -1;
}
.kog-kd-split__eyebrow { margin-bottom: 1.1rem; }
.kog-kd-split__head {
	font-family: var(--wp--preset--font-family--playfair);
	font-size: clamp(1.75rem, 3vw, 2.45rem);
	line-height: 1.18;
	letter-spacing: -0.01em;
	color: var(--wp--preset--color--charcoal);
	margin: 0 0 1.5rem;
	text-wrap: balance;
}
.kog-kd-split__head em { font-style: italic; color: var(--wp--preset--color--gold); }
.kog-kd-split__body p {
	font-size: 1.08rem;
	line-height: 1.75;
	color: var(--wp--preset--color--charcoal);
}
.kog-kd-split__body p + p { margin-top: 1.05rem; }
.kog-kd-split__body strong { color: var(--wp--preset--color--forest); font-weight: 600; }

/* cutout variant — figure stands on the section edge instead of a framed photo */
.kog-kd-split--cutout .kog-kd-split__grid { align-items: stretch; }
.kog-kd-split--cutout .kog-kd-split__content { align-self: center; }
.kog-kd-split__figure--cutout {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	/* drop the figure to the section's bottom edge so it butts the next band */
	margin-bottom: calc(-1 * clamp(3.75rem, 6.5vw, 6rem));
}
.kog-kd-split__figure--cutout::after { display: none; }
.kog-kd-split__figure--cutout img {
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: clamp(440px, 52vw, 600px);
	object-fit: contain;
	border-radius: 0;
	box-shadow: none;
}
@media (max-width: 860px) {
	.kog-kd-split__grid { grid-template-columns: 1fr; }
	.kog-kd-split__figure::after { inset: 12px -12px -12px 12px; }
	.kog-kd-split--cutout .kog-kd-split__figure--cutout { margin-bottom: 0; }
}

/* --------------------------------------------------------------------------
   1b. Banner pullquote (large statement band, sits flush under the hero)
   -------------------------------------------------------------------------- */
.kog-kd-banner {
	background-color: var(--wp--preset--color--cream);
	padding-block: clamp(3.25rem, 6.5vw, 5.5rem);
	text-align: center;
}
.kog-kd-banner__q {
	font-family: var(--wp--preset--font-family--playfair);
	font-size: clamp(1.6rem, 3.2vw, 2.6rem);
	line-height: 1.32;
	letter-spacing: -0.005em;
	color: var(--wp--preset--color--charcoal);
	max-width: 1000px;
	margin: 0 auto;
	text-wrap: balance;
}
.kog-kd-banner__q em { font-style: italic; color: var(--wp--preset--color--gold); }
.kog-kd-banner__q br { line-height: 2; }

/* --------------------------------------------------------------------------
   2. Framework lead (value proposition)
   -------------------------------------------------------------------------- */
.kog-kd-lead { padding-block: clamp(3.5rem, 6vw, 5.5rem); }
.kog-kd-lead__eyebrow { margin-bottom: 1.25rem; }
.kog-kd-lead__big {
	font-family: var(--wp--preset--font-family--playfair);
	font-size: clamp(1.55rem, 2.8vw, 2.1rem);
	line-height: 1.4;
	color: var(--wp--preset--color--charcoal);
	max-width: 24ch;
	margin: 0 0 1.75rem;
}
.kog-kd-lead__big em { font-style: italic; color: var(--wp--preset--color--gold); }
.kog-kd-lead__body { max-width: 60ch; }
.kog-kd-lead__body p {
	font-size: 1.12rem;
	line-height: 1.75;
	color: var(--wp--preset--color--charcoal);
}
.kog-kd-lead__body p + p { margin-top: 1.1rem; }
.kog-kd-lead__body strong { color: var(--wp--preset--color--forest); font-weight: 600; }

/* --------------------------------------------------------------------------
   3. Pull-quote band
   -------------------------------------------------------------------------- */
.kog-kd-pullquote {
	position: relative;
	overflow: hidden;
	background-color: var(--wp--preset--color--forest);
	color: var(--wp--preset--color--warm-white);
	padding-block: clamp(3.5rem, 7vw, 6rem);
	text-align: center;
}
/* optional generated concept image behind the quote */
.kog-kd-pullquote__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0.55;
	pointer-events: none;
}
.kog-kd-pullquote__bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(rgba(26,58,42,0.55), rgba(26,58,42,0.80));
}
.kog-kd-pullquote .kog-kd-inner { position: relative; z-index: 1; }
.kog-kd-pullquote__q {
	font-family: var(--wp--preset--font-family--playfair);
	font-size: clamp(1.6rem, 3.4vw, 2.5rem);
	line-height: 1.32;
	font-style: italic;
	max-width: 22ch;
	margin: 0 auto;
}
.kog-kd-pullquote__q em { color: var(--wp--preset--color--gold); font-style: italic; }
.kog-kd-pullquote__cite {
	margin-top: 1.5rem;
	font-size: 0.78rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--wp--preset--color--gold-light);
}

/* --------------------------------------------------------------------------
   4. Two-column band — who it's for / what they leave with
   -------------------------------------------------------------------------- */
.kog-kd-cols {
	background-color: var(--wp--preset--color--cream);
	padding-block: clamp(3.5rem, 6vw, 5.5rem);
}
.kog-kd-cols__grid {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: clamp(2rem, 5vw, 4rem);
}
.kog-kd-col__eyebrow { margin-bottom: 1rem; }
.kog-kd-col__head {
	font-family: var(--wp--preset--font-family--playfair);
	font-size: clamp(1.4rem, 2.4vw, 1.85rem);
	line-height: 1.2;
	color: var(--wp--preset--color--charcoal);
	margin: 0 0 1.25rem;
}
.kog-kd-col__head em { font-style: italic; color: var(--wp--preset--color--gold); }
.kog-kd-col p { font-size: 1.05rem; line-height: 1.7; color: var(--wp--preset--color--charcoal); }

/* outcomes list — gold tick rules instead of bullets */
.kog-kd-outcomes { list-style: none; margin: 0; padding: 0; }
.kog-kd-outcomes li {
	position: relative;
	padding: 1rem 0 1rem 2.25rem;
	font-size: 1.06rem;
	line-height: 1.6;
	color: var(--wp--preset--color--charcoal);
	border-top: 1px solid var(--wp--preset--color--gold-border);
}
.kog-kd-outcomes li:last-child { border-bottom: 1px solid var(--wp--preset--color--gold-border); }
.kog-kd-outcomes li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 1.45rem;
	width: 1.1rem;
	height: 1.1rem;
	border-radius: 50%;
	background:
		linear-gradient(transparent, transparent),
		var(--wp--preset--color--gold);
	-webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.2l-3.5-3.5L4 14.2 9 19.2 20 8.2l-1.5-1.5z'/></svg>") center/contain no-repeat;
	mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.2l-3.5-3.5L4 14.2 9 19.2 20 8.2l-1.5-1.5z'/></svg>") center/contain no-repeat;
}

/* --------------------------------------------------------------------------
   5. Stat accent (single big figure)
   -------------------------------------------------------------------------- */
.kog-kd-stat {
	padding-block: clamp(3rem, 5vw, 4.5rem);
	text-align: center;
}
.kog-kd-stat__number {
	font-family: var(--wp--preset--font-family--playfair);
	font-size: clamp(3.2rem, 8vw, 5.5rem);
	line-height: 1;
	color: var(--wp--preset--color--gold);
	font-weight: 600;
}
.kog-kd-stat__label {
	margin-top: 1rem;
	font-size: 1.05rem;
	line-height: 1.6;
	color: var(--wp--preset--color--charcoal);
	max-width: 44ch;
	margin-inline: auto;
}

/* --------------------------------------------------------------------------
   6. Cross-sell — explore the other keynotes
   -------------------------------------------------------------------------- */
.kog-kd-cross { padding-block: clamp(3.5rem, 6vw, 5rem); }
.kog-kd-cross__head {
	font-family: var(--wp--preset--font-family--playfair);
	font-size: clamp(1.6rem, 3vw, 2.1rem);
	color: var(--wp--preset--color--charcoal);
	margin: 0.75rem 0 2rem;
}
.kog-kd-cross__head em { font-style: italic; color: var(--wp--preset--color--gold); }
.kog-kd-cross__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(1rem, 2.5vw, 1.5rem);
}
.kog-kd-cross__card {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	padding: 1.6rem 1.4rem;
	background-color: var(--wp--preset--color--cream);
	border: 1px solid var(--wp--preset--color--gold-border);
	border-radius: 4px;
	position: relative;
	overflow: hidden;
	transition: background 0.3s ease, transform 0.3s ease;
}
.kog-kd-cross__card::after {
	content: "";
	position: absolute;
	left: 0; bottom: 0;
	width: 100%; height: 2px;
	background: var(--wp--preset--color--gold);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}
.kog-kd-cross__card:hover { background-color: var(--wp--preset--color--gold-pale); transform: translateY(-3px); }
.kog-kd-cross__card:hover::after { transform: scaleX(1); }
.kog-kd-cross__cat {
	font-size: 0.7rem;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: var(--wp--preset--color--gray);
}
.kog-kd-cross__title {
	font-family: var(--wp--preset--font-family--playfair);
	font-size: 1.4rem;
	line-height: 1.15;
	color: var(--wp--preset--color--charcoal);
	margin: 0;
}
.kog-kd-cross__title em { font-style: italic; color: var(--wp--preset--color--gold); }
.kog-kd-cross__link {
	margin-top: auto;
	padding-top: 0.75rem;
	font-size: 0.8rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--wp--preset--color--forest);
	text-decoration: none;
}
.kog-kd-cross__card a.kog-kd-cross__cardlink { position: absolute; inset: 0; z-index: 2; text-indent: -9999px; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
	.kog-kd-hero__inner { grid-template-columns: 1fr; gap: 2.5rem; }
	.kog-kd-hero__figure { order: -1; }
	.kog-kd-hero__figure img { height: clamp(300px, 70vw, 460px); }
	.kog-kd-cols__grid { grid-template-columns: 1fr; }
	.kog-kd-cross__grid { grid-template-columns: 1fr; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
	.kog-kd-cross__card { transition: none; }
}

/* --------------------------------------------------------------------------
   Keynotes index — 4-up cross grid (used by keynote-grid-cross pattern).
   Placed last so it wins over the base 3-up + single-column rules above.
   -------------------------------------------------------------------------- */
.kog-kd-cross__grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) {
	.kog-kd-cross__grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
	.kog-kd-cross__grid--4 { grid-template-columns: 1fr; }
}

/* 2-up variant — cross-sell grids that carry only two cards (workshop pages). */
.kog-kd-cross__grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 700px) {
	.kog-kd-cross__grid--2 { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Image placeholders — used by detail pages built before real photography
   exists (e.g. the workshop pages). Forest→gold brand wash with a centered,
   clearly-marked label so the slot reads as "drop a photo here", not filler.
   -------------------------------------------------------------------------- */
.kog-kd-ph {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background:
		linear-gradient(135deg,
			var(--wp--preset--color--forest) 0%,
			var(--wp--preset--color--forest-mid) 55%,
			var(--wp--preset--color--gold) 150%);
}
.kog-kd-ph::after {
	content: attr(data-ph);
	padding: 0.55rem 1rem;
	border: 1px solid rgba(245, 232, 192, 0.4);
	border-radius: 3px;
	color: rgba(250, 248, 243, 0.78);
	font-family: var(--wp--preset--font-family--dm-sans);
	font-size: 0.66rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}
/* Hero portrait slot — rounded-top silhouette that butts the hero's base. */
.kog-kd-ph--portrait {
	width: min(380px, 84%);
	height: clamp(420px, 54vw, 600px);
	border-radius: 220px 220px 0 0;
}

/* Hero "pairs with" line + meta pills (workshop detail heroes) */
.kog-kd-hero__pairs {
	font-size: 0.9rem;
	color: var(--wp--preset--color--forest);
	margin-top: -0.4rem;
}
.kog-kd-hero__pairs a {
	color: var(--wp--preset--color--gold);
	text-decoration: underline;
	text-underline-offset: 3px;
}
.kog-kd-hero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem 0.7rem;
}
.kog-kd-hero__meta .kog-kd-pill {
	display: inline-flex;
	flex-direction: column;
	gap: 0.1rem;
	padding: 0.5rem 0.9rem;
	border: 1px solid var(--wp--preset--color--gold-border);
	border-radius: 4px;
	background: rgba(196, 151, 58, 0.06);
}
.kog-kd-hero__meta .kog-kd-pill b {
	font-family: var(--wp--preset--font-family--dm-sans);
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--wp--preset--color--charcoal);
}
.kog-kd-hero__meta .kog-kd-pill span {
	font-size: 0.6rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--wp--preset--color--gray);
}
