/* ------------------------------------------------------------------
   Tokens
------------------------------------------------------------------ */
:root {
	--gm-bg: #f5f7f9;
	--gm-surface: #ffffff;
	--gm-text: #15181d;
	--gm-text-muted: #66717d;

	--gm-dark: #0d1117;
	--gm-dark-soft: #171c23;

	--gm-border: #dfe5ea;

	--gm-accent: #00769d;
	--gm-accent-bright: #00c2ff;

	--gm-link: #006b90;

	--gm-success: #18794e;
	--gm-warning: #9a6700;
	--gm-danger: #b42318;

	--gm-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

	--gm-width-shell: 1380px;
	--gm-width-reading: 760px;
	--gm-width-wide-media: 1100px;

	--gm-text-headline-article: clamp(2.5rem, 5vw, 5rem);
	--gm-text-headline-hero: clamp(2.1rem, 4vw, 4.3rem);
	--gm-text-heading-section: clamp(1.7rem, 3vw, 2.6rem);
	--gm-text-body-article: 19px;
	--gm-text-meta: 14px;

	--gm-space-xs: clamp(0.5rem, 1vw, 0.75rem);
	--gm-space-sm: clamp(0.75rem, 1.5vw, 1.25rem);
	--gm-space-md: clamp(1.25rem, 2.5vw, 2rem);
	--gm-space-lg: clamp(2rem, 4vw, 3.5rem);
	--gm-space-xl: clamp(3rem, 6vw, 5.5rem);

	--gm-radius: 10px;
	--gm-shadow: 0 1px 2px rgba(13, 17, 23, 0.06);
	--gm-transition: 200ms ease;
}

/* ------------------------------------------------------------------
   Reset / base
------------------------------------------------------------------ */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	background: var(--gm-bg);
	color: var(--gm-text);
	font-family: var(--gm-font);
	line-height: 1.5;
}

img,
video,
svg {
	max-width: 100%;
	height: auto;
	display: block;
}

/* ------------------------------------------------------------------
   Layout containers
------------------------------------------------------------------ */
.gm-shell {
	max-width: var(--gm-width-shell);
	margin-inline: auto;
	padding-inline: clamp(1rem, 4vw, 2.5rem);
}

.gm-content {
	max-width: var(--gm-width-reading);
	margin-inline: auto;
}

.gm-wide {
	max-width: var(--gm-width-wide-media);
	margin-inline: auto;
}

/* ------------------------------------------------------------------
   Typography
------------------------------------------------------------------ */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--gm-font);
	color: var(--gm-text);
	line-height: 1.2;
	font-weight: 700;
	margin: 0 0 0.5em;
}

h1 {
	font-size: clamp(2rem, 4vw, 3rem);
}

h2 {
	font-size: clamp(1.5rem, 3vw, 2.1rem);
}

h3 {
	font-size: clamp(1.25rem, 2vw, 1.6rem);
}

p {
	margin: 0 0 1em;
}

.gm-headline--article {
	font-size: var(--gm-text-headline-article);
	line-height: 1.05;
}

.gm-headline--hero {
	font-size: var(--gm-text-headline-hero);
	line-height: 1.08;
}

.gm-heading--section {
	font-size: var(--gm-text-heading-section);
	line-height: 1.15;
}

.gm-meta {
	font-size: var(--gm-text-meta);
	color: var(--gm-text-muted);
}

/* ------------------------------------------------------------------
   Links & focus states
------------------------------------------------------------------ */
a {
	color: var(--gm-link);
	text-decoration-thickness: from-font;
}

a:hover {
	text-decoration-thickness: 2px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
	outline: 2px solid var(--gm-accent);
	outline-offset: 2px;
}

.gm-skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 1000;
	padding: 0.75em 1em;
	background: var(--gm-dark);
	color: #fff;
}

.gm-skip-link:focus {
	left: 0.5rem;
	top: 0.5rem;
}

