/*
 * Glass City Ledger — theme stylesheet.
 *
 * Tokens are the values measured off the reference; see docs/DESIGN.md.
 * Layout order: tokens → reset → container → header → cards → sections →
 * single → archive → widgets → ads → footer → responsive.
 */

/* ==========================================================================
   1. Tokens
   ========================================================================== */

:root {
	/* --accent, --accent-dark, --accent-soft, --navy, --navy-soft are printed
	   by gcl_dynamic_css() so the Customizer can drive them. These are the
	   fallbacks if that inline style is ever missing. */
	--accent: #e52e2e;
	--accent-dark: #c52828;
	--accent-soft: #ff4a4a;
	--navy: #131f49;
	--navy-soft: #17265a;

	--head: #111111;
	--body-col: #2b2b2b;
	--muted: #767676;
	--tint: #f1f4f7;
	--warm: #fcf7f5;
	--line: #e6e8ee;
	--line-soft: #eef0f4;
	--white: #ffffff;

	--container: 1400px;
	--gutter: 20px;
	--colpad: 24px;
	--gap: 24px;
	--rail: 333px;
	--rail-gap: 40px;

	--sans: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
	--serif: "PT Serif", Georgia, "Times New Roman", serif;
	--body-font: "Open Sans", "Segoe UI", system-ui, sans-serif;
	--alt: "Roboto", "Segoe UI", system-ui, sans-serif;

	--radius: 3px;
	--shadow: 0 1px 3px rgba(19, 31, 73, .07);
}

/* ==========================================================================
   2. Reset
   ========================================================================== */

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

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

body {
	margin: 0;
	background: var(--white);
	color: var(--body-col);
	font: 400 14px/1.6 var(--body-font);
	/* `clip`, never `hidden`: hidden turns the body into a scroll container and
	   every position:sticky descendant silently stops sticking. */
	overflow-x: clip;
}

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

a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent); }

h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 700; color: var(--navy); }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }

button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }

blockquote { margin: 0; }
figure { margin: 0; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	margin: -1px; padding: 0; border: 0;
	overflow: hidden; clip-path: inset(50%);
	white-space: nowrap;
}
.skip-link:focus {
	position: fixed; top: 8px; left: 8px;
	width: auto; height: auto; margin: 0; padding: 10px 16px;
	clip-path: none; overflow: visible;
	background: var(--navy); color: #fff; z-index: 999;
	font: 600 13px/1 var(--sans);
}

/* ==========================================================================
   3. Container & shared layout primitives
   ========================================================================== */

.gcl-container {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--gutter);
}
.gcl-container--narrow { max-width: 1260px; }

.gcl-section { padding-block: 34px; }
.gcl-section--warm { background: var(--warm); padding-block: 46px; }

/* Main + rail (Recent Posts, archives, single posts). `align-items: start` so
   a sticky rail has somewhere to travel: a stretched grid item fills its row
   and can never move. */
.gcl-withrail {
	display: grid;
	grid-template-columns: minmax(0, 1fr) var(--rail);
	gap: var(--rail-gap);
	align-items: start;
}
.gcl-withrail__main { min-width: 0; }
.gcl-withrail__rail {
	min-width: 0;
	position: sticky;
	top: 24px;
	max-height: calc(100vh - 48px);
	overflow-y: auto;
	scrollbar-width: thin;
}
.gcl-withrail__rail::-webkit-scrollbar { width: 5px; }
.gcl-withrail__rail::-webkit-scrollbar-thumb { background: var(--line); border-radius: 4px; }

.gcl-cardgrid { display: grid; gap: 30px var(--gap); }
.gcl-cardgrid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.gcl-cardgrid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.gcl-cardgrid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* ==========================================================================
   4. Header
   ========================================================================== */

.gcl-header {
	background: var(--navy);
	color: #fff;
	border-bottom: 3px solid var(--accent);
	position: relative;
	z-index: 30;
}
.gcl-header__inner {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	align-items: center;
	gap: 0 28px;
	min-height: 140px;
}

.gcl-header__brand {
	display: flex;
	align-items: center;
	gap: 26px;
	padding-block: 12px;
}

.gcl-logo--text { display: inline-flex; align-items: flex-start; }
.gcl-logo__mark {
	position: relative;
	font: 700 clamp(46px, 7vw, 74px)/.86 var(--serif);
	color: #fff;
	letter-spacing: -.02em;
	display: inline-block;
	padding-right: 4px;
}
.gcl-logo__mark i {
	position: absolute;
	top: .05em; right: -2px;
	width: .19em; height: .19em;
	border-radius: 50%;
	background: var(--accent);
}
.gcl-logo--footer .gcl-logo__mark { font-size: clamp(38px, 5vw, 56px); }
.gcl-logo img { max-height: 64px; width: auto; }

.gcl-header__stamp { display: grid; gap: 6px; }
.gcl-header__date {
	margin: 0;
	font: 500 16px/1.2 var(--sans);
	color: #fff;
}
.gcl-header__weather {
	margin: 0;
	display: flex; align-items: center; gap: 6px;
	font: 700 14px/1.2 var(--sans);
	color: #fff;
}
.gcl-header__weather sup { font-size: 9px; font-weight: 500; }
.gcl-header__weather span { font-weight: 700; }
.gcl-header__weather .gcl-icon { color: rgba(255, 255, 255, .8); }

.gcl-header__rows { display: grid; align-self: stretch; }
.gcl-header__top {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 22px;
	padding-block: 14px;
	border-bottom: 1px solid rgba(255, 255, 255, .16);
}
.gcl-header__bottom {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 16px;
	padding-block: 12px;
}

.gcl-topnav__menu { display: flex; gap: 22px; }
.gcl-topnav__menu a {
	font: 500 12px/1 var(--sans);
	letter-spacing: .06em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .92);
}
.gcl-topnav__menu a:hover { color: var(--accent-soft); }

