/* CompleteGrow — Grow Blog section (plant markers)
 * Sizes follow the space the section is given (container queries), not the screen,
 * so it looks right in a full-width row, a boxed 1140px container or a sidebar-less column.
 */

.cgb-host {
	container: cgb / inline-size;
	width: 100%;
	margin: 0;
	padding: 0;
}

.cgb {
	--ink: #1E3329;
	--body: #3E5146;
	--green: #2F5845;
	--hand: #5E7F52;
	--sage: #EAF2E5;
	--cream: #FBF8EF;
	--dirt: #5E4330;
	--cw: clamp(236px, 22cqi, 300px);   /* card width */
	--ground: 114px;                   /* ground line, measured up from the bottom of the scene */
	--soil-h: 200px;
	--soil: url(soil-mid.svg);
	--fence: url(fence-tall.svg);
	--fence-h: 150px;
	position: relative;
	isolation: isolate;
	box-sizing: border-box;
	width: 100%;
	max-width: 1360px;
	margin: 0 auto;
	border-radius: 40px;
	overflow: hidden;
	background: var(--sage);
	color: #2B3D33;
	font-family: Inter, "Helvetica Neue", Arial, system-ui, sans-serif;
	font-size: 16px;
	line-height: 1.5;
	text-align: left;
	-webkit-font-smoothing: antialiased;
}
.cgb *, .cgb *::before, .cgb *::after { box-sizing: border-box; }
.cgb a, .cgb a:hover, .cgb a:focus { text-decoration: none; box-shadow: none; }
.cgb svg { display: block; overflow: visible; }
.cgb .cgb-ico { width: 14px; height: 14px; flex: none; }

.cgb .cgb__eyebrow,
.cgb .cgb-card__date,
.cgb .cgb-note__txt,
.cgb .cgb__note {
	font-family: 'Caveat', 'Segoe Print', 'Bradley Hand', cursive;
	font-weight: 600;
	letter-spacing: 0;
	text-transform: none;
}
.cgb .cgb__title,
.cgb .cgb-card__title {
	font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
	font-weight: 600;
	letter-spacing: -0.005em;
	text-transform: none;
}

