/**
 * Go Time Dolphins — site styles.
 *
 * IMAGE CACHING: logo URLs carry a ?rev= query string. Replacing an image file
 * without changing its URL leaves browsers and the CDN serving the old bytes
 * indefinitely — the file changes on the server and nobody sees it. Bump the
 * rev on every asset in this file whenever anything in assets/img changes.
 *
 * Brand values are sampled from the supplied logo files, not eyeballed:
 *   teal   #008E97  (identical to the Dolphins' aqua)
 *   orange #FF4A00
 *   black  #131313
 *
 * Contrast note: #008E97 on the page background measures 4.74:1, which passes
 * WCAG AA for body text but only just. Anything small or interactive uses
 * --gtd-teal-bright instead. Don't swap them round.
 */

:root {
	--gtd-bg: #0B0B0B;
	--gtd-surface: #141414;
	--gtd-surface-2: #1D1D1D;
	--gtd-line: #2A2A2A;

	--gtd-teal: #008E97;
	--gtd-teal-bright: #00C2CE;
	--gtd-teal-dim: #006E75;
	--gtd-orange: #FF4A00;

	--gtd-text: #F3F6F8;
	--gtd-muted: #8B96A0;

	--gtd-win: #25C871;
	--gtd-win-soft: #4BD98C;
	--gtd-loss: #E5484D;
	--gtd-loss-soft: #F0797D;

	--gtd-radius: 10px;
	/*
	 * Industry (Fort Foundry) is the logo's typeface and the intended display
	 * face. It is a commercial font — it only renders once a licensed web embed
	 * is loaded (see inc/enqueue.php). League Spartan is the fallback so the
	 * site never renders in a system font while that is being sorted out.
	 */
	--gtd-display: 'Industry', 'League Spartan', 'Inter', system-ui, sans-serif;
	--gtd-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
	background: var(--gtd-bg);
	color: var(--gtd-text);
	font-family: var(--gtd-body);
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4,
.gtd-display {
	font-family: var(--gtd-display);
	font-weight: 800;
	font-style: italic;
	letter-spacing: -0.02em;
	line-height: 1.04;
	text-transform: uppercase;
}

/*
 * The italic is real, not synthesised. The Adobe Fonts project carries Industry
 * Italic at 400 and 700, so the browser loads a drawn italic rather than
 * slanting the upright — which on a squared-off face like this one looks
 * obviously wrong. If the web project ever loses the italic styles, League
 * Spartan takes over and the headings quietly go back to upright rather than
 * turning into a faux oblique.
 *
 * The score bar is the exception: those four cards are data, and data reads
 * better upright. The cards use <p> elements rather than headings so they are
 * already excluded, but this makes it explicit so a future heading added inside
 * one doesn't silently start leaning.
 */
.gtd-scorebar h1,
.gtd-scorebar h2,
.gtd-scorebar h3,
.gtd-scorebar h4,
.gtd-scorebar .gtd-display,
.gtd-scorebar .gtd-stat__label,
.gtd-scorebar .gtd-score,
.gtd-scorebar .gtd-bignum,
.gtd-scorebar .gtd-rank__pos {
	font-style: normal;
}

/* Screen-reader-only. Used for the homepage H1 and table captions. */
.screen-reader-text,
.gtd-vh {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

/* -------------------------------------------------------------------------
 * BRAND MOTIF — the roundel's tick ring, unrolled into a waveform.
 * Clock ticks and audio bars are the same shape, which is a useful accident
 * for a podcast. The tile is seamless, so it repeats at any width.
 * ---------------------------------------------------------------------- */
.gtd-wave {
	height: 34px;
	background: url('../img/wave.svg?rev=2') repeat-x center / auto 34px;
	opacity: 0.85;
}

.gtd-wave--slim {
	height: 26px;
	background-size: auto 26px;
	opacity: 0.5;
}

/* -------------------------------------------------------------------------
 * HEADER
 * ---------------------------------------------------------------------- */
.gtd-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(11, 11, 11, 0.9);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--gtd-line);
}

.gtd-header.is-scrolled {
	background: rgba(11, 11, 11, 0.97);
	box-shadow: 0 6px 26px -12px #000;
}

.gtd-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 76px;
	transition: height 0.22s;
}

.gtd-header.is-scrolled .gtd-header__inner {
	height: 60px;
}

.gtd-header.is-scrolled .gtd-wave {
	height: 0;
	opacity: 0;
	overflow: hidden;
	transition: 0.25s;
}

/* Roundel at rest, wordmark once scrolled. */
.gtd-logo {
	display: flex;
	align-items: center;
}

.gtd-logo__roundel {
	display: block;
	flex: none;
	width: 52px;
	height: 52px;
	background: url('../img/gtd-roundel.png?rev=2') center / contain no-repeat;
	transition: width 0.26s, height 0.26s, opacity 0.2s;
}

.gtd-logo__wordmark {
	display: block;
	flex: none;
	width: 0;
	height: 30px;
	opacity: 0;
	overflow: hidden;
	background: url('../img/gtd-wordmark.png?rev=2') left center / contain no-repeat;
	transition: width 0.26s, opacity 0.22s;
}

.gtd-header.is-scrolled .gtd-logo__roundel {
	width: 0;
	height: 40px;
	opacity: 0;
}

.gtd-header.is-scrolled .gtd-logo__wordmark {
	width: 124px;
	opacity: 1;
}

.gtd-nav {
	display: flex;
	gap: 4px;
	align-items: center;
}

.gtd-nav a {
	font-family: var(--gtd-display);
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.01em;
	padding: 9px 10px;
	border-radius: 6px;
	color: #C6CFD6;
	text-decoration: none;
	transition: 0.16s;
	position: relative;
}

.gtd-nav a:hover,
.gtd-nav a:focus-visible {
	color: var(--gtd-text);
	background: var(--gtd-surface-2);
}

.gtd-nav .current-menu-item > a {
	color: var(--gtd-teal-bright);
}

.gtd-nav .current-menu-item > a::after {
	content: '';
	position: absolute;
	left: 10px;
	right: 10px;
	bottom: 2px;
	height: 2px;
	background: var(--gtd-teal);
	border-radius: 2px;
}

/* -------------------------------------------------------------------------
 * SCORE BAR
 * ---------------------------------------------------------------------- */
.gtd-scorebar {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
	margin: 22px 0;
}

.gtd-stat {
	background: var(--gtd-surface);
	border: 1px solid var(--gtd-line);
	border-radius: var(--gtd-radius);
	padding: 17px 18px 16px;
	position: relative;
	overflow: hidden;
	transition: 0.18s;
}

.gtd-stat::before {
	content: '';
	position: absolute;
	inset: 0 0 auto 0;
	height: 3px;
	background: var(--gtd-teal);
}

.gtd-stat--win::before {
	background: linear-gradient(90deg, var(--gtd-win), #0F9C52);
}

.gtd-stat--loss::before {
	background: linear-gradient(90deg, var(--gtd-loss), #A12B2F);
}

.gtd-stat--next::before {
	background: var(--gtd-orange);
}

.gtd-stat:hover {
	border-color: #37424C;
	transform: translateY(-2px);
}

.gtd-stat__label {
	font-size: 10px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--gtd-muted);
	font-weight: 700;
	margin: 0 0 11px;
}

.gtd-stat__sub {
	font-size: 11.5px;
	color: var(--gtd-muted);
	margin: 9px 0 0;
	display: flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
}

.gtd-score {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--gtd-display);
	margin: 0;
}

.gtd-team {
	font-size: 19px;
	font-weight: 700;
	color: #95A2AC;
	letter-spacing: 0.04em;
}

.gtd-team--us {
	color: var(--gtd-text);
}

.gtd-num {
	font-size: 31px;
	font-weight: 800;
	line-height: 1;
}