.gcl-header__actions { display: flex; align-items: center; gap: 14px; }
.gcl-iconbtn {
	display: inline-flex; align-items: center; justify-content: center;
	width: 30px; height: 30px;
	color: #fff;
	border-radius: 50%;
}
.gcl-iconbtn:hover { color: var(--accent-soft); }
.gcl-header__divider {
	width: 1px; height: 22px;
	background: rgba(255, 255, 255, .24);
}
.gcl-social--header { display: flex; gap: 12px; }
.gcl-social--header .gcl-social__link { color: rgba(255, 255, 255, .9); }
.gcl-social--header .gcl-social__link:hover { color: var(--accent-soft); }

.gcl-nav__menu { display: flex; align-items: center; gap: 30px; }
.gcl-nav__menu > li { position: relative; }
.gcl-nav__menu > li > a {
	display: inline-flex; align-items: center; gap: 5px;
	font: 700 18px/1.2 var(--sans);
	color: #fff;
	padding-block: 6px;
}
.gcl-nav__menu > li > a:hover,
.gcl-nav__menu > .current-menu-item > a,
.gcl-nav__menu > .current-menu-parent > a,
.gcl-nav__menu > .current-cat > a { color: var(--accent-soft); }
.gcl-nav__menu > li.menu-item-has-children > a::after {
	content: "";
	width: 7px; height: 7px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg) translateY(-2px);
}

.gcl-nav__menu .sub-menu {
	position: absolute;
	top: 100%; right: -14px; left: auto;
	min-width: 210px;
	background: #fff;
	border-top: 3px solid var(--accent);
	box-shadow: 0 12px 30px rgba(19, 31, 73, .16);
	padding: 6px 0;
	opacity: 0; visibility: hidden;
	transform: translateY(6px);
	transition: opacity .16s ease, transform .16s ease, visibility .16s;
	z-index: 40;
}
.gcl-nav__menu > li:hover > .sub-menu,
.gcl-nav__menu > li:focus-within > .sub-menu {
	opacity: 1; visibility: visible; transform: translateY(0);
}
.gcl-nav__menu .sub-menu a {
	display: block;
	padding: 9px 18px;
	font: 500 14px/1.3 var(--sans);
	color: var(--navy);
}
.gcl-nav__menu .sub-menu a:hover { color: var(--accent); background: var(--tint); }

.gcl-nav-toggle { display: none; }

/* Search overlay */
.gcl-search-overlay {
	position: fixed; inset: 0;
	background: rgba(19, 31, 73, .96);
	display: none;
	z-index: 200;
	padding: 24px;
}
.gcl-search-overlay.is-open { display: grid; place-items: center; }
.gcl-search-overlay__inner { width: min(680px, 100%); position: relative; }
.gcl-search-overlay__close {
	position: absolute; top: -54px; right: 0;
	color: #fff;
}
.gcl-search-overlay .gcl-searchform { background: #fff; }
body.gcl-locked { overflow: hidden; }

.gcl-searchform {
	display: flex;
	border: 1px solid var(--line);
	background: #fff;
}
.gcl-searchform__input {
	flex: 1 1 auto;
	min-width: 0;
	border: 0;
	padding: 13px 16px;
	font: 400 14px/1.2 var(--body-font);
	background: transparent;
}
.gcl-searchform__input:focus { outline: none; }
.gcl-searchform__submit {
	flex: 0 0 auto;
	padding-inline: 16px;
	background: var(--accent);
	color: #fff;
	display: inline-flex; align-items: center;
}
.gcl-searchform__submit:hover { background: var(--accent-dark); }

/* ==========================================================================
   5. Section headings
   ========================================================================== */

.gcl-sechead { display: flex; align-items: center; gap: 18px; margin-bottom: 24px; }
.gcl-sechead__title {
	font: 700 26px/1.2 var(--serif);
	color: var(--navy);
	flex: 0 0 auto;
}
.gcl-sechead__rule {
	flex: 1 1 auto;
	height: 1px;
	background: var(--accent);
	min-width: 20px;
}

.gcl-sechead--center { justify-content: center; }
.gcl-sechead--center .gcl-sechead__title { order: 2; font-size: 24px; }
.gcl-sechead--center .gcl-sechead__rule { order: 1; }
.gcl-sechead--center::after {
	content: "";
	order: 3;
	flex: 1 1 auto;
	height: 1px;
	background: var(--accent);
	min-width: 20px;
}

/* The Roboto "block title" variant — "Topics", "Recent Posts". */
.gcl-sechead--block { margin-bottom: 20px; }
.gcl-sechead--block .gcl-sechead__title {
	font: 800 20px/1.45 var(--alt);
	color: var(--head);
}

/* ==========================================================================
   6. Cards
   ========================================================================== */

.gcl-card { min-width: 0; }
.gcl-card__media { display: block; position: relative; overflow: hidden; background: var(--tint); }
.gcl-card__media img,
.gcl-thumb-fallback { width: 100%; height: 100%; object-fit: cover; display: block; }
.gcl-card__media img { transition: transform .5s ease; }
.gcl-card:hover .gcl-card__media img { transform: scale(1.04); }

.gcl-ratio-32 { aspect-ratio: 3 / 2; max-width: 100%; }
.gcl-ratio-169 { aspect-ratio: 16 / 9; max-width: 100%; }
.gcl-ratio-21 { aspect-ratio: 2 / 1; max-width: 100%; }

.gcl-thumb-fallback {
	display: grid; place-items: center;
	background: linear-gradient(140deg, var(--navy), var(--navy-soft));
	color: rgba(255, 255, 255, .5);
	font: 700 2.2em/1 var(--serif);
	min-height: 100%;
}

.gcl-card__title { margin: 0; font-family: var(--sans); color: var(--navy); }
.gcl-card__title a { color: inherit; }
.gcl-card__title a:hover { color: var(--accent); }

.gcl-ts-xs .gcl-card__title { font: 500 13px/1.45 var(--sans); }
.gcl-ts-sm .gcl-card__title { font: 500 14px/1.35 var(--sans); }
.gcl-ts-md .gcl-card__title { font: 600 17px/1.32 var(--sans); }
.gcl-ts-lg .gcl-card__title { font: 600 20px/1.28 var(--sans); }
.gcl-ts-xl .gcl-card__title { font: 700 26px/1.25 var(--sans); }

.gcl-card--stack .gcl-card__body { padding-top: 14px; }
.gcl-card__excerpt {
	margin: 10px 0 0;
	font: 400 13px/21px var(--body-font);
	color: var(--muted);
}

.gcl-card--inline {
	display: grid;
	grid-template-columns: 80px minmax(0, 1fr);
	gap: 14px;
	align-items: start;
}
.gcl-card--inline .gcl-card__media { aspect-ratio: 1 / 1; }
.gcl-thumb-right { grid-template-columns: minmax(0, 1fr) 80px; }
.gcl-thumb-right .gcl-card__media { order: 2; }
.gcl-thumb-right .gcl-card__body { order: 1; }
.gcl-thumb-none { display: block; }

.gcl-card--ruled { padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.gcl-card--ruled + .gcl-card--ruled { padding-top: 14px; }
.gcl-widget__list > .gcl-card--ruled:last-child,
.gcl-catcol__rows > .gcl-card--ruled:last-child { border-bottom: 0; padding-bottom: 0; }

.gcl-card__date {
	display: block;
	margin-top: 6px;
	font: 500 12px/1 var(--sans);
	color: var(--navy);
	opacity: .72;
}

.gcl-card__rank {
	position: absolute;
	right: 0; bottom: 2px;
	font: 300 44px/1 var(--sans);
	color: rgba(19, 31, 73, .13);
	pointer-events: none;
}
.gcl-card--inline { position: relative; }

/* Overlay card — video tiles. */
.gcl-card--overlay .gcl-card__media { display: block; }
.gcl-card__scrim {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(10, 14, 30, .05) 40%, rgba(10, 14, 30, .82) 100%);
}
.gcl-card__overlaytitle {
	position: absolute;
	left: 14px; right: 14px; bottom: 12px;
	color: #fff;
	font: 500 13px/1.35 var(--sans);
	z-index: 2;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	line-clamp: 2;
	overflow: hidden;
}
.gcl-card--videolead .gcl-card__overlaytitle {
	font-size: 20px; font-weight: 600;
	left: 26px; right: 26px; bottom: 22px;
	-webkit-line-clamp: 3;
	line-clamp: 3;
}
.gcl-play {
	position: absolute;
	top: 12px; right: 12px;
	width: 28px; height: 28px;
	display: grid; place-items: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, .9);
	color: var(--navy);
	z-index: 2;
}
.gcl-card--videolead .gcl-play {
	top: 50%; left: 50%; right: auto;
	transform: translate(-50%, -50%);
	width: 64px; height: 64px;
}
.gcl-card--videolead .gcl-play .gcl-icon { width: 26px; height: 26px; }