/* ------------------------------------------------------------------
   Buttons
------------------------------------------------------------------ */
.gm-button {
	display: inline-flex;
	align-items: center;
	gap: 0.5em;
	padding: 0.65em 1.25em;
	border-radius: var(--gm-radius);
	border: 1px solid transparent;
	font-family: var(--gm-font);
	font-weight: 600;
	font-size: 0.95rem;
	text-decoration: none;
	cursor: pointer;
	transition: background-color var(--gm-transition), border-color var(--gm-transition), color var(--gm-transition);
}

.gm-button--primary {
	background: var(--gm-dark);
	color: #fff;
}

.gm-button--primary:hover {
	background: var(--gm-dark-soft);
	color: #fff;
}

.gm-button--secondary {
	background: transparent;
	border-color: var(--gm-border);
	color: var(--gm-text);
}

.gm-button--secondary:hover {
	border-color: var(--gm-accent);
	color: var(--gm-accent);
}

.gm-button--accent {
	background: var(--gm-accent);
	color: #fff;
}

.gm-button--accent:hover {
	background: var(--gm-link);
}

/* ------------------------------------------------------------------
   Badges
------------------------------------------------------------------ */
.gm-badge {
	display: inline-block;
	padding: 0.2em 0.6em;
	border-radius: 4px;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--gm-accent);
	background: color-mix(in srgb, var(--gm-accent) 12%, transparent);
	text-decoration: none;
}

.gm-badge:hover {
	color: var(--gm-link);
}

/* ------------------------------------------------------------------
   Cards
------------------------------------------------------------------ */
.gm-card {
	display: flex;
	flex-direction: column;
	background: var(--gm-surface);
	border: 1px solid var(--gm-border);
	border-radius: var(--gm-radius);
	overflow: hidden;
	box-shadow: var(--gm-shadow);
	transition: border-color var(--gm-transition);
}

.gm-card:hover {
	border-color: var(--gm-accent);
}

.gm-card__image-wrap {
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: var(--gm-border);
}

.gm-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--gm-transition);
}

.gm-card:hover .gm-card__image {
	transform: scale(1.03);
}

.gm-card__body {
	padding: var(--gm-space-sm);
	display: flex;
	flex-direction: column;
	gap: 0.4em;
}

.gm-card__category {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--gm-accent);
	text-decoration: none;
}

.gm-card__title {
	font-size: 1.1rem;
	line-height: 1.3;
	margin: 0;
}

.gm-card__title a {
	color: var(--gm-text);
	text-decoration: none;
}

.gm-card__title a:hover {
	color: var(--gm-accent);
}

.gm-card__excerpt {
	color: var(--gm-text-muted);
	font-size: 0.9rem;
	margin: 0;
}

.gm-card--compact {
	flex-direction: row;
	align-items: center;
}

.gm-card--compact .gm-card__image-wrap {
	width: 96px;
	flex-shrink: 0;
	aspect-ratio: 1 / 1;
}

.gm-card--compact .gm-card__body {
	padding: 0.5em var(--gm-space-sm);
	min-width: 0;
}

.gm-card--compact .gm-card__title {
	font-size: 0.95rem;
}

.gm-card--feature .gm-card__title {
	font-size: clamp(1.3rem, 2vw, 1.7rem);
	line-height: 1.25;
}

.gm-card--feature .gm-card__body {
	padding: var(--gm-space-md);
	gap: 0.6em;
}

.gm-lead-grid {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: var(--gm-space-md);
	align-items: start;
}

.gm-lead-grid__secondary {
	display: flex;
	flex-direction: column;
	gap: var(--gm-space-md);
}

@media (max-width: 900px) {
	.gm-lead-grid {
		grid-template-columns: 1fr;
	}
}

.gm-hero {
	margin-block: var(--gm-space-lg);
}

.gm-section {
	margin-block: var(--gm-space-xl);
}

.gm-section__header {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: var(--gm-space-sm);
	margin-bottom: var(--gm-space-md);
}

