:root {
	--cwe-navy: #071a1b;
	--cwe-ocean: #0b2a2d;
	--cwe-ocean-2: #12383a;
	--cwe-ink: #172526;
	--cwe-text: #2f4344;
	--cwe-muted: #4f6263;
	--cwe-paper: #faf9f5;
	--cwe-mineral: #f3f1e9;
	--cwe-white: #ffffff;
	--cwe-mangrove: #2f6650;
	--cwe-cyan: #43a7ad;
	--cwe-cyan-soft: #b8dfe0;
	--cwe-lichen: #a7ba83;
	--cwe-sediment: #8c5d2f;
	--cwe-warning: #e5a84b;
	--cwe-critical: #b94438;
	--cwe-line: rgba(7, 26, 27, 0.14);
	--cwe-line-dark: rgba(255, 255, 255, 0.16);
	--cwe-shadow: 0 24px 70px rgba(7, 26, 27, 0.12);
	--cwe-shadow-soft: 0 12px 34px rgba(7, 26, 27, 0.08);
	--cwe-radius: 3px;
	--cwe-shell: min(1380px, calc(100vw - 64px));
	--cwe-font-sans: Inter, "IBM Plex Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--cwe-font-serif: "Source Serif 4", "Iowan Old Style", Charter, Georgia, serif;
	--cwe-header-height: 88px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 120px;
}

body {
	margin: 0;
	background: var(--cwe-paper);
	color: var(--cwe-ink);
	font-family: var(--cwe-font-sans);
	font-size: 16px;
	line-height: 1.65;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

body.admin-bar .cwe-header {
	top: 32px;
}

img,
svg {
	max-width: 100%;
}

img {
	height: auto;
}

a {
	color: inherit;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

button,
input,
textarea,
select {
	font: inherit;
}

button,
a {
	-webkit-tap-highlight-color: transparent;
}

button {
	color: inherit;
}

:focus-visible {
	outline: 3px solid var(--cwe-warning);
	outline-offset: 3px;
}

::selection {
	background: var(--cwe-cyan-soft);
	color: var(--cwe-navy);
}

.cwe-shell {
	width: var(--cwe-shell);
	margin-inline: auto;
}

.cwe-shell--narrow {
	max-width: 860px;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.cwe-skip-link {
	position: fixed;
	z-index: 10000;
	left: 18px;
	top: 18px;
	padding: 12px 18px;
	background: var(--cwe-white);
	color: var(--cwe-navy);
	font-weight: 800;
	transform: translateY(-160%);
	transition: transform 160ms ease;
}

.cwe-skip-link:focus {
	transform: translateY(0);
}

.cwe-kicker {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 0.75rem;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--cwe-mangrove);
}

.cwe-kicker::before {
	content: "";
	width: 26px;
	height: 1px;
	background: currentColor;
}

.cwe-kicker--light {
	color: var(--cwe-cyan-soft);
}

.cwe-kicker--warm {
	color: var(--cwe-sediment);
}

.cwe-utility {
	background: #041112;
	color: rgba(255, 255, 255, 0.86);
	font-size: 0.76rem;
	letter-spacing: 0.02em;
}

.cwe-utility__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 34px;
}

.cwe-utility p {
	margin: 0;
}

.cwe-utility__menu {
	display: flex;
	gap: 24px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.cwe-utility a {
	color: inherit;
	text-decoration: none;
}

.cwe-utility a:hover {
	color: var(--cwe-white);
}

.cwe-header {
	position: sticky;
	z-index: 900;
	top: 0;
	background: rgba(250, 249, 245, 0.96);
	border-bottom: 1px solid var(--cwe-line);
	backdrop-filter: blur(18px);
}

.cwe-header__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 42px;
	min-height: var(--cwe-header-height);
}

.cwe-brand {
	display: inline-flex;
	align-items: center;
	gap: 13px;
	min-width: max-content;
	color: var(--cwe-navy);
	text-decoration: none;
}

.cwe-brand__mark {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border: 1px solid rgba(7, 26, 27, 0.24);
	border-radius: 50%;
	background: var(--cwe-navy);
	color: var(--cwe-cyan-soft);
}

.cwe-brand__mark svg {
	width: 28px;
	height: 28px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.25;
}

.cwe-brand__text {
	display: flex;
	flex-direction: column;
	line-height: 1;
}

.cwe-brand__text strong {
	font-family: var(--cwe-font-serif);
	font-size: 1.52rem;
	font-weight: 600;
	letter-spacing: -0.035em;
}

.cwe-brand__text small {
	margin-top: 7px;
	font-size: 0.62rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--cwe-muted);
}

.cwe-brand__custom img {
	display: block;
	width: auto;
	max-width: 210px;
	max-height: 58px;
}

.cwe-primary {
	justify-self: center;
}

.cwe-primary__list {
	display: flex;
	align-items: center;
	gap: 3px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.cwe-primary__item > a,
.cwe-primary__item > button,
.cwe-primary__list > .menu-item > a {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	min-height: 46px;
	padding: 0 12px;
	border: 0;
	background: transparent;
	color: var(--cwe-ink);
	font-size: 0.86rem;
	font-weight: 750;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
}

.cwe-primary__item > a:hover,
.cwe-primary__item > button:hover,
.cwe-primary__item > button[aria-expanded="true"],
.cwe-primary__list > .menu-item > a:hover {
	background: rgba(7, 26, 27, 0.06);
	color: var(--cwe-navy);
}

.cwe-primary__item > button svg {
	width: 15px;
	height: 15px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	transition: transform 160ms ease;
}

.cwe-primary__item > button[aria-expanded="true"] svg {
	transform: rotate(180deg);
}

.cwe-has-mega {
	position: static;
}

.cwe-mega {
	position: absolute;
	z-index: 930;
	left: 50%;
	top: calc(100% + 1px);
	width: min(1120px, calc(100vw - 48px));
	padding: 28px;
	background: var(--cwe-white);
	border: 1px solid var(--cwe-line);
	box-shadow: var(--cwe-shadow);
	opacity: 0;
	visibility: hidden;
	transform: translate(-50%, -8px);
	transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.cwe-has-mega.is-open .cwe-mega {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, 0);
}

.cwe-mega {
	display: grid;
	grid-template-columns: 290px 1fr;
	gap: 28px;
}

.cwe-mega__intro {
	padding: 22px;
	background: var(--cwe-navy);
	color: var(--cwe-white);
}

.cwe-mega__intro > span {
	display: block;
	margin-bottom: 18px;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--cwe-cyan-soft);
}

.cwe-mega__intro strong {
	display: block;
	font-family: var(--cwe-font-serif);
	font-size: 1.55rem;
	font-weight: 500;
	line-height: 1.18;
}

.cwe-mega__intro p {
	margin: 15px 0 0;
	color: rgba(255, 255, 255, 0.84);
	font-size: 0.86rem;
	line-height: 1.6;
}

.cwe-mega__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-content: center;
	gap: 7px;
}

.cwe-mega__grid a {
	display: flex;
	align-items: center;
	gap: 12px;
	min-height: 63px;
	padding: 11px 14px;
	border: 1px solid transparent;
	text-decoration: none;
}

.cwe-mega__grid a:hover {
	border-color: var(--cwe-line);
	background: var(--cwe-mineral);
}

.cwe-mega__grid span {
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	background: var(--cwe-mineral);
	color: var(--cwe-mangrove);
}

.cwe-mega__grid svg {
	width: 21px;
	height: 21px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.4;
}

.cwe-mega__grid strong {
	font-size: 0.84rem;
	line-height: 1.25;
}

.cwe-header__actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

.cwe-search-trigger {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 44px;
	padding: 0 13px;
	border: 1px solid var(--cwe-line);
	background: transparent;
	font-size: 0.82rem;
	font-weight: 800;
	cursor: pointer;
}

.cwe-search-trigger:hover {
	background: var(--cwe-white);
}

.cwe-search-trigger svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.65;
}

.cwe-header__submit {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	padding: 0 16px;
	background: var(--cwe-navy);
	color: var(--cwe-white);
	font-size: 0.79rem;
	font-weight: 800;
	text-decoration: none;
}

.cwe-header__submit:hover {
	background: var(--cwe-ocean-2);
}

.cwe-nav-toggle,
.cwe-primary__mobile-actions {
	display: none;
}

.cwe-search-dialog {
	width: min(840px, calc(100vw - 32px));
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--cwe-ink);
}

.cwe-search-dialog::backdrop {
	background: rgba(2, 12, 13, 0.82);
	backdrop-filter: blur(8px);
}

.cwe-search-dialog__surface {
	padding: clamp(24px, 4vw, 48px);
	background: var(--cwe-paper);
	box-shadow: 0 40px 100px rgba(0, 0, 0, 0.34);
}

.cwe-search-dialog__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 30px;
}

.cwe-search-dialog__header span {
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--cwe-mangrove);
}

.cwe-search-dialog__header h2 {
	margin: 8px 0 0;
	font-family: var(--cwe-font-serif);
	font-size: clamp(2rem, 4vw, 3.6rem);
	font-weight: 500;
	line-height: 1;
	letter-spacing: -0.04em;
}

.cwe-search-dialog__header button {
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	width: 44px;
	height: 44px;
	border: 1px solid var(--cwe-line);
	background: transparent;
	cursor: pointer;
}

.cwe-search-dialog__header svg {
	width: 21px;
	height: 21px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.6;
}

.cwe-search-dialog__hint {
	margin: 15px 0 0;
	font-size: 0.8rem;
	color: var(--cwe-muted);
}

.cwe-search-form {
	position: relative;
}

.cwe-search-form__field {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	min-height: 66px;
	background: var(--cwe-white);
	border: 1px solid rgba(7, 26, 27, 0.2);
	box-shadow: 0 10px 30px rgba(7, 26, 27, 0.07);
}

.cwe-search-form__field > span {
	display: grid;
	place-items: center;
	width: 58px;
	color: var(--cwe-mangrove);
}

.cwe-search-form__field svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.5;
}

.cwe-search-form input {
	min-width: 0;
	width: 100%;
	height: 64px;
	padding: 0;
	border: 0;
	outline: 0;
	background: transparent;
	color: var(--cwe-navy);
	font-size: 1rem;
}

.cwe-search-form input::placeholder {
	color: #536769;
}

.cwe-search-form button {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	height: 48px;
	margin-right: 8px;
	padding: 0 18px;
	border: 0;
	background: var(--cwe-navy);
	color: var(--cwe-white);
	font-size: 0.78rem;
	font-weight: 800;
	cursor: pointer;
}

.cwe-search-form button span {
	display: grid;
	place-items: center;
}

.cwe-search-form button svg {
	width: 17px;
	height: 17px;
	stroke: currentColor;
}

.cwe-live-results {
	position: absolute;
	z-index: 980;
	left: 0;
	right: 0;
	top: calc(100% + 7px);
	max-height: min(540px, 58vh);
	overflow-y: auto;
	background: var(--cwe-white);
	border: 1px solid var(--cwe-line);
	box-shadow: var(--cwe-shadow);
}

.cwe-live-result {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 15px 18px;
	border-bottom: 1px solid var(--cwe-line);
	text-decoration: none;
}

.cwe-live-result:hover,
.cwe-live-result.is-active {
	background: var(--cwe-mineral);
}

.cwe-live-result span {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.cwe-live-result small {
	font-size: 0.65rem;
	font-style: normal;
	font-weight: 800;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	color: var(--cwe-mangrove);
}

.cwe-live-result strong {
	margin-top: 2px;
	font-size: 0.91rem;
	line-height: 1.3;
}

.cwe-live-result em {
	display: -webkit-box;
	overflow: hidden;
	margin-top: 3px;
	font-size: 0.75rem;
	font-style: normal;
	line-height: 1.35;
	color: var(--cwe-muted);
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}

.cwe-live-result b {
	font-size: 1.2rem;
	font-weight: 400;
}

.cwe-live-results__state {
	padding: 18px;
	font-size: 0.84rem;
	color: var(--cwe-muted);
}

.cwe-hero {
	position: relative;
	overflow: hidden;
	background: var(--cwe-navy);
	color: var(--cwe-white);
}

.cwe-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
	background-size: 64px 64px;
	mask-image: linear-gradient(to right, black, transparent 80%);
}

