/* CIWY site.css — Phase 1: tokens, base, buttons, header/nav, footer.
 * Token values frozen 2026-08-05 (measured, PLANNING-ciwy §4). */

/* ---------- Fonts (self-hosted Rubik variable, latin) ---------- */
@font-face {
	font-family: "Rubik";
	src: url("../fonts/rubik-var-latin.woff2") format("woff2-variations");
	font-weight: 300 900;
	font-style: normal;
	font-display: swap;
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
		U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
		U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
	font-family: "Rubik";
	src: url("../fonts/rubik-italic-var-latin.woff2") format("woff2-variations");
	font-weight: 300 900;
	font-style: italic;
	font-display: swap;
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
		U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
		U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- Tokens ---------- */
:root {
	--cw-green: #56a34f;
	--cw-green-deep: #438b22;
	--cw-forest: #213631;
	--cw-ink: #0f1a17;
	--cw-plum: #694873;
	--cw-yellow: #fffc31;
	--cw-grey-100: #f0f2f3;
	--cw-grey-50: #f8fafb;
	--cw-grey-soft: #767676;
	--cw-white: #ffffff;
	--cw-font: "Rubik", ui-sans-serif, system-ui, sans-serif;
	--cw-r-pill: 999px;
	--cw-r-card: 20px;
	--cw-container: 1280px;
	--cw-gutter: clamp(20px, 4vw, 40px);
	/* Floating capsule: 16px offset + 64px bar (mobile panel inset). */
	--cw-header-h: 96px;
}
.cw-visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip-path: inset(50%);
	white-space: nowrap;
}

/* ---------- Base ---------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}
html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}
body.cw-body {
	margin: 0;
	font-family: var(--cw-font);
	font-size: 16px;
	line-height: 1.65;
	color: var(--cw-forest);
	background: var(--cw-white);
}
h1,
h2,
h3,
h4 {
	color: var(--cw-ink);
	font-weight: 700;
	line-height: 1.25;
	margin: 0 0 0.5em;
}
p {
	margin: 0 0 1em;
}
img {
	max-width: 100%;
	height: auto;
	display: block;
}
a {
	color: var(--cw-green);
}
[hidden] {
	display: none !important;
}
.cw-container {
	max-width: var(--cw-container);
	margin-inline: auto;
	padding-inline: var(--cw-gutter);
}
.cw-icon,
.cw-nav__caret svg,
.cw-footer__socials svg {
	width: 1em;
	height: 1em;
	vertical-align: -0.125em;
	fill: none;
	stroke: currentColor;
}
.cw-footer__socials svg {
	fill: currentColor;
	stroke: none;
}

/* Accessibility */
.cw-skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 200;
	background: var(--cw-ink);
	color: var(--cw-white);
	padding: 10px 18px;
	border-radius: 0 0 8px 0;
}
.cw-skip-link:focus {
	left: 0;
}
:focus-visible {
	outline: 3px solid var(--cw-green);
	outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}
}

/* ---------- Buttons ---------- */
.cw-btn {
	display: inline-block;
	font-family: var(--cw-font);
	font-size: 15px;
	font-weight: 500;
	line-height: 1;
	text-decoration: none;
	padding: 13px 25px;
	border-radius: var(--cw-r-pill);
	border: 0;
	cursor: pointer;
	background: var(--cw-green);
	color: var(--cw-white);
	/* Transparent base shadow: 'none' cannot interpolate, so hover
	 * shadows would pop instead of fading. */
	box-shadow: 0 8px 20px rgba(15, 26, 23, 0);
	transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.25s ease;
}
.cw-btn:hover {
	background: var(--cw-green-deep);
	transform: translateY(-1px);
	box-shadow: 0 8px 20px rgba(15, 26, 23, 0.18);
}
.cw-btn--plum {
	background: var(--cw-plum);
	color: var(--cw-white);
}
.cw-btn--plum:hover {
	background: #56395f;
}
.cw-btn--yellow {
	background: var(--cw-yellow);
	color: var(--cw-ink);
}
.cw-btn--yellow:hover {
	background: #e8e52c;
}