/* ---------------------------------------------------------------- sky */
.cgb__sky { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.cgb__sky > svg { position: absolute; }
.cgb .cgb-sun { width: 96px; height: 96px; right: 8.8%; top: 48px; }
.cgb .cgb-cloud--a { width: 180px; height: 81px; left: 5%; top: 40px; }
.cgb .cgb-cloud--b { width: 120px; height: 54px; right: 18%; top: 150px; }
.cgb .cgb-cloud--c { width: 96px; height: 43px; left: 74%; top: 22px; }
.cgb .cgb-birds { width: 90px; height: 40px; left: 14%; top: 96px; }
.cgb .cgb-bee { width: 150px; height: 90px; left: 40px; top: 150px; z-index: 1; }

/* a second bee that flies over the swipe row on small screens */
.cgb-scenebee { display: none; position: absolute; z-index: 4; pointer-events: none; }
.cgb-scenebee svg { width: 100%; height: 100%; transform: scaleX(-1); }

/* ---------------------------------------------------------------- heading */
.cgb__head { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; padding: 52px 64px 0; }
.cgb .cgb__eyebrow { display: block; font-size: 30px; line-height: 1; color: var(--hand); transform: rotate(-3deg); }
.cgb .cgb__title { margin: 0; padding: 0; font-size: clamp(42px, 4cqi, 54px); line-height: 1.04; color: var(--ink); }
.cgb .cgb-squiggle { width: 250px; height: 16px; }
.cgb .cgb__intro { margin: 6px 0 0; padding: 0; max-width: 560px; font-size: 18px; line-height: 1.6; color: var(--body); }

/* ---------------------------------------------------------------- scene */
.cgb__scene { position: relative; margin-top: 0; }
.cgb__fence {
	position: absolute; left: 0; right: 0; z-index: 1;
	bottom: calc(var(--ground) - 6px);
	height: var(--fence-h);
	background: var(--fence) repeat-x left bottom / auto var(--fence-h);
}
.cgb__soil {
	position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
	height: var(--soil-h);
	background: var(--soil) no-repeat center top / 1360px var(--soil-h);
}
.cgb__row {
	position: relative; z-index: 3;
	display: flex; justify-content: flex-start; align-items: flex-end;
	gap: clamp(28px, 5.3cqi, 72px);
	padding: 62px 32px var(--ground);
	margin: 0; list-style: none;
	/* more posts than fit: the row slides sideways instead of squashing */
	overflow-x: auto; overflow-y: hidden;
	scrollbar-width: none;
	scroll-snap-type: x proximity;
	overscroll-behavior-x: contain;
}
.cgb__row::-webkit-scrollbar { display: none; }
/* centred when they fit, starts at the left edge when they don't */
.cgb-marker:first-child { margin-left: auto; }
.cgb-marker:last-child { margin-right: auto; }

.cgb--n4 { --cw: clamp(210px, 19.2cqi, 262px); }
.cgb--n4 .cgb__row { gap: clamp(18px, 2.9cqi, 40px); }
.cgb--n5, .cgb--n6 { --cw: 250px; }
.cgb--n5 .cgb__row, .cgb--n6 .cgb__row { gap: 36px; }

/* ---------------------------------------------------------------- marker */
.cgb-marker {
	position: relative; flex: none;
	display: flex; flex-direction: column; align-items: center;
	transform: rotate(var(--rot, 0deg)); transform-origin: 50% 100%;
	scroll-snap-align: start;
}
.cgb .cgb-card {
	position: relative; z-index: 1;
	width: var(--cw);
	display: flex; flex-direction: column; gap: 12px;
	padding: 14px 14px 24px;
	border-radius: 18px;
	background: var(--cream);
	color: var(--ink);
	box-shadow: 0 1px 0 #E9E1CC, 0 18px 36px rgba(60, 45, 20, 0.16);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cgb .cgb-card:hover,
.cgb .cgb-card:focus-visible {
	color: var(--ink);
	transform: translateY(-6px) rotate(calc(var(--rot, 0deg) * -0.5));
	box-shadow: 0 1px 0 #E9E1CC, 0 26px 44px rgba(60, 45, 20, 0.2);
}
.cgb .cgb-card:focus-visible { outline: 3px solid var(--green); outline-offset: 4px; }
.cgb .cgb-card__img {
	position: relative; display: block;
	aspect-ratio: 1 / 0.8;
	border-radius: 12px; overflow: hidden;
	background: #EEF2EC;
}
.cgb .cgb-card__img img {
	position: absolute; inset: 0;
	width: 100%; height: 100%; max-width: none; margin: 0; border: 0; border-radius: 0; box-shadow: none;
	object-fit: cover;
	transition: transform 0.5s ease;
}
.cgb .cgb-card:hover .cgb-card__img img { transform: scale(1.04); }
.cgb .cgb-card__noimg { position: absolute; inset: 0; display: grid; place-items: center; background: #E4EEDF; }
.cgb .cgb-card__noimg svg { width: 44px; height: 44px; }
.cgb .cgb-card__meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 0 2px; }
.cgb .cgb-card__date { font-size: 26px; line-height: 1; color: var(--hand); white-space: nowrap; }
.cgb .cgb-chip {
	display: inline-flex; align-items: center;
	height: 26px; padding: 0 10px; border-radius: 999px;
	background: var(--chip-bg, #E6EEE0); color: var(--chip-fg, #3F6A55);
	font-size: 12px; font-weight: 600; line-height: 1; white-space: nowrap;
	overflow: hidden; text-overflow: ellipsis; max-width: 64%;
}
.cgb .cgb-card__title {
	margin: 0; padding: 0 2px;
	font-size: clamp(18px, 1.6cqi, 21px); line-height: 1.22; color: var(--ink);
	text-wrap: balance;
	display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.cgb .cgb-card__more { display: flex; align-items: center; gap: 6px; padding: 0 2px; font-size: 14px; font-weight: 600; line-height: 1.2; color: var(--green); }
.cgb .cgb-card__more .cgb-ico { transition: transform 0.25s ease; }
.cgb .cgb-card:hover .cgb-card__more .cgb-ico { transform: translateX(3px); }
.cgb .cgb-card__nails { position: absolute; left: 50%; bottom: 9px; display: flex; gap: 10px; transform: translateX(-50%); }
.cgb .cgb-card__nails i { display: block; width: 7px; height: 7px; border-radius: 999px; background: #B89B78; box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.2); }

.cgb-stake {
	position: relative; display: block;
	width: 26px;
	height: calc(var(--sd, 90px) + 16px);
	margin-top: -16px;
	background-color: #B98F62;
	background-image:
		repeating-linear-gradient(90deg, rgba(90, 60, 30, 0.18) 0 1px, transparent 1px 5px),
		linear-gradient(90deg, #A67B4F, #C9A274 45%, #B08457);
	box-shadow: inset -3px 0 0 rgba(0, 0, 0, 0.08);
}
/* the little heap of dug earth where the stake goes in */
.cgb-stake::before,
.cgb-stake::after { content: ""; position: absolute; left: 50%; border-radius: 50%; transform: translateX(-50%); }
.cgb-stake::before { bottom: -9px; width: 62px; height: 17px; background: rgba(63, 42, 28, 0.5); }
.cgb-stake::after { bottom: -4px; width: 44px; height: 12px; background: #7B5A3F; box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.08); }

.cgb .cgb-note {
	position: absolute; left: -40px; top: -60px; z-index: 2;
	display: flex; align-items: flex-start;
	transform: rotate(-8deg); pointer-events: none;
}
.cgb .cgb-note__txt { font-size: 24px; line-height: 1; color: var(--hand); white-space: nowrap; }
.cgb .cgb-note__arrow { width: 80px; height: 64px; }

/* ---------------------------------------------------------------- foot */
.cgb__foot { position: relative; z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 14px; padding: 0 24px 34px; background: var(--dirt); }
.cgb .cgb__note { font-size: 24px; line-height: 1.1; color: #E9D9BF; text-align: center; }
.cgb__btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.cgb .cgb-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	height: 52px; padding: 0 26px; border-radius: 999px;
	font-family: inherit; font-size: 16px; font-weight: 600; line-height: 1; white-space: nowrap;
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.cgb .cgb-btn .cgb-ico { width: 17px; height: 17px; }
.cgb .cgb-btn--cream, .cgb .cgb-btn--cream:visited { background: var(--cream); color: var(--ink); box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18); }
.cgb .cgb-btn--cream:hover { background: #FFFFFF; color: var(--ink); transform: translateY(-1px); }
.cgb .cgb-btn--ghost, .cgb .cgb-btn--ghost:visited { border: 1.5px solid rgba(251, 248, 239, 0.55); color: var(--cream); padding: 0 24px; }
.cgb .cgb-btn--ghost:hover { border-color: var(--cream); background: rgba(251, 248, 239, 0.08); color: #FFFFFF; }
.cgb .cgb-btn:focus-visible { outline: 3px solid #F3E7D2; outline-offset: 3px; }
.cgb__dots { display: none; gap: 6px; }
.cgb.cgb--scrolls .cgb__dots { display: flex; }
.cgb.cgb--fits .cgb__dots { display: none; }
.cgb__dots i { display: block; width: 6px; height: 6px; border-radius: 999px; background: rgba(233, 217, 191, 0.4); cursor: pointer; transition: width 0.25s ease, background-color 0.25s ease; }
.cgb__dots i.is-on { width: 18px; background: #E9D9BF; }

/* ================================================================ COMPACT (wide) */
.cgb--compact {
	--cw: clamp(196px, 19cqi, 262px);
	--ground: 64px;
	--soil-h: 150px;
	--soil: url(soil-compact.svg);
	--fence: url(fence-short.svg);
	--fence-h: 112px;
	border-radius: 32px;
}
.cgb--compact .cgb-sun { width: 62px; height: 62px; right: 2.6%; top: 16px; }
.cgb--compact .cgb-cloud--a { width: 120px; height: 54px; left: 41%; top: 14px; }
.cgb--compact .cgb-cloud--b { width: 84px; height: 38px; right: 13%; left: auto; top: 30px; }
.cgb--compact .cgb-cloud--c { display: none; }
.cgb--compact .cgb-birds { width: 60px; height: 27px; left: 58%; top: 34px; }
.cgb--compact .cgb-bee { width: 120px; height: 72px; left: 17%; top: auto; bottom: 180px; }
.cgb--compact .cgb__scene { margin: 0; }
.cgb--compact .cgb__inner {
	position: relative; z-index: 3;
	display: flex; align-items: flex-end;
	gap: 24px;
	padding: 0 clamp(28px, 3.5cqi, 56px) calc(var(--ground) - 14px);
}
.cgb--compact .cgb__head {
	align-self: flex-start; flex: none;
	width: clamp(250px, 22cqi, 290px);
	align-items: flex-start; text-align: left;
	gap: 8px; padding: 50px 0 24px;
}
.cgb--compact .cgb__eyebrow { font-size: 26px; transform-origin: 0 50%; }
.cgb--compact .cgb__title { font-size: clamp(36px, 3.1cqi, 42px); white-space: nowrap; }
.cgb--compact .cgb-squiggle { width: 190px; height: 14px; }
.cgb--compact .cgb__intro { margin: 4px 0 6px; font-size: 16px; line-height: 1.55; }
.cgb--compact .cgb__btns { flex-direction: column; align-items: flex-start; gap: 10px; }
.cgb--compact .cgb-btn--green, .cgb--compact .cgb-btn--green:visited { height: 46px; padding: 0 22px; font-size: 15px; background: var(--green); color: #FBF8EF; box-shadow: 0 6px 14px rgba(35, 64, 47, 0.18); }
.cgb--compact .cgb-btn--green:hover { background: #23402F; color: #FFFFFF; transform: translateY(-1px); }
.cgb--compact .cgb-btn--green:focus-visible,
.cgb--compact .cgb-btn--link:focus-visible { outline-color: var(--green); }
.cgb--compact .cgb-btn--link, .cgb--compact .cgb-btn--link:visited { height: auto; padding: 2px 0; font-size: 14px; color: var(--green); }
.cgb--compact .cgb-btn--link:hover { color: var(--ink); }
.cgb--compact .cgb-btn--link .cgb-ico { width: 15px; height: 15px; }
.cgb--compact .cgb__row { flex: 1 1 auto; min-width: 0; gap: clamp(18px, 2.4cqi, 34px); padding: 76px 4px 14px 44px; }
.cgb--compact .cgb-marker:last-child { margin-right: 0; }
.cgb--compact .cgb-card { gap: 8px; padding: 11px 11px 20px; border-radius: 14px; box-shadow: 0 1px 0 #E9E1CC, 0 14px 28px rgba(60, 45, 20, 0.15); }
.cgb--compact .cgb-card__img { aspect-ratio: 16 / 10; border-radius: 9px; }
.cgb--compact .cgb-card__date { font-size: 23px; }
.cgb--compact .cgb-chip { height: 24px; padding: 0 9px; font-size: 11.5px; }
.cgb--compact .cgb-card__title { font-size: clamp(16px, 1.3cqi, 17.5px); line-height: 1.24; }
.cgb--compact .cgb-card__nails { bottom: 7px; }
.cgb--compact .cgb-card__nails i { width: 6px; height: 6px; }
.cgb--compact .cgb-stake { width: 22px; height: calc(var(--sd, 80px) + 14px); margin-top: -14px; }
.cgb--compact .cgb-note { left: -34px; top: -48px; }
.cgb--compact .cgb-note__txt { font-size: 22px; }
.cgb--compact .cgb-note__arrow { width: 60px; height: 48px; }
.cgb--compact .cgb__foot { display: none; }

/* ================================================================ FULL: phones and tablets (swipe row) */
@container cgb (max-width: 899px) {
	.cgb.cgb--full {
		--cw: 240px;
		--ground: 64px;
		--soil-h: 150px;
		--soil: url(soil-compact.svg);
		--fence: url(fence-short.svg);
		--fence-h: 96px;
		border-radius: 28px;
	}
	.cgb--full .cgb-sun { width: 58px; height: 58px; right: 12px; top: 16px; }
	.cgb--full .cgb-cloud--a { width: 110px; height: 50px; left: -26px; top: 18px; }
	.cgb--full .cgb-cloud--b, .cgb--full .cgb-cloud--c, .cgb--full .cgb-birds { display: none; }
	.cgb--full .cgb__sky .cgb-bee { display: none; }
	.cgb--full .cgb-scenebee { display: block; width: 90px; height: 54px; right: -6px; top: 4px; }
	.cgb--full .cgb__head { gap: 6px; padding: 34px 20px 0; }
	.cgb--full .cgb__eyebrow { font-size: 22px; }
	.cgb--full .cgb__title { font-size: 36px; line-height: 1.05; }
	.cgb--full .cgb-squiggle { width: 170px; height: 12px; }
	.cgb--full .cgb__intro { margin-top: 2px; font-size: 14.5px; line-height: 1.5; max-width: 400px; }
	.cgb--full .cgb__scene { margin-top: 0; }
	.cgb--full .cgb__row { gap: 26px; padding: 58px 24px var(--ground); scroll-snap-type: x mandatory; scroll-padding-inline: 24px; }
	.cgb--full .cgb__row::after { content: ""; flex: 0 0 1px; }
	.cgb--full .cgb-card { gap: 8px; padding: 11px 11px 19px; border-radius: 16px; }
	.cgb--full .cgb-card:hover, .cgb--full .cgb-card:focus-visible { transform: translateY(-4px); }
	.cgb--full .cgb-card__img { aspect-ratio: 16 / 10; border-radius: 10px; }
	.cgb--full .cgb-card__date { font-size: 22px; }
	.cgb--full .cgb-chip { height: 24px; font-size: 11.5px; }
	.cgb--full .cgb-card__title { font-size: 17px; }
	.cgb--full .cgb-card__more { font-size: 13px; }
	.cgb--full .cgb-stake { width: 18px; height: calc(var(--sm, 60px) + 14px); margin-top: -14px; }
	.cgb--full .cgb-note { left: 2px; top: -46px; }
	.cgb--full .cgb-note__arrow { width: 56px; height: 45px; }
	.cgb--full .cgb-note__txt { font-size: 20px; }

	.cgb--full .cgb__foot { gap: 12px; padding: 6px 20px 22px; background: #664A34; }
	.cgb--full .cgb__note { display: none; }
	.cgb--full .cgb__dots { display: flex; }
	.cgb--full.cgb--fits .cgb__dots { visibility: hidden; }
	.cgb--full .cgb__btns { flex-wrap: nowrap; width: 100%; max-width: 440px; gap: 10px; }
	.cgb--full .cgb-btn { flex: 1 1 0; min-width: 0; height: 46px; padding: 0 12px; font-size: 14px; gap: 6px; }
	.cgb--full .cgb-btn .cgb-ico { width: 15px; height: 15px; }
}

/* ================================================================ COMPACT: phones and tablets (swipe row) */
@container cgb (max-width: 1099px) {
	.cgb.cgb--compact { --cw: 214px; border-radius: 26px; }
	.cgb--compact .cgb-sun { width: 54px; height: 54px; right: 10px; top: 14px; }
	.cgb--compact .cgb__sky .cgb-bee { display: none; }
	.cgb--compact .cgb-scenebee { display: block; width: 84px; height: 50px; right: 10px; top: 112px; }
	.cgb--compact .cgb-cloud--a, .cgb--compact .cgb-cloud--b, .cgb--compact .cgb-birds { display: none; }
	.cgb--compact .cgb__inner { display: block; padding: 0; }
	.cgb--compact .cgb__head { width: auto; gap: 4px; padding: 30px 20px 0; }
	.cgb--compact .cgb__eyebrow { font-size: 20px; }
	.cgb--compact .cgb__title { font-size: 31px; line-height: 1.08; }
	.cgb--compact .cgb-squiggle { width: 140px; height: 12px; }
	.cgb--compact .cgb__intro { display: none; }
	.cgb--compact .cgb__head .cgb__btns { display: none; }
	.cgb--compact .cgb__row { gap: 22px; padding: 70px 20px var(--ground); scroll-snap-type: x mandatory; scroll-padding-inline: 20px; }
	.cgb--compact .cgb__row::after { content: ""; flex: 0 0 1px; }
	.cgb--compact .cgb-marker:last-child { margin-right: auto; }
	.cgb--compact .cgb-card { padding: 9px 9px 18px; }
	.cgb--compact .cgb-card:hover, .cgb--compact .cgb-card:focus-visible { transform: translateY(-4px); }
	.cgb--compact .cgb-card__date { font-size: 20px; }
	.cgb--compact .cgb-chip { height: 22px; font-size: 11px; }
	.cgb--compact .cgb-card__title { font-size: 15.5px; }
	.cgb--compact .cgb-stake { width: 18px; height: calc(var(--sm, 64px) + 14px); }
	.cgb--compact .cgb-note { left: 4px; top: -46px; }
	.cgb--compact .cgb-note__txt { font-size: 19px; }
	.cgb--compact .cgb-note__arrow { width: 50px; height: 40px; }
	.cgb--compact .cgb__fence { --fence-h: 84px; }

	.cgb--compact .cgb__foot { display: flex; flex-direction: row; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 20px 16px; background: #664A34; }
	.cgb--compact .cgb__dots { display: flex; }
	.cgb--compact.cgb--fits .cgb__dots { visibility: hidden; }
	.cgb--compact .cgb-btn--pill, .cgb--compact .cgb-btn--pill:visited { height: 38px; margin-left: auto; padding: 0 16px; font-size: 13.5px; background: var(--cream); color: var(--ink); }
	.cgb--compact .cgb-btn--pill .cgb-ico { width: 13px; height: 13px; }
	.cgb--compact .cgb-btn--pill:hover { background: #FFFFFF; color: var(--ink); }
	.cgb--compact .cgb-btn--pill:focus-visible { outline-color: #F3E7D2; }
}
@container cgb (max-width: 339px) {
	.cgb--full .cgb__btns { flex-direction: column; }
	.cgb--full .cgb-btn { flex: none; width: 100%; }
}
@container cgb (max-width: 440px) {
	.cgb--full .cgb-sun { width: 50px; height: 50px; right: 8px; top: 12px; }
	.cgb--full .cgb__head { padding-top: 38px; }
}
@container cgb (min-width: 640px) and (max-width: 1099px) {
	.cgb.cgb--compact { --cw: 240px; }
	.cgb--compact .cgb__intro { display: block; max-width: 460px; font-size: 15px; }
}

/* Browsers without container queries (very old): fall back to the screen width. */
@supports not (container-type: inline-size) {
	.cgb .cgb__row { padding-inline: 20px; }
}

@media (prefers-reduced-motion: reduce) {
	.cgb *, .cgb *::before, .cgb *::after { transition: none !important; }
	.cgb .cgb__row { scroll-behavior: auto; }
}