.cwe-hero__atmosphere {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.cwe-hero__atmosphere span {
	position: absolute;
	width: 560px;
	height: 560px;
	right: 5%;
	top: 11%;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(67, 167, 173, 0.19), transparent 66%);
	filter: blur(22px);
}

.cwe-hero__atmosphere i {
	position: absolute;
	width: 360px;
	height: 220px;
	left: 12%;
	bottom: -120px;
	border-radius: 50%;
	background: rgba(183, 138, 88, 0.12);
	filter: blur(60px);
}

.cwe-hero__inner {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.85fr);
	align-items: center;
	gap: clamp(42px, 7vw, 118px);
	min-height: 720px;
	padding-block: 88px 108px;
}

.cwe-hero__copy {
	position: relative;
	z-index: 2;
	max-width: 760px;
}

.cwe-hero h1 {
	margin: 24px 0 24px;
	font-family: var(--cwe-font-serif);
	font-size: clamp(3.5rem, 6.2vw, 7.15rem);
	font-weight: 500;
	line-height: 0.91;
	letter-spacing: -0.065em;
}

.cwe-hero h1 em {
	font-weight: 400;
	color: var(--cwe-lichen);
}

.cwe-hero__copy > p {
	max-width: 640px;
	margin: 0 0 30px;
	font-size: clamp(1rem, 1.3vw, 1.25rem);
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.88);
}

.cwe-hero__search {
	max-width: 720px;
}

.cwe-hero__search .cwe-search-form__field {
	border-color: rgba(255, 255, 255, 0.14);
	box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
}

.cwe-hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 13px;
	margin-top: 25px;
}

.cwe-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 50px;
	padding: 0 20px;
	border: 1px solid transparent;
	font-size: 0.8rem;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	transition: transform 150ms ease, background 150ms ease, border-color 150ms ease;
}

.cwe-button:hover {
	transform: translateY(-2px);
}

.cwe-button svg,
.cwe-text-link svg,
.cwe-card a svg,
.cwe-law-row > svg,
.cwe-law__all svg,
.cwe-source-link svg,
.cwe-record__correction a svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.6;
}

.cwe-button--primary {
	background: var(--cwe-cyan);
	color: #031415;
}

.cwe-button--primary:hover {
	background: #65bec3;
}

.cwe-button--ghost {
	border-color: rgba(255, 255, 255, 0.24);
	color: var(--cwe-white);
}

.cwe-button--ghost:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.4);
}

.cwe-button--dark {
	background: var(--cwe-navy);
	color: var(--cwe-white);
}

.cwe-button--outline,
.cwe-button--outline-light {
	border-color: rgba(7, 26, 27, 0.32);
	color: var(--cwe-navy);
}

.cwe-button--outline-light {
	border-color: rgba(255, 255, 255, 0.28);
	color: var(--cwe-white);
}

.cwe-hero__visual {
	position: relative;
	display: grid;
	place-items: center;
	min-height: 560px;
}

.cwe-planet {
	position: relative;
	width: min(34vw, 490px);
	aspect-ratio: 1;
	border-radius: 50%;
	background: radial-gradient(circle at 37% 31%, #3b7473 0, #174347 32%, #09292c 66%, #031415 100%);
	box-shadow: 0 0 80px rgba(67, 167, 173, 0.16), inset -45px -34px 80px rgba(0, 0, 0, 0.42);
	overflow: hidden;
}

.cwe-planet::after {
	content: "";
	position: absolute;
	inset: -1px;
	border: 1px solid rgba(184, 223, 224, 0.28);
	border-radius: 50%;
	box-shadow: inset 18px 4px 40px rgba(184, 223, 224, 0.1);
}

.cwe-planet__grid {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background-image: repeating-radial-gradient(ellipse at center, transparent 0 32px, rgba(184, 223, 224, 0.1) 33px 34px), linear-gradient(90deg, transparent 49.6%, rgba(184, 223, 224, 0.11) 50%, transparent 50.4%);
	transform: scale(1.15);
}

.cwe-planet__land {
	position: absolute;
	display: block;
	background: rgba(167, 186, 131, 0.33);
	filter: drop-shadow(0 4px 15px rgba(167, 186, 131, 0.12));
}

.cwe-planet__land--one {
	width: 150px;
	height: 210px;
	left: 23%;
	top: 17%;
	border-radius: 48% 52% 60% 32% / 36% 46% 54% 64%;
	transform: rotate(28deg);
	clip-path: polygon(39% 0, 67% 14%, 94% 22%, 79% 42%, 90% 58%, 67% 69%, 58% 100%, 35% 87%, 18% 63%, 0 45%, 20% 28%);
}

.cwe-planet__land--two {
	width: 130px;
	height: 110px;
	right: 12%;
	bottom: 20%;
	clip-path: polygon(0 34%, 28% 0, 67% 13%, 100% 45%, 80% 77%, 47% 100%, 21% 73%);
	transform: rotate(-10deg);
}

.cwe-orbit {
	position: absolute;
	border: 1px solid rgba(184, 223, 224, 0.17);
	border-radius: 50%;
}

.cwe-orbit--one {
	width: 128%;
	height: 52%;
	transform: rotate(-16deg);
}

.cwe-orbit--two {
	width: 86%;
	height: 122%;
	transform: rotate(31deg);
}

.cwe-hero__coordinate {
	position: absolute;
	padding: 7px 10px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	background: rgba(4, 17, 18, 0.78);
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: var(--cwe-cyan-soft);
}

.cwe-hero__coordinate--one {
	left: 0;
	top: 22%;
}

.cwe-hero__coordinate--two {
	right: 2%;
	bottom: 18%;
}

.cwe-evidence-strip {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	border-top: 1px solid var(--cwe-line-dark);
}

.cwe-evidence-strip > a,
.cwe-evidence-strip > div {
	display: flex;
	flex-direction: column;
	min-height: 128px;
	padding: 24px 28px;
	border-right: 1px solid var(--cwe-line-dark);
	color: var(--cwe-white);
	text-decoration: none;
}

.cwe-evidence-strip > :last-child {
	border-right: 0;
}

.cwe-evidence-strip > a:hover {
	background: rgba(255, 255, 255, 0.04);
}

.cwe-evidence-strip span {
	font-size: 0.64rem;
	font-weight: 800;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: var(--cwe-cyan-soft);
}

.cwe-evidence-strip strong {
	margin-top: 8px;
	font-family: var(--cwe-font-serif);
	font-size: 1.08rem;
	font-weight: 500;
	line-height: 1.22;
}

.cwe-evidence-strip small {
	margin-top: auto;
	padding-top: 12px;
	font-size: 0.67rem;
	color: rgba(255, 255, 255, 0.74);
}

.cwe-section {
	padding-block: clamp(76px, 9vw, 128px);
}

.cwe-section-heading {
	max-width: 900px;
	margin-bottom: 48px;
}

.cwe-section-heading--split {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.65fr);
	align-items: end;
	gap: 60px;
	max-width: none;
}

.cwe-section-heading h2,
.cwe-story__copy h2,
.cwe-method__intro h2,
.cwe-participate h2 {
	margin: 15px 0 0;
	font-family: var(--cwe-font-serif);
	font-size: clamp(2.4rem, 4.3vw, 5.4rem);
	font-weight: 500;
	line-height: 1.02;
	letter-spacing: -0.055em;
}

.cwe-section-heading > p,
.cwe-section-heading--split > p {
	margin: 0;
	color: var(--cwe-text);
	font-size: 1rem;
	line-height: 1.75;
}

.cwe-section-heading:not(.cwe-section-heading--split) > p {
	max-width: 720px;
	margin-top: 18px;
}

.cwe-text-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 0.82rem;
	font-weight: 800;
	text-decoration: none;
}

.cwe-text-link:hover {
	text-decoration: underline;
}

.cwe-monitor {
	background: var(--cwe-mineral);
}

.cwe-monitor__frame {
	background: var(--cwe-white);
	border: 1px solid rgba(7, 26, 27, 0.18);
	box-shadow: var(--cwe-shadow);
}

.cwe-monitor__toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: 76px;
	padding: 15px 22px;
	border-bottom: 1px solid var(--cwe-line);
}

.cwe-monitor__toolbar > div {
	display: flex;
	flex-direction: column;
}

.cwe-monitor__toolbar strong {
	font-size: 0.88rem;
}

.cwe-monitor__toolbar span {
	margin-top: 2px;
	font-size: 0.68rem;
	color: var(--cwe-muted);
}

.cwe-monitor__toolbar a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.78rem;
	font-weight: 800;
	text-decoration: none;
}

.cwe-monitor__toolbar svg {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.6;
}

.cwe-monitor__body {
	display: grid;
	grid-template-columns: 235px minmax(360px, 1fr) 310px;
	min-height: 600px;
}

.cwe-monitor__layers {
	padding: 24px 16px;
	border-right: 1px solid var(--cwe-line);
	background: #f7f6f1;
}

.cwe-monitor__layers > span {
	display: block;
	padding: 0 10px 14px;
	font-size: 0.64rem;
	font-weight: 800;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: var(--cwe-muted);
}

.cwe-monitor__layers button {
	display: flex;
	align-items: center;
	gap: 11px;
	width: 100%;
	min-height: 48px;
	padding: 8px 10px;
	border: 1px solid transparent;
	background: transparent;
	font-size: 0.76rem;
	font-weight: 700;
	text-align: left;
	cursor: pointer;
}

.cwe-monitor__layers button:first-of-type,
.cwe-monitor__layers button:hover {
	border-color: var(--cwe-line);
	background: var(--cwe-white);
}

.cwe-monitor__layers i {
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	background: var(--cwe-mineral);
	color: var(--cwe-mangrove);
}

.cwe-monitor__layers svg {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.5;
}

.cwe-map {
	position: relative;
	overflow: hidden;
	min-height: 600px;
	background: #dbe7e3;
}

.cwe-map::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.42), transparent 50%), repeating-radial-gradient(circle at 40% 52%, transparent 0 38px, rgba(7, 26, 27, 0.05) 39px 40px);
}

.cwe-map__grid {
	position: absolute;
	inset: 0;
	background-image: linear-gradient(rgba(7, 26, 27, 0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(7, 26, 27, 0.07) 1px, transparent 1px);
	background-size: 42px 42px;
}

.cwe-map__country {
	position: absolute;
	z-index: 2;
	width: 46%;
	height: 77%;
	left: 26%;
	top: 10%;
	background: rgba(63, 107, 88, 0.42);
	border: 2px solid rgba(7, 26, 27, 0.42);
	clip-path: polygon(41% 0, 66% 6%, 80% 20%, 76% 39%, 94% 50%, 85% 67%, 67% 72%, 59% 100%, 40% 87%, 25% 90%, 18% 71%, 2% 62%, 12% 45%, 4% 26%, 20% 15%);
	filter: drop-shadow(0 12px 18px rgba(7, 26, 27, 0.12));
}

.cwe-map__country span,
.cwe-map__country i,
.cwe-map__country b {
	position: absolute;
	display: block;
	width: 65%;
	height: 3px;
	background: rgba(250, 249, 245, 0.7);
	transform: rotate(38deg);
}

.cwe-map__country span { top: 32%; left: 12%; }
.cwe-map__country i { top: 51%; left: 25%; transform: rotate(-20deg); }
.cwe-map__country b { top: 70%; left: 9%; transform: rotate(17deg); }

.cwe-map__river {
	position: absolute;
	z-index: 3;
	width: 8px;
	height: 76%;
	left: 49%;
	top: 8%;
	border-radius: 50%;
	border-left: 4px solid rgba(67, 167, 173, 0.76);
	transform: rotate(16deg);
	filter: drop-shadow(0 0 6px rgba(67, 167, 173, 0.35));
}

.cwe-map__river--two {
	height: 54%;
	left: 57%;
	top: 24%;
	transform: rotate(-22deg);
}

.cwe-map__marker {
	position: absolute;
	z-index: 5;
	display: flex;
	align-items: center;
	gap: 8px;
}

.cwe-map__marker span {
	width: 12px;
	height: 12px;
	border: 3px solid var(--cwe-white);
	border-radius: 50%;
	background: var(--cwe-critical);
	box-shadow: 0 0 0 6px rgba(217, 97, 76, 0.25);
}

.cwe-map__marker small {
	padding: 5px 7px;
	background: rgba(7, 26, 27, 0.88);
	color: var(--cwe-white);
	font-size: 0.63rem;
	font-weight: 800;
}

.cwe-map__marker--one { left: 44%; top: 38%; }
.cwe-map__marker--two { left: 53%; bottom: 18%; }
.cwe-map__marker--two span { background: var(--cwe-warning); box-shadow: 0 0 0 6px rgba(229, 168, 75, 0.24); }

.cwe-map__legend {
	position: absolute;
	z-index: 5;
	left: 18px;
	bottom: 18px;
	display: flex;
	gap: 15px;
	padding: 8px 10px;
	background: rgba(250, 249, 245, 0.92);
	font-size: 0.63rem;
	font-weight: 700;
}

.cwe-map__legend span {
	display: flex;
	align-items: center;
	gap: 5px;
}

.cwe-map__legend i {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--cwe-mangrove);
}

