/* === WS Policy. Policy generator. ===========================================
   Ported from the approved Claude Design comp. Every hard-coded hex in that
   comp is mapped to a role token here, so the tool survives the dark mode
   flip that the comp never had to consider.

   Family is isolated: own prefix, own file, own class names. Only brand
   tokens are shared. Nothing here leaks.
   ========================================================================= */

.wspol {
	max-width: 1140px;
	margin-inline: auto;

	/* Selected-option tint. Lime at low opacity reads muddy over white, so
	   light mode gets a mixed hex and dark mode gets the transparency. */
	--wspol-tint: #FBFDF0;

	/* Hairline between section rows. Lighter than --ws-border on purpose:
	   twelve full-weight rules would read as a table. */
	--wspol-hair: #F2F2F4;

	/* Card entry overshoots slightly. The global --ws-ease does not, and the
	   deck needs the extra beat to read as physical rather than as a fade. */
	--wspol-pop: cubic-bezier(0.16, 0.9, 0.28, 1.06);

	/* Fixed card height. Without it the deck jumps between a single input and
	   a five-option list, which undoes the whole effect. */
	--wspol-card-min: 420px;

	/* Was 10px. Corner clipped accent edge into a curve */
	--wspol-radius-card: var(--ws-radius);
}

[data-theme="dark"] .wspol {
	--wspol-tint: rgba(195, 221, 34, 0.12);
	--wspol-hair: var(--ws-border);
}

/* === Head ================================================================ */

.wspol__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 18px;
}

.wspol__stage {
	margin: 0;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ws-muted);
}

/* === Layout ============================================================== */

.wspol__layout {
	display: flex;
	flex-wrap: wrap;
	gap: 36px;
	align-items: flex-start;
}

.wspol__col {
	flex: 1 1 420px;
	min-width: 0;
}

/* === Deck ================================================================ */
/* Two plates behind the live card. They nudge on every move, which is the
   only signal that the stack has depth. */

.wspol__deck { position: relative; }

.wspol__plate {
	position: absolute;
	top: 0;
	height: 100%;
	background: var(--ws-surface);
	border: 1px solid var(--ws-border);
	border-radius: var(--wspol-radius-card);
}
.wspol__plate--a {
	left: 9px; right: 9px;
	transform: scale(0.978) translateY(-8px);
	opacity: 0.75;
}
.wspol__plate--b {
	left: 18px; right: 18px;
	transform: scale(0.955) translateY(-16px);
	opacity: 0.5;
}

.wspol[data-moving="1"] .wspol__plate--a { animation: wspol-plate 380ms var(--ws-ease); }
.wspol[data-moving="1"] .wspol__plate--b { animation: wspol-plate 420ms var(--ws-ease); }

@keyframes wspol-plate {
	0%   { transform: scale(var(--s, 1)) translateY(var(--y, 0)); }
	45%  { transform: scale(var(--s, 1)) translateY(calc(var(--y, 0px) - 9px)); }
	100% { transform: scale(var(--s, 1)) translateY(var(--y, 0)); }
}
.wspol__plate--a { --s: 0.978; --y: -8px; }
.wspol__plate--b { --s: 0.955; --y: -16px; }

/* === Card ================================================================ */

.wspol__card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: var(--wspol-card-min);
	padding: 30px 30px 22px;
	background: var(--ws-surface);
	border: 1px solid var(--ws-border);
	border-radius: var(--wspol-radius-card);
	box-shadow: 0 18px 40px -32px rgba(0, 0, 0, 0.55);
}

/* Direction is legible: forward exits left, next arrives from the right.
   Back mirrors it. Exit is quick, entry settles. */

.wspol__card[data-anim="enter-fwd"]  { animation: wspol-enter-fwd 420ms var(--wspol-pop) both; }
.wspol__card[data-anim="enter-back"] { animation: wspol-enter-back 420ms var(--wspol-pop) both; }
.wspol__card[data-anim="exit-fwd"]   { animation: wspol-exit-fwd 190ms var(--ws-ease) both; }
.wspol__card[data-anim="exit-back"]  { animation: wspol-exit-back 190ms var(--ws-ease) both; }

@keyframes wspol-enter-fwd {
	from { opacity: 0; transform: translate(54px, 30px) rotate(2.6deg) scale(0.95); }
	to   { opacity: 1; transform: none; }
}
@keyframes wspol-enter-back {
	from { opacity: 0; transform: translate(-54px, 30px) rotate(-2.6deg) scale(0.95); }
	to   { opacity: 1; transform: none; }
}
@keyframes wspol-exit-fwd {
	from { opacity: 1; transform: none; }
	to   { opacity: 0; transform: translate(-70px, -12px) rotate(-3.2deg) scale(0.93); }
}
@keyframes wspol-exit-back {
	from { opacity: 1; transform: none; }
	to   { opacity: 0; transform: translate(70px, -12px) rotate(3.2deg) scale(0.93); }
}