.gm-section__header .gm-heading--section {
	margin: 0;
}

.gm-section__description {
	margin-top: -0.5em;
	margin-bottom: var(--gm-space-md);
	color: var(--gm-text-muted);
	max-width: var(--gm-width-reading);
}

.gm-section__more {
	font-size: 0.9rem;
	font-weight: 600;
	white-space: nowrap;
	text-decoration: none;
}

.gm-section__more:hover {
	color: var(--gm-accent);
}

.gm-archive-header {
	margin-block: var(--gm-space-lg) var(--gm-space-md);
}

.gm-archive-header__eyebrow {
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--gm-accent);
	margin: 0 0 0.3em;
}

.gm-archive-header__description {
	color: var(--gm-text-muted);
	max-width: var(--gm-width-reading);
}

.gm-archive-header--author {
	display: flex;
	align-items: center;
	gap: var(--gm-space-sm);
}

.gm-archive-header--author img {
	border-radius: 50%;
	flex-shrink: 0;
}

.gm-archive-header--author > div {
	min-width: 0;
}

.gm-archive__lead {
	margin-bottom: var(--gm-space-md);
}

.gm-story-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: var(--gm-space-md);
}

/* ------------------------------------------------------------------
   Editorial block patterns
------------------------------------------------------------------ */
.gm-pattern-review-verdict {
	border: 1px solid var(--gm-border);
	border-radius: var(--gm-radius);
	padding: var(--gm-space-md);
	background: var(--gm-surface);
}

.gm-pattern-review-verdict__score {
	font-size: 2rem;
	font-weight: 800;
	color: var(--gm-accent);
	margin: 0;
}

.gm-pattern-disclosure {
	border-left: 3px solid var(--gm-warning);
	padding-left: 1em;
	color: var(--gm-text-muted);
	font-size: 0.9rem;
}

.gm-pattern-callout {
	border-left: 3px solid var(--gm-accent);
	padding: 1em 1em 1em 1.2em;
	background: rgba(0, 118, 157, 0.06);
	border-radius: 0 var(--gm-radius) var(--gm-radius) 0;
}

.gm-pattern-podcast-callout {
	background: var(--gm-dark);
	color: rgba(255, 255, 255, 0.9);
	padding: var(--gm-space-md);
	border-radius: var(--gm-radius);
}

.gm-pattern-podcast-callout .wp-block-heading {
	color: #fff;
}

.gm-pattern-podcast-callout .wp-block-button__link {
	background: var(--gm-accent-bright);
	color: var(--gm-dark);
}

/* ------------------------------------------------------------------
   On Air (podcast homepage block)
------------------------------------------------------------------ */
.gm-on-air {
	background: var(--gm-dark);
	color: rgba(255, 255, 255, 0.9);
	padding-block: var(--gm-space-xl);
	margin-block: var(--gm-space-xl);
}

.gm-on-air__eyebrow {
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--gm-accent-bright);
	margin: 0 0 var(--gm-space-sm);
}

.gm-on-air__layout {
	display: flex;
	gap: var(--gm-space-md);
	align-items: center;
	flex-wrap: wrap;
}

.gm-on-air__artwork {
	width: 140px;
	flex-shrink: 0;
	border-radius: var(--gm-radius);
	overflow: hidden;
}

.gm-on-air__artwork img {
	display: block;
}

.gm-on-air__show-title {
	font-size: 0.85rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.6);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin: 0 0 0.3em;
}

.gm-on-air__episode-title {
	margin: 0 0 0.5em;
}

.gm-on-air__episode-title a {
	color: #fff;
	text-decoration: none;
}

.gm-on-air__intro {
	color: rgba(255, 255, 255, 0.7);
	max-width: 60ch;
}

.gm-on-air__actions {
	display: flex;
	gap: 0.75em;
	margin-top: var(--gm-space-sm);
}

.gm-on-air__recent {
	margin-top: var(--gm-space-lg);
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: var(--gm-space-sm);
}

