/* GenWeather Home — premium dark UX system (no framework deps) */

:root {
	--gwh-bg: #070b16;
	--gwh-bg-elevated: #0b1220;
	--gwh-navy: #0a1628;
	--gwh-midnight: #121c33;
	--gwh-surface: rgba(18, 28, 51, 0.78);
	--gwh-surface-solid: #121c33;
	--gwh-surface-2: #18263f;
	--gwh-text: #eef3fb;
	--gwh-heading: #ffffff;
	--gwh-heading-2: #ffffff;
	--gwh-muted: #93a4bf;
	--gwh-faint: #6d7f9c;
	--gwh-card-bg: var(--gwh-surface);
	--gwh-section-bg: transparent;
	--gwh-accent: #3b9eff;
	--gwh-accent-2: #1d7ae5;
	--gwh-cyan: #22d3ee;
	--gwh-glow: rgba(59, 158, 255, 0.35);
	--gwh-border: rgba(238, 243, 251, 0.1);
	--gwh-border-strong: rgba(59, 158, 255, 0.35);
	--gwh-radius: 16px;
	--gwh-radius-sm: 12px;
	--gwh-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
	--gwh-shadow-soft: 0 8px 28px rgba(0, 0, 0, 0.28);
	--gwh-font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
	--gwh-max: 72rem;
	--gwh-pad: clamp(1rem, 3.2vw, 2.75rem);
	--gwh-section-y: clamp(2rem, 5.2vw, 5.25rem);
	--gwh-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Force brand dark on Home documents (ignore OS light preference). */
body.gwh-document {
	margin: 0;
	display: flex;
	flex-direction: column;
	overflow-x: hidden;
	min-height: 100vh;
	background:
		radial-gradient(1100px 520px at 8% -8%, rgba(59, 158, 255, 0.2), transparent 58%),
		radial-gradient(900px 420px at 92% 0%, rgba(34, 211, 238, 0.1), transparent 52%),
		linear-gradient(180deg, #070b16 0%, #0a1222 48%, #070b16 100%);
	color: var(--gwh-text);
	font-family: var(--gwh-font);
	font-size: 16px;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	padding-top: 4.25rem;
}

body.admin-bar.gwh-document {
	padding-top: calc(4.25rem + 32px);
}

@media screen and (max-width: 782px) {
	body.admin-bar.gwh-document {
		padding-top: calc(4.25rem + 46px);
	}
}

body.admin-bar .gwh-chrome--header {
	top: 32px;
}

@media screen and (max-width: 782px) {
	body.admin-bar .gwh-chrome--header {
		top: 46px;
	}
}

body.gwh-document *,
body.gwh-document *::before,
body.gwh-document *::after {
	box-sizing: border-box;
}

body.gwh-document h1,
body.gwh-document h2,
body.gwh-document h3,
.gwh,
.gwh-hero__title,
.gwh-hero__sub,
.gwh-section__title,
.gwh-search__input,
.gwh-search__btn,
.gwh-search__option,
.gwh-search__status,
.gwh-card__name,
.gwh-card__country,
.gwh-card__temp,
.gwh-card__cond,
.gwh-why__title,
.gwh-why__body,
.gwh-footer-links__title,
.gwh-chips a,
.gwh-link-list a,
.gwh-chrome,
.gwh-chrome__brand,
.gwh-chrome__copy,
.gwh-nav,
.gwh-moment,
.gwh-page,
.gwh-site-footer,
.gwh-results__title,
.gwh-results__sub {
	font-family: var(--gwh-font) !important;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

/* Skip link: invisible until keyboard focus */
.gwh-skip {
	position: absolute;
	left: 0.85rem;
	top: 0.85rem;
	z-index: 1000;
	padding: 0.6rem 0.95rem;
	border-radius: 10px;
	background: linear-gradient(135deg, var(--gwh-accent), var(--gwh-cyan));
	color: #041018;
	font-weight: 700;
	font-size: 0.9rem;
	text-decoration: none;
	box-shadow: var(--gwh-shadow-soft);
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	overflow: hidden;
	white-space: nowrap;
}

.gwh-skip:focus,
.gwh-skip:focus-visible {
	clip: auto;
	clip-path: none;
	height: auto;
	width: auto;
	overflow: visible;
	outline: 2px solid #fff;
	outline-offset: 3px;
}

.gwh-main {
	display: block;
	width: 100%;
	flex: 1 0 auto;
}

.gwh-inner {
	width: min(100% - (var(--gwh-pad) * 2), var(--gwh-max));
	margin-inline: auto;
}

.gwh {
	color: var(--gwh-text);
	background: transparent;
}

/* —— Chrome header / footer —— */
.gwh-chrome {
	position: relative;
	z-index: 20;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.gwh-chrome--header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 200;
	border-bottom: 1px solid transparent;
	background: rgba(7, 11, 22, 0.55);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	overflow: visible;
	transform: translateY(0);
	transition:
		background 0.2s var(--gwh-ease),
		border-color 0.2s var(--gwh-ease),
		box-shadow 0.2s var(--gwh-ease),
		transform 0.28s var(--gwh-ease);
	will-change: transform;
}

.gwh-chrome--header.is-scrolled {
	border-bottom-color: var(--gwh-border);
	background: rgba(7, 11, 22, 0.82);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.28);
}

.gwh-chrome--header.is-nav-hidden:not(.is-open) {
	transform: translateY(-100%);
	pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
	.gwh-chrome--header {
		transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
		will-change: auto;
	}

	.gwh-chrome--header.is-nav-hidden:not(.is-open) {
		transform: none;
		pointer-events: auto;
	}
}

.gwh-chrome--footer {
	margin-top: auto;
	border-top: 1px solid var(--gwh-border);
	background: rgba(7, 11, 22, 0.85);
}

.gwh-chrome__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: clamp(0.75rem, 1.2vw, 1.5rem);
	min-height: 4.15rem;
	padding-block: 0.65rem;
	min-width: 0;
	max-width: 100%;
	overflow: visible;
}

.gwh-chrome__inner--footer {
	min-height: 4.25rem;
	flex-wrap: wrap;
}

.gwh-chrome__brand {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	flex: 0 0 auto;
	max-width: min(14rem, 28vw);
	min-width: 0;
	color: var(--gwh-text) !important;
	text-decoration: none !important;
	font-weight: 700;
	letter-spacing: -0.02em;
	transition: color 0.2s var(--gwh-ease), opacity 0.2s var(--gwh-ease);
}

.gwh-chrome__brand:hover,
.gwh-chrome__brand:focus-visible {
	color: var(--gwh-heading);
}

.gwh-chrome__brand:focus-visible {
	outline: 2px solid var(--gwh-cyan);
	outline-offset: 4px;
	border-radius: 8px;
}

.gwh-chrome__mark {
	display: grid;
	place-items: center;
	color: var(--gwh-accent);
	filter: drop-shadow(0 0 12px rgba(59, 158, 255, 0.35));
}

.gwh-chrome__brand-text {
	font-size: 1.05rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.gwh-chrome__tagline {
	margin: 0;
	color: var(--gwh-muted);
	font-size: 0.82rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.gwh-chrome__copy {
	margin: 0;
	color: var(--gwh-faint);
	font-size: 0.88rem;
}

.gwh-chrome__dot {
	margin-inline: 0.35rem;
	opacity: 0.6;
}

/* —— Sections —— */
.gwh-section {
	padding-block: var(--gwh-section-y);
	animation: gwh-fade-up 0.55s var(--gwh-ease) both;
}

.gwh-section__eyebrow,
.gwh-hero__eyebrow {
	margin: 0 0 0.65rem;
	color: var(--gwh-cyan);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.gwh-section__title {
	margin: 0 0 0.75rem;
	font-size: clamp(1.45rem, 2.4vw, 1.9rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.2;
	color: var(--gwh-heading);
}

.gwh-section__lede {
	margin: 0 0 1.75rem;
	max-width: 42rem;
	color: var(--gwh-muted);
	font-size: 1.05rem;
	line-height: 1.6;
}

.gwh-empty,
.gwh-featured__notice,
.gwh-trending__notice {
	margin: 0 0 1rem;
	color: var(--gwh-muted);
	font-size: 0.95rem;
}

/* —— Hero —— */
.gwh-hero {
	position: relative;
	padding-block: clamp(2.75rem, 7vw, 5.5rem) clamp(2rem, 4vw, 3.25rem);
	overflow: hidden;
}

.gwh-hero::before {
	content: "";
	position: absolute;
	inset: 10% auto auto 50%;
	width: min(720px, 90vw);
	height: 320px;
	transform: translateX(-50%);
	background: radial-gradient(closest-side, rgba(59, 158, 255, 0.22), transparent 70%);
	pointer-events: none;
	z-index: 0;
}

.gwh-hero__inner {
	position: relative;
	z-index: 1;
	width: min(100%, 54rem);
	margin-inline: auto;
	text-align: center;
}

.gwh-hero__title {
	margin: 0 0 1rem;
	font-size: clamp(2rem, 4.6vw, 3.85rem);
	font-weight: 700;
	letter-spacing: -0.045em;
	line-height: 1.08;
	color: var(--gwh-heading);
	text-wrap: balance;
}

.gwh-hero__sub {
	margin: 0 auto 1.85rem;
	max-width: 38rem;
	color: var(--gwh-muted);
	font-size: clamp(1rem, 1.6vw, 1.15rem);
	line-height: 1.65;
}

/* —— Search —— */
.gwh-search {
	position: relative;
	width: 100%;
	text-align: left;
}

.gwh-search__shell {
	position: relative;
}

.gwh-search__controls {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 0.65rem;
	align-items: stretch;
}

.gwh-search__combobox {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 3.35rem;
	padding: 0 0.95rem 0 2.85rem;
	border: 1px solid var(--gwh-border);
	border-radius: 999px;
	background: linear-gradient(180deg, rgba(24, 38, 63, 0.95), rgba(14, 22, 40, 0.92));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.04),
		0 10px 30px rgba(0, 0, 0, 0.28);
	transition: border-color 0.2s var(--gwh-ease), box-shadow 0.2s var(--gwh-ease);
}

.gwh-search__combobox:focus-within {
	border-color: var(--gwh-border-strong);
	box-shadow:
		0 0 0 3px rgba(59, 158, 255, 0.2),
		0 12px 36px rgba(0, 0, 0, 0.35);
}

.gwh-search__icon {
	position: absolute;
	left: 1rem;
	display: grid;
	place-items: center;
	color: var(--gwh-faint);
	pointer-events: none;
}

.gwh-search__input {
	flex: 1;
	width: 100%;
	min-width: 0;
	border: 0;
	background: transparent;
	color: var(--gwh-text);
	font-size: 1rem;
	line-height: 1.4;
	outline: none;
	-webkit-appearance: none;
	appearance: none;
}

.gwh-search__input::placeholder {
	color: var(--gwh-faint);
}

.gwh-search__input::-webkit-search-decoration,
.gwh-search__input::-webkit-search-cancel-button {
	-webkit-appearance: none;
}

.gwh-search__spinner {
	position: absolute;
	right: 1rem;
	width: 1rem;
	height: 1rem;
	border: 2px solid rgba(238, 243, 251, 0.15);
	border-top-color: var(--gwh-cyan);
	border-radius: 50%;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease;
}

.gwh-search.is-loading .gwh-search__spinner {
	opacity: 1;
	animation: gwh-spin 0.7s linear infinite;
}

.gwh-search__btn,
.gwh button,
.gwh-results .gwh-search__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 3.35rem;
	padding: 0 1.35rem;
	border: 0;
	border-radius: 999px;
	background: linear-gradient(135deg, #3b9eff 0%, #1d7ae5 55%, #22d3ee 140%);
	color: #041018;
	font-weight: 700;
	font-size: 0.95rem;
	letter-spacing: -0.01em;
	cursor: pointer;
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.25) inset,
		0 10px 28px rgba(59, 158, 255, 0.28);
	transition:
		transform 0.18s var(--gwh-ease),
		box-shadow 0.18s var(--gwh-ease),
		filter 0.18s var(--gwh-ease);
}

.gwh-search__btn:hover {
	filter: brightness(1.06);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.3) inset,
		0 14px 34px rgba(59, 158, 255, 0.4);
	transform: translateY(-1px);
}

.gwh-search__btn:active {
	transform: translateY(0);
	filter: brightness(0.97);
}

.gwh-search__btn:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 3px;
}

.gwh-search__results {
	position: absolute;
	left: 0;
	right: 0;
	top: calc(100% + 0.55rem);
	z-index: 230;
	margin: 0;
	padding: 0.45rem;
	list-style: none;
	max-height: min(22rem, 55vh);
	overflow: auto;
	scrollbar-width: thin;
	scrollbar-color: rgba(59, 158, 255, 0.45) transparent;
	color-scheme: dark;
	border: 1px solid var(--gwh-border);
	border-radius: var(--gwh-radius);
	background: rgba(10, 16, 30, 0.96);
	box-shadow: var(--gwh-shadow);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	animation: gwh-panel-in 0.18s var(--gwh-ease);
}

.gwh-search__option {
	display: block;
	padding: 0.7rem 0.75rem;
	border-radius: 12px;
	cursor: pointer;
	transition: background 0.15s ease, box-shadow 0.15s ease;
}

.gwh-search__option-row {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 0.7rem;
	align-items: center;
}

.gwh-search__option-mark {
	display: grid;
	place-items: center;
	width: 2rem;
	height: 2rem;
	border-radius: 10px;
	color: var(--gwh-cyan);
	background: rgba(59, 158, 255, 0.12);
	box-shadow: inset 0 0 0 1px rgba(59, 158, 255, 0.18);
}

.gwh-search__option-body {
	display: flex;
	flex-direction: column;
	gap: 0.12rem;
	min-width: 0;
}

.gwh-search__option-cc {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.1rem;
	padding: 0.2rem 0.4rem;
	border-radius: 999px;
	border: 1px solid rgba(59, 158, 255, 0.28);
	background: rgba(59, 158, 255, 0.1);
	color: var(--gwh-cyan);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.04em;
}

.gwh-search__option:hover,
.gwh-search__option.is-active,
.gwh-search__option[aria-selected="true"] {
	background: linear-gradient(90deg, rgba(59, 158, 255, 0.16), rgba(34, 211, 238, 0.08));
	box-shadow: inset 0 0 0 1px rgba(59, 158, 255, 0.22);
}

.gwh-search__option-name {
	font-weight: 600;
	color: var(--gwh-heading);
	font-size: 0.98rem;
}

.gwh-search__option-meta,
.gwh-search__option-country {
	color: var(--gwh-muted);
	font-size: 0.85rem;
}

.gwh-search__status {
	min-height: 1.35rem;
	margin: 0.7rem 0 0;
	color: var(--gwh-muted);
	font-size: 0.88rem;
}

.gwh-search__status.is-error {
	color: #ffb4b4;
}

.gwh-search__status.is-empty {
	color: var(--gwh-faint);
}

.gwh-search__noscript {
	margin: 0.75rem 0 0;
	color: var(--gwh-faint);
	font-size: 0.85rem;
}

/* —— Weather cards —— */
.gwh-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 16.5rem), 1fr));
	gap: clamp(0.85rem, 1.6vw, 1.25rem);
	margin: 0;
	padding: 0;
	list-style: none;
}