/* === Eyebrow ============================================================= */

.wspol__eyebrow {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ws-muted);
}
.wspol__num {
	font-family: var(--ws-code);
	letter-spacing: 0.04em;
	color: var(--ws-heading);
}
.wspol__eyebrow-rule {
	display: inline-block;
	width: 14px;
	height: 1px;
	background: var(--ws-grey);
}

/* === Question ============================================================ */

.wspol__q {
	margin: 16px 0 0;
	font-family: var(--ws-serif);
	font-weight: 600;
	font-size: clamp(1.5rem, 3.2vw, 1.9rem);
	line-height: 1.25;
	letter-spacing: -0.01em;
	color: var(--ws-heading);
}

.wspol__help {
	margin: 10px 0 0;
	max-width: 52ch;
	font-size: 0.95rem;
	line-height: 1.55;
	color: var(--ws-muted);
}

.wspol__body {
	margin-top: 22px;
	flex: 1 1 auto;
}

/* === Input =============================================================== */
/* Weighted bottom border. The field reads as a place to write rather than as
   a box, and it survives the dark flip without a fill change. */

.wspol__input {
	width: 100%;
	box-sizing: border-box;
	padding: 14px;
	font-family: var(--ws-font);
	font-size: 1.05rem;
	color: var(--ws-text);
	background: var(--ws-surface);
	border: 1px solid var(--ws-grey);
	border-bottom: 2px solid var(--ws-heading);
	border-radius: var(--ws-radius);
	transition: border-color 140ms ease;
}
.wspol__input::placeholder { color: var(--ws-grey); opacity: 1; }
.wspol__input:focus { outline: none; }
.wspol__input:focus-visible {
	outline: 2px solid var(--ws-heading);
	outline-offset: 3px;
}

.wspol__hint {
	margin: 10px 0 0;
	font-family: var(--ws-code);
	font-size: 11px;
	color: var(--ws-muted);
}

/* === Options ============================================================= */

.wspol__opts {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.wspol__opt {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	padding: 13px 14px;
	text-align: left;
	font-family: var(--ws-font);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.35;
	color: var(--ws-text);
	background: var(--ws-surface);
	border: 1px solid var(--ws-border);
	border-radius: var(--ws-radius);
	cursor: pointer;
	transition: transform 140ms var(--ws-ease), background 140ms ease, border-color 140ms ease;
}
.wspol__opt:hover {
	transform: translateX(5px);
	border-color: var(--ws-heading);
}
.wspol__opt:focus-visible {
	outline: 2px solid var(--ws-heading);
	outline-offset: 3px;
}
.wspol__opt.is-on {
	background: var(--wspol-tint);
	border-color: var(--ws-heading);
	font-weight: 700;
}

/* Mark shape is the affordance. Round commits and advances, square
   accumulates. Nothing else in the card says which is which. */

.wspol__mark {
	flex: none;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	color: var(--ws-black);
	background: var(--ws-surface);
	border: 1px solid var(--ws-grey);
	transition: background 140ms ease, border-color 140ms ease;
}
.wspol__mark--radio { border-radius: var(--ws-radius-pill); }
.wspol__mark--check { border-radius: var(--ws-radius); }

.wspol__mark svg { opacity: 0; transition: opacity 140ms ease; }

.wspol__opt.is-on .wspol__mark {
	background: var(--ws-accent);
	border-color: var(--ws-heading);
}
.wspol__opt.is-on .wspol__mark svg { opacity: 1; }

/* === Card foot =========================================================== */

.wspol__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	margin-top: 24px;
	padding-top: 18px;
	border-top: 1px solid var(--ws-border);
}

.wspol__foot-right {
	display: flex;
	align-items: center;
	gap: 16px;
}

.wspol__back {
	padding: 10px 2px;
	font-family: var(--ws-font);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--ws-heading);
	background: none;
	border: none;
	cursor: pointer;
}
.wspol__back[disabled] { color: var(--ws-grey); cursor: default; }
.wspol__back:focus-visible { outline: 2px solid var(--ws-heading); outline-offset: 3px; }