.cwe-map__legend span:last-child i {
	background: var(--cwe-warning);
}

.cwe-monitor__detail {
	padding: 32px 28px;
	border-left: 1px solid var(--cwe-line);
}

.cwe-status {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 0.66rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--cwe-mangrove);
}

.cwe-status i {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: currentColor;
	box-shadow: 0 0 0 4px rgba(63, 107, 88, 0.13);
}

.cwe-status--current { color: var(--cwe-mangrove); }
.cwe-status--developing { color: #9a6917; }
.cwe-status--unresolved { color: #a63f35; }

.cwe-monitor__detail h3 {
	margin: 28px 0 15px;
	font-family: var(--cwe-font-serif);
	font-size: 2rem;
	font-weight: 500;
	line-height: 1.08;
	letter-spacing: -0.04em;
}

.cwe-monitor__detail p {
	color: var(--cwe-text);
	font-size: 0.88rem;
}

.cwe-monitor__detail ul {
	list-style: none;
	margin: 26px 0 0;
	padding: 0;
}

.cwe-monitor__detail li {
	position: relative;
	padding: 12px 0 12px 22px;
	border-top: 1px solid var(--cwe-line);
	font-size: 0.76rem;
	font-weight: 700;
}

.cwe-monitor__detail li::before {
	content: "";
	position: absolute;
	left: 2px;
	top: 19px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--cwe-cyan);
}

.cwe-priority {
	background: var(--cwe-paper);
}

.cwe-priority__grid,
.cwe-research__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.cwe-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	min-height: 330px;
	padding: 26px;
	background: var(--cwe-white);
	border: 1px solid var(--cwe-line);
	transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.cwe-card:hover {
	transform: translateY(-4px);
	border-color: rgba(7, 26, 27, 0.28);
	box-shadow: var(--cwe-shadow-soft);
}

.cwe-card__image {
	display: block;
	aspect-ratio: 16 / 9;
	margin: -26px -26px 24px;
	overflow: hidden;
}

.cwe-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 260ms ease;
}

.cwe-card:hover .cwe-card__image img {
	transform: scale(1.025);
}

.cwe-card__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 25px;
	font-size: 0.64rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--cwe-mangrove);
}

.cwe-card__meta small {
	font-size: inherit;
	color: var(--cwe-muted);
}

.cwe-card h3 {
	margin: 0;
	font-family: var(--cwe-font-serif);
	font-size: clamp(1.42rem, 2vw, 2rem);
	font-weight: 500;
	line-height: 1.12;
	letter-spacing: -0.035em;
}

.cwe-card h3 a {
	text-decoration: none;
}

.cwe-card h3 a:hover {
	text-decoration: underline;
}

.cwe-card > p {
	margin: 17px 0 24px;
	color: var(--cwe-text);
	font-size: 0.86rem;
	line-height: 1.7;
}

.cwe-card > a,
.cwe-card__footer a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	font-size: 0.76rem;
	font-weight: 800;
	text-decoration: none;
}

.cwe-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: auto;
	padding-top: 18px;
	border-top: 1px solid var(--cwe-line);
}

.cwe-card__footer span {
	font-size: 0.68rem;
	color: var(--cwe-muted);
}

.cwe-card__footer a {
	margin-top: 0;
}

.cwe-card--priority {
	min-height: 370px;
}

.cwe-issues {
	background: var(--cwe-mineral);
}

.cwe-issues__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	border-top: 1px solid var(--cwe-line);
	border-left: 1px solid var(--cwe-line);
}

.cwe-issue-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 390px;
	padding: 25px;
	border-right: 1px solid var(--cwe-line);
	border-bottom: 1px solid var(--cwe-line);
	background: rgba(255, 255, 255, 0.38);
	text-decoration: none;
	transition: background 160ms ease, transform 160ms ease;
}

.cwe-issue-card:hover {
	z-index: 2;
	background: var(--cwe-white);
	box-shadow: var(--cwe-shadow-soft);
	transform: translateY(-3px);
}

.cwe-issue-card__number {
	font-size: 0.65rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	color: var(--cwe-muted);
}

.cwe-issue-card__icon {
	display: grid;
	place-items: center;
	width: 56px;
	height: 56px;
	margin: 45px 0 30px;
	background: var(--cwe-navy);
	color: var(--cwe-cyan-soft);
}

.cwe-issue-card__icon svg {
	width: 27px;
	height: 27px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.4;
}

.cwe-issue-card h3 {
	margin: 0;
	font-family: var(--cwe-font-serif);
	font-size: 1.55rem;
	font-weight: 500;
	line-height: 1.12;
	letter-spacing: -0.03em;
}

.cwe-issue-card p {
	margin: 15px 0 20px;
	color: var(--cwe-text);
	font-size: 0.79rem;
	line-height: 1.67;
}

.cwe-issue-card__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	font-size: 0.72rem;
	font-weight: 800;
}

.cwe-issue-card__link svg {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.6;
}

.cwe-law {
	background: var(--cwe-navy);
	color: var(--cwe-white);
}

.cwe-law .cwe-section-heading h2,
.cwe-law .cwe-section-heading p {
	color: inherit;
}

.cwe-law .cwe-section-heading p {
	color: rgba(255, 255, 255, 0.80);
}

.cwe-law__columns {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.cwe-law__column {
	padding: clamp(24px, 4vw, 42px);
	border: 1px solid var(--cwe-line-dark);
	background: rgba(255, 255, 255, 0.035);
}

.cwe-law__column-head {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-bottom: 32px;
}

.cwe-law__column-head > span {
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	border: 1px solid var(--cwe-line-dark);
	color: var(--cwe-cyan-soft);
}

.cwe-law__column-head svg {
	width: 28px;
	height: 28px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.3;
}

.cwe-law__column-head small {
	font-size: 0.63rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--cwe-cyan-soft);
}

.cwe-law__column-head h3 {
	margin: 4px 0 0;
	font-family: var(--cwe-font-serif);
	font-size: 1.65rem;
	font-weight: 500;
}

.cwe-law-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: 90px;
	padding: 15px 0;
	border-top: 1px solid var(--cwe-line-dark);
	text-decoration: none;
}

.cwe-law-row:hover strong {
	text-decoration: underline;
}

.cwe-law-row > span {
	display: flex;
	flex-direction: column;
}

.cwe-law-row small {
	font-size: 0.61rem;
	font-weight: 800;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: var(--cwe-lichen);
}

.cwe-law-row strong {
	margin-top: 5px;
	font-size: 0.88rem;
	line-height: 1.4;
}

.cwe-law-row > svg {
	flex: 0 0 auto;
	color: var(--cwe-cyan-soft);
}

.cwe-law__all {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 26px;
	font-size: 0.76rem;
	font-weight: 800;
	color: var(--cwe-cyan-soft);
	text-decoration: none;
}

.cwe-story {
	background: var(--cwe-paper);
}

.cwe-story__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
	align-items: stretch;
	min-height: 650px;
	background: var(--cwe-mineral);
}

.cwe-story__visual {
	position: relative;
	overflow: hidden;
	min-height: 600px;
	background: #173d3e;
}

.cwe-story__visual::before {
	content: "";
	position: absolute;
	inset: 12% 7%;
	background: rgba(167, 186, 131, 0.3);
	clip-path: polygon(18% 4%, 65% 0, 89% 17%, 80% 37%, 100% 56%, 75% 73%, 51% 100%, 26% 86%, 0 62%, 12% 42%, 3% 21%);
}

.cwe-story__contours {
	position: absolute;
	inset: 0;
	background: repeating-radial-gradient(ellipse at 46% 47%, transparent 0 36px, rgba(184, 223, 224, 0.13) 37px 39px);
	transform: scale(1.5) rotate(-8deg);
}

.cwe-story__visual span {
	position: absolute;
	z-index: 2;
	bottom: 25px;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	color: var(--cwe-cyan-soft);
}

.cwe-story__visual span:nth-of-type(1) { left: 7%; }
.cwe-story__visual span:nth-of-type(2) { left: 46%; }
.cwe-story__visual span:nth-of-type(3) { right: 7%; }

.cwe-story__visual i {
	position: absolute;
	z-index: 2;
	left: 7%;
	right: 7%;
	bottom: 49px;
	height: 1px;
	background: rgba(255, 255, 255, 0.26);
}

.cwe-story__copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(42px, 6vw, 80px);
}

.cwe-story__copy h2 {
	font-size: clamp(2.5rem, 4vw, 4.4rem);
}

.cwe-story__copy > p {
	margin: 25px 0;
	color: var(--cwe-text);
	font-size: 0.95rem;
	line-height: 1.8;
}

.cwe-story__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 28px;
}

.cwe-story__meta span {
	padding: 6px 9px;
	border: 1px solid var(--cwe-line);
	font-size: 0.63rem;
	font-weight: 800;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: var(--cwe-muted);
}

.cwe-story__copy .cwe-button {
	align-self: flex-start;
}

.cwe-research {
	background: var(--cwe-mineral);
}

.cwe-research__grid .cwe-card {
	min-height: 350px;
}

.cwe-method {
	background: var(--cwe-ocean);
	color: var(--cwe-white);
}

.cwe-method__layout {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
	gap: clamp(60px, 9vw, 140px);
	align-items: start;
}

.cwe-method__intro {
	position: sticky;
	top: 130px;
}

.cwe-method__intro h2 {
	font-size: clamp(2.7rem, 4.7vw, 5.3rem);
}

.cwe-method__intro p {
	margin: 28px 0;
	color: rgba(255, 255, 255, 0.84);
}

.cwe-method__steps {
	border-top: 1px solid var(--cwe-line-dark);
}

.cwe-method__steps article {
	display: grid;
	grid-template-columns: 58px 1fr;
	gap: 24px;
	padding: 31px 0;
	border-bottom: 1px solid var(--cwe-line-dark);
}

.cwe-method__steps article > span {
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.11em;
	color: var(--cwe-cyan-soft);
}

.cwe-method__steps h3 {
	margin: 0;
	font-family: var(--cwe-font-serif);
	font-size: 2rem;
	font-weight: 500;
}

.cwe-method__steps p {
	margin: 9px 0 0;
	font-size: 0.86rem;
	color: rgba(255, 255, 255, 0.63);
}

.cwe-participate {
	background: var(--cwe-cyan-soft);
}

.cwe-participate__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) auto;
	align-items: end;
	gap: 60px;
}

.cwe-participate h2 {
	max-width: 900px;
}

.cwe-participate p {
	max-width: 760px;
	margin: 22px 0 0;
	color: #304849;
}

.cwe-participate__actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-width: 230px;
}

.cwe-footer {
	background: #041112;
	color: var(--cwe-white);
}

.cwe-footer__main {
	display: grid;
	grid-template-columns: minmax(280px, 0.8fr) minmax(600px, 1.4fr);
	gap: 90px;
	padding-block: 84px 70px;
}

.cwe-brand--footer {
	color: var(--cwe-white);
}

.cwe-brand--footer .cwe-brand__mark {
	border-color: rgba(255, 255, 255, 0.25);
	background: transparent;
}

.cwe-brand--footer .cwe-brand__text small {
	color: rgba(255, 255, 255, 0.48);
}