.gwh-card {
	margin: 0;
}

.gwh-card__link {
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
	height: 100%;
	padding: 1.1rem 1.15rem 1.15rem;
	border: 1px solid var(--gwh-border);
	border-radius: var(--gwh-radius);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 40%),
		linear-gradient(160deg, rgba(24, 38, 63, 0.95), rgba(12, 20, 36, 0.96));
	box-shadow: var(--gwh-shadow-soft);
	color: inherit;
	text-decoration: none;
	transition:
		transform 0.22s var(--gwh-ease),
		border-color 0.22s var(--gwh-ease),
		box-shadow 0.22s var(--gwh-ease);
}

.gwh-card__link:hover,
.gwh-card__link:focus-visible {
	transform: translateY(-4px);
	border-color: rgba(59, 158, 255, 0.45);
	box-shadow:
		0 0 0 1px rgba(34, 211, 238, 0.12),
		0 18px 40px rgba(0, 0, 0, 0.4),
		0 0 36px rgba(59, 158, 255, 0.18);
	outline: none;
}

.gwh-card__top {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 0.75rem;
	align-items: start;
}

.gwh-card__icon {
	display: grid;
	place-items: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 12px;
	color: var(--gwh-cyan);
	background: rgba(59, 158, 255, 0.1);
	box-shadow: inset 0 0 0 1px rgba(59, 158, 255, 0.18);
}

.gwh-card__identity {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	min-width: 0;
}