.gm-on-air .gm-card {
	background: var(--gm-dark-soft);
	border-color: rgba(255, 255, 255, 0.12);
}

.gm-on-air .gm-card__title a {
	color: #fff;
}

.gm-on-air .gm-meta {
	color: rgba(255, 255, 255, 0.5);
}

/* ------------------------------------------------------------------
   404
------------------------------------------------------------------ */
.gm-404__intro {
	max-width: var(--gm-width-reading);
	margin-block: var(--gm-space-lg);
}

.gm-404__eyebrow {
	font-size: 3rem;
	font-weight: 800;
	color: var(--gm-border);
	margin: 0;
	line-height: 1;
}

.gm-404__intro .gm-search-form {
	margin-top: var(--gm-space-sm);
	max-width: 420px;
}

.gm-404__sections {
	margin-bottom: var(--gm-space-lg);
}

.gm-404__section-list {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 0.6em;
	margin: 0;
	padding: 0;
}

.gm-404__section-list a {
	display: inline-block;
	padding: 0.5em 1em;
	border: 1px solid var(--gm-border);
	border-radius: var(--gm-radius);
	text-decoration: none;
}

.gm-404__section-list a:hover {
	border-color: var(--gm-accent);
	color: var(--gm-accent);
}

/* ------------------------------------------------------------------
   Pagination
------------------------------------------------------------------ */
.pagination {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4em;
	margin-block: var(--gm-space-lg);
}

.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.4em;
	height: 2.4em;
	padding: 0 0.5em;
	border: 1px solid var(--gm-border);
	border-radius: var(--gm-radius);
	text-decoration: none;
	color: var(--gm-text);
}

.pagination .page-numbers.current {
	background: var(--gm-dark);
	color: #fff;
	border-color: var(--gm-dark);
}

.pagination .page-numbers.dots {
	border-color: transparent;
}

/* ------------------------------------------------------------------
   Forms
------------------------------------------------------------------ */
input[type="text"],
input[type="search"],
input[type="email"],
input[type="url"],
textarea,
select {
	width: 100%;
	padding: 0.6em 0.8em;
	border: 1px solid var(--gm-border);
	border-radius: 6px;
	background: var(--gm-surface);
	color: var(--gm-text);
	font-family: var(--gm-font);
	font-size: 1rem;
}

label {
	display: block;
	margin-bottom: 0.3em;
	font-weight: 600;
	font-size: 0.9rem;
}

/* ------------------------------------------------------------------
   Screen-reader text / scroll lock utility
------------------------------------------------------------------ */
.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;
}

.screen-reader-text:focus {
	background: var(--gm-surface);
	border-radius: 4px;
	box-shadow: var(--gm-shadow);
	clip: auto !important;
	clip-path: none;
	color: var(--gm-text);
	display: block;
	height: auto;
	left: 1rem;
	top: 1rem;
	padding: 0.75em 1em;
	width: auto;
	z-index: 1000;
}

.gm-scroll-lock {
	overflow: hidden;
}

/* ------------------------------------------------------------------
   Masthead
------------------------------------------------------------------ */
.gm-site-header {
	background: var(--gm-surface);
	border-bottom: 1px solid var(--gm-border);
}

.gm-masthead__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--gm-space-sm);
	padding-block: var(--gm-space-sm);
}

.gm-masthead__brand {
	min-width: 0;
}

.gm-masthead__title {
	margin: 0;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	display: inline-block;
}

.gm-masthead__title-link {
	font-size: clamp(1.4rem, 2.5vw, 1.9rem);
	font-weight: 800;
	letter-spacing: -0.01em;
	color: var(--gm-text);
	text-decoration: none;
}

.gm-masthead__strapline {
	margin: 0.15em 0 0;
	font-size: 0.85rem;
	color: var(--gm-text-muted);
}

.gm-masthead__logo img {
	max-height: 48px;
	width: auto;
}