.cwe-footer__identity > p {
	max-width: 470px;
	margin: 26px 0 20px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.87rem;
}

.cwe-footer__parent {
	font-size: 0.72rem;
	font-weight: 800;
	color: var(--cwe-cyan-soft);
	text-decoration: none;
}

.cwe-footer__nav {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 32px;
}

.cwe-footer__nav h2 {
	margin: 0 0 20px;
	font-family: var(--cwe-font-sans);
	font-size: 0.66rem;
	font-weight: 800;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: var(--cwe-cyan-soft);
}

.cwe-footer__nav a {
	display: block;
	margin: 10px 0;
	color: rgba(255, 255, 255, 0.84);
	font-size: 0.79rem;
	text-decoration: none;
}

.cwe-footer__nav a:hover {
	color: var(--cwe-white);
	text-decoration: underline;
}

.cwe-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	min-height: 74px;
	border-top: 1px solid var(--cwe-line-dark);
	font-size: 0.67rem;
	color: rgba(255, 255, 255, 0.45);
}

.cwe-footer__bottom p {
	margin: 0;
}

.cwe-footer__bottom div {
	display: flex;
	gap: 20px;
}

.cwe-footer__bottom a {
	color: inherit;
	text-decoration: none;
}

.cwe-page-hero {
	padding-block: clamp(74px, 10vw, 138px);
	background: var(--cwe-navy);
	color: var(--cwe-white);
}

.cwe-page-hero h1 {
	max-width: 1050px;
	margin: 20px 0 0;
	font-family: var(--cwe-font-serif);
	font-size: clamp(3.2rem, 6vw, 7.2rem);
	font-weight: 500;
	line-height: 0.98;
	letter-spacing: -0.06em;
}

.cwe-page-hero p,
.cwe-page-hero__description {
	max-width: 760px;
	margin: 25px 0 0;
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.67);
}

.cwe-page-hero__description p {
	margin: 0;
}

.cwe-page-hero__search {
	max-width: 800px;
	margin-top: 35px;
}

.cwe-archive-layout {
	padding-block: 72px 110px;
}

.cwe-filter-panel {
	margin: 0 0 34px;
	padding: 26px;
	background: var(--cwe-mineral);
	border: 1px solid var(--cwe-line);
}

.cwe-filter-panel__heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 22px;
	padding-bottom: 18px;
	border-bottom: 1px solid rgba(7, 26, 27, 0.14);
}

.cwe-filter-panel__heading div {
	display: grid;
	gap: 4px;
}

.cwe-filter-panel__heading span,
.cwe-filter-panel label > span {
	font-size: 0.64rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--cwe-mangrove);
}

.cwe-filter-panel__heading strong {
	font-family: var(--cwe-font-serif);
	font-size: 1.35rem;
	font-weight: 500;
	line-height: 1.2;
}

.cwe-filter-panel__heading a {
	flex: 0 0 auto;
	color: var(--cwe-text);
	font-size: 0.72rem;
	font-weight: 800;
	text-underline-offset: 4px;
}

.cwe-filter-panel__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.cwe-filter-panel label {
	display: grid;
	min-width: 0;
	gap: 7px;
}

.cwe-filter-panel__keyword {
	grid-column: span 2;
}

.cwe-filter-panel input,
.cwe-filter-panel select {
	width: 100%;
	min-height: 46px;
	padding: 10px 12px;
	border: 1px solid #aebbb7;
	border-radius: 0;
	background: var(--cwe-white);
	color: var(--cwe-navy);
	font: 500 0.82rem/1.3 var(--cwe-font-sans);
}

.cwe-filter-panel input::placeholder {
	color: #657778;
	opacity: 1;
}

.cwe-filter-panel input:focus,
.cwe-filter-panel select:focus {
	outline: 3px solid rgba(67, 167, 173, 0.28);
	outline-offset: 1px;
	border-color: var(--cwe-mangrove);
}

.cwe-filter-panel__actions {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-top: 20px;
}

.cwe-filter-panel__actions button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 44px;
	padding: 10px 18px;
	border: 1px solid var(--cwe-navy);
	background: var(--cwe-navy);
	color: var(--cwe-white);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.03em;
	cursor: pointer;
}

.cwe-filter-panel__actions button:hover {
	background: var(--cwe-ocean);
}

.cwe-filter-panel__actions button svg {
	width: 16px;
	height: 16px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.6;
}

.cwe-filter-panel__actions small {
	color: var(--cwe-muted);
	font-size: 0.7rem;
}

.cwe-archive-tools {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 28px;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--cwe-line);
}

.cwe-archive-tools > span,
.cwe-result-count {
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: var(--cwe-muted);
}

.cwe-archive-tools button {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 12px;
	border: 1px solid var(--cwe-line);
	background: transparent;
	font-size: 0.74rem;
	font-weight: 800;
	cursor: pointer;
}

.cwe-archive-tools svg {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.5;
}

.cwe-archive-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.navigation.pagination {
	margin-top: 55px;
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}

.page-numbers {
	display: grid;
	place-items: center;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	border: 1px solid var(--cwe-line);
	background: var(--cwe-white);
	font-size: 0.78rem;
	font-weight: 800;
	text-decoration: none;
}

.page-numbers.current {
	background: var(--cwe-navy);
	color: var(--cwe-white);
}

.cwe-article__header {
	padding-block: 90px 65px;
	background: var(--cwe-mineral);
}

.cwe-article__header h1 {
	margin: 20px 0 0;
	font-family: var(--cwe-font-serif);
	font-size: clamp(3rem, 5.5vw, 6rem);
	font-weight: 500;
	line-height: 1;
	letter-spacing: -0.055em;
}

.cwe-article__byline {
	display: flex;
	gap: 18px;
	margin-top: 26px;
	font-size: 0.72rem;
	font-weight: 700;
	color: var(--cwe-muted);
}

.cwe-article__image {
	margin-top: 45px;
}

.cwe-article__image img {
	display: block;
	width: 100%;
}

.cwe-prose {
	padding-block: 64px 100px;
	font-family: var(--cwe-font-serif);
	font-size: clamp(1rem, 0.6vw + 0.9rem, 1.15rem);
	line-height: 1.85;
}

.cwe-prose > :first-child {
	margin-top: 0;
}

.cwe-prose h2,
.cwe-prose h3,
.cwe-prose h4 {
	font-family: var(--cwe-font-serif);
	font-weight: 600;
	line-height: 1.18;
	letter-spacing: -0.03em;
}

.cwe-prose h2 {
	margin-top: 2.2em;
	font-size: clamp(2rem, 3vw, 3.2rem);
}

.cwe-prose h3 {
	margin-top: 1.9em;
	font-size: 1.65rem;
}

.cwe-prose a {
	color: #245e61;
}

.cwe-prose blockquote {
	margin: 2.2em 0;
	padding: 0.4em 0 0.4em 1.4em;
	border-left: 4px solid var(--cwe-cyan);
	font-size: 1.2em;
}

.cwe-prose table {
	width: 100%;
	border-collapse: collapse;
	font-family: var(--cwe-font-sans);
	font-size: 0.83rem;
}

.cwe-prose th,
.cwe-prose td {
	padding: 12px;
	border: 1px solid var(--cwe-line);
	text-align: left;
	vertical-align: top;
}

.cwe-prose th {
	background: var(--cwe-mineral);
}

.cwe-record__header {
	padding-block: 74px 65px;
	background: var(--cwe-navy);
	color: var(--cwe-white);
}

.cwe-record__header-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 210px;
	align-items: end;
	gap: 70px;
}

.cwe-record__header .cwe-status { color: var(--cwe-cyan-soft); }

.cwe-record__eyebrow {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 18px;
}

.cwe-record__header h1 {
	max-width: 1000px;
	margin: 25px 0 0;
	font-family: var(--cwe-font-serif);
	font-size: clamp(3rem, 5.4vw, 6.6rem);
	font-weight: 500;
	line-height: 0.99;
	letter-spacing: -0.06em;
}

.cwe-record__header p {
	max-width: 820px;
	margin: 27px 0 0;
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.7);
}

.cwe-record__facts {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	margin-top: 30px;
}

.cwe-record__facts span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 0.7rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.76);
}

.cwe-record__facts svg {
	width: 16px;
	height: 16px;
	fill: none;
	stroke: var(--cwe-cyan-soft);
	stroke-width: 1.5;
}

.cwe-record__identity {
	padding: 20px;
	border: 1px solid var(--cwe-line-dark);
}

.cwe-record__identity small,
.cwe-record__identity span {
	display: block;
	font-size: 0.62rem;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.47);
}

.cwe-record__identity strong {
	display: block;
	margin: 8px 0;
	font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
	font-size: 1rem;
	letter-spacing: 0.08em;
	color: var(--cwe-cyan-soft);
}

.cwe-record__layout {
	display: grid;
	grid-template-columns: 250px minmax(0, 900px);
	gap: clamp(50px, 8vw, 120px);
	justify-content: center;
	padding-block: 65px 110px;
}

.cwe-record__sidebar {
	align-self: start;
	position: sticky;
	top: 125px;
}

.cwe-record__sidebar nav,
.cwe-record__terms {
	display: flex;
	flex-direction: column;
	padding: 20px 0;
	border-top: 1px solid var(--cwe-line);
}

.cwe-record__sidebar strong {
	margin-bottom: 10px;
	font-size: 0.66rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--cwe-muted);
}

.cwe-record__sidebar a {
	padding: 7px 0;
	font-size: 0.77rem;
	font-weight: 700;
	text-decoration: none;
}

.cwe-record__sidebar a:hover {
	color: var(--cwe-mangrove);
	text-decoration: underline;
}

.cwe-record-section {
	padding: 0 0 55px;
	margin-bottom: 55px;
	border-bottom: 1px solid var(--cwe-line);
	scroll-margin-top: 130px;
}

.cwe-record-section h2 {
	margin: 0 0 25px;
	font-family: var(--cwe-font-serif);
	font-size: clamp(2rem, 3vw, 3.2rem);
	font-weight: 500;
	line-height: 1.1;
	letter-spacing: -0.04em;
}

.cwe-record-section .cwe-prose {
	padding: 0;
}

.cwe-record-section__label {
	display: block;
	margin-bottom: 18px;
	font-size: 0.65rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--cwe-mangrove);
}

.cwe-record__lead {
	margin: 0;
	font-size: clamp(1.3rem, 2vw, 1.7rem);
	line-height: 1.55;
	color: var(--cwe-navy);
}

.cwe-provenance-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	border-top: 1px solid var(--cwe-line);
	border-left: 1px solid var(--cwe-line);
}

.cwe-provenance-grid > div {
	display: flex;
	flex-direction: column;
	min-height: 96px;
	padding: 18px;
	border-right: 1px solid var(--cwe-line);
	border-bottom: 1px solid var(--cwe-line);
}

.cwe-provenance-grid small {
	font-size: 0.62rem;
	font-weight: 800;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: var(--cwe-muted);
}

.cwe-provenance-grid strong {
	margin-top: 7px;
	font-size: 0.82rem;
	line-height: 1.45;
}

.cwe-source-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-top: 18px;
	padding: 17px 18px;
	background: var(--cwe-navy);
	color: var(--cwe-white);
	text-decoration: none;
}

.cwe-source-link span {
	display: flex;
	flex-direction: column;
	font-size: 0.78rem;
	font-weight: 800;
}

.cwe-source-link small {
	margin-top: 3px;
	font-size: 0.64rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.55);
}

.cwe-record-section--limitations {
	padding: 28px;
	background: #f6eee5;
	border: 1px solid rgba(183, 138, 88, 0.32);
}

.cwe-record__correction {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 25px;
	padding: 24px;
	background: var(--cwe-mineral);
}

.cwe-record__correction strong {
	font-family: var(--cwe-font-serif);
	font-size: 1.25rem;
}

.cwe-record__correction p {
	margin: 4px 0 0;
	font-size: 0.77rem;
	color: var(--cwe-muted);
}

.cwe-record__correction a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.75rem;
	font-weight: 800;
	text-decoration: none;
}

.cwe-empty-state,
.cwe-not-found__inner {
	max-width: 780px;
	padding-block: 90px;
	text-align: center;
	margin-inline: auto;
}