.gwh-card__name {
	font-weight: 700;
	font-size: 1.05rem;
	letter-spacing: -0.02em;
	color: var(--gwh-heading);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.gwh-card__country {
	color: var(--gwh-muted);
	font-size: 0.82rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.gwh-card__temp {
	font-size: 1.55rem;
	font-weight: 700;
	letter-spacing: -0.04em;
	line-height: 1;
	color: var(--gwh-heading);
}

.gwh-card__temp--muted {
	color: var(--gwh-faint);
	font-size: 1.25rem;
}

.gwh-card__cond {
	color: var(--gwh-muted);
	font-size: 0.92rem;
	text-transform: capitalize;
}

.gwh-card__meta {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.45rem;
	margin-top: 0.15rem;
	padding-top: 0.75rem;
	border-top: 1px solid var(--gwh-border);
}

.gwh-card__meta-item {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	min-width: 0;
}

.gwh-card__meta-label {
	color: var(--gwh-faint);
	font-size: 0.7rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.gwh-card__meta-value {
	color: var(--gwh-text);
	font-size: 0.88rem;
	font-weight: 600;
}

.gwh-card--fallback .gwh-card__link {
	opacity: 0.88;
}

/* —— Why —— */
.gwh-why__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
	gap: 0.9rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.gwh-why__card {
	position: relative;
	margin: 0;
	border: 1px solid var(--gwh-border);
	border-radius: var(--gwh-radius);
	background: linear-gradient(165deg, rgba(24, 38, 63, 0.8), rgba(10, 16, 30, 0.9));
	box-shadow: var(--gwh-shadow-soft);
	overflow: hidden;
	transition: transform 0.22s var(--gwh-ease), border-color 0.22s var(--gwh-ease), box-shadow 0.22s var(--gwh-ease);
}

.gwh-why__card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--gwh-accent), var(--gwh-cyan));
	opacity: 0.85;
}

.gwh-why__link {
	display: block;
	height: 100%;
	padding: 1.35rem 1.15rem 1.3rem;
	color: inherit;
	text-decoration: none;
}

.gwh-why__card:hover,
.gwh-why__card:focus-within {
	transform: translateY(-4px);
	border-color: rgba(59, 158, 255, 0.45);
	box-shadow:
		0 18px 40px rgba(0, 0, 0, 0.38),
		0 0 32px rgba(59, 158, 255, 0.18);
}

.gwh-why__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	margin-top: 0.95rem;
	color: var(--gwh-cyan);
	font-size: 0.88rem;
	font-weight: 700;
	letter-spacing: -0.01em;
}

.gwh-why__arrow {
	display: inline-flex;
	transform: translateX(0);
	transition: transform 0.2s var(--gwh-ease);
}

.gwh-why__card:hover .gwh-why__arrow,
.gwh-why__card:focus-within .gwh-why__arrow {
	transform: translateX(4px);
}

.gwh-why__card:active {
	transform: translateY(-1px);
}

.gwh-why__title {
	margin: 0 0 0.55rem;
	font-size: 1.05rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--gwh-heading);
}

.gwh-why__body {
	margin: 0;
	color: var(--gwh-muted);
	font-size: 0.94rem;
	line-height: 1.55;
}

/* —— Popular chips —— */
.gwh-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.gwh-chips a {
	display: inline-flex;
	align-items: center;
	padding: 0.55rem 0.95rem;
	border: 1px solid var(--gwh-border);
	border-radius: 999px;
	background: rgba(18, 28, 51, 0.7);
	color: var(--gwh-text);
	text-decoration: none;
	font-size: 0.9rem;
	transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.gwh-chips a:hover,
.gwh-chips a:focus-visible {
	border-color: rgba(59, 158, 255, 0.45);
	background: rgba(59, 158, 255, 0.12);
	transform: translateY(-1px);
	outline: none;
}

/* —— Footer link columns —— */
.gwh-footer-links {
	padding-block: clamp(1.75rem, 4vw, 3rem);
}

.gwh-footer-links__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
}

.gwh-footer-links__title {
	margin: 0 0 0.85rem;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--gwh-cyan);
}

.gwh-link-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.gwh-link-list li + li {
	margin-top: 0.45rem;
}

.gwh-link-list a {
	color: var(--gwh-muted);
	text-decoration: none;
	font-size: 0.95rem;
	transition: color 0.15s ease;
}

.gwh-link-list a:hover,
.gwh-link-list a:focus-visible {
	color: var(--gwh-heading);
}

/* —— Search results hub —— */
.gwh-results {
	padding-block: clamp(2rem, 5vw, 3.5rem) clamp(2.5rem, 6vw, 4.5rem);
	min-height: 55vh;
}

.gwh-results__header {
	margin-bottom: 1.5rem;
	max-width: 40rem;
}

.gwh-results__title {
	margin: 0 0 0.55rem;
	font-size: clamp(1.85rem, 3.5vw, 2.5rem);
	font-weight: 700;
	letter-spacing: -0.04em;
	line-height: 1.1;
	color: var(--gwh-heading);
}

.gwh-results__sub {
	margin: 0;
	color: var(--gwh-muted);
	font-size: 1.05rem;
}

.gwh-search--results {
	margin-bottom: 1.75rem;
	max-width: 720px;
}

.gwh-results__count {
	margin: 0 0 1rem;
	color: var(--gwh-muted);
	font-size: 0.92rem;
}

.gwh-results__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.85rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.gwh-results__link {
	display: grid;
	grid-template-columns: 1fr auto;
	grid-template-areas:
		"name cta"
		"meta cta";
	gap: 0.25rem 1rem;
	align-items: center;
	padding: 1.05rem 1.15rem;
	border: 1px solid var(--gwh-border);
	border-radius: var(--gwh-radius);
	background: linear-gradient(160deg, rgba(24, 38, 63, 0.92), rgba(10, 16, 30, 0.95));
	box-shadow: var(--gwh-shadow-soft);
	color: inherit;
	text-decoration: none;
	transition: transform 0.2s var(--gwh-ease), border-color 0.2s var(--gwh-ease), box-shadow 0.2s var(--gwh-ease);
}

.gwh-results__link:hover,
.gwh-results__link:focus-visible {
	transform: translateY(-3px);
	border-color: rgba(59, 158, 255, 0.4);
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35), 0 0 28px rgba(59, 158, 255, 0.15);
	outline: none;
}

.gwh-results__name {
	grid-area: name;
	font-weight: 700;
	font-size: 1.05rem;
	color: var(--gwh-heading);
}

.gwh-results__meta {
	grid-area: meta;
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem 0.65rem;
	color: var(--gwh-muted);
	font-size: 0.88rem;
}

.gwh-results__cta {
	grid-area: cta;
	color: var(--gwh-cyan);
	font-size: 0.82rem;
	font-weight: 600;
	white-space: nowrap;
}

.gwh-results__empty {
	padding: 1.5rem 1.35rem;
	border: 1px dashed rgba(147, 164, 191, 0.35);
	border-radius: var(--gwh-radius);
	background: rgba(18, 28, 51, 0.45);
	max-width: 36rem;
}

.gwh-results__empty--error {
	border-color: rgba(255, 150, 150, 0.35);
}

.gwh-results__empty-title {
	margin: 0 0 0.4rem;
	font-weight: 700;
	color: var(--gwh-heading);
}

.gwh-results__empty-body {
	margin: 0;
	color: var(--gwh-muted);
}

