/**
 * GGP Header — front end.
 *
 * Written mobile-first, which is not a style preference here but a way of
 * avoiding a fight. The four desktop layout presets live inside
 * `@media (min-width: 990px)`, so on a phone they do not exist at all and the
 * phone layout needs no !important to win. The alternative — writing the
 * presets at large specificity and overriding them below — is the arms race
 * that makes header CSS unreadable.
 *
 * Two rules that look odd and are load-bearing:
 *
 *   --gsh-h is set HERE from --gsh-h-d / --gsh-h-m, which render.php writes
 *   inline. An inline custom property cannot be overridden inside a media
 *   query: inline style beats every stylesheet rule regardless of specificity.
 *   So the per-breakpoint values are published as two properties and resolved
 *   into a third by this sheet, which media queries can reach.
 *
 *   Every element that shows text names its own font-family. Inheriting it from
 *   .gsh-root loses to the theme's own `h1,h2,h3 { font-family: Poppins }` —
 *   an inherited value loses to any direct rule, at any specificity.
 */

/* ------------------------------------------------------------------ *
 * Tokens, resolved per breakpoint
 * ------------------------------------------------------------------ */

.gsh-root {
	--gsh-h: var( --gsh-h-m, 49px );
	--gsh-logo: var( --gsh-logo-m, 160px );
	--gsh-pad-x: 16px;
	--gsh-total: calc( var( --gsh-h ) + var( --gsh-annc-h, 0px ) );
	--gsh-line: color-mix( in srgb, var( --gsh-ink, #121212 ) 12%, transparent );
	--gsh-ease: cubic-bezier( 0.4, 0, 0.2, 1 );

	position: relative;
	font-family: var( --gsh-font, sans-serif );
	-webkit-font-smoothing: antialiased;
}

@media ( min-width: 990px ) {
	.gsh-root {
		--gsh-h: var( --gsh-h-d, 49px );
		--gsh-logo: var( --gsh-logo-d, 200px );
		--gsh-pad-x: var( --gsh-pad, 50px );
	}
}

.gsh-root *,
.gsh-root *::before,
.gsh-root *::after {
	box-sizing: border-box;
}

.gsh-root ul,
.gsh-root li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.gsh-root a {
	text-decoration: none;
}

.gsh-root button {
	margin: 0;
	font: inherit;
}

/* ------------------------------------------------------------------ *
 * The bar itself
 *
 * `fixed`, not `sticky`. A sticky element is confined to its parent's box, and
 * a block inside a header template part has a parent exactly as tall as it is,
 * so sticky has nowhere to travel and quietly does nothing. Fixed has no
 * ancestor dependency; the spacer below holds the space it vacated.
 * ------------------------------------------------------------------ */

.gsh-root .gsh-fixed {
	position: relative;
	background: var( --gsh-bg, #fafafa );
}

.gsh-root.is-sticky .gsh-fixed {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9990;
}

.gsh-root .gsh-spacer {
	display: none;
}

/*
 * The <svg> that carries the refraction filter. It has width="0" height="0" and
 * measures 0x0, and it STILL used to push the page down by a whole line.
 *
 * An <svg> is display:inline by default, and a zero-sized inline element does
 * not stop a line box from existing — the line is as tall as the strut, so the
 * header grew by one line-height the moment liquid glass was switched on. The
 * element measured zero the whole time; it was the line it sat on that had the
 * height, which is why "the svg is 0x0" was not the same as "the svg takes no
 * space". Taking it out of flow removes the line box with it.
 */
.gsh-root .gsh-defs {
	position: absolute;
	width: 0;
	height: 0;
	overflow: hidden;
	pointer-events: none;
}

.gsh-root.is-sticky .gsh-spacer {
	display: block;
	height: var( --gsh-total );
}

/* Logged in, the admin bar owns the top of the screen. */
body.admin-bar .gsh-root.is-sticky .gsh-fixed {
	top: 32px;
}

@media ( max-width: 782px ) {
	body.admin-bar .gsh-root.is-sticky .gsh-fixed {
		top: 46px;
	}
}

.gsh-root.has-border .gsh-bar {
	border-bottom: 1px solid var( --gsh-line );
}

/* ------------------------------------------------------------------ *
 * Liquid glass
 *
 * Three things together read as glass: the blur, the saturation lift (real
 * glass concentrates colour, a plain blur washes it out), and a bright edge
 * where the pane catches light. The fourth — refraction — is the SVG filter
 * render.php emits, applied in a rule of its own so a browser that rejects
 * url() inside backdrop-filter drops only that declaration and keeps this one.
 * ------------------------------------------------------------------ */

/*
 * The frost and the refraction are on TWO SEPARATE SIBLING LAYERS, and that is
 * the whole point of this section.
 *
 * They used to share one declaration:
 *   backdrop-filter: blur() saturate() url(#warp)
 * which works in Chrome and produces NOTHING in Safari, because WebKit does not
 * support SVG filters in backdrop-filter. One unsupported function takes the
 * entire declaration down with it, so iOS lost the blur as well as the warp and
 * liquid glass simply did not appear on phones.
 *
 * Split across siblings, the worst Safari can do is ignore .gsh-warp, and the
 * frost on .gsh-glass is untouched. Siblings rather than nesting because an
 * element with backdrop-filter becomes a backdrop root: a DESCENDANT with its
 * own backdrop-filter would sample only its parent's painting, not the page, so
 * the refraction would have had nothing real to bend.
 */

.gsh-root.is-glass .gsh-fixed {
	background: transparent;
}

.gsh-root .gsh-glass,
.gsh-root .gsh-warp {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

.gsh-root .gsh-glass {
	background: var( --gsh-glass-bg, rgba( 255, 255, 255, 0.55 ) );
	-webkit-backdrop-filter: blur( var( --gsh-blur, 16px ) ) saturate( var( --gsh-sat, 1.65 ) );
	backdrop-filter: blur( var( --gsh-blur, 16px ) ) saturate( var( --gsh-sat, 1.65 ) );
	box-shadow:
		inset 0 1px 0 rgba( 255, 255, 255, var( --gsh-spec, 0.5 ) ),
		inset 0 -1px 0 rgba( 255, 255, 255, calc( var( --gsh-spec, 0.5 ) * 0.4 ) ),
		0 1px 0 rgba( 0, 0, 0, 0.05 ),
		0 14px 34px rgba( 0, 0, 0, 0.06 );
}

.gsh-root.is-glass .gsh-search {
	background: transparent;
}

/* ------------------------------------------------------------------ *
 * Announcement bar
 * ------------------------------------------------------------------ */

.gsh-root .gsh-annc {
	position: relative;
	height: var( --gsh-annc-h, 0px );
	background: var( --gsh-annc-bg, #121212 );
	color: var( --gsh-annc-fg, #fff );
	/* clip, never hidden: `hidden` makes a scroll container and would break any
	   position: sticky descendant, here and anywhere this markup is reused. */
	overflow: clip;
	transition: height 0.28s var( --gsh-ease );
}

.gsh-root.annc-glass .gsh-annc {
	background: color-mix( in srgb, var( --gsh-annc-bg, #121212 ) 55%, transparent );
	-webkit-backdrop-filter: blur( var( --gsh-blur, 16px ) ) saturate( var( --gsh-sat, 1.65 ) );
	backdrop-filter: blur( var( --gsh-blur, 16px ) ) saturate( var( --gsh-sat, 1.65 ) );
}

.gsh-root .gsh-annc-inner {
	position: relative;
	height: 100%;
	max-width: var( --gsh-max, 1600px );
	margin: 0 auto;
}

.gsh-root .gsh-annc-item {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 0 var( --gsh-pad-x );
	font-family: var( --gsh-font, sans-serif );
	font-size: var( --gsh-annc-size, 13px );
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: 1.25;
	text-align: center;
	color: inherit;
}

.gsh-root .gsh-annc-item[href]:hover {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.gsh-root.annc-rotates .gsh-annc-item {
	opacity: 0;
	animation-name: var( --gsh-annc-name );
	animation-duration: var( --gsh-annc-cycle, 15s );
	animation-timing-function: var( --gsh-ease );
	animation-iteration-count: infinite;
	animation-fill-mode: both;
}

/* Stop the carousel while a pointer is over it, so a link stays clickable. */
.gsh-root.annc-rotates .gsh-annc:hover .gsh-annc-item,
.gsh-root.annc-rotates .gsh-annc:focus-within .gsh-annc-item {
	animation-play-state: paused;
}

/* Scrolled down: the strip folds away with the rest of the header. */
.gsh-root.gsh-shrunk .gsh-annc {
	height: 0;
}

/* ------------------------------------------------------------------ *
 * The row
 * ------------------------------------------------------------------ */

.gsh-root .gsh-bar {
	position: relative;
}

.gsh-root .gsh-inner {
	max-width: var( --gsh-max, 1600px );
	margin: 0 auto;
	padding: 0 var( --gsh-pad-x );
	min-height: var( --gsh-h );
	display: grid;
	grid-template-columns: 44px 1fr 44px;
	align-items: center;
	gap: 12px;
	transition: min-height 0.28s var( --gsh-ease );
}

.gsh-root .gsh-burger {
	grid-area: 1 / 1;
	justify-self: start;
}

.gsh-root .gsh-brand {
	grid-area: 1 / 2;
	justify-self: center;
}

.gsh-root .gsh-actions {
	grid-area: 1 / 3;
	justify-self: end;
	display: inline-flex;
	align-items: center;
	gap: 2px;
}

/* ------------------------------------------------------------------ *
 * Brand
 * ------------------------------------------------------------------ */

.gsh-root .gsh-brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
	line-height: 0;
	color: var( --gsh-ink, #121212 );
}

.gsh-root .gsh-brand-empty {
	width: 0;
}

.gsh-root .gsh-logo {
	display: block;
	width: var( --gsh-logo );
	height: auto;
	/* A tall logo must not be allowed to set the bar height. */
	max-height: calc( var( --gsh-h ) - 10px );
	object-fit: contain;
	transition: width 0.28s var( --gsh-ease ), max-height 0.28s var( --gsh-ease );
}

.gsh-root .gsh-brand-text {
	font-family: var( --gsh-font, sans-serif );
	font-size: var( --gsh-brand-size, 20px );
	font-weight: 700;
	letter-spacing: -0.01em;
	line-height: 1.15;
	white-space: nowrap;
	color: var( --gsh-ink, #121212 );
}

/* ------------------------------------------------------------------ *
 * Navigation — a drawer on phones
 * ------------------------------------------------------------------ */

.gsh-root .gsh-nav-wrap {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 4;
	background: var( --gsh-bg, #fafafa );
	border-top: 1px solid var( --gsh-line );
	box-shadow: 0 12px 28px rgba( 0, 0, 0, 0.08 );
	padding: 6px 0 10px;
	max-height: calc( 100dvh - var( --gsh-total ) - 24px );
	overflow-y: auto;
	overscroll-behavior: contain;
}

.gsh-root .gsh-nav-wrap.gsh-open {
	display: block;
}

.gsh-root .gsh-nav {
	display: flex;
	flex-direction: column;
}

.gsh-root .gsh-nav a {
	display: flex;
	align-items: center;
	gap: 13px;
	padding: 13px 20px;
	font-family: var( --gsh-font, sans-serif );
	font-size: var( --gsh-mob-size, 15px );
	font-weight: 400;
	letter-spacing: 0.6px;
	line-height: 1.4;
	color: var( --gsh-ink-mut, rgba( 18, 18, 18, 0.75 ) );
	text-underline-offset: 3px;
	transition: color 0.12s ease, padding 0.28s var( --gsh-ease );
}

.gsh-root .gsh-nav a:hover {
	color: var( --gsh-ink, #121212 );
}

.gsh-root .gsh-label {
	font-family: var( --gsh-font, sans-serif );
}

.gsh-root.is-upper .gsh-label {
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.gsh-root.has-underline .gsh-nav a.gsh-active {
	color: var( --gsh-ink, #121212 );
	text-decoration: underline;
	text-underline-offset: 3px;
}

.gsh-root:not( .has-underline ) .gsh-nav a.gsh-active {
	color: var( --gsh-ink, #121212 );
	font-weight: 600;
}

/* Icons sit in the markup at every width and are hidden on desktop by the
   media query below, rather than being rendered only for phones. A header is a
   cached fragment; a fragment that differs by device gets served to the wrong
   device. */
.gsh-root .gsh-item-icon,
.gsh-root .gsh-home-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: none;
	width: 20px;
	height: 20px;
	opacity: 0.68;
}

.gsh-root .gsh-icon {
	display: block;
	width: 100%;
	height: 100%;
}

.gsh-root .gsh-home-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.gsh-root:not( .has-icons ) .gsh-item-icon {
	display: none;
}

.gsh-root .gsh-chev {
	display: none;
}

/* Sub-items: indented and always open on a phone, a dropdown on desktop. */
.gsh-root .gsh-sub a {
	padding-left: 53px;
	font-size: calc( var( --gsh-mob-size, 15px ) - 1px );
	opacity: 0.86;
}

/* ------------------------------------------------------------------ *
 * Icon buttons
 * ------------------------------------------------------------------ */

.gsh-root .gsh-iconbtn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	background: none;
	border: 0;
	border-radius: 50%;
	cursor: pointer;
	color: var( --gsh-ink, #121212 );
	transition: width 0.28s var( --gsh-ease ), height 0.28s var( --gsh-ease );
}

.gsh-root .gsh-iconbtn:hover {
	background: color-mix( in srgb, var( --gsh-ink, #121212 ) 6%, transparent );
}

.gsh-root .gsh-btn-icon {
	display: block;
	width: 20px;
	height: 20px;
}

.gsh-root .gsh-burger-close {
	display: none;
}

.gsh-root .gsh-burger[ aria-expanded='true' ] .gsh-burger-open {
	display: none;
}

.gsh-root .gsh-burger[ aria-expanded='true' ] .gsh-burger-close {
	display: block;
}

/* ------------------------------------------------------------------ *
 * Search
 * ------------------------------------------------------------------ */

.gsh-root .gsh-search {
	display: none;
	position: relative;
	z-index: 5;
	border-top: 1px solid var( --gsh-line );
	background: var( --gsh-bg, #fafafa );
}

.gsh-root .gsh-search.gsh-open {
	display: block;
}

.gsh-root .gsh-search-form {
	max-width: var( --gsh-max, 1600px );
	margin: 0 auto;
	padding: 14px var( --gsh-pad-x );
	display: flex;
	align-items: center;
	gap: 10px;
}

.gsh-root .gsh-search-input {
	flex: 1;
	min-width: 0;
	font-family: var( --gsh-font, sans-serif );
	font-size: 15px;
	letter-spacing: 0.6px;
	color: var( --gsh-ink, #121212 );
	background: transparent;
	border: 0;
	border-bottom: 1px solid var( --gsh-line );
	border-radius: 0;
	padding: 8px 0;
	outline: none;
	-webkit-appearance: none;
	appearance: none;
}

.gsh-root .gsh-search-input:focus {
	border-bottom-color: var( --gsh-ink, #121212 );
}

/* Chrome's own clear button is a blue cross that belongs to no design system.
   Keep the behaviour, redraw the glyph in the header's own ink. */
.gsh-root .gsh-search-input::-webkit-search-cancel-button {
	-webkit-appearance: none;
	appearance: none;
	width: 15px;
	height: 15px;
	cursor: pointer;
	opacity: 0.35;
	background-color: var( --gsh-ink, #121212 );
	-webkit-mask: url( "data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M6 6l12 12M18 6L6 18'/%3E%3C/svg%3E" ) center / contain no-repeat;
	mask: url( "data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M6 6l12 12M18 6L6 18'/%3E%3C/svg%3E" ) center / contain no-repeat;
}

.gsh-root .gsh-search-input::-webkit-search-cancel-button:hover {
	opacity: 0.7;
}

.gsh-root .gsh-suggest {
	max-width: var( --gsh-max, 1600px );
	margin: 0 auto;
	padding: 0 0 10px;
}

.gsh-root .gsh-suggest[ hidden ] {
	display: none;
}

.gsh-root .gsh-suggest a {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px var( --gsh-pad-x );
	font-family: var( --gsh-font, sans-serif );
	font-size: 14px;
	line-height: 1.35;
	color: var( --gsh-ink, #121212 );
}

.gsh-root .gsh-suggest a:hover,
.gsh-root .gsh-suggest li.is-active a {
	background: color-mix( in srgb, var( --gsh-ink, #121212 ) 5%, transparent );
}

.gsh-root .gsh-suggest .gsh-sug-icon {
	display: inline-flex;
	flex: none;
	width: 18px;
	height: 18px;
	opacity: 0.55;
}

.gsh-root .gsh-suggest .gsh-sug-kind {
	margin-left: auto;
	flex: none;
	font-family: var( --gsh-font, sans-serif );
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	opacity: 0.45;
}

/* The matched run of characters, marked without a highlighter block. */
.gsh-root .gsh-suggest mark {
	background: transparent;
	color: inherit;
	font-weight: 700;
}

.gsh-root .gsh-suggest .gsh-sug-empty {
	padding: 10px var( --gsh-pad-x ) 4px;
	font-family: var( --gsh-font, sans-serif );
	font-size: 13px;
	color: var( --gsh-ink-mut, rgba( 18, 18, 18, 0.75 ) );
}

/* ------------------------------------------------------------------ *
 * Shrink on scroll
 * ------------------------------------------------------------------ */

.gsh-root.gsh-shrunk .gsh-inner {
	min-height: calc( var( --gsh-h ) * var( --gsh-shrink, 0.76 ) );
}

.gsh-root.gsh-shrunk .gsh-logo {
	width: calc( var( --gsh-logo ) * var( --gsh-shrink, 0.76 ) );
	max-height: calc( ( var( --gsh-h ) - 10px ) * var( --gsh-shrink, 0.76 ) );
}

/*
 * min-height alone barely moves a 49px bar, because the tallest thing inside it
 * — a 44px round button, or a link with 12px of padding above and below — sets
 * a floor the container cannot go under. The padding has to come down with it,
 * or the setting looks broken on a short header and only works on a tall one.
 */
.gsh-root.gsh-shrunk .gsh-iconbtn {
	width: calc( 44px * var( --gsh-shrink, 0.76 ) );
	height: calc( 44px * var( --gsh-shrink, 0.76 ) );
}

.gsh-root.gsh-shrunk .gsh-nav a {
	--gsh-nav-pad-y: calc( 12px * var( --gsh-shrink, 0.76 ) );
}

/* ------------------------------------------------------------------ *
 * Desktop
 * ------------------------------------------------------------------ */

@media ( min-width: 990px ) {

	.gsh-root .gsh-burger {
		display: none;
	}

	.gsh-root .gsh-nav-wrap {
		display: block;
		position: static;
		z-index: auto;
		background: none;
		border: 0;
		box-shadow: none;
		padding: 0;
		max-height: none;
		overflow: visible;
	}

	.gsh-root .gsh-nav {
		flex-direction: row;
		align-items: center;
	}

	.gsh-root .gsh-nav a {
		gap: 0;
		padding: var( --gsh-nav-pad-y, 12px ) var( --gsh-nav-gap, 12px );
		font-size: var( --gsh-nav-size, 14px );
		white-space: nowrap;
	}

	.gsh-root .gsh-nav a:hover {
		text-decoration: underline;
	}

	.gsh-root .gsh-item-icon {
		display: none;
	}

	/* --- the four layout presets --- */

	.gsh-root .gsh-inner {
		grid-template-columns: 1fr auto 1fr;
	}

	.gsh-root.is-layout-logo-left .gsh-brand {
		grid-area: 1 / 1;
		justify-self: start;
	}

	.gsh-root.is-layout-logo-left .gsh-nav-wrap {
		grid-area: 1 / 2;
		justify-self: center;
	}

	.gsh-root.is-layout-logo-left .gsh-actions {
		grid-area: 1 / 3;
		justify-self: end;
	}

	.gsh-root.is-layout-logo-centre .gsh-nav-wrap {
		grid-area: 1 / 1;
		justify-self: start;
	}

	.gsh-root.is-layout-logo-centre .gsh-brand {
		grid-area: 1 / 2;
		justify-self: center;
	}

	.gsh-root.is-layout-logo-centre .gsh-actions {
		grid-area: 1 / 3;
		justify-self: end;
	}

	.gsh-root.is-layout-inline .gsh-inner {
		grid-template-columns: auto 1fr auto;
	}

	.gsh-root.is-layout-inline .gsh-brand {
		grid-area: 1 / 1;
		justify-self: start;
	}

	.gsh-root.is-layout-inline .gsh-nav-wrap {
		grid-area: 1 / 2;
		justify-self: start;
	}

	.gsh-root.is-layout-inline .gsh-actions {
		grid-area: 1 / 3;
		justify-self: end;
	}

	.gsh-root.is-layout-stacked .gsh-inner {
		grid-template-columns: 1fr auto 1fr;
		grid-template-rows: auto auto;
		row-gap: 2px;
		padding-top: 10px;
		padding-bottom: 6px;
	}

	.gsh-root.is-layout-stacked .gsh-brand {
		grid-area: 1 / 2;
		justify-self: center;
	}

	.gsh-root.is-layout-stacked .gsh-actions {
		grid-area: 1 / 3;
		justify-self: end;
	}

	.gsh-root.is-layout-stacked .gsh-nav-wrap {
		grid-area: 2 / 1 / 3 / 4;
		justify-self: center;
	}

	/* --- dropdowns --- */

	.gsh-root .gsh-item.has-kids {
		position: relative;
	}

	.gsh-root .gsh-chev {
		display: block;
		width: 13px;
		height: 13px;
		margin-left: 4px;
		opacity: 0.55;
	}

	.gsh-root .gsh-sub {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		min-width: 200px;
		padding: 6px;
		background: var( --gsh-bg, #fafafa );
		border: 1px solid var( --gsh-line );
		border-radius: 14px;
		box-shadow: 0 16px 36px rgba( 0, 0, 0, 0.1 );
		z-index: 6;
	}

	.gsh-root .gsh-item.has-kids:hover > .gsh-sub,
	.gsh-root .gsh-item.has-kids:focus-within > .gsh-sub {
		display: block;
	}

	.gsh-root .gsh-sub a {
		padding: 9px 12px;
		border-radius: 9px;
		font-size: calc( var( --gsh-nav-size, 14px ) - 0.5px );
		opacity: 1;
		white-space: nowrap;
	}

	.gsh-root .gsh-sub a:hover {
		background: color-mix( in srgb, var( --gsh-ink, #121212 ) 5%, transparent );
		text-decoration: none;
	}

	/* --- the home button --- */

	.gsh-root .gsh-home:not( .is-mode-text ) > a {
		padding: 6px var( --gsh-nav-gap, 12px );
	}

	.gsh-root .gsh-home:not( .is-mode-text ) .gsh-home-mark {
		width: var( --gsh-home-size, 22px );
		height: var( --gsh-home-size, 22px );
		opacity: 1;
	}

	/* Visually hidden, not display:none — the word still has to reach a screen
	   reader, and aria-label alone would drop it out of the accessible name of
	   any assistive tech that prefers content. */
	.gsh-root .gsh-home:not( .is-mode-text ) .gsh-label {
		position: absolute;
		width: 1px;
		height: 1px;
		margin: -1px;
		padding: 0;
		overflow: hidden;
		clip-path: inset( 50% );
		white-space: nowrap;
		border: 0;
	}

	.gsh-root .gsh-home:not( .is-mode-text ) > a:hover {
		text-decoration: none;
	}

	.gsh-root .gsh-home:not( .is-mode-text ) > a:hover .gsh-home-mark {
		transform: scale( 1.08 );
	}

	.gsh-root .gsh-home .gsh-home-mark {
		transition: transform 0.2s cubic-bezier( 0.34, 1.56, 0.64, 1 );
	}
}

/* ------------------------------------------------------------------ *
 * Reduced motion
 *
 * Not a blanket animation:none — that would leave every announcement stacked on
 * top of the others at full opacity. Rotation stops on the first message.
 * ------------------------------------------------------------------ */

@media ( prefers-reduced-motion: reduce ) {

	.gsh-root.annc-rotates .gsh-annc-item {
		animation: none;
		opacity: 0;
	}

	.gsh-root.annc-rotates .gsh-annc-item:first-child {
		opacity: 1;
	}

	.gsh-root .gsh-inner,
	.gsh-root .gsh-logo,
	.gsh-root .gsh-annc,
	.gsh-root .gsh-home-mark {
		transition: none;
	}
}