.cwe-empty-state > span {
	display: grid;
	place-items: center;
	width: 60px;
	height: 60px;
	margin: 0 auto 22px;
	border: 1px solid var(--cwe-line);
	color: var(--cwe-mangrove);
}

.cwe-empty-state svg {
	width: 25px;
	height: 25px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.4;
}

.cwe-empty-state h2,
.cwe-not-found h1 {
	margin: 0;
	font-family: var(--cwe-font-serif);
	font-size: clamp(2.2rem, 4vw, 4rem);
	font-weight: 500;
	line-height: 1.08;
	letter-spacing: -0.05em;
}

.cwe-empty-state p,
.cwe-not-found p {
	color: var(--cwe-muted);
}

.cwe-empty-state .cwe-search-form,
.cwe-not-found__search {
	max-width: 650px;
	margin: 25px auto;
}

.cwe-not-found__code {
	display: block;
	font-family: var(--cwe-font-serif);
	font-size: clamp(7rem, 18vw, 15rem);
	font-weight: 500;
	line-height: 0.8;
	color: rgba(7, 26, 27, 0.07);
}

@media (max-width: 1240px) {
	:root {
		--cwe-shell: min(1380px, calc(100vw - 48px));
	}

	.cwe-header__inner {
		gap: 20px;
	}

	.cwe-primary__item > a,
	.cwe-primary__item > button,
	.cwe-primary__list > .menu-item > a {
		padding-inline: 9px;
		font-size: 0.79rem;
	}

	.cwe-header__submit {
		display: none;
	}

	.cwe-monitor__body {
		grid-template-columns: 210px minmax(340px, 1fr) 280px;
	}

	.cwe-issues__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.cwe-issue-card {
		min-height: 330px;
	}
}