/* ==========================================================================
   7. Meta & labels
   ========================================================================== */

.gcl-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 4px 12px;
	margin-top: 8px;
	font-family: var(--sans);
}
.gcl-meta__author { font: 700 13px/1.2 var(--sans); color: #000; }
.gcl-meta__date { font: 500 13px/1.2 var(--sans); color: var(--navy); }
.gcl-meta__sep { color: var(--muted); }
.gcl-meta--lead { margin-top: 14px; gap: 6px 10px; }
.gcl-meta--lead .gcl-meta__author,
.gcl-meta--lead .gcl-meta__date { font-size: 15px; line-height: 18px; }

.gcl-cat {
	display: inline-block;
	font: 500 13px/15.6px var(--sans);
	color: var(--accent);
}
.gcl-cat:hover { color: var(--accent-dark); }
.gcl-card--inline .gcl-cat,
.gcl-card--stack .gcl-cat { margin-bottom: 4px; }
.gcl-meta .gcl-cat { margin: 0; }

.gcl-cat--badge {
	background: var(--accent);
	color: #fff;
	padding: 4px 9px;
	font-size: 11px;
	letter-spacing: .04em;
	text-transform: uppercase;
}
.gcl-cat--badge:hover { background: var(--accent-dark); color: #fff; }

.gcl-exclusive {
	display: inline-block;
	margin-right: 6px;
	padding: 2px 6px;
	background: var(--navy);
	color: #fff;
	font: 700 9px/1.4 var(--sans);
	letter-spacing: .09em;
	vertical-align: 2px;
}

/* ==========================================================================
   8. Hero zone
   ========================================================================== */

.gcl-hero { padding-block: 0 40px; }
.gcl-hero__grid {
	display: grid;
	/* Outer widths carry the reference's 24px column padding, so the inner
	   content lands on 616 / 327 / 251 at a 1440 viewport. */
	grid-template-columns: 664fr 375fr 299fr;
	gap: 0 16px;
	padding-top: 0;
	align-items: start;
}
.gcl-hero__lead,
.gcl-hero__mid,
.gcl-hero__rail { min-width: 0; padding-top: 30px; padding-inline: var(--colpad); }
.gcl-hero__lead { padding-top: 0; }

/* The reference lets the lead photo run past the column, out to the page edge.
   Bleeding to the *container* edge rather than the viewport edge keeps this
   free of the 100vw-versus-scrollbar overflow bug. */
.gcl-feature__media {
	margin-left: calc(-1 * (var(--colpad) + var(--gutter)));
	width: calc(100% + var(--colpad) + var(--gutter));
	aspect-ratio: 3 / 2;
	display: block;
	overflow: hidden;
	background: var(--tint);
}
.gcl-feature__media img { width: 100%; height: 100%; object-fit: cover; }
.gcl-feature__body { padding-top: 22px; }
.gcl-feature__title {
	font: 700 36px/43.2px var(--sans);
	color: var(--head);
	letter-spacing: -.01em;
}
.gcl-feature__title a:hover { color: var(--accent); }
.gcl-feature__excerpt {
	margin: 14px 0 0;
	font: 400 14px/24px var(--body-font);
	color: var(--muted);
	max-width: 62ch;
}

.gcl-hero__subcards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--gap);
	margin-top: 28px;
	padding-top: 22px;
	border-top: 1px solid var(--line);
}
.gcl-hero__lists {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0 var(--gap);
	margin-top: 22px;
}
.gcl-hero__list { display: grid; align-content: start; }