/* ---------- Header / Nav: floating capsule over the hero ---------- */
.cw-header {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 100;
	padding: 16px var(--cw-gutter) 0;
	pointer-events: none;
}
.cw-header__bar {
	pointer-events: auto;
	max-width: calc(var(--cw-container) - 2 * 24px);
	margin-inline: auto;
	padding-inline: 10px 10px;
	min-height: 64px;
	display: flex;
	align-items: center;
	gap: 20px;
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-radius: var(--cw-r-pill);
	box-shadow: 0 12px 32px rgba(15, 26, 23, 0.14);
}
.cw-header__logo {
	padding-left: 14px;
}
.cw-header__logo {
	flex-shrink: 0;
	display: block;
}
.cw-header__logo img {
	width: 100px;
	height: auto;
}
.cw-nav {
	flex: 1;
}
.cw-nav__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	gap: 4px;
}
.cw-nav__item {
	position: relative;
}
.cw-nav__link {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 10px 12px;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--cw-ink);
	text-decoration: none;
	border-radius: var(--cw-r-pill);
}
.cw-nav__link:hover,
.cw-nav__link[aria-current="page"] {
	color: var(--cw-green);
}
.cw-nav__caret svg {
	width: 14px;
	height: 14px;
	stroke-width: 2.5;
	transition: transform 0.15s ease;
}
.cw-nav__dropdown {
	list-style: none;
	margin: 0;
	padding: 10px;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 280px;
	background: var(--cw-white);
	border-radius: 14px;
	box-shadow: 0 12px 32px rgba(15, 26, 23, 0.14);
	opacity: 0;
	visibility: hidden;
	translate: 0 8px;
	transition: opacity 0.15s ease, translate 0.15s ease, visibility 0.15s;
}
.cw-nav__item--has-children:hover .cw-nav__dropdown,
.cw-nav__item--has-children:focus-within .cw-nav__dropdown {
	opacity: 1;
	visibility: visible;
	translate: 0 0;
}
.cw-nav__item--has-children:hover .cw-nav__caret svg,
.cw-nav__item--has-children:focus-within .cw-nav__caret svg {
	transform: rotate(180deg);
}
.cw-nav__sublink {
	display: block;
	padding: 9px 14px;
	font-size: 15px;
	color: var(--cw-ink);
	text-decoration: none;
	border-radius: 10px;
}
.cw-nav__sublink:hover,
.cw-nav__sublink[aria-current="page"] {
	background: var(--cw-grey-100);
	color: var(--cw-green);
}
.cw-header__actions {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}
.cw-nav__buttons {
	display: none;
}
.cw-burger {
	display: none;
	background: none;
	border: 0;
	padding: 10px;
	cursor: pointer;
}
.cw-burger__line {
	display: block;
	width: 24px;
	height: 2.5px;
	border-radius: 2px;
	background: var(--cw-ink);
	margin: 5px 0;
	transition: transform 0.2s ease, opacity 0.2s ease;
}
.cw-burger[aria-expanded="true"] .cw-burger__line:nth-child(1) {
	transform: translateY(7.5px) rotate(45deg);
}
.cw-burger[aria-expanded="true"] .cw-burger__line:nth-child(2) {
	opacity: 0;
}
.cw-burger[aria-expanded="true"] .cw-burger__line:nth-child(3) {
	transform: translateY(-7.5px) rotate(-45deg);
}

@media (max-width: 1099px) {
	.cw-burger {
		display: block;
	}
	.cw-nav {
		position: fixed;
		inset: var(--cw-header-h) 0 0 0;
		background: var(--cw-white);
		padding: 24px var(--cw-gutter) 40px;
		overflow-y: auto;
		display: none;
	}
	.cw-nav.is-open {
		display: block;
	}
	.cw-nav__list {
		flex-direction: column;
		gap: 0;
	}
	.cw-nav__link {
		width: 100%;
		padding: 14px 4px;
		font-size: 18px;
		border-radius: 0;
		border-bottom: 1px solid var(--cw-grey-100);
	}
	.cw-nav__dropdown {
		position: static;
		opacity: 1;
		visibility: visible;
		translate: none;
		box-shadow: none;
		padding: 0 0 0 16px;
		min-width: 0;
	}
	.cw-nav__sublink {
		padding: 11px 4px;
		font-size: 16px;
	}
	.cw-header__actions .cw-btn {
		display: none;
	}
	.cw-nav__buttons {
		display: flex;
		gap: 12px;
		margin-top: 28px;
		flex-wrap: wrap;
	}
	body.cw-nav-open {
		overflow: hidden;
	}
}

/* ---------- Placeholder section (Phase 1 only) ---------- */
.cw-section--placeholder {
	padding: clamp(64px, 12vh, 140px) 0;
	min-height: 45vh;
}
.cw-placeholder-title {
	font-size: clamp(34px, 5vw, 56px);
}
.cw-placeholder-note {
	color: var(--cw-grey-soft);
}

/* ---------- Footer (light, staging pattern) ---------- */
.cw-footer {
	background: var(--cw-white);
	color: var(--cw-forest);
	border-top: 1px solid var(--cw-grey-100);
	padding: clamp(44px, 7vh, 72px) 0 32px;
}
.cw-footer a {
	color: var(--cw-ink);
	text-decoration: none;
}
.cw-footer a:hover {
	color: var(--cw-green);
}
.cw-footer__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}
.cw-footer__nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: clamp(16px, 2.5vw, 36px);
	flex-wrap: wrap;
}
.cw-footer__nav a {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}
.cw-footer__nav a[aria-current="page"] {
	color: var(--cw-green);
}
.cw-footer__rule {
	border: 0;
	border-top: 1px solid var(--cw-grey-100);
	margin: clamp(24px, 4vh, 36px) 0;
}
.cw-footer__mid {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: clamp(28px, 5vw, 80px);
	flex-wrap: wrap;
}
.cw-footer__mission {
	font-size: 14.5px;
	line-height: 1.75;
	max-width: 68ch;
	flex: 1 1 480px;
	margin: 0;
}
.cw-footer__socials {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 12px;
}
.cw-footer__socials a {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--cw-ink);
	color: var(--cw-white);
	transition: background-color 0.2s ease, transform 0.2s ease;
}
.cw-footer__socials a:hover {
	background: var(--cw-green);
	color: var(--cw-white);
	transform: translateY(-2px);
}
.cw-footer__socials svg {
	width: 17px;
	height: 17px;
}
.cw-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}
.cw-footer__copyright,
.cw-footer__legal {
	font-size: 13.5px;
	color: var(--cw-grey-soft);
	margin: 0;
}
.cw-footer__legal a {
	color: var(--cw-grey-soft);
	text-decoration: underline;
}
.cw-footer__legal a:hover {
	color: var(--cw-green);
}