@media (max-width: 1100px) {
	:root {
		--cwe-header-height: 76px;
	}

	body.admin-bar .cwe-header {
		top: 32px;
	}

	.cwe-header__inner {
		grid-template-columns: auto 1fr auto;
	}

	.cwe-primary {
		justify-self: end;
		order: 3;
	}

	.cwe-nav-toggle {
		display: inline-flex;
		align-items: center;
		gap: 7px;
		min-height: 44px;
		padding: 0 12px;
		border: 1px solid var(--cwe-line);
		background: transparent;
		font-size: 0.78rem;
		font-weight: 800;
		cursor: pointer;
	}

	.cwe-nav-toggle svg {
		width: 20px;
		height: 20px;
		fill: none;
		stroke: currentColor;
		stroke-width: 1.6;
	}

	.cwe-primary__panel {
		position: fixed;
		z-index: 920;
		inset: calc(34px + var(--cwe-header-height)) 0 auto;
		max-height: calc(100dvh - 110px);
		overflow-y: auto;
		padding: 18px 24px 28px;
		background: var(--cwe-paper);
		border-bottom: 1px solid var(--cwe-line);
		box-shadow: var(--cwe-shadow);
		opacity: 0;
		visibility: hidden;
		transform: translateY(-8px);
		transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
	}

	.cwe-primary__panel.is-open {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.cwe-primary__list {
		display: block;
	}

	.cwe-primary__item,
	.cwe-primary__list > .menu-item {
		border-bottom: 1px solid var(--cwe-line);
	}

	.cwe-primary__item > a,
	.cwe-primary__item > button,
	.cwe-primary__list > .menu-item > a {
		justify-content: space-between;
		width: 100%;
		min-height: 54px;
		padding-inline: 4px;
		font-size: 0.9rem;
	}

	.cwe-mega {
		position: static;
		display: none;
		width: 100%;
		padding: 0 0 18px;
		border: 0;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.cwe-has-mega.is-open .cwe-mega {
		display: block;
		transform: none;
	}

	.cwe-mega__intro {
		display: none;
	}

	.cwe-mega__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		padding-top: 5px;
	}

	.cwe-primary__mobile-actions {
		display: block;
		margin-top: 18px;
	}

	.cwe-primary__mobile-actions a {
		display: flex;
		align-items: center;
		justify-content: center;
		min-height: 46px;
		background: var(--cwe-navy);
		color: var(--cwe-white);
		font-size: 0.8rem;
		font-weight: 800;
		text-decoration: none;
	}

	.cwe-header__actions {
		justify-self: end;
	}

	.cwe-search-trigger span {
		display: none;
	}

	.cwe-search-trigger {
		width: 44px;
		justify-content: center;
		padding: 0;
	}

	.cwe-hero__inner {
		grid-template-columns: 1fr 340px;
		min-height: 650px;
		gap: 36px;
	}

	.cwe-planet {
		width: 340px;
	}

	.cwe-monitor__body {
		grid-template-columns: 205px 1fr;
	}

	.cwe-monitor__detail {
		grid-column: 1 / -1;
		border-left: 0;
		border-top: 1px solid var(--cwe-line);
	}

	.cwe-map {
		min-height: 520px;
	}

	.cwe-filter-panel__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.cwe-filter-panel__keyword {
		grid-column: span 3;
	}

	.cwe-priority__grid,
	.cwe-research__grid,
	.cwe-archive-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.cwe-story__layout {
		grid-template-columns: 1fr 1fr;
	}

	.cwe-footer__main {
		grid-template-columns: 1fr;
		gap: 60px;
	}

	.cwe-record__layout {
		grid-template-columns: 220px minmax(0, 1fr);
		gap: 55px;
	}
}

@media (max-width: 820px) {
	:root {
		--cwe-shell: min(100% - 36px, 1380px);
	}

	body.admin-bar .cwe-header {
		top: 46px;
	}

	.cwe-utility p {
		display: none;
	}

	.cwe-utility__inner {
		justify-content: flex-end;
	}

	.cwe-primary__panel {
		inset-block-start: calc(34px + var(--cwe-header-height));
	}

	.cwe-brand__text small {
		display: none;
	}

	.cwe-header__inner {
		gap: 10px;
	}

	.cwe-hero__inner {
		grid-template-columns: 1fr;
		min-height: auto;
		padding-block: 80px 60px;
	}

	.cwe-hero__visual {
		position: absolute;
		right: -150px;
		top: 40px;
		opacity: 0.28;
		min-height: 440px;
	}

	.cwe-hero__copy {
		max-width: 660px;
	}

	.cwe-evidence-strip {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.cwe-evidence-strip > a,
	.cwe-evidence-strip > div {
		min-height: 112px;
		border-bottom: 1px solid var(--cwe-line-dark);
	}

	.cwe-section-heading--split {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.cwe-monitor__body {
		grid-template-columns: 1fr;
	}

	.cwe-monitor__layers {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 6px;
		border-right: 0;
		border-bottom: 1px solid var(--cwe-line);
	}

	.cwe-monitor__layers > span {
		grid-column: 1 / -1;
	}

	.cwe-monitor__layers button {
		min-height: 62px;
	}

	.cwe-map {
		min-height: 480px;
	}

	.cwe-law__columns,
	.cwe-story__layout,
	.cwe-method__layout,
	.cwe-participate__inner,
	.cwe-record__header-grid,
	.cwe-record__layout {
		grid-template-columns: 1fr;
	}

	.cwe-story__visual {
		min-height: 470px;
	}

	.cwe-method__intro,
	.cwe-record__sidebar {
		position: static;
	}

	.cwe-participate__actions {
		flex-direction: row;
		min-width: 0;
	}

	.cwe-footer__nav {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.cwe-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
		padding-block: 22px;
	}

	.cwe-record__identity {
		max-width: 260px;
	}
}

@media (max-width: 620px) {
	:root {
		--cwe-shell: min(100% - 28px, 1380px);
		--cwe-header-height: 70px;
	}

	.cwe-utility {
		display: none;
	}

	body.admin-bar .cwe-header {
		top: 46px;
	}

	.cwe-primary__panel {
		inset-block-start: var(--cwe-header-height);
		padding-inline: 14px;
	}

	.cwe-brand__mark {
		width: 40px;
		height: 40px;
	}

	.cwe-brand__mark svg {
		width: 24px;
		height: 24px;
	}

	.cwe-brand__text strong {
		font-size: 1.25rem;
	}

	.cwe-nav-toggle span {
		display: none;
	}

	.cwe-nav-toggle {
		width: 44px;
		justify-content: center;
		padding: 0;
	}

	.cwe-mega__grid {
		grid-template-columns: 1fr;
	}

	.cwe-search-dialog__surface {
		padding: 22px 16px;
	}

	.cwe-search-form__field {
		grid-template-columns: auto 1fr;
		min-height: 58px;
	}

	.cwe-search-form input {
		height: 56px;
		font-size: 16px;
	}

	.cwe-search-form button {
		grid-column: 1 / -1;
		justify-content: center;
		height: 48px;
		margin: 0;
	}

	.cwe-hero h1 {
		font-size: clamp(3rem, 15vw, 4.8rem);
	}

	.cwe-hero__copy > p {
		font-size: 1rem;
	}

	.cwe-hero__actions,
	.cwe-participate__actions {
		align-items: stretch;
		flex-direction: column;
	}

	.cwe-button {
		width: 100%;
	}

	.cwe-evidence-strip {
		grid-template-columns: 1fr;
	}

	.cwe-evidence-strip > a,
	.cwe-evidence-strip > div {
		min-height: 105px;
		border-right: 0;
	}

	.cwe-section {
		padding-block: 72px;
	}

	.cwe-section-heading {
		margin-bottom: 35px;
	}

	.cwe-section-heading h2,
	.cwe-story__copy h2,
	.cwe-method__intro h2,
	.cwe-participate h2 {
		font-size: clamp(2.3rem, 12vw, 3.7rem);
	}

	.cwe-monitor__toolbar {
		align-items: flex-start;
		flex-direction: column;
	}

	.cwe-monitor__layers {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		padding: 16px 10px;
	}

	.cwe-monitor__layers button {
		font-size: 0.68rem;
	}

	.cwe-map {
		min-height: 400px;
	}

	.cwe-filter-panel {
		padding: 20px 16px;
	}

	.cwe-filter-panel__heading,
	.cwe-filter-panel__actions {
		align-items: flex-start;
		flex-direction: column;
	}

	.cwe-filter-panel__grid {
		grid-template-columns: 1fr;
	}

	.cwe-filter-panel__keyword {
		grid-column: auto;
	}

	.cwe-priority__grid,
	.cwe-research__grid,
	.cwe-archive-grid,
	.cwe-issues__grid {
		grid-template-columns: 1fr;
	}

	.cwe-issue-card {
		min-height: 300px;
	}

	.cwe-law__column {
		padding: 24px 18px;
	}

	.cwe-story__layout {
		width: 100%;
	}

	.cwe-story__visual {
		min-height: 350px;
	}

	.cwe-story__copy {
		padding: 40px 22px;
	}

	.cwe-footer__main {
		padding-block: 65px 50px;
	}

	.cwe-footer__nav {
		grid-template-columns: 1fr;
	}

	.cwe-footer__bottom div {
		flex-wrap: wrap;
	}

	.cwe-page-hero {
		padding-block: 72px;
	}

	.cwe-page-hero h1,
	.cwe-record__header h1,
	.cwe-article__header h1 {
		font-size: clamp(2.75rem, 13vw, 4.6rem);
	}

	.cwe-archive-layout {
		padding-block: 48px 80px;
	}

	.cwe-card {
		min-height: 300px;
		padding: 22px;
	}

	.cwe-card__image {
		margin: -22px -22px 22px;
	}

	.cwe-record__header {
		padding-block: 62px 48px;
	}

	.cwe-record__layout {
		padding-block: 45px 80px;
	}

	.cwe-provenance-grid {
		grid-template-columns: 1fr;
	}

	.cwe-record__correction {
		align-items: flex-start;
		flex-direction: column;
	}

	.cwe-prose {
		overflow-wrap: anywhere;
	}

	.cwe-prose table {
		display: block;
		overflow-x: auto;
		white-space: nowrap;
	}
}

@media (max-width: 380px) {
	.cwe-brand__text strong {
		font-size: 1.08rem;
	}

	.cwe-header__inner {
		gap: 6px;
	}

	.cwe-header__actions,
	.cwe-primary {
		margin-left: -2px;
	}

	.cwe-search-trigger,
	.cwe-nav-toggle {
		width: 40px;
		height: 40px;
		min-height: 40px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

@media print {
	.cwe-utility,
	.cwe-header,
	.cwe-footer,
	.cwe-record__sidebar,
	.cwe-record__correction,
	.cwe-search-dialog,
	.cwe-button,
	.cwe-archive-tools,
	.cwe-filter-panel {
		display: none !important;
	}

	body {
		background: #fff;
		color: #000;
		font-size: 11pt;
	}

	.cwe-shell,
	.cwe-shell--narrow,
	.cwe-record__layout {
		width: 100%;
		max-width: none;
	}

	.cwe-record__header,
	.cwe-page-hero,
	.cwe-article__header {
		padding: 0 0 24px;
		background: #fff !important;
		color: #000;
	}

	.cwe-record__header h1,
	.cwe-page-hero h1,
	.cwe-article__header h1 {
		font-size: 30pt;
	}

	.cwe-record__header p,
	.cwe-page-hero p {
		color: #333;
	}

	.cwe-record__layout {
		display: block;
		padding: 0;
	}

	a {
		color: #000;
		text-decoration: underline;
	}

	.cwe-record-section,
	.cwe-card {
		break-inside: avoid;
	}
}

/* ========================================================================== 
   CW Earth 1.1 — authority, accessibility, live data and 3D Earth
   ========================================================================== */

/* High-contrast institutional text rules. */
.cwe-method__steps p,
.cwe-page-hero p,
.cwe-page-hero__description,
.cwe-record__header p {
	color: rgba(255, 255, 255, 0.86);
}

.cwe-brand--footer .cwe-brand__text small,
.cwe-footer__bottom,
.cwe-record__identity small,
.cwe-record__identity span,
.cwe-source-link small {
	color: rgba(255, 255, 255, 0.76);
}

.cwe-footer__bottom {
	font-size: 0.72rem;
}

.cwe-kicker--warm {
	color: #8c5d2f;
}

/* About and governance menu. */
.cwe-mega--about {
	left: auto;
	right: max(24px, calc((100vw - min(1380px, calc(100vw - 64px))) / 2));
	width: min(820px, calc(100vw - 48px));
	grid-template-columns: 280px minmax(0, 1fr);
	transform: translateY(-8px);
}

.cwe-has-mega--about.is-open .cwe-mega--about {
	transform: translateY(0);
}

.cwe-about-links {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
}

.cwe-about-links a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 86px;
	padding: 15px 17px;
	border: 1px solid var(--cwe-line);
	background: var(--cwe-paper);
	text-decoration: none;
	transition: background 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.cwe-about-links a:hover {
	background: var(--cwe-white);
	border-color: rgba(7, 26, 27, 0.32);
	transform: translateY(-2px);
}

.cwe-about-links strong {
	font-family: var(--cwe-font-serif);
	font-size: 1.02rem;
	font-weight: 600;
	line-height: 1.2;
}

.cwe-about-links span {
	margin-top: 5px;
	color: var(--cwe-muted);
	font-size: 0.7rem;
	font-weight: 650;
	line-height: 1.45;
}

/* Search engine controls and ranked-result presentation. */
.cwe-search-form__filters {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-top: 11px;
}

.cwe-search-form__filters button {
	min-height: 34px;
	padding: 0 11px;
	border: 1px solid rgba(7, 26, 27, 0.22);
	background: rgba(255, 255, 255, 0.88);
	color: var(--cwe-text);
	font-size: 0.68rem;
	font-weight: 800;
	cursor: pointer;
}

.cwe-search-form__filters button:hover,
.cwe-search-form__filters button.is-active,
.cwe-search-form__filters button[aria-pressed="true"] {
	border-color: var(--cwe-navy);
	background: var(--cwe-navy);
	color: var(--cwe-white);
}

.cwe-hero__search .cwe-search-form__filters {
	display: none;
}

.cwe-live-results__summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 11px 17px;
	border-bottom: 1px solid var(--cwe-line);
	background: #eef2ed;
}

.cwe-live-results__summary > strong {
	font-size: 0.7rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.cwe-live-results__summary > div {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 6px 12px;
	font-size: 0.64rem;
	color: var(--cwe-muted);
}

.cwe-live-results__summary b {
	color: var(--cwe-navy);
}

.cwe-live-results__all {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 16px 18px;
	background: var(--cwe-navy);
	color: var(--cwe-white);
	font-size: 0.75rem;
	font-weight: 800;
	text-decoration: none;
}

.cwe-live-results__all:hover {
	background: var(--cwe-ocean-2);
}

.cwe-search-dialog .cwe-search-form__filters {
	margin-top: 14px;
}

/* True WebGL Earth with graceful non-WebGL fallback. */
.cwe-earth-globe {
	isolation: isolate;
	min-height: 610px;
	cursor: grab;
	user-select: none;
}

.cwe-earth-globe.is-dragging {
	cursor: grabbing;
}

.cwe-earth-globe__canvas {
	position: absolute;
	z-index: 2;
	inset: -3% -10% -4%;
}

.cwe-earth-globe__canvas canvas {
	display: block;
	width: 100%;
	height: 100%;
	filter: drop-shadow(0 34px 52px rgba(0, 0, 0, 0.34));
}

.cwe-earth-globe__fallback {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	transition: opacity 420ms ease;
}

.cwe-earth-globe.is-ready .cwe-earth-globe__fallback {
	opacity: 0;
	visibility: hidden;
}

.cwe-earth-globe.is-fallback .cwe-earth-globe__fallback {
	opacity: 1;
	visibility: visible;
}

.cwe-earth-globe__hud,
.cwe-earth-globe__status {
	position: absolute;
	z-index: 5;
	border: 1px solid rgba(216, 241, 239, 0.24);
	background: rgba(4, 17, 18, 0.78);
	backdrop-filter: blur(12px);
	color: var(--cwe-white);
	pointer-events: none;
}

.cwe-earth-globe__hud {
	top: 11%;
	right: 1%;
	display: flex;
	flex-direction: column;
	padding: 11px 13px;
}

.cwe-earth-globe__hud span {
	color: var(--cwe-cyan-soft);
	font-size: 0.59rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.cwe-earth-globe__hud strong {
	margin-top: 4px;
	font-family: var(--cwe-font-serif);
	font-size: 1rem;
	font-weight: 550;
}

.cwe-earth-globe__status {
	left: 50%;
	bottom: 7%;
	display: flex;
	align-items: center;
	gap: 8px;
	max-width: 90%;
	padding: 8px 12px;
	font-size: 0.63rem;
	font-weight: 750;
	letter-spacing: 0.04em;
	transform: translateX(-50%);
}

.cwe-earth-globe__status i {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--cwe-lichen);
	box-shadow: 0 0 0 5px rgba(167, 186, 131, 0.13);
}

.cwe-earth-globe .cwe-hero__coordinate {
	z-index: 5;
}

/* Live national overview. */
.cwe-national-overview {
	overflow: hidden;
}

.cwe-monitor__toolbar {
	min-height: 84px;
}

.cwe-monitor__health {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-width: 250px;
}

.cwe-monitor__health > span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--cwe-mangrove);
	font-size: 0.69rem;
	font-weight: 850;
}

.cwe-monitor__health > span::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: currentColor;
	box-shadow: 0 0 0 4px rgba(47, 102, 80, 0.13);
}

.cwe-monitor__health > span[data-status="loading"]::before {
	animation: cwe-data-pulse 1.2s ease-in-out infinite;
}

.cwe-monitor__health > span[data-status="partial"],
.cwe-monitor__health > span[data-status="unavailable"] {
	color: #8b4a26;
}

.cwe-monitor__health small {
	margin-top: 4px;
	color: var(--cwe-muted);
	font-size: 0.64rem;
}

.cwe-monitor__actions {
	display: flex;
	align-items: center;
	gap: 13px;
}

.cwe-monitor__actions button,
.cwe-monitor__actions a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 38px;
	padding: 0 12px;
	border: 1px solid var(--cwe-line);
	background: transparent;
	color: var(--cwe-navy);
	font-size: 0.7rem;
	font-weight: 850;
	text-decoration: none;
	cursor: pointer;
}

.cwe-monitor__actions a {
	border-color: var(--cwe-navy);
	background: var(--cwe-navy);
	color: var(--cwe-white);
}

.cwe-monitor__actions button:hover {
	background: var(--cwe-mineral);
}

.cwe-monitor__body {
	grid-template-columns: 220px minmax(460px, 1fr) 330px;
	min-height: 720px;
}

.cwe-monitor__layers button.is-active,
.cwe-monitor__layers button[aria-pressed="true"] {
	border-color: rgba(7, 26, 27, 0.28);
	background: var(--cwe-navy);
	color: var(--cwe-white);
}

.cwe-monitor__layers button.is-active i,
.cwe-monitor__layers button[aria-pressed="true"] i {
	background: rgba(255, 255, 255, 0.12);
	color: var(--cwe-cyan-soft);
}

.cwe-monitor__canvas {
	display: grid;
	grid-template-rows: minmax(430px, 1fr) auto;
	min-width: 0;
	background: #e8eee9;
}

.cwe-map--live {
	min-height: 430px;
	background: radial-gradient(circle at 52% 40%, #eaf2ed 0, #d5e2db 55%, #c7d8d2 100%);
}

.cwe-map--live::after {
	pointer-events: none;
}

.cwe-map__loading {
	position: absolute;
	z-index: 2;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 30px;
	text-align: center;
}

.cwe-map__loading > span {
	width: 42px;
	height: 42px;
	border: 3px solid rgba(7, 26, 27, 0.16);
	border-top-color: var(--cwe-mangrove);
	border-radius: 50%;
	animation: cwe-spin 900ms linear infinite;
}

.cwe-map__loading strong {
	margin-top: 15px;
	font-family: var(--cwe-font-serif);
	font-size: 1.25rem;
}

.cwe-map__loading small {
	max-width: 420px;
	margin-top: 7px;
	color: var(--cwe-muted);
	font-size: 0.7rem;
	line-height: 1.55;
}

.cwe-map__loading:has(svg),
.cwe-map__loading.has-map {
	display: block;
	padding: 0;
}

.cwe-bd-map {
	position: absolute;
	z-index: 2;
	inset: 0;
	width: 100%;
	height: 100%;
	overflow: visible;
}

.cwe-bd-map__grid {
	stroke: rgba(7, 26, 27, 0.075);
	stroke-width: 1;
}

.cwe-bd-map__land {
	fill: url(#cwe-bd-gradient);
	stroke: #0a3839;
	stroke-width: 3;
	filter: drop-shadow(0 18px 16px rgba(7, 26, 27, 0.18));
	transition: fill 260ms ease, stroke 260ms ease;
}

[data-active-layer="rivers-water-coast"] .cwe-bd-map__land { fill: #4b8f91; }
[data-active-layer="air-pollution-health"] .cwe-bd-map__land { fill: #8a7965; }
[data-active-layer="forests-biodiversity"] .cwe-bd-map__land { fill: #49765e; }
[data-active-layer="energy-transition"] .cwe-bd-map__land { fill: #9a753f; }
[data-active-layer="cities-disasters-resilience"] .cwe-bd-map__land { fill: #596f78; }

.cwe-bd-map__halo {
	fill: rgba(240, 189, 100, 0.17);
	stroke: rgba(140, 93, 47, 0.5);
	stroke-width: 2;
	transform-origin: center;
	animation: cwe-map-pulse 2.4s ease-in-out infinite;
}

.cwe-bd-map__marker {
	fill: #8c5d2f;
	stroke: #ffffff;
	stroke-width: 4;
}

.cwe-bd-map__label {
	fill: #071a1b;
	font-size: 15px;
	font-weight: 850;
	paint-order: stroke;
	stroke: rgba(250, 249, 245, 0.92);
	stroke-width: 5px;
	stroke-linejoin: round;
}

.cwe-live-metrics {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	border-top: 1px solid var(--cwe-line);
	background: var(--cwe-white);
}

.cwe-live-metric {
	position: relative;
	min-width: 0;
	min-height: 210px;
	padding: 21px 22px;
	border-right: 1px solid var(--cwe-line);
	border-bottom: 1px solid var(--cwe-line);
	background: var(--cwe-white);
	transition: background 160ms ease, box-shadow 160ms ease;
}

.cwe-live-metric:nth-child(2n) {
	border-right: 0;
}

.cwe-live-metric.is-active {
	z-index: 2;
	background: #edf4ef;
	box-shadow: inset 4px 0 0 var(--cwe-mangrove);
}

.cwe-live-metric__meta,
.cwe-live-metric__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	font-size: 0.61rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--cwe-muted);
}

.cwe-live-metric__meta small {
	color: #8b4a26;
	font-size: inherit;
}

.cwe-live-metric__value {
	display: block;
	margin-top: 13px;
	font-family: var(--cwe-font-serif);
	font-size: clamp(1.65rem, 2.4vw, 2.55rem);
	font-weight: 600;
	line-height: 1;
	letter-spacing: -0.045em;
	color: var(--cwe-navy);
}

.cwe-live-metric h4 {
	margin: 10px 0 0;
	font-size: 0.82rem;
	line-height: 1.3;
}

.cwe-live-metric p {
	margin: 8px 0 18px;
	color: var(--cwe-text);
	font-size: 0.72rem;
	line-height: 1.55;
}

.cwe-live-metric__footer {
	margin-top: auto;
	padding-top: 11px;
	border-top: 1px solid var(--cwe-line);
	letter-spacing: 0;
	text-transform: none;
}

.cwe-live-metric--skeleton {
	background: linear-gradient(100deg, #f5f5f0 20%, #e9ece6 40%, #f5f5f0 60%);
	background-size: 200% 100%;
	animation: cwe-skeleton 1.3s linear infinite;
}

.cwe-monitor__detail {
	display: flex;
	flex-direction: column;
	padding: 32px 27px;
	background: #fbfaf6;
}

.cwe-monitor__metric-list {
	margin-top: 22px !important;
}

.cwe-monitor__metric-list li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding-left: 0;
}

.cwe-monitor__metric-list li::before {
	display: none;
}

.cwe-monitor__metric-list span {
	color: var(--cwe-text);
	font-weight: 650;
}

.cwe-monitor__metric-list strong {
	color: var(--cwe-navy);
	font-size: 0.8rem;
	text-align: right;
}

.cwe-monitor__sources {
	margin-top: auto;
	padding-top: 24px;
	border-top: 1px solid var(--cwe-line);
}

.cwe-monitor__sources > strong {
	font-size: 0.65rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.cwe-monitor__sources ul {
	margin: 11px 0 0;
	padding: 0;
	list-style: none;
}

.cwe-monitor__sources li + li {
	margin-top: 10px;
}

.cwe-monitor__sources a,
.cwe-monitor__sources li > span {
	display: block;
	font-size: 0.72rem;
	font-weight: 800;
}

.cwe-monitor__sources li span {
	margin-top: 2px;
	color: var(--cwe-muted);
	font-size: 0.64rem;
	font-weight: 600;
	line-height: 1.45;
}

.cwe-monitor__method {
	display: grid;
	grid-template-columns: 150px 1fr;
	gap: 22px;
	padding: 18px 22px;
	border-top: 1px solid var(--cwe-line);
	background: #eef2ed;
}

.cwe-monitor__method strong {
	font-size: 0.65rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.cwe-monitor__method p {
	margin: 0;
	color: var(--cwe-text);
	font-size: 0.72rem;
	line-height: 1.55;
}

@keyframes cwe-spin { to { transform: rotate(360deg); } }
@keyframes cwe-data-pulse { 50% { opacity: 0.42; transform: scale(0.78); } }
@keyframes cwe-map-pulse { 50% { opacity: 0.45; transform: scale(1.15); } }
@keyframes cwe-skeleton { to { background-position: -200% 0; } }

@media (max-width: 1240px) {
	.cwe-monitor__body {
		grid-template-columns: 190px minmax(420px, 1fr) 300px;
	}

	.cwe-header__inner {
		gap: 22px;
	}

	.cwe-primary__item > a,
	.cwe-primary__item > button,
	.cwe-primary__list > .menu-item > a {
		padding-inline: 8px;
		font-size: 0.8rem;
	}
}

@media (max-width: 1100px) {
	.cwe-mega--about {
		right: auto;
		width: auto;
		grid-template-columns: 1fr;
		transform: none;
	}

	.cwe-about-links {
		grid-template-columns: 1fr;
	}

	.cwe-about-links a {
		min-height: 68px;
	}

	.cwe-earth-globe {
		min-height: 500px;
	}

	.cwe-earth-globe__canvas {
		inset: -5%;
	}

	.cwe-monitor__toolbar {
		align-items: flex-start;
		flex-wrap: wrap;
	}

	.cwe-monitor__health {
		min-width: 0;
		order: 3;
		width: 100%;
		padding-top: 12px;
		border-top: 1px solid var(--cwe-line);
	}

	.cwe-monitor__body {
		grid-template-columns: 190px minmax(0, 1fr);
	}

	.cwe-monitor__detail {
		grid-column: 1 / -1;
		min-height: 360px;
		border-top: 1px solid var(--cwe-line);
		border-left: 0;
	}
}

@media (max-width: 760px) {
	.cwe-search-form__filters {
		flex-wrap: nowrap;
		overflow-x: auto;
		padding-bottom: 5px;
		scrollbar-width: thin;
	}

	.cwe-search-form__filters button {
		flex: 0 0 auto;
	}

	.cwe-live-results__summary {
		align-items: flex-start;
		flex-direction: column;
	}

	.cwe-live-results__summary > div {
		justify-content: flex-start;
	}

	.cwe-earth-globe {
		min-height: 430px;
	}

	.cwe-earth-globe__canvas {
		inset: -8% -20%;
	}

	.cwe-earth-globe__hud {
		top: 4%;
		right: 2%;
	}

	.cwe-earth-globe__status {
		bottom: 2%;
		white-space: nowrap;
	}

	.cwe-monitor__actions {
		width: 100%;
	}

	.cwe-monitor__actions button,
	.cwe-monitor__actions a {
		flex: 1 1 auto;
		justify-content: center;
	}

	.cwe-monitor__body {
		display: flex;
		flex-direction: column;
		min-height: 0;
	}

	.cwe-monitor__layers {
		display: flex;
		overflow-x: auto;
		gap: 7px;
		padding: 13px;
		border-right: 0;
		border-bottom: 1px solid var(--cwe-line);
	}

	.cwe-monitor__layers > span {
		display: none;
	}

	.cwe-monitor__layers button {
		flex: 0 0 auto;
		width: auto;
		min-height: 44px;
		white-space: nowrap;
	}

	.cwe-monitor__canvas {
		grid-template-rows: 390px auto;
	}

	.cwe-map--live {
		min-height: 390px;
	}

	.cwe-live-metrics {
		grid-template-columns: 1fr;
	}

	.cwe-live-metric,
	.cwe-live-metric:nth-child(2n) {
		min-height: 190px;
		border-right: 0;
	}

	.cwe-monitor__detail {
		min-height: 420px;
	}

	.cwe-monitor__method {
		grid-template-columns: 1fr;
		gap: 6px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.cwe-bd-map__halo,
	.cwe-map__loading > span,
	.cwe-live-metric--skeleton,
	.cwe-monitor__health > span[data-status="loading"]::before {
		animation: none;
	}
}

@media print {
	.cwe-earth-globe__canvas,
	.cwe-earth-globe__status,
	.cwe-earth-globe__hud,
	.cwe-monitor__actions {
		display: none !important;
	}

	.cwe-earth-globe__fallback {
		opacity: 1 !important;
		visibility: visible !important;
	}
}

/* ========================================================================== 
   CW Earth 1.1 — advanced search and institutional leadership
   ========================================================================== */

.cwe-search-hero {
	padding-block: clamp(64px, 8vw, 108px) 54px;
}

.cwe-search-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	align-items: end;
	gap: clamp(40px, 7vw, 110px);
}

.cwe-search-hero h1 {
	font-size: clamp(2.9rem, 5.2vw, 6.3rem);
}

.cwe-search-hero__assurance {
	padding: 22px 0 4px 24px;
	border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.cwe-search-hero__assurance > span,
.cwe-search-results-heading span {
	display: block;
	font-size: 0.66rem;
	font-weight: 850;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.cwe-search-hero__assurance > span {
	color: var(--cwe-cyan-soft);
}

.cwe-search-hero__assurance strong {
	display: block;
	margin-top: 9px;
	font-family: var(--cwe-font-serif);
	font-size: 1.25rem;
	font-weight: 550;
	line-height: 1.35;
}

.cwe-search-hero__assurance small {
	display: block;
	margin-top: 11px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.72rem;
	line-height: 1.55;
}

.cwe-search-hero .cwe-page-hero__search {
	max-width: none;
	margin-top: 42px;
}

.cwe-search-hero .cwe-search-form {
	max-width: 1040px;
}

.cwe-search-layout {
	padding-block: 58px 110px;
}

.cwe-search-filters {
	margin-bottom: 42px;
}

.cwe-search-filters .cwe-filter-panel__grid {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.cwe-search-results-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 32px;
	margin-bottom: 26px;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--cwe-line);
}

.cwe-search-results-heading span {
	color: var(--cwe-mangrove);
}

.cwe-search-results-heading strong {
	display: block;
	margin-top: 4px;
	font-family: var(--cwe-font-serif);
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.2;
}

.cwe-search-results-heading small {
	max-width: 560px;
	color: var(--cwe-text);
	font-size: 0.72rem;
	font-weight: 600;
	line-height: 1.55;
	text-align: right;
}

.cwe-search-results-grid .cwe-card {
	box-shadow: 0 10px 30px rgba(7, 26, 27, 0.055);
}

/* Leadership Board archive. */
.cwe-leadership-hero {
	padding-block: clamp(70px, 9vw, 124px);
	background:
		linear-gradient(90deg, rgba(7, 26, 27, 0.98), rgba(7, 26, 27, 0.9)),
		radial-gradient(circle at 82% 25%, rgba(67, 167, 173, 0.25), transparent 34%);
}

.cwe-leadership-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 390px;
	align-items: end;
	gap: clamp(48px, 8vw, 120px);
}

.cwe-leadership-hero h1 {
	font-size: clamp(3.4rem, 6vw, 7.1rem);
}

.cwe-leadership-hero__standard {
	padding: 28px 0 4px 28px;
	border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.cwe-leadership-hero__standard > span,
.cwe-leadership-group__header > span {
	display: block;
	font-size: 0.65rem;
	font-weight: 850;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.cwe-leadership-hero__standard > span {
	color: var(--cwe-cyan-soft);
}

.cwe-leadership-hero__standard strong {
	display: block;
	margin-top: 10px;
	font-family: var(--cwe-font-serif);
	font-size: 1.35rem;
	font-weight: 550;
	line-height: 1.32;
}

.cwe-leadership-hero__standard p {
	margin-top: 14px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.76rem;
	line-height: 1.62;
}

.cwe-leadership-intro {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(480px, 1.2fr);
	align-items: end;
	gap: 70px;
	padding-block: 72px 58px;
	border-bottom: 1px solid var(--cwe-line);
}

.cwe-section-label {
	display: block;
	color: var(--cwe-mangrove);
	font-size: 0.67rem;
	font-weight: 850;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.cwe-leadership-intro h2 {
	max-width: 610px;
	margin: 12px 0 0;
	font-family: var(--cwe-font-serif);
	font-size: clamp(2rem, 3.2vw, 3.9rem);
	font-weight: 550;
	line-height: 1.04;
	letter-spacing: -0.045em;
}

.cwe-leadership-principles {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border: 1px solid var(--cwe-line);
	background: var(--cwe-white);
}

.cwe-leadership-principles div {
	min-height: 138px;
	padding: 22px;
	border-right: 1px solid var(--cwe-line);
}

.cwe-leadership-principles div:last-child {
	border-right: 0;
}

.cwe-leadership-principles strong {
	display: block;
	color: var(--cwe-mangrove);
	font: 600 1.3rem/1 var(--cwe-font-serif);
}

.cwe-leadership-principles span {
	display: block;
	margin-top: 36px;
	color: var(--cwe-navy);
	font-size: 0.75rem;
	font-weight: 800;
	line-height: 1.4;
}

.cwe-leadership-groups {
	padding-block: 66px 112px;
}

.cwe-leadership-group + .cwe-leadership-group {
	margin-top: 88px;
	padding-top: 72px;
	border-top: 1px solid var(--cwe-line);
}

.cwe-leadership-group__header {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: end;
	gap: 5px 30px;
	margin-bottom: 28px;
}

.cwe-leadership-group__header > span {
	grid-column: 1 / -1;
	color: var(--cwe-mangrove);
}

.cwe-leadership-group__header h2 {
	margin: 0;
	font-family: var(--cwe-font-serif);
	font-size: clamp(2.1rem, 3.6vw, 4.4rem);
	font-weight: 550;
	line-height: 1;
	letter-spacing: -0.045em;
}

.cwe-leadership-group__header small {
	padding-bottom: 5px;
	color: var(--cwe-text);
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.cwe-leadership-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.cwe-leader-card {
	display: grid;
	grid-template-rows: 300px 1fr;
	min-width: 0;
	border: 1px solid var(--cwe-line);
	background: var(--cwe-white);
	box-shadow: 0 14px 38px rgba(7, 26, 27, 0.07);
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.cwe-leader-card:hover {
	transform: translateY(-4px);
	border-color: rgba(7, 26, 27, 0.32);
	box-shadow: 0 22px 56px rgba(7, 26, 27, 0.12);
}

.cwe-leader-card__portrait {
	display: grid;
	place-items: center;
	overflow: hidden;
	background:
		radial-gradient(circle at 50% 20%, rgba(67, 167, 173, 0.18), transparent 42%),
		var(--cwe-ocean);
	color: var(--cwe-cyan-soft);
	text-decoration: none;
}

.cwe-leader-card__portrait img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(0.82) contrast(1.04);
	transition: transform 280ms ease, filter 280ms ease;
}

.cwe-leader-card:hover .cwe-leader-card__portrait img {
	transform: scale(1.025);
	filter: saturate(1) contrast(1.04);
}

.cwe-leader-card__portrait > span {
	font: 500 clamp(4rem, 8vw, 7rem)/1 var(--cwe-font-serif);
}

.cwe-leader-card__body {
	display: flex;
	flex-direction: column;
	padding: 24px;
}

.cwe-leader-card__role {
	color: var(--cwe-mangrove);
	font-size: 0.66rem;
	font-weight: 850;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.cwe-leader-card h3 {
	margin: 8px 0 0;
	font-family: var(--cwe-font-serif);
	font-size: 1.7rem;
	font-weight: 600;
	line-height: 1.12;
	letter-spacing: -0.025em;
}

.cwe-leader-card h3 a {
	text-decoration: none;
}

.cwe-leader-card h3 a:hover {
	text-decoration: underline;
}

.cwe-leader-card__affiliation {
	margin: 9px 0 0 !important;
	color: var(--cwe-text) !important;
	font-size: 0.72rem !important;
	font-weight: 750;
}

.cwe-leader-card__body > p:not(.cwe-leader-card__affiliation) {
	margin: 16px 0 24px;
	color: var(--cwe-text);
	font-size: 0.76rem;
	line-height: 1.62;
}

.cwe-leader-card__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	color: var(--cwe-navy);
	font-size: 0.72rem;
	font-weight: 850;
	text-decoration: none;
}

.cwe-leader-card__link:hover {
	text-decoration: underline;
}

.cwe-leader-card__link svg,
.cwe-leader-profile__actions svg,
.cwe-leader-profile__review svg {
	width: 16px;
	height: 16px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.6;
}

.cwe-leadership-empty {
	padding: 70px;
	border: 1px solid var(--cwe-line);
	background: var(--cwe-mineral);
	text-align: center;
}

.cwe-leadership-empty h2 {
	margin: 15px auto 0;
	max-width: 760px;
	font: 550 clamp(2rem, 4vw, 4rem)/1.08 var(--cwe-font-serif);
}

.cwe-leadership-empty p {
	color: var(--cwe-text);
}

/* Individual leadership profile. */
.cwe-leader-profile__header {
	padding-block: 74px;
	background:
		radial-gradient(circle at 20% 20%, rgba(67, 167, 173, 0.2), transparent 28%),
		var(--cwe-navy);
	color: var(--cwe-white);
}

.cwe-leader-profile__header-grid {
	display: grid;
	grid-template-columns: 280px minmax(0, 1fr) 300px;
	align-items: center;
	gap: clamp(34px, 5vw, 72px);
}

.cwe-leader-profile__portrait {
	display: grid;
	place-items: center;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.22);
	background: rgba(255, 255, 255, 0.06);
	color: var(--cwe-cyan-soft);
	box-shadow: 0 26px 68px rgba(0, 0, 0, 0.24);
}

.cwe-leader-profile__portrait img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cwe-leader-profile__portrait > span {
	font: 500 7rem/1 var(--cwe-font-serif);
}

.cwe-leader-profile__identity h1 {
	margin: 16px 0 0;
	font-family: var(--cwe-font-serif);
	font-size: clamp(3rem, 5.4vw, 6.7rem);
	font-weight: 500;
	line-height: 0.96;
	letter-spacing: -0.06em;
}

.cwe-leader-profile__role {
	margin: 22px 0 0;
	color: var(--cwe-white);
	font-size: 1.05rem;
	font-weight: 800;
}

.cwe-leader-profile__affiliation {
	margin: 5px 0 0;
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.82rem;
	font-weight: 650;
}

.cwe-leader-profile__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 28px;
}

.cwe-leader-profile__actions a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 40px;
	padding: 8px 13px;
	border: 1px solid rgba(255, 255, 255, 0.25);
	background: rgba(255, 255, 255, 0.06);
	color: var(--cwe-white);
	font-size: 0.72rem;
	font-weight: 800;
	text-decoration: none;
}

.cwe-leader-profile__actions a:hover {
	background: var(--cwe-white);
	color: var(--cwe-navy);
}

.cwe-leader-profile__facts {
	padding-left: 25px;
	border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.cwe-leader-profile__facts > span {
	display: block;
	margin-bottom: 18px;
	color: var(--cwe-cyan-soft);
	font-size: 0.64rem;
	font-weight: 850;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.cwe-leader-profile__facts div {
	padding-block: 14px;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.cwe-leader-profile__facts small,
.cwe-leader-profile__facts strong {
	display: block;
}

.cwe-leader-profile__facts small {
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.65rem;
}

.cwe-leader-profile__facts strong {
	margin-top: 5px;
	font-size: 0.78rem;
	line-height: 1.4;
}

.cwe-leader-profile__layout {
	display: grid;
	grid-template-columns: 260px minmax(0, 850px);
	justify-content: center;
	gap: clamp(50px, 8vw, 110px);
	padding-block: 76px 118px;
}

.cwe-leader-profile__rail {
	align-self: start;
	position: sticky;
	top: 135px;
	padding: 22px;
	border-top: 3px solid var(--cwe-mangrove);
	background: var(--cwe-mineral);
}

.cwe-leader-profile__rail strong {
	font-family: var(--cwe-font-serif);
	font-size: 1.1rem;
}

.cwe-leader-profile__rail p {
	margin: 10px 0 0;
	color: var(--cwe-text);
	font-size: 0.72rem;
	line-height: 1.65;
}

.cwe-leader-profile__lead {
	margin: 0 0 36px;
	padding-bottom: 34px;
	border-bottom: 1px solid var(--cwe-line);
	font-family: var(--cwe-font-serif);
	font-size: clamp(1.45rem, 2.3vw, 2.1rem);
	font-weight: 500;
	line-height: 1.45;
	color: var(--cwe-navy);
}

.cwe-leader-profile__review {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 26px;
	margin-top: 52px;
	padding: 24px;
	border: 1px solid var(--cwe-line);
	background: var(--cwe-mineral);
}

.cwe-leader-profile__review span,
.cwe-leader-profile__review strong {
	display: block;
}

.cwe-leader-profile__review span {
	color: var(--cwe-mangrove);
	font-size: 0.64rem;
	font-weight: 850;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.cwe-leader-profile__review strong {
	margin-top: 5px;
	font-size: 0.78rem;
}

.cwe-leader-profile__review a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	flex: 0 0 auto;
	font-size: 0.72rem;
	font-weight: 850;
	text-decoration: none;
}

.cwe-leader-profile__review a:hover {
	text-decoration: underline;
}

@media (max-width: 1100px) {
	.cwe-search-hero__grid,
	.cwe-leadership-hero__grid {
		grid-template-columns: 1fr;
		gap: 38px;
	}

	.cwe-search-hero__assurance,
	.cwe-leadership-hero__standard {
		max-width: 720px;
	}

	.cwe-search-filters .cwe-filter-panel__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.cwe-leadership-intro {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.cwe-leadership-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.cwe-leader-profile__header-grid {
		grid-template-columns: 230px minmax(0, 1fr);
	}

	.cwe-leader-profile__facts {
		grid-column: 1 / -1;
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		padding: 24px 0 0;
		border-top: 1px solid rgba(255, 255, 255, 0.22);
		border-left: 0;
	}

	.cwe-leader-profile__facts > span {
		grid-column: 1 / -1;
	}

	.cwe-leader-profile__facts div {
		padding-right: 20px;
	}
}

@media (max-width: 760px) {
	.cwe-search-hero__assurance,
	.cwe-leadership-hero__standard {
		padding-left: 18px;
	}

	.cwe-search-filters .cwe-filter-panel__grid {
		grid-template-columns: 1fr;
	}

	.cwe-search-results-heading {
		align-items: flex-start;
		flex-direction: column;
	}

	.cwe-search-results-heading small {
		text-align: left;
	}

	.cwe-leadership-intro {
		padding-block: 48px 42px;
	}

	.cwe-leadership-principles {
		grid-template-columns: 1fr;
	}

	.cwe-leadership-principles div {
		min-height: 108px;
		border-right: 0;
		border-bottom: 1px solid var(--cwe-line);
	}

	.cwe-leadership-principles div:last-child {
		border-bottom: 0;
	}

	.cwe-leadership-principles span {
		margin-top: 20px;
	}

	.cwe-leadership-grid {
		grid-template-columns: 1fr;
	}

	.cwe-leader-card {
		grid-template-rows: min(82vw, 390px) 1fr;
	}

	.cwe-leadership-group__header {
		grid-template-columns: 1fr;
	}

	.cwe-leadership-group__header small {
		margin-top: 8px;
	}

	.cwe-leader-profile__header-grid {
		grid-template-columns: 1fr;
	}

	.cwe-leader-profile__portrait {
		width: min(300px, 82vw);
	}

	.cwe-leader-profile__facts {
		grid-template-columns: 1fr;
	}

	.cwe-leader-profile__layout {
		grid-template-columns: 1fr;
		gap: 38px;
		padding-block: 50px 82px;
	}

	.cwe-leader-profile__rail {
		position: static;
	}

	.cwe-leader-profile__review {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media print {
	.cwe-leader-card,
	.cwe-leader-profile__portrait {
		box-shadow: none;
	}

	.cwe-leader-profile__rail {
		position: static;
	}
}

.cwe-earth-globe__controls {
	position: absolute;
	z-index: 6;
	right: 7%;
	bottom: 10%;
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 6px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: rgba(4, 17, 18, 0.74);
	backdrop-filter: blur(12px);
}

.cwe-earth-globe__controls button {
	display: grid;
	place-items: center;
	min-width: 34px;
	height: 34px;
	padding: 0 9px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: rgba(255, 255, 255, 0.06);
	color: var(--cwe-white);
	font-size: 0.76rem;
	font-weight: 850;
	cursor: pointer;
}

.cwe-earth-globe__controls button:hover,
.cwe-earth-globe__controls button:focus-visible {
	border-color: var(--cwe-cyan-soft);
	background: var(--cwe-white);
	color: var(--cwe-navy);
}

@media (max-width: 760px) {
	.cwe-earth-globe__controls {
		right: 2%;
		bottom: 9%;
	}

	.cwe-earth-globe__controls button {
		min-width: 32px;
		height: 32px;
		padding-inline: 8px;
	}
}

@media print {
	.cwe-earth-globe__controls {
		display: none !important;
	}
}