.gcl-hero__mid .gcl-card--stack { margin-bottom: 20px; }
.gcl-hero__titles { display: grid; }

.gcl-hero__rail { display: grid; gap: 26px; align-content: start; }

.gcl-hot .gcl-widget__list { display: grid; }

/* ==========================================================================
   9. Headlines block
   ========================================================================== */

.gcl-headlines__grid {
	display: grid;
	grid-template-columns: 690fr 345fr 345fr;
	gap: 34px 0;
	align-items: start;
}
.gcl-headlines__main,
.gcl-headlines__side,
.gcl-headlines__exclusive { padding-inline: var(--colpad); }
.gcl-headlines__exclusive { padding: 22px var(--colpad); }
.gcl-headlines__main {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 30px var(--gap);
}
.gcl-headlines__main .gcl-card__body { text-align: center; }
.gcl-headlines__main .gcl-meta { justify-content: center; }
.gcl-headlines__main .gcl-card:nth-child(odd) { border-right: 1px solid var(--line); padding-right: var(--gap); }
.gcl-headlines__side { display: grid; gap: 26px; align-content: start; }
.gcl-headlines__exclusive { align-self: start; }

/* ==========================================================================
   10. Category columns
   ========================================================================== */

.gcl-catcols__grid {
	display: grid;
	grid-template-columns: repeat(var(--catcols, 3), minmax(0, 1fr));
	gap: var(--gap);
}
.gcl-catcol { min-width: 0; }
.gcl-catcol__head {
	background: var(--tint);
	padding: 16px 20px 18px;
	position: relative;
}
.gcl-catcol__title { font: 700 20px/1.2 var(--serif); color: var(--navy); }
.gcl-catcol__tick {
	position: absolute;
	left: 20px; bottom: -10px;
	width: 2px; height: 22px;
	background: var(--accent);
}
.gcl-catcol__lead .gcl-card__media { margin-top: 0; }
.gcl-catcol__lead .gcl-card__body { padding-top: 16px; }
.gcl-catcol__rows { display: grid; margin-top: 18px; }
.gcl-catcol__links {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px var(--gap);
	margin-top: 20px;
	padding-top: 18px;
	border-top: 1px solid var(--line);
}

/* ==========================================================================
   11. Editor's choice
   ========================================================================== */

.gcl-editors__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: var(--gap);
}
.gcl-reporter { min-width: 0; text-align: center; }
.gcl-reporter + .gcl-reporter { border-left: 1px solid var(--line); padding-left: var(--gap); }
.gcl-reporter__avatar { display: inline-block; }
.gcl-reporter__avatar img {
	width: 100px; height: 100px;
	border-radius: 50%;
	object-fit: cover;
}
.gcl-reporter__name { margin-top: 14px; font: 700 22px/1.2 var(--serif); color: var(--navy); }
.gcl-reporter__rule {
	display: block;
	height: 1px;
	background: var(--accent);
	margin: 14px 0 18px;
}
.gcl-reporter__posts { display: grid; gap: 16px; text-align: left; }

.gcl-editors__strip {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 18px var(--gap);
	margin-top: 34px;
	padding-top: 28px;
	border-top: 1px solid var(--line);
}

/* ==========================================================================
   12. Video news
   ========================================================================== */

.gcl-video__stage { max-width: 920px; margin-inline: auto; }
.gcl-video__embed { position: relative; background: #000; }
.gcl-video__embed iframe {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	border: 0;
}
.gcl-video__strip {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 14px;
	margin-top: 18px;
	max-width: 920px;
	margin-inline: auto;
}

/* ==========================================================================
   13. Widgets & rail blocks
   ========================================================================== */

.gcl-widget + .gcl-widget { margin-top: 26px; }

.gcl-widget__title {
	margin: 0 0 16px;
	font: 700 17px/20.4px var(--sans);
	color: var(--navy);
}
.gcl-widget__title--accent { color: var(--accent); font-size: 20px; line-height: 24px; }
.gcl-widget--panel { background: var(--tint); padding: 22px 20px; }
.gcl-widget--warm { background: var(--warm); }
.gcl-widget__list { display: grid; gap: 0; }
.gcl-widget__list > .gcl-card:not(.gcl-card--ruled) + .gcl-card:not(.gcl-card--ruled) { margin-top: 16px; }
.gcl-widget--panel .gcl-card--ruled { border-bottom-color: rgba(19, 31, 73, .12); }

.gcl-catcount { display: grid; }
.gcl-catcount__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 11px 0;
	border-bottom: 1px solid rgba(19, 31, 73, .1);
	font: 500 12px/1.2 var(--sans);
	letter-spacing: .05em;
	text-transform: uppercase;
	color: var(--navy);
}
.gcl-catcount__row:last-child { border-bottom: 0; }
.gcl-catcount__row span { color: var(--muted); letter-spacing: 0; }

.gcl-subscribe__intro { font: 400 13px/22px var(--body-font); color: inherit; }
.gcl-subscribe__form { display: flex; margin-bottom: 12px; }
.gcl-subscribe__form input[type="email"] {
	flex: 1 1 auto;
	min-width: 0;
	border: 1px solid var(--line);
	border-right: 0;
	padding: 13px 14px;
	font: 400 13px/1.2 var(--body-font);
	background: #fff;
	color: var(--body-col);
}
.gcl-subscribe__form input[type="email"]:focus { outline: none; border-color: var(--accent); }
.gcl-subscribe__consent {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	font: 400 12px/18px var(--body-font);
}
.gcl-subscribe__consent input { margin-top: 2px; accent-color: var(--accent); }
.gcl-subscribe__consent a { color: var(--accent); }