.wspol__cta {
	padding: 10px 18px;
	font-family: var(--ws-font);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--ws-black);
	background: var(--ws-accent);
	border: 2px solid var(--ws-accent);
	border-radius: var(--ws-radius);
	cursor: pointer;
	transition: background 140ms ease, color 140ms ease;
}
.wspol__cta:hover { background: var(--ws-white); }
.wspol__cta:focus-visible { outline: 2px solid var(--ws-heading); outline-offset: 3px; }

/* Disabled is dimmed, never removed from the tab order. A visitor who cannot
   see why the button is inert needs to be able to reach it and read it. */
.wspol__cta[aria-disabled="true"] {
	background: var(--ws-surface);
	color: var(--ws-muted);
	border-color: var(--ws-accent);
	cursor: default;
}
.wspol__cta[aria-disabled="true"]:hover { background: var(--ws-surface); }

.wspol__err {
	margin: 12px 0 0;
	font-size: 0.9rem;
	color: var(--ws-error);
}

/* === Aside panel ========================================================= */

.wspol__aside {
	flex: 0 0 300px;
	min-width: 0;
}

.wspol__aside-label {
	margin: 0;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ws-muted);
}

.wspol__counter {
	font-family: var(--ws-code);
	font-size: 13px;
	color: var(--ws-heading);
}
.wspol__counter--aside { margin: 10px 0 18px; }

.wspol__sections {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.wspol__section {
	display: flex;
	align-items: baseline;
	gap: 11px;
	padding: 7px 0;
	border-bottom: 1px solid var(--wspol-hair);
}

.wspol__dot-wrap {
	flex: none;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 10px;
	height: 10px;
	transform: translateY(1px);
}

.wspol__dot {
	width: 6px;
	height: 6px;
	border-radius: var(--ws-radius-pill);
	background: var(--ws-border);
	transition: width 260ms var(--wspol-pop), height 260ms var(--wspol-pop), background 260ms ease;
}
.wspol__section.is-on .wspol__dot {
	width: 10px;
	height: 10px;
	background: var(--ws-accent);
	animation: wspol-dot 320ms var(--wspol-pop);
}

@keyframes wspol-dot {
	0%   { transform: scale(0.4); }
	60%  { transform: scale(1.35); }
	100% { transform: scale(1); }
}

.wspol__section-title {
	flex: 1;
	font-size: 13.5px;
	line-height: 1.45;
	font-weight: 400;
	color: var(--ws-grey);
	transition: color 260ms ease;
}
.wspol__section.is-on .wspol__section-title {
	font-weight: 700;
	color: var(--ws-heading);
}

.wspol__section-note {
	font-family: var(--ws-code);
	font-size: 10px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--ws-slate);
}

.wspol__aside-note {
	margin: 18px 0 0;
	font-size: 12px;
	line-height: 1.6;
	color: var(--ws-muted);
}

/* === Narrow-screen disclosure ============================================ */
/* Hidden at width. The aside is the wide-screen twin of this panel, and the
   section list lives in the aside only, so nothing is duplicated in the DOM. */

.wspol__panel { display: none; }

.wspol__panel-btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	width: 100%;
	padding: 12px 14px;
	text-align: left;
	font-family: var(--ws-font);
	background: none;
	border: none;
	cursor: pointer;
}
.wspol__panel-btn:focus-visible { outline: 2px solid var(--ws-heading); outline-offset: -2px; }

.wspol__panel-left {
	display: flex;
	align-items: center;
	gap: 10px;
}
.wspol__panel-dot {
	display: inline-block;
	width: 9px;
	height: 9px;
	border-radius: var(--ws-radius-pill);
	background: var(--ws-accent);
}
.wspol__panel-label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ws-muted);
}

/* === Result ============================================================== */

.wspol__result { animation: wspol-doc-in 420ms var(--wspol-pop); }

@keyframes wspol-doc-in {
	from { opacity: 0; transform: translateY(14px) scale(0.985); }
	to   { opacity: 1; transform: none; }
}

.wspol__result-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--ws-border);
}

.wspol__result-title {
	margin: 8px 0 0;
	font-family: var(--ws-serif);
	font-weight: 600;
	font-size: clamp(1.5rem, 3.2vw, 2rem);
	line-height: 1.2;
	color: var(--ws-heading);
}

.wspol__result-meta {
	margin: 8px 0 0;
	font-family: var(--ws-code);
	font-size: 12px;
	color: var(--ws-muted);
}

.wspol__tabs {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
	padding: 4px;
	border: 1px solid var(--ws-border);
	border-radius: var(--ws-radius-pill);
}