/* —— Motion —— */
@keyframes gwh-fade-up {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes gwh-panel-in {
	from {
		opacity: 0;
		transform: translateY(-4px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes gwh-spin {
	to {
		transform: rotate(360deg);
	}
}

.gwh-hero { animation-delay: 0.02s; }
.gwh-featured { animation-delay: 0.06s; }
.gwh-trending { animation-delay: 0.1s; }
.gwh-popular { animation-delay: 0.12s; }
.gwh-why { animation-delay: 0.14s; }
.gwh-footer-links { animation-delay: 0.16s; }

@media (prefers-reduced-motion: reduce) {
	.gwh-section,
	.gwh-search__results,
	.gwh-card__link,
	.gwh-why__card,
	.gwh-results__link,
	.gwh-search__btn,
	.gwh-chips a,
	.gwh-sky .gwh-sky__rays,
	.gwh-sky .gwh-sky__cloud,
	.gwh-sky .gwh-sky__drop,
	.gwh-sky .gwh-sky__flake,
	.gwh-sky .gwh-sky__bolt,
	.gwh-sky .gwh-sky__flash,
	.gwh-sky .gwh-sky__haze-line,
	.gwh-sky .gwh-sky__gust,
	.gwh-sky .gwh-sky__core {
		animation: none !important;
		transition: none !important;
	}

	.gwh-search.is-loading .gwh-search__spinner {
		animation: none;
	}

	.gwh-card__link:hover,
	.gwh-results__link:hover,
	.gwh-search__btn:hover,
	.gwh-why__card:hover {
		transform: none;
	}
}

/* —— Responsive —— */
@media (max-width: 1024px) {
	.gwh-cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.gwh-why__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.gwh-site-footer__inner {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.gwh-search__controls {
		grid-template-columns: 1fr;
	}

	.gwh-search__btn {
		width: 100%;
	}

	.gwh-footer-links__grid,
	.gwh-page__sitemap {
		grid-template-columns: 1fr;
		gap: 1.25rem;
	}

	.gwh-results__grid {
		grid-template-columns: 1fr;
	}

	.gwh-card__meta {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.gwh-hero__inner,
	.gwh-search--page {
		width: 100%;
	}
}

@media (max-width: 480px) {
	:root {
		--gwh-pad: 1rem;
	}

	.gwh-cards,
	.gwh-why__grid {
		grid-template-columns: 1fr;
	}

	.gwh-hero__title {
		font-size: clamp(1.7rem, 8.5vw, 2.2rem);
	}

	.gwh-card__meta {
		grid-template-columns: 1fr;
	}

	.gwh-results__link {
		grid-template-columns: 1fr;
		grid-template-areas:
			"name"
			"meta"
			"cta";
	}

	.gwh-chrome__brand-text {
		font-size: 0.98rem;
	}
}

@media (max-width: 414px) {
	.gwh-chrome__inner {
		min-height: 3.85rem;
	}
}

@media (max-width: 390px) {
	:root {
		--gwh-pad: 0.95rem;
	}

	.gwh-chrome__inner {
		min-height: 3.75rem;
		gap: 0.55rem;
	}

	.gwh-search__combobox {
		min-height: 3.2rem;
	}

	.gwh-site-footer__inner {
		gap: 1.5rem;
	}
}

@media (max-width: 375px) {
	.gwh-search__combobox {
		min-height: 3.15rem;
	}
}

@media (max-width: 360px) {
	.gwh-search__combobox {
		padding-left: 2.55rem;
		min-height: 3.1rem;
	}
}

@media (min-width: 768px) {
	:root {
		--gwh-max: 92vw;
	}
}

@media (min-width: 1024px) {
	:root {
		--gwh-max: 60rem;
	}
}

@media (min-width: 1280px) {
	:root {
		--gwh-max: 76rem;
	}
}

@media (min-width: 1440px) {
	:root {
		--gwh-max: 88rem;
		--gwh-section-y: clamp(2.5rem, 4.2vw, 5rem);
	}
}

@media (min-width: 1600px) {
	:root {
		--gwh-max: 98rem;
	}

	.gwh-cards {
		gap: 1.15rem;
	}

	.gwh-why__grid {
		gap: 1.1rem;
	}
}

@media (min-width: 1920px) {
	:root {
		--gwh-max: 112rem;
		--gwh-section-y: clamp(2.85rem, 4vw, 5.5rem);
	}

	.gwh-hero__inner {
		width: min(100%, 66rem);
	}

	.gwh-cards {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (min-width: 2560px) {
	:root {
		--gwh-max: 128rem;
	}

	.gwh-hero__inner {
		width: min(100%, 72rem);
	}

	.gwh-hero__title {
		font-size: 4.25rem;
	}
}

/* —— Nav —— */
.gwh-nav {
	display: flex;
	align-items: center;
	min-width: 0;
	flex: 1 1 auto;
	justify-content: center;
	overflow: visible;
}

.gwh-nav__list {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	gap: clamp(0.2rem, 0.55vw, 0.55rem);
	margin: 0;
	padding: 0;
	list-style: none;
	max-width: 100%;
}

.gwh-nav__item {
	flex: 0 0 auto;
}

.gwh-nav__item--home .gwh-nav__link {
	font-weight: 700;
}

.gwh-nav__link {
	display: inline-flex;
	align-items: center;
	padding: 0.45rem clamp(0.45rem, 0.7vw, 0.75rem);
	border: 0;
	border-radius: 9px;
	background: transparent;
	color: var(--gwh-muted) !important;
	font: inherit;
	font-size: clamp(0.8rem, 0.72rem + 0.18vw, 0.92rem);
	font-weight: 600;
	letter-spacing: 0.01em;
	line-height: 1.2;
	text-transform: none;
	white-space: nowrap;
	text-decoration: none !important;
	cursor: pointer;
	transition: color 0.15s ease, background 0.15s ease;
}

.gwh-nav__link:hover,
.gwh-nav__link:focus-visible,
.gwh-nav__item.is-current .gwh-nav__link {
	color: var(--gwh-heading) !important;
	background: rgba(59, 158, 255, 0.1);
}

.gwh-nav__item.is-current .gwh-nav__link {
	box-shadow: inset 0 -2px 0 var(--gwh-cyan);
}

.gwh-nav__item--more {
	position: relative;
}

.gwh-nav__more-btn::after {
	content: "";
	display: inline-block;
	width: 0.35rem;
	height: 0.35rem;
	margin-left: 0.35rem;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: translateY(-0.1rem) rotate(45deg);
	opacity: 0.75;
}

.gwh-nav__dropdown {
	position: absolute;
	top: calc(100% + 0.5rem);
	right: 0;
	z-index: 220;
	min-width: 13.5rem;
	margin: 0;
	padding: 0.5rem;
	list-style: none;
	border: 1px solid var(--gwh-border);
	border-radius: 12px;
	background: rgba(10, 16, 30, 0.96);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	box-shadow: var(--gwh-shadow);
}

.gwh-nav__dropdown a {
	display: block;
	padding: 0.65rem 0.8rem;
	border-radius: 8px;
	color: var(--gwh-text) !important;
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 0.01em;
	text-transform: none;
	white-space: nowrap;
}

.gwh-nav__dropdown a:hover,
.gwh-nav__dropdown a:focus-visible,
.gwh-nav__dropdown a[aria-current="page"] {
	background: rgba(59, 158, 255, 0.12);
	color: var(--gwh-heading) !important;
}

.gwh-chrome__actions {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	flex: 0 0 auto;
}

.gwh-nav__search {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.4rem;
	height: 2.4rem;
	border-radius: 999px;
	border: 1px solid var(--gwh-border);
	color: var(--gwh-text) !important;
	background: rgba(18, 28, 51, 0.7);
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.gwh-nav__search:hover,
.gwh-nav__search:focus-visible {
	border-color: rgba(59, 158, 255, 0.45);
	box-shadow: 0 0 0 3px rgba(59, 158, 255, 0.16);
}

.gwh-nav__toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border: 1px solid var(--gwh-border);
	border-radius: 10px;
	background: rgba(18, 28, 51, 0.7);
	color: var(--gwh-heading);
	cursor: pointer;
}

/* Must follow base .gwh-nav / .gwh-nav__toggle so mobile overrides win */
@media (max-width: 1180px) {
	.gwh-nav {
		display: none;
	}

	.gwh-nav__toggle {
		display: inline-flex;
	}
}

.gwh-nav__toggle-bars,
.gwh-nav__toggle-bars::before,
.gwh-nav__toggle-bars::after {
	display: block;
	width: 1rem;
	height: 1.5px;
	background: currentColor;
	position: relative;
}

.gwh-nav__toggle-bars::before,
.gwh-nav__toggle-bars::after {
	content: "";
	position: absolute;
	left: 0;
}

.gwh-nav__toggle-bars::before { top: -5px; }
.gwh-nav__toggle-bars::after { top: 5px; }

.gwh-nav__drawer {
	border-top: 1px solid var(--gwh-border);
	background: rgba(7, 11, 22, 0.96);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	padding: 0.5rem var(--gwh-pad) 1.1rem;
	max-height: min(70vh, 28rem);
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.gwh-nav__drawer[hidden] {
	display: none;
}

.gwh-nav__drawer-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.gwh-nav__drawer-list a {
	display: flex;
	align-items: center;
	min-height: 2.75rem;
	padding: 0.85rem 0.35rem;
	border-bottom: 1px solid rgba(238, 243, 251, 0.06);
	color: var(--gwh-text) !important;
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: 0.01em;
	text-transform: none;
}

.gwh-nav__drawer-list a[aria-current="page"] {
	color: var(--gwh-cyan) !important;
}

.gwh-chrome--header.is-open .gwh-nav__drawer {
	display: block;
}

/* Desktop: keep the full primary bar readable from 1280px up */
@media (min-width: 1280px) {
	.gwh-nav__list {
		gap: 0.35rem;
	}

	.gwh-nav__link {
		padding: 0.5rem 0.7rem;
		font-size: 0.88rem;
	}
}

@media (min-width: 1440px) {
	.gwh-nav__list {
		gap: 0.45rem;
	}

	.gwh-nav__link {
		padding: 0.5rem 0.8rem;
		font-size: 0.9rem;
	}
}

@media (min-width: 1920px) {
	.gwh-nav__link {
		padding: 0.55rem 0.9rem;
		font-size: 0.94rem;
	}
}

/* —— Moments —— */
.gwh-hero__greeting {
	margin: 0 0 0.55rem;
	color: var(--gwh-cyan);
	font-size: clamp(1rem, 2.4vw, 1.2rem);
	font-weight: 700;
	letter-spacing: -0.01em;
}

.gwh-hero__greeting[hidden],
.gwh-hero__weather-in[hidden],
.gwh-personalize[hidden],
.gwh-travel-rec[hidden] {
	display: none;
}

.gwh-hero__weather-in {
	margin: 0.35rem 0 0.85rem;
	color: var(--gwh-text);
	font-size: 1.02rem;
	font-weight: 650;
}

.gwh-personalize {
	margin: 0 auto 1.25rem;
	padding: 0.85rem 1rem;
	max-width: 40rem;
	border: 1px solid rgba(59, 158, 255, 0.28);
	border-radius: 14px;
	background: rgba(59, 158, 255, 0.08);
	text-align: left;
}

.gwh-personalize__text {
	margin: 0 0 0.55rem;
	color: var(--gwh-text);
	font-size: 0.9rem;
	line-height: 1.45;
}

.gwh-personalize__btn {
	appearance: none;
	border: 1px solid rgba(59, 158, 255, 0.45);
	border-radius: 999px;
	padding: 0.45rem 0.9rem;
	background: rgba(18, 28, 51, 0.65);
	color: var(--gwh-heading);
	font: inherit;
	font-size: 0.86rem;
	font-weight: 650;
	cursor: pointer;
}

.gwh-personalize__btn:hover,
.gwh-personalize__btn:focus-visible {
	border-color: var(--gwh-cyan);
	box-shadow: 0 0 0 3px rgba(59, 158, 255, 0.16);
}

.gwh-personalize__privacy {
	margin: 0.55rem 0 0;
	color: var(--gwh-faint);
	font-size: 0.78rem;
}

.gwh-travel-rec {
	margin-top: 1.25rem;
}

.gwh-chips--travel a {
	border-color: rgba(34, 211, 238, 0.28);
}

.gwh-moment {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	margin: 0 auto 1.35rem;
	padding: 0.4rem 0.85rem;
	border: 1px solid rgba(59, 158, 255, 0.22);
	border-radius: 999px;
	background: rgba(59, 158, 255, 0.08);
	color: var(--gwh-text);
	font-size: 0.92rem;
	line-height: 1.4;
	opacity: 0;
	transform: translateY(4px);
	transition: opacity 0.35s var(--gwh-ease), transform 0.35s var(--gwh-ease);
}

.gwh-moment.is-on {
	opacity: 1;
	transform: translateY(0);
}

.gwh-moment[hidden] {
	display: none;
}

.gwh-moment__mark {
	width: 0.45rem;
	height: 0.45rem;
	border-radius: 50%;
	background: var(--gwh-cyan);
	box-shadow: 0 0 10px var(--gwh-cyan);
	flex: 0 0 auto;
}

/* —— Sky animations (visible cards only) —— */
.gwh-card.is-live .gwh-sky--sun .gwh-sky__rays {
	transform-origin: 18px 18px;
	animation: gwh-spin 16s linear infinite;
}

.gwh-card.is-live .gwh-sky--sun .gwh-sky__core {
	animation: gwh-glow 2.8s ease-in-out infinite;
}

.gwh-card.is-live .gwh-sky--cloud .gwh-sky__cloud,
.gwh-card.is-live .gwh-sky--rain .gwh-sky__cloud,
.gwh-card.is-live .gwh-sky--storm .gwh-sky__cloud,
.gwh-card.is-live .gwh-sky--snow .gwh-sky__cloud {
	animation: gwh-drift 7s ease-in-out infinite;
}

.gwh-card.is-live .gwh-sky--rain .gwh-sky__drop:nth-child(1) { animation: gwh-fall 1.1s linear infinite; }
.gwh-card.is-live .gwh-sky--rain .gwh-sky__drop:nth-child(2) { animation: gwh-fall 1.25s linear infinite 0.15s; }
.gwh-card.is-live .gwh-sky--rain .gwh-sky__drop:nth-child(3) { animation: gwh-fall 1s linear infinite 0.3s; }

.gwh-card.is-live .gwh-sky--snow .gwh-sky__flake { animation: gwh-flake 2.4s ease-in-out infinite; }
.gwh-card.is-live .gwh-sky--snow .gwh-sky__flake:nth-child(2) { animation-delay: 0.3s; }
.gwh-card.is-live .gwh-sky--snow .gwh-sky__flake:nth-child(3) { animation-delay: 0.6s; }

.gwh-card.is-live .gwh-sky--storm .gwh-sky__flash {
	animation: gwh-flash 4.8s ease-in-out infinite;
}

.gwh-card.is-live .gwh-sky--fog .gwh-sky__haze-line {
	animation: gwh-haze 5s ease-in-out infinite;
}

.gwh-card.is-live .gwh-sky--fog .gwh-sky__haze-line:nth-child(2) { animation-delay: 0.4s; }
.gwh-card.is-live .gwh-sky--fog .gwh-sky__haze-line:nth-child(3) { animation-delay: 0.8s; }

.gwh-card.is-live .gwh-sky--wind .gwh-sky__gust {
	animation: gwh-gust 1.8s ease-in-out infinite;
}

.gwh-card.is-live .gwh-sky--wind .gwh-sky__gust:nth-child(2) { animation-delay: 0.2s; }
.gwh-card.is-live .gwh-sky--wind .gwh-sky__gust:nth-child(3) { animation-delay: 0.4s; }

@keyframes gwh-glow {
	0%, 100% { filter: drop-shadow(0 0 0 rgba(34, 211, 238, 0)); }
	50% { filter: drop-shadow(0 0 6px rgba(34, 211, 238, 0.85)); }
}

@keyframes gwh-drift {
	0%, 100% { transform: translateX(0); }
	50% { transform: translateX(2px); }
}

@keyframes gwh-fall {
	0% { transform: translateY(-2px); opacity: 0; }
	20% { opacity: 1; }
	100% { transform: translateY(5px); opacity: 0; }
}

@keyframes gwh-flake {
	0%, 100% { transform: translate(0, 0); opacity: 0.35; }
	50% { transform: translate(1px, 3px); opacity: 1; }
}

@keyframes gwh-flash {
	0%, 88%, 100% { opacity: 0; }
	90% { opacity: 0.28; }
	92% { opacity: 0; }
	94% { opacity: 0.18; }
}

@keyframes gwh-haze {
	0%, 100% { transform: translateX(0); opacity: 0.55; }
	50% { transform: translateX(3px); opacity: 1; }
}

@keyframes gwh-gust {
	0%, 100% { transform: translateX(0); opacity: 0.45; }
	50% { transform: translateX(4px); opacity: 1; }
}

/* —— Landing pages —— */
.gwh-page {
	padding-block: clamp(2rem, 5vw, 4rem) clamp(2.5rem, 6vw, 5rem);
}

.gwh-page__inner {
	width: min(100%, 48rem);
}

.gwh-page__inner--legal {
	width: min(100%, 54rem);
}

.gwh-page--legal .gwh-page__lede {
	margin-bottom: 1.25rem;
}

.gwh-page__title {
	margin: 0 0 0.75rem;
	font-size: clamp(1.9rem, 3.4vw, 2.75rem);
	font-weight: 700;
	letter-spacing: -0.04em;
	line-height: 1.12;
	color: var(--gwh-heading);
}

.gwh-page__lede {
	margin: 0 0 1.75rem;
	color: var(--gwh-muted);
	font-size: 1.08rem;
	line-height: 1.65;
}

.gwh-page__heading {
	margin: 0 0 0.5rem;
	font-size: 1.15rem;
	color: var(--gwh-heading);
}

.gwh-page__copy {
	margin: 0 0 1.35rem;
	color: var(--gwh-muted);
}

/* —— Legal long-form —— */
.gwh-legal__updated {
	margin: 0 0 1rem;
	color: var(--gwh-cyan);
	font-size: 0.86rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.gwh-legal__intro {
	margin: 0 0 1.5rem;
	color: var(--gwh-text);
	font-size: 1.05rem;
	line-height: 1.7;
}

.gwh-legal__toc {
	margin: 0 0 2rem;
	padding: 1.1rem 1.2rem 1.2rem;
	border: 1px solid var(--gwh-border);
	border-radius: var(--gwh-radius);
	background: rgba(18, 28, 51, 0.55);
}

.gwh-legal__toc-title {
	margin: 0 0 0.75rem;
	color: var(--gwh-heading);
	font-size: 0.95rem;
	font-weight: 750;
}

.gwh-legal__toc-list {
	margin: 0;
	padding-left: 1.2rem;
	color: var(--gwh-muted);
}

.gwh-legal__toc-list li {
	margin: 0.35rem 0;
	line-height: 1.45;
}

.gwh-legal__toc-list a {
	color: var(--gwh-text) !important;
	text-decoration: none !important;
	border-bottom: 1px solid rgba(94, 177, 255, 0.35);
}

.gwh-legal__toc-list a:hover,
.gwh-legal__toc-list a:focus-visible {
	color: var(--gwh-heading) !important;
	border-bottom-color: var(--gwh-cyan);
}

.gwh-legal__section {
	margin: 0 0 2rem;
	padding-top: 0.35rem;
	scroll-margin-top: 5.5rem;
}

.gwh-legal__heading {
	margin: 0 0 0.85rem;
	padding-bottom: 0.55rem;
	border-bottom: 1px solid rgba(238, 243, 251, 0.1);
	color: var(--gwh-heading);
	font-size: clamp(1.15rem, 2.4vw, 1.35rem);
	font-weight: 750;
	letter-spacing: -0.02em;
	line-height: 1.3;
}

.gwh-legal__p {
	margin: 0 0 0.95rem;
	color: var(--gwh-muted);
	font-size: 1rem;
	line-height: 1.75;
}

.gwh-legal__p a {
	color: #5eb1ff !important;
	text-decoration: underline !important;
	text-underline-offset: 2px;
	word-break: break-word;
}

.gwh-legal__ul {
	margin: 0 0 1.1rem;
	padding-left: 1.25rem;
	color: var(--gwh-muted);
	line-height: 1.7;
}

.gwh-legal__ul li {
	margin: 0.4rem 0;
}

.gwh-legal__back {
	margin: 0.5rem 0 0;
}

.gwh-legal__back a {
	color: var(--gwh-cyan) !important;
	font-weight: 650;
	text-decoration: none !important;
}

@media (max-width: 640px) {
	.gwh-legal__toc {
		padding: 0.95rem 1rem 1.05rem;
	}

	.gwh-legal__section {
		scroll-margin-top: 4.75rem;
	}
}

.gwh-page__cta {
	margin: 1.5rem 0 0;
}

.gwh-page__cta .gwh-search__btn {
	text-decoration: none;
	width: auto;
}

/* —— Contact form —— */
.gwh-contact {
	margin: 0.5rem 0 1.75rem;
	padding: 1.35rem 1.4rem 1.5rem;
	border: 1px solid var(--gwh-border);
	border-radius: var(--gwh-radius);
	background: rgba(18, 28, 51, 0.55);
	box-shadow: var(--gwh-shadow-soft);
}

.gwh-contact .gwh-page__heading {
	margin-top: 0;
}

.gwh-contact__success {
	margin: 0;
	padding: 1rem 1.1rem;
	border: 1px solid rgba(34, 211, 238, 0.35);
	border-radius: var(--gwh-radius-sm);
	background: rgba(34, 211, 238, 0.1);
	color: var(--gwh-text);
	font-weight: 600;
	line-height: 1.5;
}

.gwh-contact__error {
	margin: 0 0 1rem;
	padding: 0.85rem 1rem;
	border: 1px solid rgba(248, 113, 113, 0.4);
	border-radius: var(--gwh-radius-sm);
	background: rgba(248, 113, 113, 0.1);
	color: #fecaca;
	font-weight: 600;
}

.gwh-contact__form {
	margin: 0;
}

.gwh-contact__hp {
	position: absolute !important;
	left: -10000px !important;
	top: auto !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.gwh-contact__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.9rem 1rem;
}

.gwh-contact__field {
	margin: 0 0 1rem;
}

.gwh-contact__field label {
	display: block;
	margin-bottom: 0.4rem;
	color: var(--gwh-text);
	font-size: 0.9rem;
	font-weight: 600;
}

.gwh-contact__req {
	color: var(--gwh-cyan);
}

.gwh-contact__input,
.gwh-contact__textarea {
	display: block;
	width: 100%;
	padding: 0.75rem 0.9rem;
	border: 1px solid var(--gwh-border);
	border-radius: 10px;
	background: rgba(7, 11, 22, 0.72);
	color: var(--gwh-text);
	font: inherit;
	font-size: 0.98rem;
	line-height: 1.4;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.gwh-contact__textarea {
	resize: vertical;
	min-height: 9rem;
}

.gwh-contact__input:focus,
.gwh-contact__textarea:focus {
	outline: none;
	border-color: rgba(59, 158, 255, 0.55);
	box-shadow: 0 0 0 3px rgba(59, 158, 255, 0.16);
}

.gwh-contact__input.is-invalid,
.gwh-contact__textarea.is-invalid {
	border-color: rgba(248, 113, 113, 0.55);
}

.gwh-contact__field-error {
	display: block;
	margin-top: 0.35rem;
	color: #fecaca;
	font-size: 0.84rem;
	font-weight: 600;
}

.gwh-contact__actions {
	margin: 0.35rem 0 0;
}

.gwh-contact__submit {
	width: auto;
	min-width: 10rem;
}

@media (max-width: 768px) {
	.gwh-contact__grid {
		grid-template-columns: 1fr;
	}

	.gwh-contact {
		padding: 1.1rem 1rem 1.25rem;
	}
}

.gwh-search--page {
	margin: 0 0 2rem;
}

.gwh-page__links {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.gwh-page__link {
	display: flex;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 0.95rem 1.05rem;
	border: 1px solid var(--gwh-border);
	border-radius: var(--gwh-radius-sm);
	background: rgba(18, 28, 51, 0.7);
	color: var(--gwh-heading) !important;
	text-decoration: none !important;
}

.gwh-page__link:hover,
.gwh-page__link:focus-visible {
	border-color: rgba(59, 158, 255, 0.4);
}

.gwh-page__link-meta {
	color: var(--gwh-muted);
	font-size: 0.82rem;
}

.gwh-page__sitemap {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
}

@media (max-width: 768px) {
	.gwh-page__links {
		grid-template-columns: 1fr;
	}
}

/* —— Site footer —— */
.gwh-site-footer {
	margin-top: auto;
	border-top: 1px solid var(--gwh-border);
	background: rgba(7, 11, 22, 0.9);
	padding-block: 2.5rem 1.25rem;
}

.gwh-site-footer__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 2.2fr);
	gap: 2rem 3rem;
	padding-bottom: 2rem;
}

.gwh-site-footer__tagline {
	margin: 0.65rem 0 1.25rem;
	color: var(--gwh-muted);
	font-size: 0.92rem;
}

.gwh-site-footer__grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 1.25rem;
}

@media (max-width: 1024px) {
	.gwh-site-footer__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

/* Must follow base + ≤1024 footer grid so mobile single-column wins */
@media (max-width: 768px) {
	.gwh-site-footer__grid {
		grid-template-columns: 1fr;
		gap: 1.25rem;
	}
}

.gwh-site-footer__heading {
	margin: 0 0 0.75rem;
	color: var(--gwh-cyan);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.gwh-newsletter__label {
	display: block;
	margin-bottom: 0.4rem;
	color: var(--gwh-muted);
	font-size: 0.82rem;
	font-weight: 600;
}

.gwh-newsletter__row {
	display: flex;
	gap: 0.4rem;
}

.gwh-newsletter__input {
	flex: 1;
	min-width: 0;
	padding: 0.55rem 0.75rem;
	border: 1px solid var(--gwh-border);
	border-radius: 10px;
	background: rgba(18, 28, 51, 0.8);
	color: var(--gwh-text);
}

.gwh-newsletter__btn {
	padding: 0.55rem 0.8rem;
	border: 0;
	border-radius: 10px;
	background: rgba(59, 158, 255, 0.2);
	color: var(--gwh-muted);
	font-weight: 700;
	font-size: 0.82rem;
}

.gwh-newsletter__hint {
	margin: 0.4rem 0 0;
	color: var(--gwh-faint);
	font-size: 0.75rem;
}

.gwh-site-footer__bar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding-top: 1rem;
	border-top: 1px solid var(--gwh-border);
}

.gwh-site-footer__meta {
	display: inline-flex;
	align-items: center;
	gap: 0.85rem;
}

.gwh-site-footer__meta a {
	color: var(--gwh-muted) !important;
	font-size: 0.88rem;
}

.gwh-social {
	display: inline-flex;
	gap: 0.45rem;
	color: var(--gwh-faint);
}

.gwh-social__icon {
	display: inline-flex;
	opacity: 0.7;
}

/* —— Interaction polish —— */
.gwh-card:nth-child(1) { animation-delay: 0.04s; }
.gwh-card:nth-child(2) { animation-delay: 0.08s; }
.gwh-card:nth-child(3) { animation-delay: 0.12s; }
.gwh-card:nth-child(4) { animation-delay: 0.16s; }
.gwh-card:nth-child(5) { animation-delay: 0.2s; }
.gwh-card:nth-child(6) { animation-delay: 0.24s; }

.gwh-why__card:nth-child(1) { animation: gwh-fade-up 0.55s var(--gwh-ease) both; animation-delay: 0.06s; }
.gwh-why__card:nth-child(2) { animation: gwh-fade-up 0.55s var(--gwh-ease) both; animation-delay: 0.12s; }
.gwh-why__card:nth-child(3) { animation: gwh-fade-up 0.55s var(--gwh-ease) both; animation-delay: 0.18s; }
.gwh-why__card:nth-child(4) { animation: gwh-fade-up 0.55s var(--gwh-ease) both; animation-delay: 0.24s; }

.gwh-search__btn:focus-visible,
.gwh-why__link:focus-visible,
.gwh-nav__search:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 3px;
}

.gwh-card__link:active {
	transform: translateY(-1px);
	filter: brightness(1.03);
}

@media (prefers-reduced-motion: reduce) {
	.gwh-moment,
	.gwh-why__card:nth-child(n),
	.gwh-card:nth-child(n) {
		animation: none !important;
		transition: none !important;
		opacity: 1 !important;
		transform: none !important;
	}
}

/* —— Nav search panel + theme toggle —— */
.gwh-nav__theme {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.4rem;
	height: 2.4rem;
	padding: 0;
	border-radius: 999px;
	border: 1px solid var(--gwh-border);
	color: var(--gwh-text);
	background: rgba(18, 28, 51, 0.7);
	cursor: pointer;
	transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.gwh-nav__theme:hover,
.gwh-nav__theme:focus-visible {
	border-color: var(--gwh-border-strong);
	box-shadow: 0 0 0 3px rgba(59, 158, 255, 0.18);
	outline: none;
}

.gwh-nav__theme-icon[hidden] {
	display: none !important;
}

.gwh-nav__search {
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	font: inherit;
}

.gwh-nav-search-panel {
	position: relative;
	z-index: 240;
	border-top: 1px solid var(--gwh-border);
	background: rgba(7, 11, 22, 0.96);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	padding: 0.85rem var(--gwh-pad) 1rem;
}

.gwh-nav-search-panel[hidden] {
	display: none !important;
}

.gwh-search--nav .gwh-search__shell {
	position: relative;
	z-index: 1;
}

.gwh-search--nav .gwh-search__results {
	z-index: 250;
}

.gwh-chrome--header.is-search-open,
.gwh-chrome--header.is-open {
	overflow: visible;
}

.gwh-nav__drawer {
	position: relative;
	z-index: 210;
	max-height: min(78vh, 32rem);
}

/* Light theme (Home documents + shared chrome) */
body.gwh-document[data-gw-theme="light"],
body.gwh-document.gwh-theme-light {
	--gwh-bg: #f8fafc;
	--gwh-bg-elevated: #ffffff;
	--gwh-navy: #f8fafc;
	--gwh-midnight: #f8fafc;
	--gwh-surface: #ffffff;
	--gwh-surface-solid: #ffffff;
	--gwh-surface-2: #f8fafc;
	--gwh-card-bg: #ffffff;
	--gwh-section-bg: #f8fafc;
	--gwh-heading: #0f172a;
	--gwh-heading-2: #1e293b;
	--gwh-text: #475569;
	--gwh-muted: #64748b;
	--gwh-faint: #64748b;
	--gwh-border: #dbe3ee;
	--gwh-border-strong: rgba(29, 122, 229, 0.4);
	--gwh-shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
	--gwh-shadow-soft: 0 8px 28px rgba(15, 23, 42, 0.08);
	background:
		radial-gradient(1100px 520px at 8% -8%, rgba(59, 158, 255, 0.1), transparent 58%),
		radial-gradient(900px 420px at 92% 0%, rgba(34, 211, 238, 0.06), transparent 52%),
		linear-gradient(180deg, #f8fafc 0%, #f1f5f9 48%, #f8fafc 100%);
	color: var(--gwh-text);
}

body.gwh-document[data-gw-theme="light"] .gwh-chrome--header,
body.gwh-document.gwh-theme-light .gwh-chrome--header {
	background: rgba(255, 255, 255, 0.92);
	border-bottom-color: var(--gwh-border);
}

body.gwh-document[data-gw-theme="light"] .gwh-nav__dropdown,
body.gwh-document[data-gw-theme="light"] .gwh-nav__drawer,
body.gwh-document[data-gw-theme="light"] .gwh-nav-search-panel,
body.gwh-document[data-gw-theme="light"] .gwh-search__results,
body.gwh-document.gwh-theme-light .gwh-nav__dropdown,
body.gwh-document.gwh-theme-light .gwh-nav__drawer,
body.gwh-document.gwh-theme-light .gwh-nav-search-panel,
body.gwh-document.gwh-theme-light .gwh-search__results {
	background: #ffffff;
	color-scheme: light;
	border-color: var(--gwh-border);
}

body.gwh-document[data-gw-theme="light"] .gwh-site-footer,
body.gwh-document.gwh-theme-light .gwh-site-footer {
	background: #ffffff;
	border-top-color: var(--gwh-border);
}

/* Critical open.php hardcodes dark brand/nav — override for light only */
body.gwh-document[data-gw-theme="light"] .gwh-chrome__brand,
body.gwh-document[data-gw-theme="light"] .gwh-chrome__brand:visited,
body.gwh-document.gwh-theme-light .gwh-chrome__brand,
body.gwh-document.gwh-theme-light .gwh-chrome__brand:visited {
	color: var(--gwh-heading) !important;
}

body.gwh-document[data-gw-theme="light"] .gwh-nav a,
body.gwh-document[data-gw-theme="light"] .gwh-nav a:visited,
body.gwh-document[data-gw-theme="light"] .gwh-site-footer a,
body.gwh-document[data-gw-theme="light"] .gwh-site-footer a:visited,
body.gwh-document.gwh-theme-light .gwh-nav a,
body.gwh-document.gwh-theme-light .gwh-nav a:visited,
body.gwh-document.gwh-theme-light .gwh-site-footer a,
body.gwh-document.gwh-theme-light .gwh-site-footer a:visited {
	color: var(--gwh-muted) !important;
}

body.gwh-document[data-gw-theme="light"] .gwh-nav__link:hover,
body.gwh-document[data-gw-theme="light"] .gwh-nav__link:focus-visible,
body.gwh-document[data-gw-theme="light"] .gwh-nav__item.is-current .gwh-nav__link,
body.gwh-document.gwh-theme-light .gwh-nav__link:hover,
body.gwh-document.gwh-theme-light .gwh-nav__link:focus-visible,
body.gwh-document.gwh-theme-light .gwh-nav__item.is-current .gwh-nav__link {
	color: var(--gwh-heading) !important;
	background: rgba(59, 158, 255, 0.1);
}

body.gwh-document[data-gw-theme="light"] .gwh-hero__title,
body.gwh-document[data-gw-theme="light"] .gwh-section__title,
body.gwh-document[data-gw-theme="light"] .gwh-card__name,
body.gwh-document[data-gw-theme="light"] .gwh-card__temp,
body.gwh-document[data-gw-theme="light"] .gwh-why__title,
body.gwh-document[data-gw-theme="light"] .gwh-results__title,
body.gwh-document[data-gw-theme="light"] .gwh-page__title,
body.gwh-document[data-gw-theme="light"] .gwh-page__heading,
body.gwh-document[data-gw-theme="light"] .gwh-footer-links__title,
body.gwh-document[data-gw-theme="light"] .gwh-site-footer__title,
body.gwh-document[data-gw-theme="light"] .gwh-results__name,
body.gwh-document[data-gw-theme="light"] .gwh-legal__toc-title,
body.gwh-document[data-gw-theme="light"] .gwh-legal__heading,
body.gwh-document.gwh-theme-light .gwh-hero__title,
body.gwh-document.gwh-theme-light .gwh-section__title,
body.gwh-document.gwh-theme-light .gwh-card__name,
body.gwh-document.gwh-theme-light .gwh-card__temp,
body.gwh-document.gwh-theme-light .gwh-why__title,
body.gwh-document.gwh-theme-light .gwh-results__title,
body.gwh-document.gwh-theme-light .gwh-page__title,
body.gwh-document.gwh-theme-light .gwh-page__heading,
body.gwh-document.gwh-theme-light .gwh-footer-links__title,
body.gwh-document.gwh-theme-light .gwh-site-footer__title,
body.gwh-document.gwh-theme-light .gwh-results__name,
body.gwh-document.gwh-theme-light .gwh-legal__toc-title,
body.gwh-document.gwh-theme-light .gwh-legal__heading {
	color: var(--gwh-heading);
}

body.gwh-document[data-gw-theme="light"] .gwh-hero__sub,
body.gwh-document[data-gw-theme="light"] .gwh-section__lede,
body.gwh-document[data-gw-theme="light"] .gwh-why__body,
body.gwh-document[data-gw-theme="light"] .gwh-card__cond,
body.gwh-document[data-gw-theme="light"] .gwh-card__meta,
body.gwh-document[data-gw-theme="light"] .gwh-results__sub,
body.gwh-document[data-gw-theme="light"] .gwh-page__lede,
body.gwh-document[data-gw-theme="light"] .gwh-page__copy,
body.gwh-document[data-gw-theme="light"] .gwh-legal__intro,
body.gwh-document.gwh-theme-light .gwh-hero__sub,
body.gwh-document.gwh-theme-light .gwh-section__lede,
body.gwh-document.gwh-theme-light .gwh-why__body,
body.gwh-document.gwh-theme-light .gwh-card__cond,
body.gwh-document.gwh-theme-light .gwh-card__meta,
body.gwh-document.gwh-theme-light .gwh-results__sub,
body.gwh-document.gwh-theme-light .gwh-page__lede,
body.gwh-document.gwh-theme-light .gwh-page__copy,
body.gwh-document.gwh-theme-light .gwh-legal__intro {
	color: var(--gwh-text);
}

body.gwh-document[data-gw-theme="light"] .gwh-section__eyebrow,
body.gwh-document[data-gw-theme="light"] .gwh-card__country,
body.gwh-document[data-gw-theme="light"] .gwh-search__option-meta,
body.gwh-document[data-gw-theme="light"] .gwh-search__option-country,
body.gwh-document[data-gw-theme="light"] .gwh-search__status,
body.gwh-document[data-gw-theme="light"] .gwh-chrome__tagline,
body.gwh-document[data-gw-theme="light"] .gwh-chrome__copy,
body.gwh-document[data-gw-theme="light"] .gwh-empty,
body.gwh-document[data-gw-theme="light"] .gwh-featured__notice,
body.gwh-document[data-gw-theme="light"] .gwh-trending__notice,
body.gwh-document.gwh-theme-light .gwh-section__eyebrow,
body.gwh-document.gwh-theme-light .gwh-card__country,
body.gwh-document.gwh-theme-light .gwh-search__option-meta,
body.gwh-document.gwh-theme-light .gwh-search__option-country,
body.gwh-document.gwh-theme-light .gwh-search__status,
body.gwh-document.gwh-theme-light .gwh-chrome__tagline,
body.gwh-document.gwh-theme-light .gwh-chrome__copy,
body.gwh-document.gwh-theme-light .gwh-empty,
body.gwh-document.gwh-theme-light .gwh-featured__notice,
body.gwh-document.gwh-theme-light .gwh-trending__notice {
	color: var(--gwh-muted);
}

body.gwh-document[data-gw-theme="light"] .gwh-card__link,
body.gwh-document[data-gw-theme="light"] .gwh-why__card,
body.gwh-document[data-gw-theme="light"] .gwh-results__link,
body.gwh-document.gwh-theme-light .gwh-card__link,
body.gwh-document.gwh-theme-light .gwh-why__card,
body.gwh-document.gwh-theme-light .gwh-results__link {
	background: var(--gwh-card-bg);
	border-color: var(--gwh-border);
	box-shadow: var(--gwh-shadow-soft);
}

body.gwh-document[data-gw-theme="light"] .gwh-chips a,
body.gwh-document[data-gw-theme="light"] .gwh-page__link,
body.gwh-document[data-gw-theme="light"] .gwh-nav__search,
body.gwh-document[data-gw-theme="light"] .gwh-nav__theme,
body.gwh-document[data-gw-theme="light"] .gwh-nav__toggle,
body.gwh-document[data-gw-theme="light"] .gwh-personalize__btn,
body.gwh-document.gwh-theme-light .gwh-chips a,
body.gwh-document.gwh-theme-light .gwh-page__link,
body.gwh-document.gwh-theme-light .gwh-nav__search,
body.gwh-document.gwh-theme-light .gwh-nav__theme,
body.gwh-document.gwh-theme-light .gwh-nav__toggle,
body.gwh-document.gwh-theme-light .gwh-personalize__btn {
	background: #ffffff;
	border-color: var(--gwh-border);
	color: var(--gwh-heading) !important;
}

body.gwh-document[data-gw-theme="light"] .gwh-search__controls,
body.gwh-document[data-gw-theme="light"] .gwh-search__combobox,
body.gwh-document.gwh-theme-light .gwh-search__controls,
body.gwh-document.gwh-theme-light .gwh-search__combobox {
	background: #ffffff;
	border-color: var(--gwh-border);
	box-shadow: var(--gwh-shadow-soft);
}

body.gwh-document[data-gw-theme="light"] .gwh-contact,
body.gwh-document[data-gw-theme="light"] .gwh-results__empty,
body.gwh-document[data-gw-theme="light"] .gwh-newsletter__input,
body.gwh-document.gwh-theme-light .gwh-contact,
body.gwh-document.gwh-theme-light .gwh-results__empty,
body.gwh-document.gwh-theme-light .gwh-newsletter__input {
	background: #ffffff;
	border-color: var(--gwh-border);
	color: var(--gwh-heading);
}

body.gwh-document[data-gw-theme="light"] .gwh-card__name,
body.gwh-document[data-gw-theme="light"] .gwh-why__title,
body.gwh-document[data-gw-theme="light"] .gwh-page__heading,
body.gwh-document[data-gw-theme="light"] .gwh-footer-links__title,
body.gwh-document[data-gw-theme="light"] .gwh-site-footer__title,
body.gwh-document.gwh-theme-light .gwh-card__name,
body.gwh-document.gwh-theme-light .gwh-why__title,
body.gwh-document.gwh-theme-light .gwh-page__heading,
body.gwh-document.gwh-theme-light .gwh-footer-links__title,
body.gwh-document.gwh-theme-light .gwh-site-footer__title {
	color: var(--gwh-heading-2);
}

body.gwh-document[data-gw-theme="light"] .gwh-search__input,
body.gwh-document.gwh-theme-light .gwh-search__input {
	color: var(--gwh-heading);
}

body.gwh-document[data-gw-theme="light"] .gwh-search__input::placeholder,
body.gwh-document.gwh-theme-light .gwh-search__input::placeholder {
	color: var(--gwh-muted);
}

body.gwh-document[data-gw-theme="light"] .gwh-search__option-name,
body.gwh-document.gwh-theme-light .gwh-search__option-name {
	color: var(--gwh-heading);
}

body.gwh-document[data-gw-theme="light"] .gwh-link-list a:hover,
body.gwh-document[data-gw-theme="light"] .gwh-link-list a:focus-visible,
body.gwh-document.gwh-theme-light .gwh-link-list a:hover,
body.gwh-document.gwh-theme-light .gwh-link-list a:focus-visible {
	color: var(--gwh-heading);
}

body.gwh-document[data-gw-theme="light"] .gwh-footer-links,
body.gwh-document[data-gw-theme="light"] .gwh-legal__toc,
body.gwh-document.gwh-theme-light .gwh-footer-links,
body.gwh-document.gwh-theme-light .gwh-legal__toc {
	background: var(--gwh-card-bg);
	border-color: var(--gwh-border);
}

/* Weather chrome shares Home tokens when light */
body.gwh-weather-chrome[data-gw-theme="light"],
body.gwh-weather-chrome.gwh-theme-light {
	--gwh-heading: #0f172a;
	--gwh-heading-2: #1e293b;
	--gwh-text: #475569;
	--gwh-muted: #64748b;
	--gwh-faint: #64748b;
	--gwh-border: #dbe3ee;
	--gwh-card-bg: #ffffff;
	--gwh-surface: #ffffff;
	--gwh-surface-solid: #ffffff;
}

body.gwh-weather-chrome[data-gw-theme="light"] .gwh-chrome__brand,
body.gwh-weather-chrome[data-gw-theme="light"] .gwh-chrome__brand:visited,
body.gwh-weather-chrome.gwh-theme-light .gwh-chrome__brand,
body.gwh-weather-chrome.gwh-theme-light .gwh-chrome__brand:visited {
	color: var(--gwh-heading) !important;
}

body.gwh-weather-chrome[data-gw-theme="light"] .gwh-nav a,
body.gwh-weather-chrome[data-gw-theme="light"] .gwh-nav a:visited,
body.gwh-weather-chrome[data-gw-theme="light"] .gwh-site-footer a,
body.gwh-weather-chrome[data-gw-theme="light"] .gwh-site-footer a:visited,
body.gwh-weather-chrome.gwh-theme-light .gwh-nav a,
body.gwh-weather-chrome.gwh-theme-light .gwh-nav a:visited,
body.gwh-weather-chrome.gwh-theme-light .gwh-site-footer a,
body.gwh-weather-chrome.gwh-theme-light .gwh-site-footer a:visited {
	color: var(--gwh-muted) !important;
}