.gcl-share__links { display: flex; gap: 8px; }
.gcl-share__link {
	width: 36px; height: 36px;
	display: grid; place-items: center;
	background: var(--tint);
	color: var(--navy);
}
.gcl-share__link:hover { background: var(--accent); color: #fff; }
.gcl-share + .gcl-widget { margin-top: 26px; }

.gcl-social { display: flex; gap: 14px; }
.gcl-social__link { display: inline-flex; }

.gcl-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	padding: 13px 22px;
	background: var(--accent);
	color: #fff;
	font: 600 12px/1 var(--sans);
	letter-spacing: .08em;
	text-transform: uppercase;
	border: 1px solid var(--accent);
}
.gcl-btn:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: #fff; }
.gcl-btn--ghost {
	background: transparent;
	color: var(--navy);
	border-color: var(--line);
	text-transform: none;
	letter-spacing: 0;
	font-weight: 500;
	font-size: 14px;
}
.gcl-btn--ghost:hover { background: var(--tint); color: var(--navy); border-color: var(--line); }

.gcl-loadmore { display: flex; justify-content: center; margin-top: 34px; }

/* ==========================================================================
   14. Single post
   ========================================================================== */

.gcl-single__head { padding: 34px 0 20px; text-align: center; }
.gcl-single__title {
	margin: 12px 0 0;
	font: 700 clamp(30px, 4.2vw, 46px)/1.16 var(--sans);
	color: var(--head);
	letter-spacing: -.015em;
}
.gcl-single__byline {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-top: 18px;
	font-family: var(--sans);
}
.gcl-single__avatar img { border-radius: 50%; }
.gcl-single__author { font: 700 14px/1.2 var(--sans); color: #000; }

.gcl-single__media {
	margin-bottom: 30px;
	overflow: hidden;
	background: var(--tint);
	max-width: 760px;
}
.gcl-single__media img { width: 100%; height: 100%; object-fit: cover; }
.gcl-single__media figcaption {
	padding-top: 10px;
	font: 400 12px/18px var(--body-font);
	color: var(--muted);
}
.gcl-single__body { padding-bottom: 40px; }

.gcl-prose {
	font: 400 16px/1.75 var(--body-font);
	color: var(--body-col);
}
/* Reset with the *same* specificity as the rule that re-applies the gap —
   `.gcl-prose p { margin: 0 }` (0,1,1) would otherwise beat `> * + *` (0,1,0)
   and silently kill every paragraph gap. */
.gcl-prose > * { margin-block: 0; }
.gcl-prose > * + * { margin-top: 1.15em; }
.gcl-prose h2 {
	font: 700 26px/1.3 var(--sans);
	color: var(--navy);
	margin-top: 1.8em;
	scroll-margin-top: 90px;
}
.gcl-prose h3 {
	font: 600 20px/1.35 var(--sans);
	color: var(--navy);
	margin-top: 1.5em;
	scroll-margin-top: 90px;
}
.gcl-prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.gcl-prose blockquote {
	border-left: 3px solid var(--accent);
	padding: 6px 0 6px 22px;
	font: italic 400 19px/1.6 var(--serif);
	color: var(--navy);
}
.gcl-prose img { margin-block: 1.4em; }
.gcl-prose ul, .gcl-prose ol { padding-left: 20px; }
.gcl-prose ul { list-style: disc; }
.gcl-prose ol { list-style: decimal; }
.gcl-prose li + li { margin-top: .4em; }
.gcl-prose table { width: 100%; border-collapse: collapse; }
.gcl-prose th, .gcl-prose td { border: 1px solid var(--line); padding: 8px 10px; text-align: left; }

.gcl-tags { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 32px; }
.gcl-tags__label { font: 700 11px/1 var(--sans); letter-spacing: .1em; color: var(--muted); }
.gcl-tags a {
	padding: 6px 11px;
	background: var(--tint);
	font: 500 12px/1 var(--sans);
	color: var(--navy);
}
.gcl-tags a:hover { background: var(--accent); color: #fff; }

.gcl-authorbox {
	display: grid;
	grid-template-columns: 92px minmax(0, 1fr);
	gap: 20px;
	align-items: center;
	margin-top: 34px;
	padding: 24px;
	background: var(--tint);
}
.gcl-authorbox__avatar img { border-radius: 50%; width: 92px; height: 92px; object-fit: cover; }
.gcl-authorbox__kicker { font: 500 11px/1 var(--sans); letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }
.gcl-authorbox__name { margin: 8px 0 6px; font: 700 20px/1.2 var(--serif); }
.gcl-authorbox__bio { margin: 0; font: 400 13px/21px var(--body-font); color: var(--muted); }

.gcl-postnav {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--gap);
	margin-top: 34px;
	padding-top: 26px;
	border-top: 1px solid var(--line);
}
.gcl-postnav__link { display: grid; gap: 8px; }
.gcl-postnav__link--next { text-align: right; grid-column: 2; }
.gcl-postnav__label {
	display: inline-flex; align-items: center; gap: 6px;
	font: 500 11px/1 var(--sans);
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--accent);
}
.gcl-postnav__link--next .gcl-postnav__label { justify-content: flex-end; }
.gcl-postnav__title { font: 600 15px/1.35 var(--sans); color: var(--navy); }

.gcl-related { margin-top: 44px; }

/* Table of contents */
.gcl-toc {
	background: var(--tint);
	padding: 18px 20px;
	margin-bottom: 26px;
}
.gcl-toc--inline { display: none; }
.gcl-toc__head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.gcl-toc__title { font: 700 14px/1.2 var(--sans); color: var(--navy); }
.gcl-toc__toggle { color: var(--navy); display: inline-flex; transition: transform .2s ease; }
.gcl-toc.is-collapsed .gcl-toc__toggle { transform: rotate(-90deg); }
.gcl-toc.is-collapsed .gcl-toc__list { display: none; }
.gcl-toc__list { margin-top: 14px; display: grid; gap: 10px; }
.gcl-toc__item a { display: grid; grid-template-columns: 22px minmax(0, 1fr); gap: 8px; align-items: baseline; }
.gcl-toc__num { font: 600 11px/1.4 var(--sans); color: var(--accent); }
.gcl-toc__text { font: 400 13px/19px var(--body-font); color: var(--navy); }
.gcl-toc__item--h3 a { padding-left: 14px; }
.gcl-toc__item a.is-active .gcl-toc__text { color: var(--accent); font-weight: 600; }