@media (max-width: 767px) {
	.cw-footer__top,
	.cw-footer__mid,
	.cw-footer__bottom {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* ================= Phase 2: Sections ================= */

/* Shared bits */
.cw-kicker {
	color: var(--cw-green);
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin: 0 0 10px;
}
.cw-section__intro {
	max-width: 62ch;
	color: var(--cw-forest);
}
.cw-twotone {
	font-size: clamp(28px, 3.2vw, 42px);
	line-height: 1.25;
	text-wrap: balance;
}
.cw-twotone__main {
	color: var(--cw-ink);
}
.cw-twotone__soft {
	color: var(--cw-grey-soft);
}
.cw-counters--dark .cw-twotone__main,
.cw-mediatext--dark .cw-twotone__main {
	color: var(--cw-white);
}

/* Motion presets: reveal + two-tone recolor (transform/opacity only). */
html.cw-js .cw-rev {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.55s ease, transform 0.55s ease;
}
html.cw-js .cw-rev.is-in {
	opacity: 1;
	transform: none;
}
[data-twotone] .cw-statement__main {
	transition: color 0.9s ease 0.15s;
}
html.cw-js [data-twotone]:not(.is-in) .cw-statement__main {
	color: var(--cw-grey-soft);
}
@media (prefers-reduced-motion: reduce) {
	html.cw-js .cw-rev {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}
}

/* ---------- hero_home (redesigned 2026-08-05, Oliver feedback:
 * balanced whitespace, clean break, left-weighted overlay) ---------- */
.cw-hero-home {
	position: relative;
	min-height: min(86vh, 840px);
	display: flex;
	color: var(--cw-white);
	background: var(--cw-ink);
	overflow: hidden;
}
.cw-hero-home__bg,
.cw-hero-page__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.cw-hero-home__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(15, 26, 23, 0) 55%, rgba(15, 26, 23, 0.55) 100%),
		linear-gradient(92deg, rgba(10, 18, 15, 0.8) 0%, rgba(10, 18, 15, 0.45) 46%, rgba(10, 18, 15, 0.06) 74%);
}
.cw-hero-home__inner {
	position: relative;
	width: 100%;
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
	align-items: center;
	gap: 40px;
	/* Top clears the floating capsule; bottom leaves room for the
	 * logo strip that slides up over the hero image. */
	padding-block: calc(var(--cw-header-h) + clamp(24px, 5vh, 56px)) calc(clamp(48px, 8vh, 80px) + 118px);
}
.cw-hero-home__content {
	align-self: center;
	max-width: 680px;
}
.cw-hero-home__badge img {
	width: 72px;
	height: auto;
	margin-bottom: 18px;
}
.cw-hero-home__headline {
	color: var(--cw-white);
	font-size: clamp(38px, 4.2vw, 64px);
	line-height: 1.12;
	letter-spacing: -0.015em;
	text-wrap: balance;
	margin: 0 0 20px;
}
/* One-time entrance (kept subtle; reduced-motion collapses durations). */
@keyframes cw-hero-in {
	from {
		opacity: 0;
		transform: translateY(22px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
.cw-hero-home__content > * {
	animation: cw-hero-in 0.65s ease both;
}
.cw-hero-home__content > *:nth-child(2) {
	animation-delay: 0.08s;
}
.cw-hero-home__content > *:nth-child(3) {
	animation-delay: 0.16s;
}
.cw-hero-home__content > *:nth-child(4) {
	animation-delay: 0.24s;
}
.cw-hero-home__video {
	animation: cw-hero-in 0.75s ease 0.3s both;
}
.cw-hero-home__sub {
	font-size: clamp(16px, 1.2vw, 18px);
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.92);
	max-width: 56ch;
	margin: 0 0 26px;
}
.cw-hero-home__actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 22px;
}
.cw-hero-home__rating {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-left: 10px;
	color: var(--cw-white);
	text-decoration: none;
	font-size: 15px;
	font-weight: 600;
}
.cw-hero-home__rating strong {
	font-size: 34px;
	font-weight: 800;
	line-height: 1;
}
.cw-hero-home__star {
	color: var(--cw-yellow);
	font-size: 17px;
}
.cw-hero-home__actions {
	align-items: center;
}
.cw-hero-home__video {
	justify-self: end;
	align-self: center;
	width: min(380px, 100%);
}

/* Video click facade */
.cw-video {
	position: relative;
	border-radius: var(--cw-r-card);
	overflow: hidden;
	background: var(--cw-ink);
	aspect-ratio: 16 / 10;
	box-shadow: 0 16px 40px rgba(15, 26, 23, 0.35);
}
.cw-video__poster {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.85;
}
.cw-video__play {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: none;
	border: 0;
	cursor: pointer;
	color: var(--cw-white);
	font-family: var(--cw-font);
	font-size: 15px;
	font-weight: 500;
}
.cw-video__playicon {
	display: grid;
	place-items: center;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(4px);
	transition: transform 0.15s ease, background-color 0.15s ease;
}
.cw-video__play:hover .cw-video__playicon {
	transform: scale(1.08);
	background: var(--cw-green);
}
.cw-video__playicon svg {
	width: 24px;
	height: 24px;
	fill: currentColor;
	stroke: currentColor;
}
.cw-video iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/* ---------- hero_page ---------- */
.cw-hero-page {
	position: relative;
	min-height: clamp(320px, 46vh, 480px);
	display: flex;
	align-items: flex-end;
	color: var(--cw-white);
	background: var(--cw-forest);
	overflow: hidden;
}
.cw-hero-page__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(15, 26, 23, 0.3) 0%, rgba(15, 26, 23, 0.68) 100%);
}
.cw-hero-page--green-tint .cw-hero-page__overlay {
	background: linear-gradient(180deg, rgba(33, 54, 49, 0.5) 0%, rgba(67, 139, 34, 0.55) 100%);
}
.cw-hero-page__inner {
	position: relative;
	width: 100%;
	padding-block: calc(var(--cw-header-h) + 20px) clamp(40px, 7vh, 72px);
}
.cw-hero-page__headline {
	color: var(--cw-white);
	font-size: clamp(34px, 3.8vw, 58px);
	margin: 0;
}
.cw-hero-page__sub {
	color: rgba(255, 255, 255, 0.92);
	max-width: 60ch;
	margin: 14px 0 0;
}