.gm-masthead__actions {
	display: flex;
	align-items: center;
	gap: var(--gm-space-xs);
	flex-shrink: 0;
}

/* ------------------------------------------------------------------
   Mobile menu toggle (hamburger)
------------------------------------------------------------------ */
.gm-menu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	background: transparent;
	border: 1px solid var(--gm-border);
	border-radius: var(--gm-radius);
	cursor: pointer;
	position: relative;
}

.gm-menu-toggle__bars,
.gm-menu-toggle__bars::before,
.gm-menu-toggle__bars::after {
	content: "";
	display: block;
	position: absolute;
	width: 20px;
	height: 2px;
	background: var(--gm-text);
	left: 50%;
	transform: translateX(-50%);
}

.gm-menu-toggle__bars {
	top: 50%;
	transform: translate(-50%, -50%);
}

.gm-menu-toggle__bars::before {
	top: -6px;
}

.gm-menu-toggle__bars::after {
	top: 6px;
}

@media (min-width: 1024px) {
	.gm-menu-toggle {
		display: none;
	}
}

/* ------------------------------------------------------------------
   Primary navigation
------------------------------------------------------------------ */
.gm-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.gm-menu__link {
	color: var(--gm-text);
	text-decoration: none;
	font-weight: 600;
}

.gm-primary-nav__close {
	display: none;
}

@media (max-width: 1023.98px) {
	.gm-primary-nav {
		position: fixed;
		inset: 0 20% 0 auto;
		width: 80%;
		max-width: 360px;
		background: var(--gm-surface);
		z-index: 200;
		padding: var(--gm-space-md);
		overflow-y: auto;
		transform: translateX(100%);
		visibility: hidden;
		transition: transform var(--gm-transition), visibility 0s linear var(--gm-transition);
	}

	/*
	 * visibility:hidden (not just the off-screen transform) keeps the
	 * drawer's links out of the Tab order while closed - otherwise a
	 * keyboard user can tab into off-canvas links they can't see.
	 */
	.gm-primary-nav.is-open {
		transform: translateX(0);
		visibility: visible;
		transition: transform var(--gm-transition), visibility 0s linear 0s;
	}

	.gm-primary-nav__close {
		display: block;
		margin-left: auto;
		width: 40px;
		height: 40px;
		background: transparent;
		border: 1px solid var(--gm-border);
		border-radius: var(--gm-radius);
		font-size: 1.25rem;
		cursor: pointer;
	}

	.gm-primary-nav__backdrop {
		position: fixed;
		inset: 0;
		background: rgba(13, 17, 23, 0.4);
		z-index: 190;
	}

	.gm-menu__item {
		border-bottom: 1px solid var(--gm-border);
	}

	.gm-menu__link {
		display: block;
		padding: 0.9em 0;
	}

	.gm-menu__submenu {
		list-style: none;
		margin: 0 0 0.5em;
		padding-left: 1em;
	}

	.gm-menu__submenu .gm-menu__link {
		padding: 0.6em 0;
		font-weight: 400;
	}

	.gm-menu__toggle {
		position: absolute;
		top: 0.5em;
		right: 0;
		width: 36px;
		height: 36px;
		background: transparent;
		border: none;
		cursor: pointer;
	}

	.gm-menu__item {
		position: relative;
	}
}