.wspol__tab {
	padding: 9px 16px;
	font-family: var(--ws-font);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--ws-muted);
	background: none;
	border: none;
	border-radius: var(--ws-radius-pill);
	cursor: pointer;
	transition: background 140ms ease, color 140ms ease;
}
.wspol__tab:hover { color: var(--ws-heading); }
.wspol__tab:focus-visible { outline: 2px solid var(--ws-heading); outline-offset: 2px; }
.wspol__tab.is-on {
	color: var(--ws-black);
	background: var(--ws-accent);
}

/* === Actions ============================================================= */

.wspol__actions {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	padding: 16px 0;
	border-bottom: 1px solid var(--ws-border);
}

.wspol__btn {
	padding: 10px 18px;
	font-family: var(--ws-font);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--ws-text);
	background: var(--ws-surface);
	border: 2px solid var(--ws-accent);
	border-radius: var(--ws-radius);
	cursor: pointer;
	transition: background 140ms ease, color 140ms ease, border-color 140ms ease;
}
.wspol__btn:hover { background: var(--ws-accent); color: var(--ws-black); }
.wspol__btn:focus-visible { outline: 2px solid var(--ws-heading); outline-offset: 3px; }

.wspol__btn--primary {
	color: var(--ws-black);
	background: var(--ws-accent);
}
.wspol__btn--primary:hover { background: var(--ws-surface); color: var(--ws-text); }

.wspol__btn--quiet { border-color: var(--ws-border); }
.wspol__btn--quiet:hover {
	background: var(--ws-surface);
	color: var(--ws-text);
	border-color: var(--ws-heading);
}

.wspol__toast {
	font-family: var(--ws-code);
	font-size: 11px;
	color: var(--ws-slate);
}

/* === Document ============================================================ */

.wspol__output { padding: 28px 0 0; }

.wspol__doc { max-width: 70ch; }

.wspol__doc-sec { margin-bottom: 26px; }

.wspol__doc-label {
	margin: 0 0 8px;
	font-family: var(--ws-font);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ws-muted);
}

.wspol__doc-title {
	margin: 0 0 10px;
	font-family: var(--ws-serif);
	font-weight: 600;
	font-size: 1.3rem;
	line-height: 1.3;
	color: var(--ws-heading);
}

.wspol__doc-p {
	margin: 0 0 12px;
	font-family: var(--ws-serif);
	font-size: 1.02rem;
	line-height: 1.72;
	color: var(--ws-text);
	text-wrap: pretty;
}

/* Code view stays dark in both themes. It is a terminal surface, not a page
   surface, and flipping it would make the tab switch read as a theme change. */
.wspol__code {
	margin: 0;
	padding: 24px;
	max-height: 560px;
	overflow: auto;
	font-family: var(--ws-code);
	font-size: 12.5px;
	line-height: 1.7;
	color: var(--ws-light-grey);
	background: var(--ws-charcoal);
	border-radius: var(--wspol-radius-card);
	white-space: pre-wrap;
	word-break: break-word;
}

.wspol__disclaimer {
	max-width: 70ch;
	margin-top: 28px;
	padding: 4px 0 4px 16px;
	border-left: 3px solid var(--ws-accent);
}
.wspol__disclaimer p {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.6;
	color: var(--ws-text);
}

.wspol__privacy {
	margin: 18px 0 0;
	font-family: var(--ws-code);
	font-size: 11px;
	line-height: 1.7;
	color: var(--ws-muted);
}

/* === Reference =========================================================== */
/* Crawlable. Visible on purpose. This is the copy an answer engine quotes. */

.wspol-reference {
	margin-top: 64px;
	padding-top: 32px;
	border-top: 1px solid var(--ws-border);
}

.wspol-reference__title {
	margin: 0 0 12px;
	font-size: var(--ws-fs-h4);
	font-weight: 900;
	color: var(--ws-heading);
}

.wspol-reference__intro {
	margin: 0 0 32px;
	max-width: 62ch;
	color: var(--ws-muted);
}

.wspol-reference__group { margin-bottom: 40px; }

.wspol-reference__group-title {
	margin: 0 0 16px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ws-muted);
}

.wspol-reference__list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: wspol-ref;
}

.wspol-reference__item {
	counter-increment: wspol-ref;
	padding-left: 34px;
	position: relative;
}
.wspol-reference__item::before {
	content: counter(wspol-ref, decimal-leading-zero);
	position: absolute;
	left: 0;
	top: 1px;
	font-family: var(--ws-code);
	font-size: 12px;
	color: var(--ws-slate);
}

.wspol-reference__name {
	margin: 0 0 6px;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.35;
	color: var(--ws-heading);
}

.wspol-reference__desc,
.wspol-reference__opts {
	margin: 0 0 6px;
	font-size: 0.9rem;
	line-height: 1.55;
	color: var(--ws-muted);
}