/* ---------- statement ---------- */
.cw-statement {
	padding: clamp(56px, 10vh, 120px) 0;
}
.cw-statement__line {
	font-size: clamp(24px, 2.6vw, 38px);
	line-height: 1.4;
	font-weight: 700;
	max-width: 36ch;
	text-wrap: balance;
	margin: 0;
}
.cw-statement__main {
	color: var(--cw-ink);
}
.cw-statement__soft {
	color: var(--cw-grey-soft);
}
.cw-statement__body {
	max-width: 62ch;
	margin-top: 18px;
}

/* ---------- cards_media_grid ---------- */
.cw-cards-grid {
	padding-bottom: clamp(48px, 8vh, 96px);
}
.cw-cards-grid__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}
.cw-mediacard {
	position: relative;
	display: block;
	border-radius: var(--cw-r-card);
	overflow: hidden;
	min-height: 420px;
	background: var(--cw-forest);
	text-decoration: none;
	color: var(--cw-white);
	box-shadow: 0 18px 40px rgba(15, 26, 23, 0);
	transition: box-shadow 0.3s ease;
}
.cw-mediacard:hover {
	box-shadow: 0 18px 40px rgba(15, 26, 23, 0.22);
}
/* Orphan rule: a lone last card spans the full row (inherited 0.40.3). */
.cw-mediacard:last-child:nth-child(odd) {
	grid-column: 1 / -1;
}
.cw-mediacard__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}
.cw-mediacard:hover .cw-mediacard__img {
	transform: scale(1.04);
}
.cw-mediacard__scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(15, 26, 23, 0) 30%, rgba(15, 26, 23, 0.88) 100%);
}
.cw-mediacard__body {
	position: absolute;
	inset: auto 0 0 0;
	display: block;
	padding: 26px;
}
.cw-mediacard__title {
	display: block;
	font-size: clamp(20px, 1.8vw, 26px);
	font-weight: 700;
	margin-bottom: 8px;
}
.cw-mediacard__text {
	display: block;
	font-size: 14.5px;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 12px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.cw-mediacard__more {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	font-weight: 600;
	color: var(--cw-white);
}
.cw-mediacard__more svg {
	width: 15px;
	height: 15px;
	stroke-width: 2.5;
	transition: transform 0.15s ease;
}
.cw-mediacard:hover .cw-mediacard__more svg,
.cw-triocard:hover .cw-mediacard__more svg {
	transform: translateX(4px);
}

/* ---------- counter_band ---------- */
.cw-counters {
	padding: clamp(56px, 9vh, 110px) 0;
}
.cw-counters--dark {
	background: var(--cw-ink);
	color: rgba(255, 255, 255, 0.85);
}
.cw-counters--dark .cw-section__intro {
	color: rgba(255, 255, 255, 0.75);
}
.cw-counters__head {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 24px;
	align-items: end;
	margin-bottom: clamp(32px, 5vh, 56px);
}
.cw-counters__head .cw-twotone {
	margin: 0;
}
.cw-counters__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}
.cw-counters__value {
	display: block;
	font-size: clamp(40px, 4vw, 64px);
	font-weight: 700;
	color: var(--cw-green);
	line-height: 1.1;
}
.cw-counters__label {
	display: block;
	font-size: 18px;
	font-weight: 600;
	color: var(--cw-white);
	margin-top: 6px;
}
.cw-counters--white .cw-counters__label {
	color: var(--cw-ink);
}
.cw-counters__subtext {
	display: block;
	font-size: 13.5px;
	margin-top: 4px;
	color: inherit;
	opacity: 0.75;
}

/* ---------- media_text ---------- */
.cw-mediatext {
	padding: clamp(56px, 9vh, 110px) 0;
}
.cw-mediatext--soft {
	background: var(--cw-grey-50);
}
.cw-mediatext--dark {
	background: var(--cw-forest);
	color: rgba(255, 255, 255, 0.88);
}
.cw-mediatext__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(32px, 5vw, 72px);
	align-items: center;
}
.cw-mediatext--flip .cw-mediatext__media {
	order: 2;
}
.cw-mediatext__img {
	border-radius: var(--cw-r-card);
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}
.cw-mediatext__body p {
	max-width: 58ch;
}
.cw-mediatext__cta {
	margin-top: 22px;
}
.cw-checklist {
	list-style: none;
	margin: 18px 0 0;
	padding: 0;
	display: grid;
	gap: 10px;
}
.cw-checklist li {
	display: flex;
	gap: 10px;
	align-items: baseline;
}
.cw-checklist__icon svg {
	width: 16px;
	height: 16px;
	stroke-width: 3;
	color: var(--cw-green);
}

/* ---------- card_trio ---------- */
.cw-trio {
	padding: clamp(56px, 9vh, 110px) 0;
}
.cw-trio__head {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 24px;
	align-items: end;
	margin-bottom: clamp(28px, 4vh, 48px);
}
.cw-trio__head .cw-twotone {
	margin: 0;
}
.cw-trio__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}
.cw-triocard {
	display: flex;
	flex-direction: column;
	border-radius: var(--cw-r-card);
	overflow: hidden;
	background: var(--cw-grey-50);
	text-decoration: none;
	color: var(--cw-forest);
	border: 1px solid var(--cw-grey-100);
	box-shadow: 0 16px 36px rgba(15, 26, 23, 0);
	transition: transform 0.25s ease, box-shadow 0.3s ease;
}
.cw-triocard:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 36px rgba(15, 26, 23, 0.14);
}
.cw-triocard__media img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}
.cw-triocard__body {
	display: block;
	padding: 22px 24px 26px;
}
.cw-triocard__title {
	display: block;
	font-size: 21px;
	font-weight: 700;
	color: var(--cw-ink);
	margin-bottom: 8px;
}
.cw-triocard__text {
	display: block;
	font-size: 14.5px;
	line-height: 1.6;
	margin-bottom: 14px;
}
.cw-triocard .cw-mediacard__more {
	color: var(--cw-green);
}