@media (min-width: 1024px) {
	.gm-primary-nav__backdrop {
		display: none;
	}

	.gm-menu {
		display: flex;
		align-items: center;
		gap: var(--gm-space-md);
	}

	.gm-menu__item {
		position: relative;
	}

	.gm-menu__link {
		display: inline-block;
		padding: 0.5em 0;
	}

	.gm-menu__toggle {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		background: transparent;
		border: none;
		cursor: pointer;
		clip-path: inset(0 0 0 85%);
	}

	.gm-menu__submenu {
		list-style: none;
		margin: 0;
		padding: 0.5em 0;
		position: absolute;
		top: 100%;
		left: 0;
		min-width: 220px;
		background: var(--gm-surface);
		border: 1px solid var(--gm-border);
		border-radius: var(--gm-radius);
		box-shadow: var(--gm-shadow);
		opacity: 0;
		pointer-events: none;
		transition: opacity var(--gm-transition);
		z-index: 100;
	}

	/*
	 * Deliberately not visibility:hidden here: these links must stay
	 * keyboard-focusable while visually hidden, or :focus-within below can
	 * never fire (an unfocusable element can't be the thing that focuses).
	 * opacity + pointer-events hides it from sighted/mouse use instead.
	 */
	.gm-menu__item:hover > .gm-menu__submenu,
	.gm-menu__item:focus-within > .gm-menu__submenu,
	.gm-menu__submenu.is-open {
		opacity: 1;
		pointer-events: auto;
	}

	.gm-menu__submenu .gm-menu__link {
		display: block;
		padding: 0.5em 1em;
	}
}

/* ------------------------------------------------------------------
   Trending bar
------------------------------------------------------------------ */
.gm-trending {
	background: var(--gm-dark);
	color: #fff;
}

.gm-trending__inner {
	display: flex;
	align-items: center;
	gap: var(--gm-space-sm);
	padding-block: 0.6em;
	overflow-x: auto;
	white-space: nowrap;
}

.gm-trending__label {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: var(--gm-accent-bright);
	flex-shrink: 0;
}

.gm-trending__list {
	list-style: none;
	display: flex;
	gap: var(--gm-space-sm);
	margin: 0;
	padding: 0;
}

.gm-trending__list a {
	color: #fff;
	text-decoration: none;
	font-size: 0.9rem;
}

.gm-trending__list a:hover {
	color: var(--gm-accent-bright);
}

/* ------------------------------------------------------------------
   Search disclosure
------------------------------------------------------------------ */
.gm-search__toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 1px solid var(--gm-border);
	border-radius: var(--gm-radius);
	cursor: pointer;
	list-style: none;
}

.gm-search__toggle::-webkit-details-marker {
	display: none;
}

.gm-search__icon {
	width: 20px;
	height: 20px;
	fill: var(--gm-text);
}

.gm-search__panel {
	display: none;
}

.gm-search[open] .gm-search__panel {
	display: block;
	position: fixed;
	inset: 0;
	z-index: 300;
	background: rgba(13, 17, 23, 0.6);
}

.gm-search__panel-inner {
	position: relative;
	background: var(--gm-surface);
	padding: var(--gm-space-lg) var(--gm-space-sm) var(--gm-space-sm);
	display: flex;
	gap: var(--gm-space-xs);
	align-items: flex-start;
}

.gm-search-form {
	flex: 1;
	display: flex;
	gap: 0.5em;
	min-width: 0;
}

.gm-search-form__field {
	flex: 1 1 auto;
	min-width: 0;
}

.gm-search-form__submit {
	flex-shrink: 0;
}

.gm-search__close {
	background: transparent;
	border: 1px solid var(--gm-border);
	border-radius: var(--gm-radius);
	width: 40px;
	height: 40px;
	font-size: 1.25rem;
	cursor: pointer;
	flex-shrink: 0;
}

@media (max-width: 480px) {
	.gm-search__panel-inner {
		flex-wrap: wrap;
	}

	.gm-search-form {
		flex-basis: 100%;
	}
}

/* ------------------------------------------------------------------
   Footer
------------------------------------------------------------------ */
.gm-site-footer {
	background: var(--gm-dark);
	color: rgba(255, 255, 255, 0.85);
	margin-top: var(--gm-space-xl);
}

.gm-site-footer__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: var(--gm-space-md);
	padding-block: var(--gm-space-lg);
}

.gm-site-footer__title {
	font-size: 1.2rem;
	font-weight: 800;
	color: #fff;
	margin: 0 0 0.3em;
}

.gm-site-footer__strapline {
	margin: 0;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.6);
}