.gtd-num--win { color: var(--gtd-win); }
.gtd-num--loss { color: var(--gtd-loss-soft); }
.gtd-num--other { color: #7C8892; }

.gtd-vs {
	font-size: 14px;
	color: #55626D;
	font-weight: 600;
}

/*
 * The W/L/T letter. Colour is never the only signal — around 8% of men have a
 * red/green colour deficiency and this audience skews heavily male.
 */
.gtd-pill {
	background: var(--gtd-surface-2);
	border: 1px solid var(--gtd-line);
	border-radius: 4px;
	padding: 1px 7px;
	font-size: 10.5px;
	font-weight: 700;
	color: #A9B4BD;
}

.gtd-pill--win {
	background: rgba(37, 200, 113, 0.14);
	border-color: rgba(37, 200, 113, 0.4);
	color: var(--gtd-win-soft);
}

.gtd-pill--loss {
	background: rgba(229, 72, 77, 0.14);
	border-color: rgba(229, 72, 77, 0.4);
	color: var(--gtd-loss-soft);
}

.gtd-bignum {
	font-family: var(--gtd-display);
	font-size: 38px;
	font-weight: 800;
	line-height: 1;
	margin: 0;
}

.gtd-rank {
	display: flex;
	align-items: baseline;
	gap: 8px;
	margin: 0;
}

.gtd-rank__pos {
	font-family: var(--gtd-display);
	font-size: 38px;
	font-weight: 800;
	color: var(--gtd-teal-bright);
	line-height: 1;
}

.gtd-rank__of {
	font-size: 12.5px;
	color: var(--gtd-muted);
}

.gtd-tz {
	color: var(--gtd-muted);
	font-size: 0.92em;
}

.gtd-sep {
	color: #455260;
}

/* -------------------------------------------------------------------------
 * STANDINGS TABLE
 * ---------------------------------------------------------------------- */
.gtd-standings {
	background: var(--gtd-surface);
	border: 1px solid var(--gtd-line);
	border-radius: 12px;
	overflow: hidden;
	margin: 26px 0;
}

.gtd-standings__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 14px;
	padding: 17px 20px;
	border-bottom: 1px solid var(--gtd-line);
	flex-wrap: wrap;
}

.gtd-standings__title {
	font-size: 20px;
	margin: 0;
}

/* Stale data that looks live is worse than no data. Keep this visible. */
.gtd-standings__updated {
	font-size: 11.5px;
	color: var(--gtd-muted);
	margin: 0;
}

.gtd-table {
	width: 100%;
	border-collapse: collapse;
	font-variant-numeric: tabular-nums;
}

.gtd-table th,
.gtd-table td {
	padding: 12px 14px;
	text-align: center;
	font-size: 14px;
	border-bottom: 1px solid var(--gtd-line);
}

.gtd-table thead th {
	font-family: var(--gtd-display);
	font-size: 11px;
	letter-spacing: 0.12em;
	color: var(--gtd-muted);
	font-weight: 700;
	text-transform: uppercase;
}

.gtd-table thead th abbr {
	text-decoration: none;
	border: 0;
}

.gtd-table__team {
	text-align: left !important;
	font-weight: 600;
	color: var(--gtd-text);
}

.gtd-table__pos {
	display: inline-block;
	width: 20px;
	color: var(--gtd-muted);
	font-size: 12px;
	font-weight: 500;
}

.gtd-table tbody tr:last-child th,
.gtd-table tbody tr:last-child td {
	border-bottom: 0;
}

.gtd-row--us {
	background: rgba(0, 142, 151, 0.08);
}

.gtd-row--us .gtd-table__team {
	box-shadow: inset 3px 0 0 var(--gtd-teal);
	color: var(--gtd-teal-bright);
}

/* -------------------------------------------------------------------------
 * EDITOR HELPERS
 * ---------------------------------------------------------------------- */
.gtd-empty {
	padding: 18px;
	border: 1px dashed var(--gtd-line);
	border-radius: 8px;
	color: var(--gtd-muted);
	font-size: 14px;
	text-align: center;
	margin: 0;
}

/* Only ever visible to logged-in editors — see inc/seo.php. */
.gtd-no-alt {
	outline: 3px solid var(--gtd-loss);
	outline-offset: 2px;
}

/* -------------------------------------------------------------------------
 * RESPONSIVE
 * ---------------------------------------------------------------------- */
@media (max-width: 1000px) {
	/*
	 * The nav is hidden and the burger takes over. Everything below is the
	 * open state — without it the burger had nothing to reveal.
	 */
	.gtd-nav {
		display: none;
	}

	.gtd-header.is-nav-open .gtd-nav {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 0;

		/* Anchored to the header, which is position:sticky and therefore the
		   containing block. Full width so it reads as a panel, not a tooltip. */
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		padding: 6px 0 12px;
		background: rgba(11, 11, 11, 0.98);
		backdrop-filter: blur(14px);
		border-bottom: 1px solid var(--gtd-line);
		box-shadow: 0 18px 40px -18px #000;

		/* Long menus scroll inside the panel rather than off the screen. */
		max-height: calc(100vh - 100%);
		overflow-y: auto;
	}

	.gtd-header.is-nav-open .gtd-nav > li { width: 100%; }

	.gtd-header.is-nav-open .gtd-nav a {
		display: block;
		white-space: normal;
		padding: 13px 20px;
		font-size: 15px;
		border-radius: 0;
	}

	/*
	 * Submenus stack in the flow instead of floating. The desktop behaviour is
	 * hover-driven, and hover does not exist on a touchscreen — a tap on a
	 * group heading toggles .is-open instead (see bindMenu in gtd.js), so the
	 * display is switched on that rather than on :hover.
	 */
	.gtd-header.is-nav-open .gtd-nav .sub-menu {
		display: none;
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		min-width: 0;
		margin: 0;
		padding: 0;
		border: 0;
		border-radius: 0;
		background: transparent;
		box-shadow: none;
	}

	.gtd-header.is-nav-open .gtd-nav li.is-open > .sub-menu { display: block; }

	.gtd-header.is-nav-open .gtd-nav .sub-menu a {
		padding-left: 38px;
		font-size: 14px;
		color: var(--gtd-muted);
	}

	/*
	 * The hover bridge is a 10px invisible strip below each parent item. On a
	 * touchscreen it has nothing to bridge and sits over the item beneath,
	 * swallowing taps.
	 */
	.gtd-header.is-nav-open .gtd-nav li.menu-item-has-children::after {
		content: none;
	}

	/* The caret should point down when collapsed, up when expanded. */
	.gtd-header.is-nav-open .gtd-nav .gtd-menu-heading > a::after {
		opacity: 1;
		right: 20px;
	}
}

@media (max-width: 640px) {
	.gtd-scorebar {
		grid-template-columns: 1fr 1fr;
		gap: 10px;
	}

	.gtd-stat {
		padding: 14px 12px;
	}

	/* Scores clip at 390px without this — "MIA 14 – 7 NYJ" is tight. */
	.gtd-score {
		gap: 6px;
		flex-wrap: nowrap;
	}

	.gtd-team { font-size: 15px; }
	.gtd-num { font-size: 25px; }
	.gtd-vs { font-size: 12px; }
	.gtd-bignum,
	.gtd-rank__pos { font-size: 32px; }

	.gtd-stat__label {
		font-size: 9px;
		letter-spacing: 0.14em;
		margin-bottom: 9px;
	}

	.gtd-stat__sub { font-size: 10.5px; }

	.gtd-logo__roundel { width: 42px; height: 42px; }

	.gtd-table th,
	.gtd-table td {
		padding: 10px 8px;
		font-size: 13px;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}
}

/* =========================================================================
 * LAYOUT PRIMITIVES
 * ====================================================================== */
.gtd-wrap {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 20px;
	width: 100%;
}

/* GeneratePress paints its own light background behind content. */
.gtd .site-content,
.gtd .inside-article,
.gtd .site-footer,
.gtd .separate-containers .inside-article {
	background: transparent;
	padding: 0;
	box-shadow: none;
}

.gtd .site-content { padding: 0 0 60px; }

.gtd-section { margin-top: 56px; }

.gtd-sechead {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 22px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--gtd-line);
}

.gtd-sechead h2 {
	font-size: clamp(20px, 2.4vw, 27px);
	margin: 0;
	display: flex;
	align-items: center;
	gap: 12px;
}

.gtd-sechead h2::before {
	content: '';
	width: 4px;
	height: 24px;
	background: var(--gtd-orange);
	border-radius: 2px;
	flex: none;
}

.gtd-sechead a {
	font-size: 13px;
	color: var(--gtd-teal-bright);
	font-weight: 600;
	white-space: nowrap;
	text-decoration: none;
}

.gtd-sechead a:hover { color: #fff; }

.gtd-dot {
	display: inline-block;
	width: 3px;
	height: 3px;
	background: #455260;
	border-radius: 50%;
	vertical-align: middle;
}

.gtd-tag {
	display: inline-block;
	background: var(--gtd-orange);
	color: #fff;
	font-family: var(--gtd-display);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 5px 12px;
	border-radius: 4px;
	margin-bottom: 14px;
}

.gtd-byline {
	font-size: 13px;
	color: var(--gtd-muted);
	display: flex;
	gap: 9px;
	align-items: center;
	flex-wrap: wrap;
	margin: 0;
}

.gtd-byline__author { color: var(--gtd-teal-bright); font-weight: 600; }

/* =========================================================================
 * TOP STRIP + BURGER
 * ====================================================================== */
.gtd-topstrip {
	background: var(--gtd-surface-2);
	border-bottom: 1px solid var(--gtd-line);
	font-size: 12px;
	color: var(--gtd-muted);
}

.gtd-topstrip__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 34px;
}