.wspol-reference__opts {
	font-family: var(--ws-code);
	font-size: 0.78rem;
}

/* === Narrow ============================================================== */

@media (max-width: 880px) {

	.wspol { --wspol-card-min: 430px; }

	.wspol__layout { gap: 0; }

	/* Panel takes over. Aside keeps the list but loses its own chrome and
	   sits inside the disclosure, so the markup never doubles. */
	.wspol__panel {
		display: block;
		order: 1;
		width: 100%;
		margin-bottom: 18px;
		border: 1px solid var(--ws-border);
		border-radius: var(--ws-radius);
	}

	.wspol__col { order: 2; flex: 1 1 100%; }

	.wspol__aside {
		order: 1;
		flex: 1 1 100%;
		min-width: 0;
		max-width: none;
		margin: -18px 0 18px;
		padding: 0 14px 14px;
		border: 1px solid var(--ws-border);
		border-top: 0;
		border-radius: 0 0 var(--ws-radius) var(--ws-radius);
	}
	.wspol__aside[hidden] { display: none; }

	.wspol__aside-label,
	.wspol__counter--aside { display: none; }

	.wspol__section-title { font-size: 13px; }

	.wspol__card { padding: 24px 20px 18px; }

	.wspol__foot { gap: 12px; }

	.wspol__result-head { align-items: flex-start; }

	.wspol__code { padding: 18px; }
}

@media (max-width: 480px) {
	.wspol__actions .wspol__btn { flex: 1 1 auto; }
	.wspol__tabs { width: 100%; }
	.wspol__tab { flex: 1 1 auto; padding: 9px 10px; }
}

/* === Reduced motion ====================================================== */

@media (prefers-reduced-motion: reduce) {
	.wspol *,
	.wspol *::before,
	.wspol *::after {
		animation-duration: 1ms !important;
		animation-delay: 0ms !important;
		transition-duration: 1ms !important;
	}
	.wspol__opt:hover { transform: none; }
}

/* === Clipboard fallback surface ==========================================
   Only used when the async clipboard API is unavailable or refused. A 1px
   clipped element can defeat execCommand in some browsers, because there is
   nothing selectable to copy from. Real size, pushed offscreen instead. */

.wspol__clip {
	position: fixed;
	top: 0;
	left: -9999px;
	width: 320px;
	height: 120px;
	opacity: 0;
	pointer-events: none;
}

/* === Related generators ==================================================
   Internal linking between siblings. Also the first consumer of the hub
   metadata, so the data is exercised before the hub page exists. */

.wspol-related {
	margin-top: 56px;
	padding-top: 32px;
	border-top: 1px solid var(--ws-border);
}

.wspol-related__title {
	margin: 0 0 20px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ws-muted);
}

.wspol-related__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 16px;
}

.wspol-related__card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 20px;
	overflow: hidden;
	background: var(--ws-surface);
	border: 1px solid var(--ws-border);
	border-radius: var(--wspol-radius-card);
	text-decoration: none;
	transition: transform 0.2s var(--ws-ease);
}
/* Accent edge. Tier 3, whole card is the link */
.wspol-related__card::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background: var(--ws-accent);
	transform: scaleY(0);
	transform-origin: top;
	transition: transform 0.2s var(--ws-ease);
	z-index: 2;
}
@media (hover: hover) {
	.wspol-related__card:hover { transform: translateY(-2px); }
	.wspol-related__card:hover::before { transform: scaleY(1); }
}
.wspol-related__card:focus-visible {
	outline: 2px solid var(--ws-accent);
	outline-offset: 3px;
	transform: translateY(-2px);
}
.wspol-related__card:focus-visible::before { transform: scaleY(1); }

@media (prefers-reduced-motion: reduce) {
	.wspol-related__card,
	.wspol-related__card::before { transition: none; }
	.wspol-related__card:hover,
	.wspol-related__card:focus-visible { transform: none; }
}

.wspol-related__name {
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.3;
	color: var(--ws-heading);
}

.wspol-related__desc {
	flex: 1 1 auto;
	font-size: 0.9rem;
	line-height: 1.55;
	color: var(--ws-muted);
}

/* Lime on the underline only. As text on a light surface it would fail
   contrast, which is the trap this colour sets on every light layout. */
.wspol-related__go {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ws-heading);
	text-decoration: underline;
	text-decoration-color: var(--ws-accent);
	text-decoration-thickness: 2px;
	text-underline-offset: 3px;
}

.wspol-related__hub {
	margin: 20px 0 0;
	font-size: 0.9rem;
}