.gm-site-footer__heading {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5);
	margin: 0 0 0.75em;
}

.gm-site-footer__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.5em;
}

.gm-site-footer__list a {
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
	font-size: 0.9rem;
}

.gm-site-footer__list a:hover {
	color: var(--gm-accent-bright);
}

.gm-social {
	list-style: none;
	display: flex;
	gap: 0.6em;
	margin: 0;
	padding: 0;
}

.gm-social__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
}

.gm-social__icon {
	width: 18px;
	height: 18px;
	fill: #fff;
}

.gm-social__link:hover {
	background: var(--gm-accent);
}

.gm-site-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-block: var(--gm-space-sm);
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.5);
}

/* ------------------------------------------------------------------
   Article header
------------------------------------------------------------------ */
.gm-article {
	margin-block: var(--gm-space-lg);
}

.gm-breadcrumbs {
	font-size: 0.85rem;
	color: var(--gm-text-muted);
	margin-bottom: var(--gm-space-sm);
}

.gm-breadcrumbs a {
	color: var(--gm-text-muted);
}

.gm-article-header {
	margin-bottom: var(--gm-space-md);
}

.gm-article-header__category {
	margin-bottom: 0.75em;
}

.gm-article-header__title {
	margin-bottom: 0.3em;
}

.gm-article-header__standfirst {
	font-size: 1.15rem;
	color: var(--gm-text-muted);
	line-height: 1.5;
}

.gm-article-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4em 1em;
}

.gm-article-meta > * {
	position: relative;
}

.gm-article-meta > *:not(:first-child)::before {
	content: "\2022";
	margin-right: 1em;
	color: var(--gm-border);
}

/* ------------------------------------------------------------------
   Article hero image
------------------------------------------------------------------ */
.gm-article-hero {
	margin: var(--gm-space-lg) auto;
}

.gm-article-hero__image {
	width: 100%;
	border-radius: var(--gm-radius);
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.gm-article-hero__caption {
	margin-top: 0.5em;
	font-size: 0.85rem;
	color: var(--gm-text-muted);
	text-align: center;
}

/* ------------------------------------------------------------------
   Article prose typography
------------------------------------------------------------------ */
.gm-prose {
	font-size: var(--gm-text-body-article);
	line-height: 1.7;
}

.gm-prose > * + * {
	margin-top: 1.2em;
}

.gm-prose h2 {
	font-size: clamp(1.5rem, 3vw, 2rem);
	margin-top: 1.6em;
}

.gm-prose h3 {
	font-size: clamp(1.2rem, 2vw, 1.5rem);
	margin-top: 1.4em;
}

.gm-prose a {
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.gm-prose blockquote {
	margin: 0;
	padding-left: 1.2em;
	border-left: 3px solid var(--gm-accent);
	color: var(--gm-text-muted);
	font-style: italic;
}

.gm-prose ul,
.gm-prose ol {
	padding-left: 1.4em;
}

.gm-prose li + li {
	margin-top: 0.4em;
}

.gm-prose figure {
	margin: 0;
}

.gm-prose figcaption {
	font-size: 0.85rem;
	color: var(--gm-text-muted);
	margin-top: 0.5em;
}

.gm-prose table {
	display: block;
	overflow-x: auto;
	max-width: 100%;
	border-collapse: collapse;
	white-space: nowrap;
}

.gm-prose th,
.gm-prose td {
	border: 1px solid var(--gm-border);
	padding: 0.5em 0.8em;
	text-align: left;
}

.gm-prose audio,
.gm-prose video {
	width: 100%;
}

.gm-prose pre {
	overflow-x: auto;
	background: var(--gm-dark);
	color: #fff;
	padding: 1em;
	border-radius: var(--gm-radius);
}

.gm-prose code {
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.gm-prose .alignwide {
	width: 100%;
	max-width: var(--gm-width-wide-media);
	margin-left: 50%;
	transform: translateX(-50%);
}

.gm-prose .alignfull {
	width: 100%;
	max-width: var(--gm-width-shell);
	margin-left: 50%;
	transform: translateX(-50%);
}

/* ------------------------------------------------------------------
   Tags
------------------------------------------------------------------ */
.gm-article-tags {
	margin-block: var(--gm-space-md);
}

.gm-tag-list {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5em;
	margin: 0;
	padding: 0;
}

.gm-tag-list__more summary {
	margin-top: 0.75em;
	cursor: pointer;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--gm-link);
}

.gm-tag-list__more .gm-tag-list {
	margin-top: 0.75em;
}

/* ------------------------------------------------------------------
   Share
------------------------------------------------------------------ */
.gm-share {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75em;
	margin-block: var(--gm-space-md);
	padding-block: var(--gm-space-sm);
	border-block: 1px solid var(--gm-border);
}

.gm-share__label {
	font-weight: 700;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--gm-text-muted);
}

.gm-share__link {
	font-size: 0.9rem;
	text-decoration: none;
}

.gm-share__copy,
.gm-share__native {
	font-family: var(--gm-font);
	font-size: 0.85rem;
	background: transparent;
	border: 1px solid var(--gm-border);
	border-radius: var(--gm-radius);
	padding: 0.4em 0.9em;
	cursor: pointer;
}

/* ------------------------------------------------------------------
   Author box
------------------------------------------------------------------ */
.gm-author-box {
	display: flex;
	gap: var(--gm-space-sm);
	margin-block: var(--gm-space-lg);
	padding: var(--gm-space-md);
	background: var(--gm-surface);
	border: 1px solid var(--gm-border);
	border-radius: var(--gm-radius);
}

.gm-author-box__avatar {
	border-radius: 50%;
	flex-shrink: 0;
}

.gm-author-box__body {
	flex: 1;
	min-width: 0;
}

.gm-author-box__heading {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--gm-text-muted);
	margin: 0 0 0.3em;
}