/* ---------- Responsive ---------- */
@media (max-width: 1023px) {
	.cw-hero-home__inner {
		grid-template-columns: 1fr;
		align-items: start;
	}
	.cw-hero-home__video {
		justify-self: start;
		width: min(420px, 100%);
	}
	.cw-counters__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 32px 24px;
	}
	.cw-counters__head,
	.cw-trio__head {
		grid-template-columns: 1fr;
		align-items: start;
	}
	.cw-trio__grid {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 767px) {
	/* The deliberate desktop line break must not force one-word lines
	 * on narrow screens — let the text wrap naturally there. */
	.cw-hero-home__headline br {
		display: none;
	}
	.cw-cards-grid__grid {
		grid-template-columns: 1fr;
	}
	.cw-mediacard {
		min-height: 340px;
	}
	.cw-mediacard:last-child:nth-child(odd) {
		grid-column: auto;
	}
	.cw-mediatext__inner {
		grid-template-columns: 1fr;
	}
	.cw-mediatext--flip .cw-mediatext__media {
		order: 0;
	}
	.cw-counters__grid {
		grid-template-columns: 1fr;
	}
}

/* ================= Phase 3a: home completion ================= */

/* ---------- video_cta ---------- */
.cw-videocta {
	position: relative;
	padding: clamp(56px, 9vh, 110px) 0;
	overflow: hidden;
}
.cw-videocta--dark {
	background: var(--cw-forest);
	color: rgba(255, 255, 255, 0.9);
}
.cw-videocta__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.4;
	filter: brightness(0.55) saturate(0.8);
}
.cw-videocta__shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(15, 26, 23, 0.5) 0%, rgba(33, 54, 49, 0.35) 50%, rgba(15, 26, 23, 0.55) 100%);
}
.cw-videocta__content {
	position: relative;
}
/* Contrast: two-tone on dark ground is white + soft white — never ink. */
.cw-videocta--dark .cw-twotone__main {
	color: var(--cw-white);
}
.cw-videocta--dark .cw-twotone__soft {
	color: rgba(255, 255, 255, 0.55);
}
.cw-videocta__cols {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(32px, 5vw, 72px);
	align-items: center;
}
.cw-videocta__actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 22px;
}
.cw-videocta__gallery {
	list-style: none;
	margin: clamp(28px, 4vh, 44px) 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}
.cw-videocta__gallery img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: 14px;
}

/* ---------- cta_fullbleed: bright image band, glass CTA right ---------- */
.cw-fullbleed {
	position: relative;
	min-height: clamp(420px, 58vh, 600px);
	display: flex;
	align-items: center;
	color: var(--cw-white);
	background: var(--cw-forest);
	overflow: hidden;
}
.cw-fullbleed__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.cw-fullbleed__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 20%),
		linear-gradient(92deg, rgba(15, 26, 23, 0.62) 0%, rgba(15, 26, 23, 0.32) 55%, rgba(15, 26, 23, 0.18) 100%);
}
.cw-fullbleed__inner {
	position: relative;
	width: 100%;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 32px;
}
.cw-fullbleed__headline {
	color: var(--cw-white);
	font-size: clamp(28px, 3.2vw, 44px);
	max-width: 24ch;
	text-wrap: balance;
	text-shadow: 0 2px 26px rgba(15, 26, 23, 0.55), 0 1px 3px rgba(15, 26, 23, 0.45);
	margin: 0;
}
.cw-fullbleed__action {
	justify-self: end;
}