.gtd-topstrip__links { display: flex; gap: 14px; }
.gtd-topstrip__links a { color: inherit; text-decoration: none; }
.gtd-topstrip__links a:hover { color: var(--gtd-teal-bright); }

.gtd-burger {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: 0;
	cursor: pointer;
	padding: 8px;
}

.gtd-header.is-nav-open .gtd-burger span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.gtd-header.is-nav-open .gtd-burger span:nth-child(2) {
	opacity: 0;
}

.gtd-header.is-nav-open .gtd-burger span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.gtd-burger span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--gtd-text);
	border-radius: 2px;
	transition: transform 0.18s, opacity 0.18s;
}

/* =========================================================================
 * HERO
 * ====================================================================== */
.gtd-hero {
	position: relative;
	margin-top: 22px;
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid var(--gtd-line);
	background: linear-gradient(135deg, #1a1a1a, #0e0e0e 60%);
	min-height: 420px;
}

.gtd-hero__slide {
	display: none;
	position: relative;
	min-height: 420px;
}

.gtd-hero__slide.is-active { display: flex; align-items: flex-end; }

.gtd-hero__media { position: absolute; inset: 0; }

.gtd-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gtd-hero__slide::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(8,8,8,.95) 4%, rgba(8,8,8,.55) 42%, rgba(8,8,8,.1) 78%);
}

.gtd-hero__body {
	position: relative;
	z-index: 2;
	padding: 40px;
	max-width: 790px;
}

.gtd-hero__title {
	font-size: clamp(27px, 3.9vw, 47px);
	font-weight: 800;
	letter-spacing: -0.02em;
	margin: 0 0 14px;
}

.gtd-hero__title a { color: inherit; text-decoration: none; }
.gtd-hero__title a:hover { color: var(--gtd-teal-bright); }

.gtd-hero__standfirst {
	color: #B4BEC7;
	font-size: 17px;
	max-width: 620px;
	margin: 0 0 16px;
}

.gtd-hero__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(11,11,11,.62);
	border: 1px solid var(--gtd-line);
	color: #fff;
	cursor: pointer;
	font-size: 17px;
	line-height: 1;
}