.gm-author-box__name {
	font-weight: 700;
	margin: 0 0 0.4em;
}

.gm-author-box__bio {
	color: var(--gm-text-muted);
	margin: 0 0 0.8em;
}

.gm-author-box__links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5em;
}

/* ------------------------------------------------------------------
   Comments
------------------------------------------------------------------ */
.gm-comments {
	margin-block: var(--gm-space-xl);
}

.gm-comment-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.gm-comment-list .gm-comment-list {
	margin-top: var(--gm-space-sm);
	padding-left: var(--gm-space-md);
	border-left: 2px solid var(--gm-border);
}

@media (max-width: 480px) {
	.gm-comment-list .gm-comment-list {
		padding-left: var(--gm-space-sm);
	}
}

.gm-comment {
	margin-bottom: var(--gm-space-md);
}

.gm-comment__header {
	display: flex;
	align-items: center;
	gap: 0.75em;
	margin-bottom: 0.5em;
}

.gm-comment__avatar {
	border-radius: 50%;
	flex-shrink: 0;
}

.gm-comment__meta {
	min-width: 0;
}

.gm-comment__author {
	font-weight: 700;
	margin: 0;
	overflow-wrap: break-word;
}

.gm-comment__date {
	font-size: 0.8rem;
	color: var(--gm-text-muted);
	text-decoration: none;
}

.gm-comment__pending {
	font-size: 0.85rem;
	font-style: italic;
	color: var(--gm-warning);
}

.gm-comment__reply {
	margin-top: 0.5em;
}

.gm-comment__reply a {
	font-size: 0.85rem;
	font-weight: 600;
	text-decoration: none;
}

/* ------------------------------------------------------------------
   Print
------------------------------------------------------------------ */
@media print {
	.gm-site-header,
	.gm-trending,
	.gm-share,
	.gm-related,
	.gm-site-footer,
	.gm-comments {
		display: none !important;
	}
}

/* ------------------------------------------------------------------
   Motion
------------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
	}
}