/* ---------- newsletter: floating card + staggered collage ---------- */
.cw-newsletter {
	padding: clamp(48px, 8vh, 96px) 0;
	background: linear-gradient(180deg, var(--cw-white) 0%, #ecf3ee 100%);
}
.cw-newsletter__card {
	background: var(--cw-white);
	border-radius: 28px;
	box-shadow: 0 24px 64px rgba(15, 26, 23, 0.09);
	padding: clamp(32px, 5vw, 64px);
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: clamp(32px, 4vw, 64px);
	align-items: center;
}
.cw-newsletter__quote {
	margin: 20px 0 28px;
	color: var(--cw-forest);
}
.cw-newsletter__quote p {
	font-size: 16.5px;
	line-height: 1.75;
	margin: 0;
}
.cw-newsletter__quote strong {
	color: var(--cw-ink);
	white-space: nowrap;
}
.cw-newsletter__row {
	display: flex;
	gap: 8px;
	background: var(--cw-white);
	border: 1.5px solid #dfe6e1;
	border-radius: var(--cw-r-pill);
	padding: 6px 6px 6px 24px;
	max-width: 520px;
}
.cw-newsletter__input {
	flex: 1;
	min-width: 0;
	border: 0;
	outline: none;
	font-family: var(--cw-font);
	font-size: 15px;
	color: var(--cw-ink);
	background: transparent;
}
.cw-newsletter__input::placeholder {
	color: var(--cw-grey-soft);
}
.cw-newsletter__row:focus-within {
	border-color: var(--cw-green);
	box-shadow: 0 0 0 3px rgba(86, 163, 79, 0.18);
}
.cw-newsletter__hint {
	font-size: 13px;
	color: var(--cw-grey-soft);
	margin: 10px 0 0;
}
.cw-newsletter__collage {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 18px;
	justify-content: flex-end;
	align-items: flex-end;
}
.cw-newsletter__collage img {
	object-fit: cover;
	border-radius: 20px;
	width: clamp(110px, 10vw, 150px);
}
.cw-newsletter__collage li:nth-child(1) img {
	height: clamp(130px, 12vw, 175px);
}
.cw-newsletter__collage li:nth-child(2) img {
	height: clamp(170px, 16vw, 235px);
}
.cw-newsletter__collage li:nth-child(3) img {
	height: clamp(210px, 20vw, 300px);
}

/* ---------- logo_wall ---------- */
.cw-logowall {
	position: relative;
	background: var(--cw-ink);
	color: rgba(255, 255, 255, 0.85);
	overflow: hidden;
}
.cw-logowall__content {
	position: relative;
}
/* Strip variant: slides up over the hero image and blurs it —
 * the band belongs to the hero, it is not a separate box. */
.cw-logowall--strip {
	margin-top: -118px;
	background: linear-gradient(180deg, rgba(15, 26, 23, 0.5) 0%, rgba(15, 26, 23, 0.85) 100%);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	padding: 30px 0;
}
.cw-logowall--wall {
	padding: clamp(56px, 9vh, 100px) 0;
}
.cw-logowall__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.22;
	filter: brightness(0.6) saturate(0.75);
}
.cw-logowall__head {
	text-align: center;
	max-width: 720px;
	margin: 0 auto clamp(32px, 5vh, 56px);
}
.cw-logowall__headline {
	color: var(--cw-white);
	font-size: clamp(26px, 2.8vw, 38px);
}
.cw-logowall__head .cw-section__intro {
	color: rgba(255, 255, 255, 0.72);
	margin-inline: auto;
}
.cw-logowall__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: clamp(20px, 3vw, 40px);
}
.cw-logowall__list li {
	display: grid;
	place-items: center;
}
/* Wall: a calm, even grid instead of a ragged flex cloud. */
.cw-logowall--wall .cw-logowall__list {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: clamp(32px, 4vh, 48px) 24px;
	align-items: center;
	justify-items: center;
}
.cw-logowall__list img {
	height: 44px;
	width: auto;
	max-width: 160px;
	object-fit: contain;
	opacity: 0.9;
	transition: opacity 0.2s ease;
}
.cw-logowall--wall .cw-logowall__list img {
	height: 38px;
	max-width: 140px;
	opacity: 0.8;
}
.cw-logowall__list a:hover img,
.cw-logowall--wall .cw-logowall__list li:hover img {
	opacity: 1;
}