/* ==========================================================================
   15. Archives, feeds, comments
   ========================================================================== */

/* Author archive masthead */
.gcl-authorhead {
	display: grid;
	grid-template-columns: 200px minmax(0, 1fr);
	gap: 32px;
	align-items: start;
	padding-block: 18px 26px;
}
.gcl-authorhead__portrait img {
	width: 200px; height: 200px;
	border-radius: 50%;
	object-fit: cover;
	background: var(--tint);
}
.gcl-authorhead__kicker {
	margin: 0;
	font: 500 11px/1 var(--sans);
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--accent);
}
.gcl-authorhead__name {
	margin: 10px 0 0;
	font: 700 38px/1.15 var(--serif);
	color: var(--navy);
}
.gcl-authorhead__bio {
	margin: 14px 0 0;
	max-width: 62ch;
	font: 400 16px/27px var(--body-font);
	color: var(--ink, #333);
}
.gcl-authorhead__facts {
	display: flex; flex-wrap: wrap; gap: 10px 18px;
	margin: 16px 0 0; padding: 0; list-style: none;
	font: 600 13px/1.2 var(--sans);
	color: var(--muted);
}
.gcl-authorhead__facts li + li { position: relative; padding-left: 18px; }
.gcl-authorhead__facts li + li::before {
	content: ""; position: absolute; left: 0; top: 50%;
	width: 4px; height: 4px; margin-top: -2px;
	border-radius: 50%; background: var(--accent);
}
.gcl-authorhead__beats {
	display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
	margin: 14px 0 0;
	font: 500 12px/1 var(--sans);
}
.gcl-authorhead__beats > span {
	letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
}
.gcl-authorhead__beat {
	padding: 6px 12px;
	background: var(--tint);
	color: var(--navy);
	font-weight: 600;
}
.gcl-authorhead__beat:hover { background: var(--accent); color: #fff; }
.gcl-authorhead__contact {
	display: flex; align-items: center; gap: 7px;
	margin: 16px 0 0;
	font: 400 13px/20px var(--body-font);
	color: var(--muted);
}
.gcl-authorhead__listtitle {
	margin: 0 0 22px;
	font: 700 17px/20px var(--sans);
	color: var(--navy);
}

.gcl-archivehead { padding-block: 12px 22px; }
.gcl-archivehead__title { font: 700 34px/1.2 var(--serif); color: var(--navy); }
.gcl-archivehead__desc { margin-top: 10px; font: 400 14px/24px var(--body-font); color: var(--muted); max-width: 70ch; }
.gcl-archivehead .gcl-sechead__rule { display: block; margin-top: 16px; }

.gcl-feed { display: grid; gap: 30px; }
.gcl-card--feed {
	display: grid;
	grid-template-columns: 300px minmax(0, 1fr);
	gap: var(--gap);
	align-items: start;
	padding-bottom: 30px;
	border-bottom: 1px solid var(--line);
}
.gcl-card--feed .gcl-card__body { padding-top: 0; }
.gcl-feed > .gcl-card--feed:last-child { border-bottom: 0; padding-bottom: 0; }

.gcl-empty { padding: 40px 0; font: 400 15px/1.6 var(--body-font); color: var(--muted); }
.gcl-searchagain { margin-bottom: 24px; max-width: 520px; }

.pagination, .comments-pagination { margin-top: 34px; }
.pagination .nav-links,
.comments-pagination .nav-links { display: flex; flex-wrap: wrap; gap: 6px; }
.pagination .page-numbers,
.comments-pagination .page-numbers {
	min-width: 38px;
	padding: 9px 12px;
	display: inline-grid; place-items: center;
	background: var(--tint);
	font: 500 13px/1 var(--sans);
	color: var(--navy);
}
.pagination .page-numbers:hover { background: var(--line); }
.pagination .page-numbers.current,
.comments-pagination .page-numbers.current { background: var(--accent); color: #fff; }

.gcl-comments { margin-top: 44px; }
.gcl-comments__list { display: grid; gap: 22px; margin-top: 8px; }
.gcl-comments__list ol.children { margin-top: 18px; padding-left: 26px; display: grid; gap: 18px; }
.gcl-comments__list .comment-body {
	background: var(--tint);
	padding: 18px 20px;
}
.gcl-comments__list .comment-author { display: flex; align-items: center; gap: 10px; font: 600 14px/1.2 var(--sans); color: var(--navy); }
.gcl-comments__list .comment-author img { border-radius: 50%; }
.gcl-comments__list .comment-meta { margin: 6px 0 10px; font: 400 12px/1.2 var(--body-font); color: var(--muted); }
.gcl-comments__list .comment-content { font: 400 14px/1.7 var(--body-font); }
.gcl-comments__list .reply { margin-top: 8px; font: 600 12px/1 var(--sans); }
.gcl-comments__list .reply a { color: var(--accent); }
.gcl-comments__formtitle { margin: 34px 0 14px; font: 700 20px/1.2 var(--serif); color: var(--navy); }
.comment-form { display: grid; gap: 14px; }
.comment-form p { margin: 0; }
.comment-form label { display: block; margin-bottom: 5px; font: 500 12px/1 var(--sans); color: var(--navy); }
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	width: 100%;
	border: 1px solid var(--line);
	padding: 11px 13px;
	font: 400 14px/1.5 var(--body-font);
	background: #fff;
}
.comment-form .form-submit input { all: unset; }
.comment-form .submit {
	display: inline-flex; align-items: center; justify-content: center;
	padding: 13px 22px;
	background: var(--accent); color: #fff;
	font: 600 12px/1 var(--sans); letter-spacing: .08em; text-transform: uppercase;
	cursor: pointer;
	border: 0;
}
.comment-form .submit:hover { background: var(--accent-dark); }

/* 404 */
.gcl-404 { text-align: center; padding-block: 60px 40px; }
.gcl-404__code { margin: 0; font: 800 96px/1 var(--sans); color: var(--tint); letter-spacing: -.03em; }
.gcl-404__title { margin-top: -14px; font: 700 30px/1.2 var(--serif); color: var(--navy); }
.gcl-404__text { margin: 14px auto 24px; max-width: 52ch; font: 400 14px/24px var(--body-font); color: var(--muted); }
.gcl-404__search { max-width: 440px; margin: 0 auto 24px; }
.gcl-404 .gcl-sechead { text-align: left; margin-top: 54px; }

/* ==========================================================================
   16. Footer
   ========================================================================== */

.gcl-footer { background: var(--navy); color: rgba(255, 255, 255, .82); margin-top: 20px; }
.gcl-footer a { color: inherit; }
.gcl-footer a:hover { color: var(--accent-soft); }
.gcl-footer__top {
	display: flex;
	align-items: center;
	gap: 26px;
	padding-block: 34px 26px;
}
.gcl-footer__rule { flex: 1 1 auto; height: 1px; background: var(--accent); min-width: 20px; }
.gcl-footer__utility { display: flex; gap: 22px; flex-wrap: wrap; }
.gcl-footer__utility a {
	font: 500 12px/1 var(--sans);
	letter-spacing: .06em;
	text-transform: uppercase;
	color: #fff;
}

.gcl-footer__cols {
	display: grid;
	grid-template-columns: 1.15fr 1fr 1.35fr 1.5fr;
	gap: 40px var(--gap);
	padding-block: 28px 46px;
}
.gcl-footer__col { min-width: 0; }
.gcl-footer .gcl-widget__title {
	position: relative;
	color: #fff;
	font: 700 20px/1.2 var(--serif);
	padding-bottom: 18px;
	margin-bottom: 16px;
}
.gcl-footer .gcl-widget__title::after {
	content: "";
	position: absolute;
	left: 0; bottom: 0;
	width: 2px; height: 14px;
	background: var(--accent);
}
.gcl-footer__about { font: 400 14px/26px var(--body-font); color: rgba(255, 255, 255, .82); }
.gcl-footer__contact { margin-top: 12px; font: 600 14px/22px var(--body-font); }
.gcl-footer__contact a { color: rgba(255, 255, 255, .92); }
.gcl-footer__contact a:hover { color: var(--accent-soft); }
.gcl-footer__links { display: grid; gap: 12px; }
.gcl-footer__links a { font: 500 15px/1.2 var(--sans); }
.gcl-footer__links .current-cat > a { color: var(--accent-soft); }
.gcl-footer__latest { display: grid; }
.gcl-footer__latest .gcl-card { padding-block: 14px; border-bottom: 1px solid rgba(255, 255, 255, .16); }
.gcl-footer__latest .gcl-card:first-child { padding-top: 0; }
.gcl-footer__latest .gcl-card:last-child { border-bottom: 0; }
.gcl-footer__latest .gcl-card__title { font: 600 14px/1.4 var(--sans); color: #fff; }
.gcl-footer__latest .gcl-card__title a:hover { color: var(--accent-soft); }
.gcl-footer .gcl-subscribe__intro { color: rgba(255, 255, 255, .82); margin-bottom: 16px; }
.gcl-footer .gcl-subscribe__form input[type="email"] {
	background: #fff;
	border-color: #fff;
	color: var(--body-col);
}
.gcl-footer .gcl-subscribe__consent { color: rgba(255, 255, 255, .8); }
.gcl-footer .gcl-subscribe__consent a { color: var(--accent-soft); }

.gcl-footer__bottom { border-top: 1px solid rgba(255, 255, 255, .14); }
.gcl-footer__bottominner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px 24px;
	padding-block: 20px;
}
.gcl-footer__bottominner p { margin: 0; font: 400 13px/1.4 var(--body-font); }
.gcl-social--footer { gap: 22px; }

.gcl-to-top {
	position: fixed;
	right: 0; bottom: 26px;
	width: 40px; height: 40px;
	display: grid; place-items: center;
	background: var(--accent);
	color: #fff;
	opacity: 0; pointer-events: none;
	transition: opacity .2s ease;
	z-index: 90;
}
.gcl-to-top.is-visible { opacity: 1; pointer-events: auto; }
.gcl-to-top:hover { background: var(--accent-dark); color: #fff; }

/* ==========================================================================
   17. Responsive
   ========================================================================== */

@media (max-width: 1280px) {
	:root { --rail: 300px; --rail-gap: 32px; }
	.gcl-feature__title { font-size: 30px; line-height: 1.2; }
	.gcl-editors__strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.gcl-video__strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 1100px) {
	.gcl-hero__grid { grid-template-columns: minmax(0, 1fr) 300px; gap: 34px; }
	.gcl-hero__mid { grid-column: 1; }
	.gcl-hero__rail { grid-row: 1 / span 2; grid-column: 2; }
	.gcl-hero__lead { grid-column: 1; }
	.gcl-headlines__grid { grid-template-columns: minmax(0, 1fr) 300px; }
	.gcl-headlines__main { grid-column: 1; }
	.gcl-headlines__side { grid-column: 1; grid-template-columns: repeat(2, minmax(0, 1fr)); display: grid; gap: var(--gap); }
	.gcl-headlines__exclusive { grid-column: 2; grid-row: 1 / span 2; }
	.gcl-footer__cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* The masthead runs out of room before the body grid does: the brand column is
   intrinsically sized, so below this the nav collapses behind the toggle. */
@media (max-width: 1080px) {
	.gcl-header__inner { grid-template-columns: minmax(0, 1fr); min-height: 0; gap: 0; }
	.gcl-header__brand { justify-content: space-between; padding-block: 16px 10px; }
	.gcl-header__top { justify-content: space-between; }
	.gcl-header__bottom { justify-content: space-between; }
	.gcl-nav-toggle { display: inline-flex; order: 1; }
	.gcl-nav {
		order: 2;
		flex: 1 1 100%;
		max-height: 0;
		overflow: hidden;
		transition: max-height .25s ease;
	}
	.gcl-nav.is-open { max-height: 70vh; overflow-y: auto; }
	.gcl-nav__menu { flex-direction: column; align-items: stretch; gap: 0; padding-block: 6px; }
	.gcl-nav__menu > li > a { padding-block: 11px; font-size: 16px; }
	.gcl-nav__menu .sub-menu {
		position: static;
		opacity: 1; visibility: visible; transform: none;
		box-shadow: none;
		background: rgba(255, 255, 255, .07);
		border-top: 0;
		padding: 0 0 0 14px;
	}
	.gcl-nav__menu .sub-menu a { color: rgba(255, 255, 255, .88); }
	.gcl-nav__menu .sub-menu a:hover { background: transparent; color: var(--accent-soft); }
	.gcl-header__bottom { flex-wrap: wrap; }

}

@media (max-width: 980px) {
	.gcl-withrail { grid-template-columns: minmax(0, 1fr); }
	.gcl-withrail__rail { position: static; max-height: none; overflow: visible; }
	/* Below this width the rail drops under the article, where a contents list
	   is useless — so show the inline copy printed above the body instead. */
	.gcl-toc--rail { display: none; }
	.gcl-toc--inline { display: block; }

	.gcl-hero__grid { grid-template-columns: minmax(0, 1fr); }
	.gcl-hero__rail { grid-row: auto; grid-column: auto; }
	.gcl-hero__rail { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.gcl-headlines__grid { grid-template-columns: minmax(0, 1fr); }
	.gcl-headlines__side,
	.gcl-headlines__exclusive { grid-column: 1; grid-row: auto; }
	.gcl-catcols__grid { grid-template-columns: repeat(min(var(--catcols, 3), 2), minmax(0, 1fr)); }
	.gcl-editors__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px var(--gap); }
	.gcl-reporter:nth-child(odd) { border-left: 0; padding-left: 0; }
	.gcl-cardgrid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 780px) {
	.gcl-authorhead { grid-template-columns: minmax(0, 1fr); gap: 20px; }
	.gcl-authorhead__portrait img { width: 128px; height: 128px; }
	.gcl-authorhead__name { font-size: 28px; }
	.gcl-section { padding-block: 26px; }
	.gcl-section--warm { padding-block: 34px; }
	.gcl-sechead__title { font-size: 22px; }
	.gcl-sechead--block .gcl-sechead__title { font-size: 18px; }
	.gcl-feature__title { font-size: 26px; }
	.gcl-cardgrid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.gcl-card--feed { grid-template-columns: 200px minmax(0, 1fr); }
	.gcl-editors__strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.gcl-video__strip { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
	.gcl-postnav { grid-template-columns: minmax(0, 1fr); }
	.gcl-postnav__link--next { grid-column: 1; text-align: left; }
	.gcl-postnav__link--next .gcl-postnav__label { justify-content: flex-start; }
	.gcl-headlines__main .gcl-card:nth-child(odd) { border-right: 0; padding-right: 0; }
}

@media (max-width: 620px) {
	:root { --gutter: 16px; --gap: 16px; }
	.gcl-header__brand { flex-wrap: wrap; gap: 12px 18px; }
	.gcl-header__stamp { gap: 3px; }
	.gcl-header__date { font-size: 13px; }
	.gcl-header__weather { font-size: 12px; }
	.gcl-header__top { gap: 12px; padding-block: 10px; }
	.gcl-topnav__menu { gap: 12px; flex-wrap: wrap; }
	.gcl-topnav__menu a { font-size: 11px; }
	/* The utility links wrap to two lines here; five social icons beside them
	   leaves everything cramped. They are still in the footer. */
	.gcl-social--header,
	.gcl-header__divider { display: none; }

	.gcl-feature__media { margin-left: calc(-1 * var(--gutter)); width: calc(100% + var(--gutter) * 2); }
	.gcl-hero__lead,
	.gcl-hero__mid,
	.gcl-hero__rail { padding-inline: 0; }
	.gcl-headlines__main,
	.gcl-headlines__side { padding-inline: 0; }
	.gcl-feature__title { font-size: 23px; line-height: 1.25; }
	.gcl-hero__subcards { grid-template-columns: minmax(0, 1fr); gap: 14px; }
	.gcl-hero__lists { grid-template-columns: minmax(0, 1fr); }
	.gcl-hero__rail { grid-template-columns: minmax(0, 1fr); }
	.gcl-catcols__grid { grid-template-columns: minmax(0, 1fr); gap: 30px; }
	.gcl-editors__grid { grid-template-columns: minmax(0, 1fr); }
	.gcl-reporter { border-left: 0 !important; padding-left: 0 !important; }
	.gcl-editors__strip { grid-template-columns: minmax(0, 1fr); }
	.gcl-video__strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.gcl-cardgrid--3,
	.gcl-cardgrid--4,
	.gcl-cardgrid--2 { grid-template-columns: minmax(0, 1fr); }
	.gcl-card--feed { grid-template-columns: minmax(0, 1fr); }
	.gcl-card--feed .gcl-card__body { padding-top: 14px; }
	.gcl-footer__cols { grid-template-columns: minmax(0, 1fr); gap: 30px; }
	.gcl-footer__top { flex-wrap: wrap; gap: 16px; }
	.gcl-footer__utility { gap: 14px; }
	.gcl-authorbox { grid-template-columns: minmax(0, 1fr); text-align: center; justify-items: center; }
	.gcl-404__code { font-size: 68px; }
	.gcl-404__title { font-size: 24px; }
	.gcl-single__byline { flex-wrap: wrap; }
}

@media (max-width: 420px) {
	.gcl-card--inline { grid-template-columns: 66px minmax(0, 1fr); gap: 11px; }
	.gcl-thumb-right { grid-template-columns: minmax(0, 1fr) 66px; }
	.gcl-widget--panel { padding: 18px 15px; }
	.gcl-header__divider { display: none; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