.gtd-hero__arrow:hover { background: var(--gtd-teal); color: #04191b; }
.gtd-hero__arrow--prev { left: 16px; }
.gtd-hero__arrow--next { right: 16px; }

.gtd-hero__dots {
	position: absolute;
	bottom: 22px;
	right: 34px;
	z-index: 3;
	display: flex;
	gap: 8px;
}

.gtd-hero__dot {
	width: 9px;
	height: 9px;
	border: 0;
	padding: 0;
	border-radius: 50%;
	background: rgba(255,255,255,.28);
	cursor: pointer;
	transition: 0.2s;
}

.gtd-hero__dot.is-active {
	background: var(--gtd-teal-bright);
	width: 26px;
	border-radius: 5px;
}

/* =========================================================================
 * CARD GRIDS
 * ====================================================================== */
.gtd-grid { display: grid; gap: 20px; }
.gtd-grid--4 { grid-template-columns: repeat(4, 1fr); }
.gtd-grid--3 { grid-template-columns: repeat(3, 1fr); }

.gtd-card {
	background: var(--gtd-surface);
	border: 1px solid var(--gtd-line);
	border-radius: 11px;
	overflow: hidden;
	transition: 0.2s;
}

.gtd-card:hover { border-color: #39444E; transform: translateY(-3px); }
.gtd-card__link { display: flex; flex-direction: column; height: 100%; text-decoration: none; color: inherit; }

.gtd-card__media {
	aspect-ratio: 16 / 10;
	background: linear-gradient(135deg, #1b1b1b, #0e0e0e);
	position: relative;
	overflow: hidden;
}

.gtd-card__media img { width: 100%; height: 100%; object-fit: cover; }

.gtd-card__cat {
	position: absolute;
	top: 10px;
	left: 10px;
	background: rgba(0,142,151,.95);
	color: #04191b;
	font-family: var(--gtd-display);
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 3px 9px;
	border-radius: 3px;
}

.gtd-card__body { padding: 15px 16px 17px; flex: 1; display: flex; flex-direction: column; }

.gtd-card__title {
	font-family: var(--gtd-body);
	text-transform: none;
	letter-spacing: 0;
	font-size: 15.5px;
	font-weight: 600;
	line-height: 1.38;
	margin: 0 0 9px;
}

.gtd-card:hover .gtd-card__title { color: var(--gtd-teal-bright); }

.gtd-card__meta {
	font-size: 11.5px;
	color: var(--gtd-muted);
	margin: auto 0 0;
	display: flex;
	gap: 8px;
	align-items: center;
}

/* =========================================================================
 * BUTTONS
 * ====================================================================== */
.gtd-btn {
	display: inline-block;
	background: var(--gtd-teal);
	color: #04191b;
	font-family: var(--gtd-display);
	font-weight: 700;
	font-size: 15px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 11px 26px;
	border-radius: 6px;
	text-decoration: none;
	transition: 0.18s;
}

.gtd-btn:hover { background: #fff; }
.gtd-btn--ghost { background: transparent; border: 1px solid var(--gtd-line); color: var(--gtd-text); }
.gtd-btn--ghost:hover { border-color: var(--gtd-teal); color: var(--gtd-teal-bright); background: transparent; }
.gtd-btn--lg { padding: 14px 34px; font-size: 16px; }
.gtd-morewrap { display: flex; justify-content: center; margin-top: 28px; }

/* =========================================================================
 * PAGE HEADS, FILTERS, ROSTER
 * ====================================================================== */
.gtd-pagehead { padding: 34px 0 6px; }
.gtd-pagehead h1 { font-size: clamp(30px, 4vw, 44px); margin: 0 0 9px; }
.gtd-pagehead__sub { color: var(--gtd-muted); font-size: 15.5px; margin: 0; }

.gtd-filters {
	display: flex;
	gap: 8px;
	align-items: center;
	flex-wrap: wrap;
	background: var(--gtd-surface);
	border: 1px solid var(--gtd-line);
	border-radius: 10px;
	padding: 13px 15px;
	margin: 22px 0 30px;
}

.gtd-filters__label {
	font-size: 11px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--gtd-muted);
	font-weight: 700;
	margin-right: 4px;
}

.gtd-chip {
	background: var(--gtd-surface-2);
	border: 1px solid var(--gtd-line);
	border-radius: 100px;
	padding: 5px 14px;
	font-size: 12.5px;
	color: #AEB9C2;
	text-decoration: none;
	transition: 0.15s;
}

.gtd-chip:hover { border-color: var(--gtd-muted); color: var(--gtd-text); }
.gtd-chip.is-active { background: var(--gtd-teal); border-color: var(--gtd-teal); color: #04191b; font-weight: 600; }

.gtd-roster {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 16px;
}

.gtd-player {
	background: var(--gtd-surface);
	border: 1px solid var(--gtd-line);
	border-radius: 11px;
	overflow: hidden;
	transition: 0.2s;
}

.gtd-player:hover,
.gtd-player:focus-within { border-color: var(--gtd-teal); transform: translateY(-3px); }

.gtd-player__link { display: block; text-decoration: none; color: inherit; }

/* Pin the link colour on hover.
 *
 * GeneratePress sets its own a:hover colour, and `a:hover` (0,1,1) outranks
 * `.gtd-player__link` (0,1,0) — so hovering the card repainted every bit of
 * text inside it, including the vitals, with the parent theme's link-hover
 * colour. That is why the name appeared to go darker on hover: nothing here was
 * changing it, GeneratePress was. Two classes puts us back in front. */
.gtd-player__link:hover,
.gtd-player__link:focus { color: inherit; }

/* The name, deliberately, goes orange. 5.47:1 on the card — checked. */
.gtd-player:hover .gtd-player__name,
.gtd-player:focus-within .gtd-player__name {
	color: var(--gtd-orange);
	transition: color 0.2s;
}





.gtd-player__body { padding: 13px 14px 15px; }

.gtd-player__name {
	font-family: var(--gtd-body);
	text-transform: none;
	letter-spacing: 0;
	font-size: 14.5px;
	font-weight: 600;
	margin: 0 0 4px;
	line-height: 1.3;
}

.gtd-player__vitals {
	display: flex;
	flex-wrap: wrap;
	gap: 2px 12px;
	font-size: 11.5px;
	color: #C3CCD3;
	margin: 0;
}

/* The HT/WT keys. Muted at full strength rather than faded — they are labels
   carrying meaning, so they have to clear 4.5:1 like any other text (6.11 here;
   knocking the opacity back to .7 would drop them under it). */
.gtd-player__vitalkey {
	font-family: var(--gtd-display);
	font-weight: 800;
	font-size: 10px;
	letter-spacing: 0.08em;
	color: var(--gtd-muted);
	margin-right: 3px;
}

/* Player page */
.gtd-crumbs { font-size: 12.5px; color: var(--gtd-muted); padding: 20px 0 0; }
.gtd-crumbs a { color: var(--gtd-teal-bright); text-decoration: none; }

.gtd-playerpage__head {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 32px;
	align-items: center;
	margin: 24px 0 30px;
}



.gtd-playerpage__intro h1 { font-size: clamp(30px, 4vw, 46px); margin: 6px 0 14px; }
.gtd-playerpage__bio { color: #B4BEC7; font-size: 15.5px; }

.gtd-vitals {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
	gap: 1px;
	background: var(--gtd-line);
	border: 1px solid var(--gtd-line);
	border-radius: 10px;
	overflow: hidden;
	margin: 0 0 30px;
}

.gtd-vitals__item { background: var(--gtd-surface); padding: 14px 16px; }
.gtd-vitals dt { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gtd-muted); font-weight: 700; margin-bottom: 6px; }
.gtd-vitals dd { margin: 0; font-family: var(--gtd-display); font-size: 20px; font-weight: 700; }

.gtd-prose p { color: #CBD4DB; font-size: 16.5px; line-height: 1.75; margin-bottom: 19px; }
.gtd-video { border-radius: 12px; overflow: hidden; border: 1px solid var(--gtd-line); }
.gtd-video iframe { display: block; width: 100%; aspect-ratio: 16/9; height: auto; }

/* =========================================================================
 * RESPONSIVE
 * ====================================================================== */
@media (max-width: 1100px) {
	.gtd-roster { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 1000px) {
	.gtd-grid--4 { grid-template-columns: repeat(2, 1fr); }
	.gtd-grid--3 { grid-template-columns: repeat(2, 1fr); }
	.gtd-roster { grid-template-columns: repeat(3, 1fr); }
	.gtd-burger { display: flex; }
	.gtd-playerpage__head { grid-template-columns: 1fr; }
	.gtd-playerpage__media { max-width: 240px; }
}

@media (max-width: 640px) {
	.gtd-grid--4,
	.gtd-grid--3 { grid-template-columns: 1fr; }
	.gtd-roster { grid-template-columns: repeat(2, 1fr); }
	.gtd-hero__body { padding: 24px; }
	.gtd-hero__slide,
	.gtd-hero { min-height: 380px; }
	.gtd-hero__arrow { display: none; }

	/* Hide the standfirst on phones.
	 *
	 * At this width the headline already wraps to four or five lines, and four
	 * more of summary underneath turns a photograph with a headline on it into a
	 * wall of text with a picture behind it. The headline is the hook; the
	 * standfirst is saying the same thing again at the cost of the image.
	 *
	 * Done in CSS rather than by skipping it in the template, because the site
	 * is full-page cached — whoever warms the cache would decide what everyone
	 * else sees. Same reason the kickoff times convert in the browser.
	 *
	 * It stays on desktop, where there is room for it. */
	.gtd-hero__standfirst { display: none; }
	.gtd-topstrip__tag { display: none; }
	.gtd-topstrip__inner { justify-content: center; }
	.gtd-section { margin-top: 42px; }
}

/* =========================================================================
 * GENERATEPRESS OVERRIDES
 * Parent chrome we don't use. Kept here rather than removed via hooks so a
 * parent update can't leave stray markup unstyled.
 * ====================================================================== */
.gtd .site-header {
	background: transparent;
	padding: 0;
	border: 0;
}

.gtd .site-header .header-widget,
.gtd .site-header .site-branding,
.gtd .main-navigation:not(.gtd-nav),
.gtd .site-header form.search-form,
.gtd .site-header .navigation-search { display: none; }

/* Footer */
.gtd .site-footer,
.gtd .site-info,
.gtd .footer-widgets {
	background: var(--gtd-surface);
	color: var(--gtd-muted);
	border-top: 1px solid var(--gtd-line);
}

.gtd .site-info { font-size: 12.5px; padding: 22px 0; }
.gtd .site-info a { color: var(--gtd-teal-bright); }

.gtd .footer-widgets { padding: 40px 0 10px; border-top: 0; }
.gtd .footer-widgets .widget-title {
	font-family: var(--gtd-display);
	text-transform: uppercase;
	font-size: 13.5px;
	letter-spacing: 0.06em;
	color: var(--gtd-text);
	margin-bottom: 14px;
}
.gtd .footer-widgets a { color: var(--gtd-muted); text-decoration: none; }
.gtd .footer-widgets a:hover { color: var(--gtd-teal-bright); }

/* Top strip sits above the sticky header, full-bleed. */
.gtd-topstrip { position: relative; z-index: 101; }
.gtd-topstrip a { color: var(--gtd-muted) !important; text-decoration: none !important; }
.gtd-topstrip a:hover { color: var(--gtd-teal-bright) !important; }
.gtd-topstrip__tag { color: var(--gtd-muted); }

/* =========================================================================
 * ARTICLE
 * ====================================================================== */
.gtd-artlayout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 44px;
	margin-top: 26px;
	align-items: start;
}

.gtd-arthead__title {
	font-size: clamp(26px, 3.6vw, 41px);
	font-weight: 800;
	letter-spacing: -0.025em;
	line-height: 1.08;
	text-transform: none;
	margin: 0 0 16px;
}

.gtd-standfirst {
	font-size: 18.5px;
	color: #B3BEC7;
	line-height: 1.6;
	margin: 0 0 20px;
	padding-left: 16px;
	border-left: 3px solid var(--gtd-teal);
}

.gtd-artmeta {
	display: flex;
	align-items: center;
	gap: 13px;
	padding: 15px 0;
	border-top: 1px solid var(--gtd-line);
	border-bottom: 1px solid var(--gtd-line);
	margin-bottom: 24px;
}

.gtd-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--gtd-teal), var(--gtd-teal-dim));
	display: grid;
	place-items: center;
	font-weight: 700;
	color: #04191b;
	font-size: 14px;
	flex: none;
}

.gtd-avatar--lg { width: 60px; height: 60px; font-size: 19px; }
.gtd-artmeta__who b { display: block; font-size: 13.5px; font-weight: 600; }
.gtd-artmeta__who span { font-size: 12px; color: var(--gtd-muted); }

.gtd-artfig {
	border-radius: 11px;
	overflow: hidden;
	border: 1px solid var(--gtd-line);
	margin: 0 0 12px;
}

.gtd-artfig img { display: block; width: 100%; height: auto; }
.gtd-caption { font-size: 12px; color: var(--gtd-muted); font-style: italic; margin: 8px 0 26px; }

.gtd-prose h2 {
	font-size: 23px;
	margin: 34px 0 14px;
	text-transform: none;
	letter-spacing: -0.015em;
}

.gtd-prose h3 { font-size: 19px; margin: 28px 0 12px; text-transform: none; letter-spacing: -0.01em; }
.gtd-prose a { color: var(--gtd-teal-bright); }
.gtd-prose img { border-radius: 10px; }
.gtd-prose ul, .gtd-prose ol { color: #CBD4DB; margin: 0 0 19px 1.2em; }
.gtd-prose li { margin-bottom: 8px; }

.gtd-prose blockquote {
	border-left: 3px solid var(--gtd-orange);
	padding: 6px 0 6px 22px;
	margin: 28px 0;
	font-size: 19px;
	font-family: var(--gtd-display);
	line-height: 1.35;
	letter-spacing: -0.01em;
	color: #fff;
}

.gtd-keybox {
	background: var(--gtd-surface);
	border: 1px solid var(--gtd-line);
	border-left: 3px solid var(--gtd-teal);
	border-radius: 8px;
	padding: 20px 22px;
	margin: 0 0 28px;
}

.gtd-keybox__title {
	font-family: var(--gtd-display);
	text-transform: uppercase;
	font-weight: 800;
	font-size: 12.5px;
	letter-spacing: 0.08em;
	color: var(--gtd-teal-bright);
	margin: 0 0 12px;
}

.gtd-keybox ul { list-style: none; margin: 0; padding: 0; }
.gtd-keybox li { font-size: 14.5px; color: #BCC6CE; padding-left: 19px; position: relative; margin-bottom: 9px; }
.gtd-keybox li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 8px;
	width: 6px;
	height: 6px;
	background: var(--gtd-orange);
	border-radius: 50%;
}

.gtd-tagrow { display: flex; gap: 8px; flex-wrap: wrap; margin: 30px 0; }
.gtd-tagrow a {
	background: var(--gtd-surface-2);
	border: 1px solid var(--gtd-line);
	border-radius: 5px;
	padding: 5px 12px;
	font-size: 12.5px;
	color: #A9B4BD;
	text-decoration: none;
	transition: 0.15s;
}
.gtd-tagrow a:hover { border-color: var(--gtd-teal); color: var(--gtd-teal-bright); }

.gtd-authorbox {
	background: var(--gtd-surface);
	border: 1px solid var(--gtd-line);
	border-radius: 11px;
	padding: 22px;
	display: flex;
	gap: 17px;
	margin: 30px 0;
}

.gtd-authorbox__name { font-family: var(--gtd-display); font-weight: 800; font-size: 17px; margin: 0 0 5px; }
.gtd-authorbox__bio { font-size: 13.5px; color: var(--gtd-muted); line-height: 1.6; margin: 0; }

/* Sidebar */
.gtd-sticky { position: sticky; top: 126px; }

.gtd-widget {
	background: var(--gtd-surface);
	border: 1px solid var(--gtd-line);
	border-radius: 11px;
	padding: 19px;
	margin-bottom: 20px;
}

.gtd-widget__title {
	font-family: var(--gtd-display);
	text-transform: uppercase;
	font-weight: 800;
	font-size: 13px;
	letter-spacing: 0.06em;
	margin: 0 0 15px;
	display: flex;
	align-items: center;
	gap: 9px;
}

.gtd-widget__title::before {
	content: '';
	width: 3px;
	height: 15px;
	background: var(--gtd-orange);
	border-radius: 2px;
}

.gtd-widget__ep { text-decoration: none; color: inherit; display: block; }
.gtd-widget__ep img { border-radius: 8px; margin-bottom: 10px; width: 100%; height: auto; }
.gtd-widget__eptitle { font-size: 13.5px; font-weight: 600; line-height: 1.4; margin: 0; }
.gtd-widget__ep:hover .gtd-widget__eptitle { color: var(--gtd-teal-bright); }

.gtd-ranklist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.gtd-ranklist li { display: flex; gap: 12px; }
.gtd-ranklist__n {
	font-family: var(--gtd-display);
	font-size: 24px;
	font-weight: 800;
	color: var(--gtd-line);
	line-height: 1;
	flex: none;
	width: 26px;
}
.gtd-ranklist a { font-size: 13.3px; line-height: 1.42; font-weight: 500; color: inherit; text-decoration: none; }
.gtd-ranklist li:hover .gtd-ranklist__n { color: var(--gtd-teal-bright); }
.gtd-ranklist a:hover { color: var(--gtd-teal-bright); }

/* Ad slots.
 *
 * Two states from one class. A real ad unit gets no decoration at all — just
 * reserved height, so the page doesn't jump when it loads. The dashed box is
 * the empty state, and only an editor ever sees it (see gtd_ad_slot() in
 * inc/ads.php): a live page carrying a grey "Ad slot" box reads as unfinished.
 *
 * min-height, not height: responsive units size themselves and a hard height
 * would either crop a tall ad or leave a gap under a short one.
 */
.gtd-adslot { display: block; }
.gtd-adslot .adsbygoogle { display: block; width: 100%; }

.gtd-adslot--tall { min-height: 600px; }
.gtd-adslot--leader { min-height: 92px; margin: 22px 0; }
.gtd-adslot--rect { min-height: 250px; margin: 30px 0; }

.gtd-adslot--empty {
	border: 1px dashed #33404B;
	border-radius: var(--gtd-radius);
	background: repeating-linear-gradient(45deg, rgba(255,255,255,.012) 0 10px, transparent 10px 20px);
	display: grid;
	place-items: center;
	color: #5E6C77;
	font-size: 11px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	font-weight: 600;
}

/* =========================================================================
 * ARTICLES ARCHIVE
 * ====================================================================== */
.gtd-lead {
	display: grid;
	grid-template-columns: 1.25fr 1fr;
	background: var(--gtd-surface);
	border: 1px solid var(--gtd-line);
	border-radius: 13px;
	overflow: hidden;
	margin-bottom: 16px;
	transition: 0.2s;
}

.gtd-lead:hover { border-color: #39444E; }
.gtd-lead__media { display: block; min-height: 330px; background: linear-gradient(135deg, #1b1b1b, #0e0e0e); }
.gtd-lead__media img { width: 100%; height: 100%; object-fit: cover; }
.gtd-lead__body { padding: 34px; display: flex; flex-direction: column; justify-content: center; }

.gtd-lead__flag {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 10.5px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--gtd-orange);
	font-weight: 700;
}

.gtd-lead__flag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gtd-orange); }

.gtd-lead__title {
	font-size: clamp(21px, 2.5vw, 31px);
	font-weight: 800;
	letter-spacing: -0.02em;
	margin: 12px 0 13px;
	text-transform: none;
	line-height: 1.14;
}

.gtd-lead__title a { color: inherit; text-decoration: none; }
.gtd-lead__title a:hover { color: var(--gtd-teal-bright); }
.gtd-lead__standfirst { color: #AEB9C2; font-size: 15px; margin: 0 0 15px; }

.gtd-select {
	appearance: none;
	background: var(--gtd-surface-2);
	border: 1px solid var(--gtd-line);
	color: var(--gtd-text);
	font-family: inherit;
	font-size: 13.5px;
	padding: 8px 13px;
	border-radius: 7px;
	cursor: pointer;
}

.gtd-btn--sm { padding: 8px 18px; font-size: 13px; }
.gtd-filters__clear { margin-left: auto; font-size: 12.5px; color: var(--gtd-teal-bright); text-decoration: none; }

.gtd-pager { margin-top: 36px; }
.gtd-pager .nav-links { display: flex; justify-content: center; gap: 7px; }
.gtd-pager a,
.gtd-pager .current {
	min-width: 40px;
	height: 40px;
	display: grid;
	place-items: center;
	border: 1px solid var(--gtd-line);
	border-radius: 8px;
	font-size: 14px;
	color: #AEB9C2;
	text-decoration: none;
	padding: 0 10px;
}

.gtd-pager a:hover { border-color: var(--gtd-teal); color: var(--gtd-teal-bright); }
.gtd-pager .current { background: var(--gtd-teal); border-color: var(--gtd-teal); color: #04191b; font-weight: 700; }

/* =========================================================================
 * FIXTURES TABLE
 * ====================================================================== */
.gtd-table--fixtures td,
.gtd-table--fixtures th { text-align: left; }
.gtd-table--fixtures td:first-child,
.gtd-table--fixtures th:first-child { text-align: center; width: 50px; }
.gtd-ha { color: var(--gtd-muted); font-weight: 400; margin-right: 5px; }
.gtd-resultscore { font-family: var(--gtd-display); font-weight: 700; margin-left: 6px; }
.gtd-muted { color: var(--gtd-muted); }
.gtd-note { font-size: 12.5px; color: var(--gtd-muted); margin-top: 16px; max-width: 720px; }

@media (max-width: 1000px) {
	.gtd-artlayout { grid-template-columns: 1fr; }
	.gtd-sticky { position: static; }
	.gtd-adslot--tall { height: 250px; }
	.gtd-lead { grid-template-columns: 1fr; }
	.gtd-lead__media { min-height: 210px; }
}

@media (max-width: 640px) {
	.gtd-lead__body { padding: 22px; }
	.gtd-authorbox { flex-direction: column; }
	.gtd-filters { padding: 12px; }
}

/* =========================================================================
 * NAV — real wp_nav_menu output
 * wp_nav_menu puts our class on the <ul>, so the list needs resetting and
 * GeneratePress's dropdown arrows need hiding on a single-level menu.
 * ====================================================================== */
ul.gtd-nav,
.gtd-nav {
	list-style: none;
	margin: 0;
	padding: 0;
}

.gtd-nav li {
	list-style: none;
	margin: 0;
	padding: 0;
	position: relative;
}

.gtd-nav li::marker { content: none; }

/* GeneratePress injects a caret for potential submenus — not wanted on a flat menu. */
.gtd-nav .dropdown-menu-toggle,
.gtd-nav .gp-icon,
.gtd-nav svg.icon-arrow { display: none !important; }

.gtd-nav a { display: inline-block; white-space: nowrap; }

/* Long labels ("Fixtures & Results") crowd the bar — tighten at mid widths. */
@media (max-width: 1400px) {
	.gtd-nav a { font-size: 13px; padding: 9px 8px; }
}

/* =========================================================================
 * LATEST SHOW — video, episode list, audio player
 * ====================================================================== */
.gtd-show__grid {
	display: grid;
	grid-template-columns: 1.85fr 1fr;
	gap: 20px;
	align-items: start;
}

.gtd-show__main {
	background: var(--gtd-surface);
	border: 1px solid var(--gtd-line);
	border-radius: 12px;
	overflow: hidden;
}

.gtd-video { position: relative; }
.gtd-video iframe,
.gtd-video embed,
.gtd-video object {
	display: block;
	width: 100% !important;
	height: auto !important;
	aspect-ratio: 16 / 9;
	border: 0;
}

.gtd-show__meta { padding: 18px 20px; }

.gtd-show__title {
	font-size: 18px;
	margin: 0 0 8px;
	text-transform: none;
	letter-spacing: -0.01em;
}

.gtd-show__title a { color: inherit; text-decoration: none; }
.gtd-show__title a:hover { color: var(--gtd-teal-bright); }

/*
 * Native <audio>. Browsers style the control themselves, so the job here is to
 * give it a container that belongs on a dark page rather than fight the widget.
 */
.gtd-audio {
	margin-top: 14px;
	background: var(--gtd-bg);
	border: 1px solid var(--gtd-line);
	border-radius: 10px;
	padding: 13px 15px;
}

.gtd-audio__label {
	font-size: 12.5px;
	font-weight: 600;
	color: var(--gtd-muted);
	margin: 0 0 9px;
}

.gtd-audio audio {
	width: 100%;
	height: 40px;
	display: block;
	border-radius: 6px;
}

/* Dark-mode the default player where the browser allows it. */
.gtd-audio audio::-webkit-media-controls-panel { background: var(--gtd-surface-2); }

.gtd-show__side { display: flex; flex-direction: column; gap: 11px; }

.gtd-epmini {
	display: flex;
	gap: 12px;
	background: var(--gtd-surface);
	border: 1px solid var(--gtd-line);
	border-radius: 9px;
	padding: 11px;
	transition: 0.18s;
	text-decoration: none;
	color: inherit;
}

.gtd-epmini:hover { border-color: var(--gtd-teal); }

.gtd-epmini__thumb {
	width: 82px;
	height: 52px;
	border-radius: 6px;
	background: linear-gradient(135deg, #1d1d1d, #111) center / cover no-repeat;
	flex: none;
}

.gtd-epmini__body { min-width: 0; }

.gtd-epmini__title {
	display: block;
	font-size: 13.5px;
	font-weight: 600;
	line-height: 1.35;
	margin-bottom: 4px;
}

.gtd-epmini:hover .gtd-epmini__title { color: var(--gtd-teal-bright); }
.gtd-epmini__meta { font-size: 11px; color: var(--gtd-muted); }

/* =========================================================================
 * ABOUT
 * ====================================================================== */
.gtd-about {
	background: var(--gtd-surface);
	border: 1px solid var(--gtd-line);
	border-radius: 13px;
	padding: 38px;
	display: grid;
	grid-template-columns: 1fr 1.35fr;
	gap: 36px;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.gtd-about__media {
	border-radius: 10px;
	overflow: hidden;
	background: linear-gradient(135deg, #1d1d1d, #111);
	aspect-ratio: 4 / 3;
	display: grid;
	place-items: center;
}

.gtd-about__media img { width: 100%; height: 100%; object-fit: cover; }

.gtd-about__placeholder {
	color: #3A3A3A;
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	text-align: center;
	padding: 0 20px;
}

.gtd-about__title {
	font-size: 27px;
	margin: 0 0 15px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.gtd-about__title::before {
	content: '';
	width: 4px;
	height: 26px;
	background: var(--gtd-teal);
	border-radius: 2px;
	flex: none;
}

.gtd-about__text p { color: #AEB9C2; margin-bottom: 13px; font-size: 15.3px; }
.gtd-about__actions { display: flex; gap: 10px; flex-wrap: wrap; margin: 18px 0 0; }

.gtd-about__watermark {
	position: absolute;
	right: -80px;
	bottom: -90px;
	width: 340px;
	height: 340px;
	opacity: 0.055;
	pointer-events: none;
	background: url('../img/gtd-roundel.png?rev=2') center / contain no-repeat;
}

/* =========================================================================
 * FREE-FORM SECTION — whatever is typed into the Home page's editor
 * ====================================================================== */
.gtd-freeform > *:first-child { margin-top: 0; }
.gtd-freeform p { color: #CBD4DB; font-size: 16px; line-height: 1.7; }
.gtd-freeform h2 { font-size: clamp(20px, 2.4vw, 27px); margin: 0 0 20px; }
.gtd-freeform h3 { font-size: 19px; text-transform: none; }
.gtd-freeform a { color: var(--gtd-teal-bright); }

/* =========================================================================
 * PHOTO GRID — the Gallery field on the Home page
 * Uneven tile sizes, worked out from position rather than configured, so a
 * plain drag-and-drop upload produces the layout from the mockup.
 * ====================================================================== */
.gtd-photogrid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: 150px;
	gap: 12px;
}

.gtd-photogrid__item {
	margin: 0;
	border-radius: 9px;
	overflow: hidden;
	border: 1px solid var(--gtd-line);
	transition: 0.2s;
}

.gtd-photogrid__item img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gtd-photogrid__item:hover {
	border-color: var(--gtd-teal);
	transform: scale(1.01);
}

/*
 * The mixed sizing. A repeating pattern of eight gives the 1st image a 2x2
 * tile, the 4th and 7th wide tiles and the 6th a tall one. Because it repeats,
 * it looks deliberate at any number of photos rather than only at the count it
 * was designed against.
 */
.gtd-photogrid__item:nth-child(8n + 1) {
	grid-column: span 2;
	grid-row: span 2;
}
.gtd-photogrid__item:nth-child(8n + 4) { grid-column: span 2; }
.gtd-photogrid__item:nth-child(8n + 6) { grid-row: span 2; }
.gtd-photogrid__item:nth-child(8n + 7) { grid-column: span 2; }

@media (max-width: 1000px) {
	.gtd-show__grid { grid-template-columns: 1fr; }
	.gtd-about { grid-template-columns: 1fr; padding: 26px; }
	.gtd-photogrid {
		grid-template-columns: repeat(3, 1fr);
		grid-auto-rows: 130px;
	}
}

@media (max-width: 640px) {
	.gtd-photogrid {
		grid-template-columns: repeat(2, 1fr);
		grid-auto-rows: 112px;
	}
	.gtd-about { padding: 22px; }
}

/* =========================================================================
 * ROSTER — number-led cards
 * There are no player photographs anywhere on the site, so the jersey number
 * is the identity rather than a stand-in for a missing one. It has to look
 * deliberate, which means big, branded and confident — the opposite of the
 * dim grey placeholder it replaces.
 * ====================================================================== */
.gtd-player__badge {
	position: relative;
	aspect-ratio: 1;
	display: grid;
	place-items: center;
	background:
		radial-gradient(120% 120% at 50% 0%, rgba(0, 142, 151, 0.22), transparent 60%),
		linear-gradient(160deg, #1b1b1b, #0d0d0d);
	background-color: #131313;
	border-bottom: 1px solid var(--gtd-line);
}

.gtd-player__num {
	font-family: var(--gtd-display);
	font-style: italic;
	font-weight: 800;
	font-size: clamp(38px, 6vw, 58px);
	line-height: 1;
	letter-spacing: -0.03em;
	color: var(--gtd-teal-bright);
	text-shadow: 0 2px 18px rgba(0, 142, 151, 0.35);
}

.gtd-player__num--none { color: #333; }

.gtd-player__posbadge {
	position: absolute;
	top: 8px;
	left: 10px;
	font-family: var(--gtd-display);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--gtd-muted);
}

.gtd-player:hover .gtd-player__num,
.gtd-player:focus-within .gtd-player__num {
	color: #fff;
	transition: 0.2s;
}

/* The single player page uses the same idea at a larger size. */
.gtd-playerpage__badge {
	position: relative;
	aspect-ratio: 1;
	border-radius: 12px;
	display: grid;
	place-items: center;
	background:
		radial-gradient(120% 120% at 50% 0%, rgba(0, 142, 151, 0.25), transparent 62%),
		linear-gradient(160deg, #1b1b1b, #0d0d0d);
	border: 1px solid var(--gtd-line);
}

.gtd-playerpage__num {
	font-family: var(--gtd-display);
	font-style: italic;
	font-weight: 800;
	font-size: clamp(64px, 9vw, 104px);
	line-height: 1;
	letter-spacing: -0.03em;
	color: var(--gtd-teal-bright);
	text-shadow: 0 3px 26px rgba(0, 142, 151, 0.4);
}

.gtd-playerpage__posbadge {
	position: absolute;
	top: 12px;
	left: 14px;
	font-family: var(--gtd-display);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: var(--gtd-muted);
}

/* =========================================================================
 * SCHEDULE — the merged Kickoff / Score column
 * Date on top, then either the kickoff time or the final score. One column
 * because a fixture is only ever one or the other.
 * ====================================================================== */
.gtd-when__date {
	display: block;
	color: var(--gtd-muted);
	font-size: 12.5px;
	margin-bottom: 2px;
}

.gtd-when__state { display: block; }

.gtd-tv { white-space: nowrap; }

/* =========================================================================
 * SOCIAL / LISTEN MENU
 * ====================================================================== */
.gtd-social,
.gtd-subscribe__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.gtd-social a {
	color: var(--gtd-muted);
	text-decoration: none;
	font-size: 12px;
}

.gtd-social a:hover,
.gtd-social a:focus { color: var(--gtd-teal-bright); }

.gtd-subscribe {
	margin: 0 0 26px;
}

.gtd-subscribe__list { gap: 10px; }

.gtd-subscribe__list a {
	display: inline-block;
	padding: 8px 15px;
	border: 1px solid var(--gtd-line);
	border-radius: 999px;
	color: var(--gtd-text);
	text-decoration: none;
	font-family: var(--gtd-display);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	transition: 0.2s;
}

.gtd-subscribe__list a:hover,
.gtd-subscribe__list a:focus {
	border-color: var(--gtd-teal);
	color: var(--gtd-teal-bright);
}

/* =========================================================================
 * VIDEO CARDS — the Videos page
 * ====================================================================== */
.gtd-vidcard a { text-decoration: none; color: inherit; display: block; }

.gtd-vidcard__thumb {
	position: relative;
	display: block;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid var(--gtd-line);
	aspect-ratio: 16 / 9;
	background: #111;
}

.gtd-vidcard__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/*
 * YouTube's hqdefault thumbnails are 4:3 with black bars top and bottom on a
 * 16:9 video. object-fit:cover on a 16:9 box already crops those away, because
 * the box is the wider ratio — so no transform is needed, and adding one on top
 * (an earlier attempt used scale(1.35)) crops into the sides and cuts the title
 * text off the thumbnail.
 */

.gtd-vidcard__play {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
}

.gtd-vidcard__play::before {
	content: '';
	width: 46px;
	height: 32px;
	border-radius: 8px;
	background: rgba(0, 0, 0, 0.65);
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.gtd-vidcard__play::after {
	content: '';
	position: absolute;
	border-style: solid;
	border-width: 7px 0 7px 12px;
	border-color: transparent transparent transparent #fff;
}

.gtd-vidcard:hover .gtd-vidcard__thumb { border-color: var(--gtd-teal); }

.gtd-vidcard__title {
	display: block;
	margin-top: 10px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.35;
}

.gtd-vidcard:hover .gtd-vidcard__title { color: var(--gtd-teal-bright); }

.gtd-vidcard__date {
	margin: 4px 0 0;
	font-size: 11.5px;
	color: var(--gtd-muted);
}

/* =========================================================================
 * EPISODE LIST — the Podcast page
 * ====================================================================== */
.gtd-eplist {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 14px;
}

.gtd-ep {
	display: grid;
	grid-template-columns: 110px 1fr;
	gap: 18px;
	padding: 16px;
	background: var(--gtd-surface);
	border: 1px solid var(--gtd-line);
	border-radius: 11px;
}

.gtd-ep__art img {
	width: 100%;
	height: auto;
	border-radius: 8px;
	display: block;
}

.gtd-ep__title {
	font-size: 16px;
	text-transform: none;
	letter-spacing: 0;
	margin: 0 0 5px;
	line-height: 1.3;
}

.gtd-ep__title a { color: inherit; text-decoration: none; }
.gtd-ep__title a:hover { color: var(--gtd-teal-bright); }

.gtd-ep__meta {
	margin: 0 0 8px;
	font-size: 12px;
	color: var(--gtd-muted);
	display: flex;
	align-items: center;
	gap: 8px;
}

.gtd-ep__summary {
	margin: 0 0 12px;
	font-size: 14px;
	color: #B4BEC7;
	line-height: 1.6;
}

.gtd-ep__audio { width: 100%; height: 38px; }

@media (max-width: 640px) {
	.gtd-ep { grid-template-columns: 1fr; }
	.gtd-ep__art { max-width: 96px; }
}

/* =========================================================================
 * SCHEDULE — one table per phase, plus bye weeks
 * ====================================================================== */
.gtd-schedule { margin-bottom: 26px; }

/*
 * A bye is a gap in the season, so it is styled as a pause rather than a row of
 * missing data: recessed, no hover, and the week number stays legible so the
 * numbering still reads continuously down the column.
 */
.gtd-row--bye > * {
	background: #121212;
	color: var(--gtd-muted);
}

.gtd-byetag {
	font-family: var(--gtd-display);
	font-style: italic;
	font-weight: 800;
	font-size: 13px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--gtd-teal-bright);
	margin-right: 10px;
}

.gtd-byenote {
	font-family: var(--gtd-body);
	font-weight: 400;
	font-size: 12.5px;
	color: var(--gtd-muted);
}

@media (max-width: 640px) {
	.gtd-byenote { display: none; }
}

/* =========================================================================
 * NAV DROPDOWNS
 * "The Show" and "The Team" are group headings with no page of their own.
 * ====================================================================== */
.gtd-nav li { position: relative; }

/* Headings look like nav items but aren't links anywhere. */
.gtd-nav .gtd-menu-heading > a {
	cursor: default;
	padding-right: 22px;
}

.gtd-nav .gtd-menu-heading > a::after {
	content: '';
	position: absolute;
	right: 8px;
	top: 50%;
	width: 6px;
	height: 6px;
	margin-top: -4px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
	opacity: 0.55;
	transition: 0.18s;
}

.gtd-nav .gtd-menu-heading:hover > a::after,
.gtd-nav .gtd-menu-heading.is-open > a::after {
	opacity: 1;
	margin-top: -1px;
	transform: rotate(-135deg);
}

.gtd-nav .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 190px;
	background: var(--gtd-surface);
	border: 1px solid var(--gtd-line);
	border-radius: 10px;
	padding: 6px;
	margin: 6px 0 0;
	list-style: none;
	box-shadow: 0 18px 40px -18px #000;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-6px);
	transition: opacity 0.16s, transform 0.16s, visibility 0.16s;
	z-index: 120;
}

.gtd-nav li:hover > .sub-menu,
.gtd-nav li:focus-within > .sub-menu,
.gtd-nav li.is-open > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.gtd-nav .sub-menu a {
	display: block;
	padding: 9px 12px;
	font-size: 13.5px;
	border-radius: 6px;
	white-space: nowrap;
}

.gtd-nav .sub-menu a:hover { background: var(--gtd-surface-2); color: var(--gtd-teal-bright); }
.gtd-nav .sub-menu .current-menu-item > a { color: var(--gtd-teal-bright); }
.gtd-nav .sub-menu .current-menu-item > a::after { display: none; }

/* Hover leaves a gap between item and panel — bridge it so the menu
   doesn't close as the pointer travels down. */
.gtd-nav li.menu-item-has-children::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	height: 10px;
}

/* =========================================================================
 * WAVE AS A SECTION DIVIDER
 * Moved out of the sticky header, where collapsing it on scroll caused a
 * visible judder. It reads better as a break between sections anyway.
 * ====================================================================== */
.gtd-wave--divider {
	margin: 56px 0 0;
	opacity: 0.5;
	height: 28px;
	background-size: auto 28px;
}

@media (max-width: 640px) {
	.gtd-wave--divider { margin-top: 42px; opacity: 0.4; }
}

/* Cookie settings control.
 *
 * Ships hidden and JS reveals it only once a consent platform has loaded — see
 * bindCookieSettings() in gtd.js. Styled as a quiet text button because it
 * lives in the footer and in the Privacy Policy, not as a call to action.
 */
.gtd-cookie-settings {
	appearance: none;
	background: none;
	border: 0;
	padding: 0;
	font: inherit;
	font-size: 13px;
	color: inherit;
	/* Same 4.5:1 floor as the footer links it sits beside. */
	opacity: .88;
	cursor: pointer;
	text-decoration: underline;
	text-underline-offset: 3px;
}
.gtd-cookie-settings:hover,
.gtd-cookie-settings:focus-visible { opacity: 1; color: var(--gtd-teal-bright); }
.gtd-cookie-settings[hidden] { display: none; }

/* =========================================================================
 * FOOTER
 *
 * Four columns that reflow to fewer on narrow screens. Each column skips itself
 * in PHP if its menu is empty, so the layout has to cope with three or two
 * children as well as four.
 * ====================================================================== */
.gtd-footer {
	margin-top: 64px;
	padding: 54px 0 26px;
	background: var(--gtd-surface);
	border-top: 1px solid var(--gtd-line);
	color: var(--gtd-muted);
	font-size: 14px;
}

/* Flexbox, not grid, and for a specific reason.
 *
 * This was `grid-template-columns: 1.4fr repeat(auto-fit, minmax(150px, 1fr))`
 * and it silently did nothing — the whole declaration was invalid and dropped,
 * so the footer rendered as one stacked column. CSS grid only allows tracks
 * alongside an auto-repeat() if those tracks are a *fixed* size, and 1.4fr is
 * flexible. Invalid grid track lists fail silently; there is no warning.
 *
 * Flex has no equivalent trap and handles a missing column better anyway: when
 * a column skips itself the others just take the space.
 */
.gtd-footer__cols {
	display: flex;
	flex-wrap: wrap;
	gap: 34px 40px;
	align-items: flex-start;
}

.gtd-footer__brand { flex: 1 1 240px; max-width: 340px; }
.gtd-footer__col { flex: 1 1 140px; }

.gtd-footer__logo { display: inline-block; }

.gtd-footer__wordmark {
	display: block;
	width: 168px;
	height: 38px;
	background: url('../img/gtd-wordmark.png?rev=2') left center / contain no-repeat;
}

.gtd-footer__strap {
	margin: 14px 0 0;
	max-width: 30ch;
	line-height: 1.55;
}

.gtd-footer__h {
	margin: 0 0 14px;
	font-size: 12px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-weight: 700;
	font-style: normal; /* Headings are italic sitewide; these are labels. */
	color: var(--gtd-text);
}

.gtd-footer__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 9px;
}

.gtd-footer__list a {
	color: inherit;
	text-decoration: none;
}

.gtd-footer__list a:hover,
.gtd-footer__list a:focus-visible { color: var(--gtd-teal-bright); }

.gtd-footer__disclaimer {
	margin: 40px 0 0;
	padding-top: 22px;
	border-top: 1px solid var(--gtd-line);
	font-size: 12.5px;
	line-height: 1.6;
	max-width: 88ch;
	/* 0.88, not 0.78: below ~0.82 this drops under 4.5:1 on the footer
	   background. Checked, not guessed. */
	opacity: .88;
}

.gtd-footer__bar {
	margin-top: 20px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 22px;
	align-items: center;
	justify-content: space-between;
	font-size: 12.5px;
}

.gtd-footer__copy { margin: 0; }

.gtd-footer__legal {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 18px;
	align-items: center;
}

.gtd-footer__legal a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 3px;
	opacity: .88;
}

.gtd-footer__legal a:hover,
.gtd-footer__legal a:focus-visible { opacity: 1; color: var(--gtd-teal-bright); }

@media (max-width: 860px) {
	/* Brand on its own line, the three link columns sharing the next. */
	.gtd-footer__brand { flex: 1 1 100%; max-width: none; }
}

@media (max-width: 520px) {
	.gtd-footer { margin-top: 44px; padding-top: 40px; }
	.gtd-footer__cols { gap: 28px; }
	.gtd-footer__col { flex: 1 1 100%; }
	.gtd-footer__bar { justify-content: flex-start; }
}

/* Roster search — jersey number or name.
 *
 * Sits under the position chips, not beside them: they are two different ways
 * of narrowing the same grid and putting them on one line reads as one control.
 */
.gtd-rostersearch {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 14px;
	margin: 0 0 22px;
}
.gtd-rostersearch[hidden] { display: none; }

.gtd-rostersearch__label {
	font-size: 12px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-weight: 700;
	font-style: normal;
	color: var(--gtd-muted);
}

.gtd-rostersearch__input {
	flex: 0 1 260px;
	padding: 9px 13px;
	font: inherit;
	font-size: 15px;
	color: var(--gtd-text);
	background: var(--gtd-surface-2);
	border: 1px solid var(--gtd-line);
	border-radius: var(--gtd-radius);
}

.gtd-rostersearch__input::placeholder { color: #6E7A85; }

.gtd-rostersearch__input:focus-visible {
	outline: 2px solid var(--gtd-teal-bright);
	outline-offset: 1px;
	border-color: transparent;
}

.gtd-rostersearch__status {
	margin: 0;
	font-size: 13px;
	color: var(--gtd-muted);
}

/* Two classes, so this beats whatever display .gtd-player is given. */
.gtd-player.is-filtered-out { display: none; }

@media (max-width: 520px) {
	.gtd-rostersearch__input { flex: 1 1 100%; }
}

/* =========================================================================
 * ABOUT PAGE + CONTACT PAGE
 * ====================================================================== */

.gtd-aboutpage {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
	gap: 34px 40px;
	align-items: start;
	margin-bottom: 10px;
}

.gtd-aboutpage__media { margin: 0; }

.gtd-aboutpage__media img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 13px;
	border: 1px solid var(--gtd-line);
}

.gtd-aboutpage__body { font-size: 16.5px; line-height: 1.65; }

.gtd-aboutpage__h {
	font-size: 15px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin: 0 0 10px;
}

.gtd-aboutpage__cols {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 30px 40px;
}

.gtd-aboutpage__disclaimer {
	margin: 34px 0 0;
	padding-top: 20px;
	border-top: 1px solid var(--gtd-line);
	font-size: 12.5px;
	line-height: 1.6;
	color: var(--gtd-muted);
	max-width: 90ch;
}

/* Contact ---------------------------------------------------------------- */

.gtd-contact {
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
	gap: 34px 46px;
	align-items: start;
}

.gtd-contact__h {
	font-size: 14px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin: 26px 0 8px;
}
.gtd-contact__aside > .gtd-contact__h:first-child { margin-top: 0; }
.gtd-contact__aside { font-size: 15px; line-height: 1.6; color: var(--gtd-muted); }
.gtd-contact__aside a { color: var(--gtd-teal-bright); }

.gtd-contact__sociallist {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px 16px;
}
.gtd-contact__sociallist a { text-decoration: none; }
.gtd-contact__sociallist a:hover { color: var(--gtd-orange); }

/* The form --------------------------------------------------------------- */

.gtd-form__row {
	display: grid;
	gap: 6px;
	margin: 0 0 18px;
}

.gtd-form__row label {
	font-size: 12px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--gtd-muted);
}

.gtd-form input[type="text"],
.gtd-form input[type="email"],
.gtd-form textarea {
	width: 100%;
	padding: 11px 13px;
	font: inherit;
	font-size: 16px; /* 16px stops iOS zooming the page on focus. */
	color: var(--gtd-text);
	background: var(--gtd-surface-2);
	border: 1px solid var(--gtd-line);
	border-radius: var(--gtd-radius);
}

.gtd-form textarea { resize: vertical; min-height: 150px; }

.gtd-form input:focus-visible,
.gtd-form textarea:focus-visible {
	outline: 2px solid var(--gtd-teal-bright);
	outline-offset: 1px;
	border-color: transparent;
}

.gtd-form__hint { font-size: 12.5px; color: var(--gtd-muted); }

.gtd-form__legal {
	margin: 16px 0 0;
	font-size: 12.5px;
	color: var(--gtd-muted);
}
.gtd-form__legal a { color: var(--gtd-teal-bright); }

/* The honeypot. Off-screen rather than display:none — some bots skip anything
   that is display:none, which would defeat the point of it. */
.gtd-form__hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.gtd-formnotice {
	margin: 0 0 22px;
	padding: 14px 16px;
	border-radius: var(--gtd-radius);
	border: 1px solid var(--gtd-line);
	font-size: 15px;
	line-height: 1.55;
}
.gtd-formnotice:focus-visible { outline: 2px solid var(--gtd-teal-bright); }
.gtd-formnotice--ok { border-color: var(--gtd-win); color: var(--gtd-win-soft); }
.gtd-formnotice--error { border-color: var(--gtd-loss); color: var(--gtd-loss-soft); }

@media (max-width: 860px) {
	.gtd-aboutpage,
	.gtd-contact { grid-template-columns: minmax(0, 1fr); }
	.gtd-aboutpage__media { max-width: 460px; }
}