@media (max-width: 1023px) {
	.cw-videocta__cols,
	.cw-newsletter__card {
		grid-template-columns: 1fr;
	}
	.cw-videocta__gallery {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (max-width: 767px) {
	.cw-newsletter__row {
		flex-direction: column;
		border-radius: 24px;
		padding: 14px;
	}
	.cw-newsletter__input {
		padding: 10px 8px;
	}
}

/* ================= v0.4.0: button icons, glass, responsive fixes ===== */

.cw-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}
.cw-btn--has-icon {
	padding: 8px 9px 8px 24px;
}
.cw-btn__icon {
	display: grid;
	place-items: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 1.5px solid currentColor;
	flex-shrink: 0;
}
.cw-btn__icon svg {
	width: 15px;
	height: 15px;
	stroke-width: 2.25;
	fill: none;
	stroke: currentColor;
}
.cw-btn--glass {
	background: rgba(15, 26, 23, 0.45);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	color: var(--cw-white);
	border: 1px solid rgba(255, 255, 255, 0.35);
}
.cw-btn--glass:hover {
	background: rgba(15, 26, 23, 0.65);
	box-shadow: 0 8px 20px rgba(15, 26, 23, 0.25);
}

@media (max-width: 1023px) {
	.cw-newsletter__collage {
		justify-content: center;
	}
	.cw-fullbleed__inner {
		grid-template-columns: 1fr;
	}
	.cw-fullbleed__action {
		justify-self: start;
	}
	.cw-logowall--wall .cw-logowall__list {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
	.cw-logowall--strip .cw-logowall__list {
		justify-content: center;
	}
}
@media (max-width: 767px) {
	.cw-logowall--wall .cw-logowall__list {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	.cw-logowall--strip {
		margin-top: -96px;
		padding: 20px 0;
	}
	.cw-logowall__list img {
		height: 32px;
		max-width: 110px;
	}
	.cw-newsletter__collage img {
		width: clamp(84px, 26vw, 110px);
	}
	.cw-newsletter__collage li:nth-child(1) img {
		height: 110px;
	}
	.cw-newsletter__collage li:nth-child(2) img {
		height: 150px;
	}
	.cw-newsletter__collage li:nth-child(3) img {
		height: 190px;
	}
	.cw-hero-home__inner {
		padding-bottom: calc(clamp(40px, 7vh, 64px) + 100px);
	}
}

/* ================= Critique-Fixes (v0.4.1) ================= */

/* Video-Karten: Caption unten auf Boden-Scrim, Play mittig (Finding 10). */
.cw-video::after {
	content: "";
	position: absolute;
	inset: 55% 0 0 0;
	background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
	pointer-events: none;
}
.cw-video__play {
	z-index: 1;
}
.cw-video__playicon {
	position: absolute;
	top: 50%;
	left: 50%;
	translate: -50% -50%;
}
.cw-video__label {
	position: absolute;
	bottom: 16px;
	left: 0;
	right: 0;
	text-align: center;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Logo-Groessen-Normalisierung: optionale Groessen-Stufe je Logo (Finding 3/13/16). */
.cw-logowall__list li.is-s img {
	height: 30px;
}
.cw-logowall__list li.is-l img {
	height: 56px;
}
.cw-logowall--wall .cw-logowall__list li.is-s img {
	height: 26px;
}
.cw-logowall--wall .cw-logowall__list li.is-l img {
	height: 50px;
}

/* Mobile: uppercase Nav im Panel etwas kompakter */
@media (max-width: 1099px) {
	.cw-nav__link {
		font-size: 15px;
		letter-spacing: 0.05em;
	}
}

/* ================= v0.4.2: Mobile-Reifegrad ================= */

@media (max-width: 1099px) {
	/* backdrop-filter macht die Kapsel zum Containing Block fuer das
	 * fixe Menue-Panel (Panel haengt sonst IN der Pille fest). */
	.cw-header__bar {
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
		background: var(--cw-white);
	}
	.cw-nav {
		padding: 18px var(--cw-gutter) 36px;
	}
	.cw-nav__link {
		display: flex;
		width: 100%;
		justify-content: space-between;
		align-items: center;
		padding: 16px 2px;
		font-size: 15px;
	}
	.cw-nav__dropdown {
		margin: 0 0 6px 2px;
		padding: 0 0 4px 16px;
		border-left: 2px solid var(--cw-grey-100);
	}
	.cw-nav__sublink {
		font-size: 15px;
		padding: 11px 2px;
		color: var(--cw-forest);
	}
	.cw-nav__buttons {
		display: grid;
		gap: 12px;
		margin-top: 28px;
	}
	.cw-nav__buttons .cw-btn {
		justify-content: center;
		width: 100%;
		padding-block: 16px;
	}
}
@media (max-width: 767px) {
	.cw-newsletter__card {
		padding: 28px 22px;
		gap: 28px;
	}
	.cw-newsletter__collage {
		justify-content: center;
		gap: 12px;
	}
	/* flex-basis 480px erzwang in der Spaltenrichtung eine
	 * 480px-Mindesthoehe des Mission-Texts -> Riesenluecke. */
	.cw-footer__mission {
		flex: 0 1 auto;
	}
	.cw-footer__mid {
		gap: 22px;
	}
	.cw-footer__rule {
		margin: 22px 0;
	}
}

/* ================= v0.4.3: Mobile-Header + Menue-Sheet ================= */

.cw-nav__toggle {
	display: none;
}
.cw-burger {
	border-radius: 12px;
}

@media (max-width: 1099px) {
	/* Burger rechts aussen: die Nav verlaesst mobil den Flex-Fluss,
	 * also uebernimmt space-between die Verteilung Logo <-> Burger. */
	.cw-header__bar {
		justify-content: space-between;
		min-height: 58px;
	}
	/* Sheet deckt den GESAMTEN Viewport — kein Content blitzt mehr
	 * neben/ueber der Kapsel durch. Logo + Burger schweben darueber. */
	.cw-header__logo,
	.cw-header__actions {
		position: relative;
		z-index: 2;
	}
	.cw-nav {
		inset: 0;
		padding: calc(var(--cw-header-h) + 4px) var(--cw-gutter) max(40px, env(safe-area-inset-bottom));
	}
	.cw-nav__item {
		border-bottom: 1px solid var(--cw-grey-100);
	}
	.cw-nav__item--has-children {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		align-items: center;
	}
	.cw-nav__link {
		border-bottom: 0;
		padding: 17px 2px;
		font-size: 15px;
	}
	.cw-nav__caret {
		display: none;
	}
	.cw-nav__toggle {
		display: grid;
		place-items: center;
		width: 44px;
		height: 44px;
		background: none;
		border: 0;
		border-radius: 12px;
		color: var(--cw-ink);
		cursor: pointer;
	}
	.cw-nav__toggle svg {
		width: 16px;
		height: 16px;
		fill: none;
		stroke: currentColor;
		stroke-width: 2.5;
		transition: transform 0.15s ease;
	}
	.cw-nav__toggle[aria-expanded="true"] svg {
		transform: rotate(180deg);
	}
	/* Untermenues standardmaessig ZU — kein Endlos-Listen-Sheet. */
	.cw-nav__dropdown {
		display: none;
		grid-column: 1 / -1;
		margin: 0 0 10px;
		padding: 0 0 0 14px;
		border-left: 2px solid var(--cw-grey-100);
	}
	.cw-nav__item.is-open .cw-nav__dropdown {
		display: block;
	}
}

/* ================= Phase 3b: FAQ, Listen, Steps, Info-Cards,
   Richtext, Kontakt-Kanaele ================= */

/* faq_group / steps_accordion (natives exklusives Accordion) */
.cw-faqgroup,
.cw-steps {
	padding: clamp(40px, 6vh, 72px) 0;
}
.cw-faqgroup__list {
	margin-top: clamp(20px, 3vh, 32px);
	display: grid;
	gap: 12px;
}
.cw-faq {
	background: var(--cw-grey-50);
	border: 1px solid var(--cw-grey-100);
	border-radius: 16px;
	overflow: hidden;
}
.cw-faq__q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 22px;
	font-weight: 600;
	font-size: 16.5px;
	color: var(--cw-ink);
	cursor: pointer;
	list-style: none;
}
.cw-faq__q::-webkit-details-marker {
	display: none;
}
.cw-faq__toggle {
	display: grid;
	place-items: center;
	width: 32px;
	height: 32px;
	flex-shrink: 0;
	border-radius: 50%;
	background: var(--cw-white);
	border: 1px solid var(--cw-grey-100);
	color: var(--cw-green);
	transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
.cw-faq__toggle svg {
	width: 15px;
	height: 15px;
	stroke-width: 2.5;
	fill: none;
	stroke: currentColor;
}
.cw-faq[open] .cw-faq__toggle {
	transform: rotate(45deg);
	background: var(--cw-green);
	color: var(--cw-white);
}
.cw-faq__a {
	padding: 0 22px 20px;
	max-width: 75ch;
}
.cw-faq__a p:last-child {
	margin-bottom: 0;
}

/* icon_list */
.cw-iconlist {
	padding: clamp(36px, 5vh, 60px) 0;
}
.cw-iconlist__headline {
	font-size: clamp(22px, 2.2vw, 30px);
}
.cw-iconlist__list {
	list-style: none;
	margin: 18px 0 0;
	padding: 0;
	display: grid;
	gap: 12px 40px;
}
.cw-iconlist__list--cols-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}
.cw-iconlist__item {
	display: flex;
	align-items: baseline;
	gap: 12px;
}
.cw-iconlist__icon {
	flex-shrink: 0;
	color: var(--cw-green);
}
.cw-iconlist__icon svg {
	width: 16px;
	height: 16px;
	stroke-width: 2.5;
	fill: none;
	stroke: currentColor;
	vertical-align: -0.125em;
}
.cw-iconlist__value {
	margin-left: auto;
	font-weight: 600;
	color: var(--cw-ink);
	white-space: nowrap;
}
.cw-iconlist__hint {
	margin-top: 16px;
	font-size: 13.5px;
	color: var(--cw-grey-soft);
	max-width: 70ch;
}

/* info_cards */
.cw-infocards {
	padding: clamp(40px, 6vh, 72px) 0;
	background: var(--cw-grey-50);
}
.cw-infocards__grid {
	display: grid;
	gap: 20px;
	margin-top: clamp(20px, 3vh, 32px);
}
.cw-infocards__grid--2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}
.cw-infocards__grid--3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}
.cw-infocards__grid--4 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}
.cw-infocard {
	background: var(--cw-white);
	border: 1px solid var(--cw-grey-100);
	border-radius: var(--cw-r-card);
	padding: 26px 26px 22px;
	box-shadow: 0 12px 30px rgba(15, 26, 23, 0);
	transition: box-shadow 0.3s ease;
}
.cw-infocard:hover {
	box-shadow: 0 12px 30px rgba(15, 26, 23, 0.08);
}
.cw-infocard__title {
	font-size: 19px;
	margin-bottom: 10px;
}
.cw-infocard__body {
	font-size: 14.5px;
	line-height: 1.7;
}
.cw-infocard__body p:last-child {
	margin-bottom: 0;
}

/* richtext_page */
.cw-richtext {
	padding: clamp(48px, 7vh, 88px) 0;
}
.cw-richtext__inner {
	max-width: 820px;
}
.cw-richtext__inner p {
	font-size: 16.5px;
	line-height: 1.75;
}

/* contact_channels */
.cw-channels {
	padding: clamp(48px, 7vh, 88px) 0;
}
.cw-channels__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}
.cw-channel {
	background: var(--cw-ink);
	color: rgba(255, 255, 255, 0.85);
	border-radius: var(--cw-r-card);
	padding: 28px;
}
.cw-channel__title {
	color: var(--cw-white);
	font-size: 20px;
	margin-bottom: 16px;
}
.cw-channel__row {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 10px;
}
.cw-channel__row a {
	color: var(--cw-white);
	text-decoration: none;
	font-weight: 500;
}
.cw-channel__row a:hover {
	color: var(--cw-green);
}
.cw-channel__icon {
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	flex-shrink: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	color: var(--cw-green);
}
.cw-channel__icon svg {
	width: 16px;
	height: 16px;
	stroke-width: 2.25;
	fill: none;
	stroke: currentColor;
}
.cw-channel__hint {
	font-size: 13.5px;
	color: rgba(255, 255, 255, 0.6);
	margin: 14px 0 0;
}

@media (max-width: 1023px) {
	.cw-channels__grid,
	.cw-infocards__grid--3 {
		grid-template-columns: 1fr;
	}
	.cw-infocards__grid--2,
	.cw-infocards__grid--4 {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 767px) {
	.cw-iconlist__list--cols-2 {
		grid-template-columns: 1fr;
	}
	.cw-iconlist__item {
		flex-wrap: wrap;
	}
	.cw-iconlist__value {
		margin-left: 28px;
	}
}

/* v0.5.1: media_text ohne Bild -> einspaltig, breiteres Zeilenmass. */
.cw-mediatext--noimage .cw-mediatext__inner {
	grid-template-columns: 1fr;
}
.cw-mediatext--noimage .cw-mediatext__text {
	max-width: 820px;
}
.cw-mediatext--noimage .cw-mediatext__body p {
	max-width: 72ch;
}

/* v0.6.0: Review-Fixes. Zweispaltige Icon-Listen als Spaltenfluss
 * (keine zeilengekoppelten Loecher mehr); Volltext-Karte mit Zeilenmass. */
.cw-iconlist__list--cols-2 {
	display: block;
	columns: 2;
	column-gap: 48px;
}
.cw-iconlist__list--cols-2 .cw-iconlist__item {
	break-inside: avoid;
	margin-bottom: 12px;
}
.cw-mediacard:last-child:nth-child(odd) .cw-mediacard__text {
	max-width: 72ch;
}
@media (max-width: 767px) {
	.cw-iconlist__list--cols-2 {
		columns: 1;
	}
}
