/* ---------------------------------------------------------------------------
   Why Is Housing So Cheap Here? — main stylesheet.
   Loaded asynchronously; critical.css handles first paint.
   --------------------------------------------------------------------------- */

/* --- Base typography that is not needed for first paint ------------------ */

blockquote {
	margin: 2rem 0;
	padding: 0.35rem 0 0.35rem 1.35rem;
	border-left: 4px solid var(--hc-accent);
	color: var(--hc-heading);
	font-size: 1.15rem;
	font-weight: 500;
}
blockquote cite { display: block; margin-top: 0.6rem; color: var(--hc-ink-3); font-size: 0.85rem; font-style: normal; }

table { width: 100%; border-collapse: collapse; margin: 1.75rem 0; font-size: 0.94rem; }
th, td { padding: 0.7rem 0.8rem; border-bottom: 1px solid var(--hc-line); text-align: left; vertical-align: top; }
th { color: var(--hc-heading); font-weight: 700; }
thead th { border-bottom-width: 2px; }

code, kbd, samp { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 0.9em; }
:not(pre) > code { padding: 0.12em 0.35em; border-radius: 4px; background: var(--hc-surface-2); }
figure { margin: 2rem 0; }
figcaption { margin-top: 0.55rem; color: var(--hc-ink-3); font-size: 0.8rem; line-height: 1.5; }

.form-honeypot {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	opacity: 0;
}

/* --- Header extras ------------------------------------------------------- */

.site-masthead.is-stuck { box-shadow: var(--hc-shadow-sm); }

.masthead-cta {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding: 0.4rem 0.85rem;
	border-radius: var(--hc-radius-pill);
	background: var(--hc-accent);
	color: var(--hc-accent-ink);
	font-size: 0.82rem;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
}
.masthead-cta:hover { background: var(--hc-accent-hover); color: var(--hc-accent-ink); }

/* Theme switch — three states: system / light / dark. */
.theme-switch {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	padding: 3px;
	border: 1px solid var(--hc-line);
	border-radius: var(--hc-radius-pill);
	background: var(--hc-surface-2);
}
.theme-switch button {
	display: inline-grid;
	place-items: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	color: var(--hc-ink-3);
	transition: background 0.16s var(--hc-ease), color 0.16s var(--hc-ease);
}
.theme-switch button:hover { color: var(--hc-ink); }
.theme-switch button[aria-pressed="true"] {
	background: var(--hc-surface);
	color: var(--hc-accent-text);
	box-shadow: var(--hc-shadow-sm);
}
.site-utility .theme-switch { border-color: var(--hc-inv-line); background: rgba(255, 255, 255, 0.06); }
.site-utility .theme-switch button { width: 26px; height: 26px; color: var(--hc-inv-ink-2); }
.site-utility .theme-switch button[aria-pressed="true"] { background: rgba(255, 255, 255, 0.16); color: #fff; box-shadow: none; }

/* Topic bar under the masthead — scrollable on mobile like a news app. */
.topic-bar {
	position: relative;
	background: var(--hc-surface-2);
	border-bottom: 1px solid var(--hc-line);
}
.topic-bar .menu {
	display: flex;
	gap: 1.25rem;
	margin: 0;
	padding: 0;
	list-style: none;
	overflow-x: auto;
	scrollbar-width: none;
	overscroll-behavior-x: contain;
}
.topic-bar .menu::-webkit-scrollbar { display: none; }
.topic-bar a {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	color: var(--hc-ink-2);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	text-decoration: none;
	white-space: nowrap;
}
.topic-bar a:hover,
.topic-bar .current-menu-item > a { color: var(--hc-accent-text); }

/* --- Mobile navigation drawer -------------------------------------------- */

@media (max-width: 1080px) {
	.primary-navigation {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		left: auto;
		z-index: 200;
		width: min(88vw, 360px);
		padding: 1.25rem 1.25rem 3rem;
		background: var(--hc-bg);
		border-left: 1px solid var(--hc-line);
		box-shadow: var(--hc-shadow-lg);
		overflow-y: auto;
		overscroll-behavior: contain;
		transform: translateX(100%);
		visibility: hidden;
		transition: transform 0.24s var(--hc-ease), visibility 0.24s;
	}
	.primary-navigation.is-open { transform: none; visibility: visible; }
	.primary-navigation > .menu { display: grid; gap: 0.1rem; }
	.primary-navigation a {
		width: 100%;
		min-height: 48px;
		padding: 0.5rem 0.6rem;
		border-radius: var(--hc-radius-sm);
		font-size: 1.02rem;
	}
	.primary-navigation a:hover { background: var(--hc-surface-2); }
	.primary-navigation .sub-menu {
		margin: 0 0 0.35rem 0.6rem;
		padding: 0 0 0 0.6rem;
		border-left: 2px solid var(--hc-line);
		list-style: none;
	}
	.primary-navigation .sub-menu a { font-size: 0.92rem; min-height: 42px; }
	.nav-scrim {
		position: fixed;
		inset: 0;
		z-index: 150;
		background: rgba(6, 14, 20, 0.55);
		backdrop-filter: blur(2px);
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.24s var(--hc-ease), visibility 0.24s;
	}
	.nav-scrim.is-open { opacity: 1; visibility: visible; }
	body.nav-open { overflow: hidden; }
}

@media (min-width: 1081px) {
	.nav-scrim { display: none; }
	.primary-navigation .menu-item-has-children { position: relative; }
	.primary-navigation .menu-item-has-children > a::after {
		content: "";
		width: 0;
		height: 0;
		margin-left: 0.35rem;
		border: 4px solid transparent;
		border-top-color: currentColor;
		transform: translateY(2px);
	}
	.primary-navigation .sub-menu {
		position: absolute;
		top: calc(100% - 2px);
		left: -0.75rem;
		min-width: 230px;
		margin: 0;
		padding: 0.4rem;
		list-style: none;
		background: var(--hc-surface);
		border: 1px solid var(--hc-line);
		border-radius: var(--hc-radius-sm);
		box-shadow: var(--hc-shadow-md);
		opacity: 0;
		visibility: hidden;
		transform: translateY(6px);
		transition: 0.16s var(--hc-ease);
	}
	.primary-navigation .menu-item-has-children:hover > .sub-menu,
	.primary-navigation .menu-item-has-children:focus-within > .sub-menu {
		opacity: 1;
		visibility: visible;
		transform: none;
	}
	.primary-navigation .sub-menu a { display: block; width: 100%; min-height: auto; padding: 0.5rem 0.65rem; border-radius: 6px; white-space: normal; }
	.primary-navigation .sub-menu a:hover { background: var(--hc-surface-2); }
}

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

.site-search-panel {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 45;
	padding: 1rem 0 1.15rem;
	background: var(--hc-bg);
	border-bottom: 1px solid var(--hc-line);
	box-shadow: var(--hc-shadow-md);
}
.site-search-panel[hidden] { display: none; }
.site-search-panel .search-hint { margin: 0.6rem 0 0; color: var(--hc-ink-3); font-size: 0.8rem; }

.search-form { display: flex; gap: 0.5rem; }
.search-form .search-field { min-height: 48px; }
.search-form .button { flex: 0 0 auto; }
.sidebar-card .search-form { display: grid; }
.sidebar-card .search-form .button { width: 100%; }

/* --- Notices ------------------------------------------------------------- */

.site-notice {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
	width: 100%;
	max-width: var(--hc-shell);
	margin: 1rem auto 0;
	padding: 0.8rem 1rem;
	border: 1px solid;
	border-radius: var(--hc-radius-sm);
	font-size: 0.92rem;
}
.site-notice p { margin: 0; }
.site-notice--success { border-color: var(--hc-up); background: var(--hc-up-wash); color: var(--hc-ink); }
.site-notice--success .icon { color: var(--hc-up); }
.site-notice--error { border-color: var(--hc-down); background: var(--hc-down-wash); color: var(--hc-ink); }
.site-notice--error .icon { color: var(--hc-down); }
.site-notice--warning { border-color: var(--hc-accent); background: var(--hc-accent-wash); color: var(--hc-ink); }
.site-notice--warning .icon { color: var(--hc-accent-text); }

/* --- Market pulse ribbon ------------------------------------------------- */

.market-pulse {
	border-bottom: 1px solid var(--hc-line);
	background: var(--hc-surface-2);
}
.market-pulse__inner {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	min-height: 58px;
	overflow-x: auto;
	scrollbar-width: none;
}
.market-pulse__inner::-webkit-scrollbar { display: none; }
.market-pulse__label {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	flex: 0 0 auto;
	color: var(--hc-accent-text);
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
.market-pulse__item { flex: 0 0 auto; display: flex; flex-direction: column; white-space: nowrap; }
.market-pulse__item small { color: var(--hc-ink-3); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
.market-pulse__item strong { color: var(--hc-heading); font-size: 1rem; font-variant-numeric: tabular-nums; }
.market-pulse__source { flex: 0 0 auto; margin-left: auto; color: var(--hc-ink-3); font-size: 0.7rem; }
.market-pulse__source a { color: inherit; }

/* --- Sections ------------------------------------------------------------ */

.section { padding: clamp(2.5rem, 5.5vw, 4.75rem) 0; content-visibility: auto; contain-intrinsic-size: auto 640px; }
.section--tight { padding: clamp(1.75rem, 3.5vw, 2.75rem) 0; }
.section--paper { background: var(--hc-paper); }
.section--surface { background: var(--hc-surface-2); }
.section--inverse { background: var(--hc-inv-bg); color: var(--hc-inv-ink); }
.section--inverse h1, .section--inverse h2, .section--inverse h3 { color: var(--hc-inv-ink); }
.section--inverse p { color: var(--hc-inv-ink-2); }

.section-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1.5rem;
	margin-bottom: clamp(1.25rem, 2.5vw, 2rem);
	padding-bottom: 0.85rem;
	border-bottom: 2px solid var(--hc-heading);
}
.section-header h2 { max-width: 44rem; margin-bottom: 0; font-size: clamp(1.6rem, 3vw, 2.35rem); }
.section-header > div > p:last-child { margin-bottom: 0; }
.section-header--plain { border-bottom: 0; padding-bottom: 0; }
.section-header--center { flex-direction: column; align-items: center; text-align: center; border-bottom: 0; }
.section-header--center > div { max-width: 46rem; }
.section-header .text-link { flex: 0 0 auto; padding-bottom: 0.15rem; }

/* --- Article cards ------------------------------------------------------- */

.article-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
	gap: clamp(1.25rem, 2.5vw, 1.75rem);
}
.article-grid--archive { gap: 2rem 1.5rem; }

.article-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	background: var(--hc-surface);
	border-radius: var(--hc-radius-sm);
}
.article-card__media {
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	margin-bottom: 0.9rem;
	border-radius: var(--hc-radius-sm);
	background: var(--hc-surface-3);
}
.article-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--hc-ease); }
.article-card:hover .article-card__media img { transform: scale(1.04); }
.article-card__body { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.article-card__title { margin-bottom: 0.45rem; font-size: clamp(1.1rem, 1.7vw, 1.3rem); line-height: 1.18; }
.article-card__title a { text-decoration: none; }
.article-card__title a:hover { color: var(--hc-link-hover); }
.article-card__dek {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin-bottom: 0.75rem;
	color: var(--hc-ink-2);
	font-size: 0.92rem;
	line-height: 1.55;
}
.article-card__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.4rem;
	margin: auto 0 0;
	color: var(--hc-ink-3);
	font-size: 0.76rem;
}
.article-card--placeholder { opacity: 0.75; }
.article-card--placeholder .media-placeholder { border-radius: var(--hc-radius-sm); margin-bottom: 0.9rem; }

/* Magazine layout: one lead story plus a stacked list. */
.story-lede { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); }
.story-lede .article-card--lead .article-card__title { font-size: clamp(1.5rem, 3vw, 2.15rem); }
.story-lede .article-card--lead .article-card__dek { font-size: 1rem; -webkit-line-clamp: 4; }
.story-list { display: grid; gap: 1.1rem; align-content: start; }
.story-list .article-card {
	display: grid;
	grid-template-columns: 92px minmax(0, 1fr);
	gap: 0.9rem;
	padding-bottom: 1.1rem;
	border-bottom: 1px solid var(--hc-line);
}
.story-list .article-card:last-child { border-bottom: 0; padding-bottom: 0; }
.story-list .article-card__media { margin-bottom: 0; aspect-ratio: 1; }
.story-list .article-card__title { font-size: 1rem; line-height: 1.3; margin-bottom: 0.3rem; }
.story-list .article-card__dek { display: none; }

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

/* --- City & market cards ------------------------------------------------- */

.city-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 270px), 1fr));
	gap: clamp(1rem, 2vw, 1.4rem);
}

.city-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	background: var(--hc-surface);
	border: 1px solid var(--hc-line);
	border-radius: var(--hc-radius);
	transition: border-color 0.18s var(--hc-ease), box-shadow 0.18s var(--hc-ease), transform 0.18s var(--hc-ease);
}
.city-card:hover { transform: translateY(-2px); border-color: var(--hc-line-2); box-shadow: var(--hc-shadow-md); }
.city-card__media,
.city-card__map {
	display: grid;
	place-items: center;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: linear-gradient(150deg, var(--hc-inv-bg-2), var(--hc-inv-bg));
	color: var(--hc-accent);
}
.city-card__media img { width: 100%; height: 100%; object-fit: cover; }
.city-card__body { display: flex; flex-direction: column; flex: 1; padding: 1.1rem; }
.city-card__body h2 { margin-bottom: 0.75rem; font-size: 1.35rem; }
.city-card__body h2 a { text-decoration: none; }
.city-card__metrics {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
	margin-top: auto;
	padding-top: 0.9rem;
	border-top: 1px solid var(--hc-line);
}
.city-card__metrics > span { min-width: 0; }
.city-card__metrics small,
.data-list dt,
.metric small {
	display: block;
	margin-bottom: 0.15rem;
	color: var(--hc-ink-3);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}
.city-card__metrics strong { display: block; color: var(--hc-heading); font-size: 0.95rem; font-variant-numeric: tabular-nums; }

.trend { display: inline-flex; align-items: center; gap: 0.3rem; font-weight: 700; }
.trend--rising, .trend--rising strong { color: var(--hc-up); }
.trend--falling, .trend--falling strong { color: var(--hc-down); }
.trend--stable, .trend--stable strong { color: var(--hc-flat); }

.badge {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	padding: 0.2rem 0.55rem;
	border-radius: var(--hc-radius-pill);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.02em;
}
.badge--up { background: var(--hc-up-wash); color: var(--hc-up); }
.badge--down { background: var(--hc-down-wash); color: var(--hc-down); }
.badge--flat { background: var(--hc-flat-wash); color: var(--hc-flat); }
.badge--accent { background: var(--hc-accent-wash); color: var(--hc-accent-text); }

/* --- Metric tiles -------------------------------------------------------- */

.metric-strip {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 160px), 1fr));
	gap: 1px;
	background: var(--hc-line);
	border: 1px solid var(--hc-line);
	border-radius: var(--hc-radius);
	overflow: hidden;
}
.metric {
	padding: 1rem 1.1rem;
	background: var(--hc-surface);
}
.metric strong { display: block; color: var(--hc-heading); font-size: 1.35rem; font-variant-numeric: tabular-nums; line-height: 1.2; }
.metric span { display: block; margin-top: 0.15rem; color: var(--hc-ink-3); font-size: 0.75rem; }

/* --- Factor cards -------------------------------------------------------- */

.factor-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); gap: 1rem; }
.factor-card {
	padding: 1.35rem;
	background: var(--hc-surface);
	border: 1px solid var(--hc-line);
	border-radius: var(--hc-radius);
}
.factor-card__icon {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	margin-bottom: 0.9rem;
	border-radius: 12px;
	background: var(--hc-accent-wash);
	color: var(--hc-accent-text);
}
.factor-card h3 { font-size: 1.15rem; margin-bottom: 0.35rem; }
.factor-card p { margin: 0; color: var(--hc-ink-2); font-size: 0.9rem; }

/* --- Video --------------------------------------------------------------- */

.video-embed {
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: var(--hc-radius-sm);
	background: #000;
}
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-embed__poster { width: 100%; height: 100%; object-fit: cover; }
.video-embed__play {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	width: 100%;
	color: #fff;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.45));
}
.video-embed__play .icon {
	display: grid;
	place-items: center;
	width: 66px;
	height: 66px;
	padding-left: 4px;
	border-radius: 50%;
	background: var(--hc-accent);
	color: var(--hc-accent-ink);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
	transition: transform 0.18s var(--hc-ease);
}
.video-embed__play:hover .icon { transform: scale(1.08); }
.video-embed__badge {
	position: absolute;
	right: 0.6rem;
	bottom: 0.6rem;
	padding: 0.2rem 0.5rem;
	border-radius: 5px;
	background: rgba(0, 0, 0, 0.7);
	color: #fff;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.video-feature { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 290px), 1fr)); gap: 2rem 1.5rem; }
.video-card { min-width: 0; }
.video-card .video-embed { margin-bottom: 0.9rem; }
.video-card h2 { font-size: 1.15rem; margin-bottom: 0.35rem; }
.video-card h2 a { text-decoration: none; }
.video-card p { margin-bottom: 0.4rem; color: var(--hc-ink-2); font-size: 0.9rem; }

@media (max-width: 800px) {
	.video-feature { grid-template-columns: 1fr; }
}

/* --- Newsletter ---------------------------------------------------------- */

.newsletter-section {
	padding: clamp(2.25rem, 4.5vw, 3.5rem) 0;
	background: var(--hc-brand);
	color: var(--hc-inv-ink);
}
:root[data-theme="dark"] .newsletter-section { background: var(--hc-surface-2); }
.newsletter-section__inner { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(1.5rem, 4vw, 3rem); }
.newsletter-section h2 { margin-bottom: 0.3rem; color: var(--hc-inv-ink); font-size: clamp(1.6rem, 3vw, 2.3rem); }
:root[data-theme="dark"] .newsletter-section h2 { color: var(--hc-heading); }
.newsletter-section p { margin-bottom: 0; color: var(--hc-inv-ink-2); }
:root[data-theme="dark"] .newsletter-section p { color: var(--hc-ink-2); }
.newsletter-form { display: grid; grid-template-columns: 1fr auto; gap: 0.55rem; }
.newsletter-form input { min-height: 50px; border-color: transparent; }
.newsletter-form .form-note { grid-column: 1 / -1; margin: 0.15rem 0 0; color: var(--hc-inv-ink-2); font-size: 0.73rem; }
:root[data-theme="dark"] .newsletter-form .form-note { color: var(--hc-ink-3); }

@media (max-width: 760px) {
	.newsletter-section__inner,
	.newsletter-form { grid-template-columns: 1fr; }
}

/* --- Page heroes --------------------------------------------------------- */

.page-hero {
	position: relative;
	overflow: hidden;
	padding: clamp(2rem, 5vw, 3.75rem) 0 clamp(1.5rem, 3vw, 2.25rem);
	background: var(--hc-inv-bg);
	color: var(--hc-inv-ink);
}
.page-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	opacity: 0.5;
	background-image:
		linear-gradient(rgba(120, 170, 210, 0.09) 1px, transparent 1px),
		linear-gradient(90deg, rgba(120, 170, 210, 0.09) 1px, transparent 1px);
	background-size: 44px 44px;
	mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent);
}
.page-hero > * { position: relative; }
.page-hero h1 { max-width: 22ch; color: var(--hc-inv-ink); font-size: clamp(2rem, 5vw, 3.5rem); }
.page-hero p { max-width: 46rem; margin-bottom: 0; color: var(--hc-inv-ink-2); font-size: 1.02rem; }
.page-hero .archive-description p { color: var(--hc-inv-ink-2); }

/* --- Breadcrumbs --------------------------------------------------------- */

.breadcrumbs { margin-bottom: 0.9rem; font-size: 0.78rem; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: 0.35rem; margin: 0; padding: 0; list-style: none; }
.breadcrumbs li { display: inline-flex; align-items: center; gap: 0.35rem; color: var(--hc-ink-3); }
.breadcrumbs a { color: inherit; text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs [aria-current="page"] { color: var(--hc-ink-2); }
.breadcrumbs .icon { opacity: 0.55; }
.page-hero .breadcrumbs li { color: var(--hc-inv-ink-2); }
.page-hero .breadcrumbs [aria-current="page"] { color: var(--hc-inv-ink); }

/* --- Chips & filters ----------------------------------------------------- */

.category-filter { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-bottom: 1.5rem; }
.chip {
	display: inline-flex;
	align-items: center;
	min-height: 36px;
	padding: 0.35rem 0.8rem;
	border: 1px solid var(--hc-line-2);
	border-radius: var(--hc-radius-pill);
	background: var(--hc-surface);
	color: var(--hc-ink-2);
	font-size: 0.8rem;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
}
.chip:hover { border-color: var(--hc-ink-2); color: var(--hc-ink); }
.chip.is-active { background: var(--hc-heading); border-color: var(--hc-heading); color: var(--hc-bg); }

.articles-toolbar { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, 380px); gap: 1rem 2rem; align-items: start; margin-bottom: 1.75rem; }
.articles-toolbar .category-filter { margin-bottom: 0; }
@media (max-width: 900px) { .articles-toolbar { grid-template-columns: 1fr; } }

.filter-panel {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 170px), 1fr));
	gap: 0.75rem;
	align-items: end;
	padding: 1rem;
	margin-bottom: 1.5rem;
	border: 1px solid var(--hc-line);
	border-radius: var(--hc-radius);
	background: var(--hc-surface-2);
}
.filter-panel label span,
.contact-form label span {
	display: block;
	margin-bottom: 0.3rem;
	color: var(--hc-ink-2);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}
.filter-panel .button { min-height: 46px; }

.archive-summary {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin-bottom: 1.25rem;
	color: var(--hc-ink-2);
	font-size: 0.88rem;
}
.archive-summary p { margin: 0; }

.empty-state {
	grid-column: 1 / -1;
	padding: clamp(2rem, 5vw, 3.5rem);
	border: 1px dashed var(--hc-line-2);
	border-radius: var(--hc-radius);
	background: var(--hc-surface-2);
	text-align: center;
}
.empty-state h2 { font-size: 1.5rem; }
.empty-state p:last-child { margin-bottom: 0; color: var(--hc-ink-2); }

.archive-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: clamp(2rem, 4vw, 3rem); align-items: start; }
.archive-sidebar { position: sticky; top: calc(var(--hc-header-h) + 1rem); display: grid; gap: 1rem; }
.sidebar-card {
	padding: 1.15rem;
	border: 1px solid var(--hc-line);
	border-radius: var(--hc-radius);
	background: var(--hc-surface);
}
.sidebar-card h2 { font-size: 1.15rem; }
.sidebar-card p:last-child { margin-bottom: 0; }
.sidebar-card--accent { background: var(--hc-paper); border-color: transparent; }
.widget { margin-bottom: 1rem; }
.widget__title { font-size: 1.1rem; }
.widget ul { padding-left: 1.1rem; }

@media (max-width: 1000px) {
	.archive-layout { grid-template-columns: 1fr; }
	.archive-sidebar { position: static; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }
}

/* --- Single article ------------------------------------------------------ */

.article-header { padding: clamp(1.75rem, 4vw, 3rem) 0 1.5rem; background: var(--hc-paper); }
.article-header h1 { font-size: clamp(2rem, 4.6vw, 3.25rem); }
.article-header__dek { max-width: 42rem; color: var(--hc-ink-2); font-size: clamp(1.05rem, 1.8vw, 1.2rem); line-height: 1.55; }

.article-byline {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem 1rem;
	margin-top: 1.5rem;
	padding-top: 1.15rem;
	border-top: 1px solid var(--hc-line-2);
}
.article-byline__avatar { flex: 0 0 auto; border-radius: 50%; }
.article-byline__text { flex: 1 1 12rem; min-width: 0; }
.article-byline p { margin: 0; font-size: 0.85rem; }
.article-byline__author { font-weight: 700; }
.article-byline__author a { text-decoration: none; }
.article-byline__meta { color: var(--hc-ink-3); }

.share-menu { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.share-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	min-width: 38px;
	min-height: 38px;
	padding: 0 0.5rem;
	border: 1px solid var(--hc-line-2);
	border-radius: var(--hc-radius-pill);
	background: var(--hc-surface);
	color: var(--hc-ink-2);
	font-size: 0.78rem;
	font-weight: 700;
	text-decoration: none;
}
.share-button:hover { border-color: var(--hc-ink-2); color: var(--hc-ink); }
.share-button--labelled { padding-inline: 0.75rem; }

.article-hero { margin: 0 auto; padding-top: 1.5rem; }
.article-hero img { width: 100%; border-radius: var(--hc-radius); }

.article-layout {
	display: grid;
	grid-template-columns: minmax(0, 250px) minmax(0, var(--hc-article));
	justify-content: center;
	gap: clamp(2rem, 4vw, 3.5rem);
	padding-top: clamp(1.75rem, 4vw, 3rem);
	padding-bottom: clamp(2.5rem, 5vw, 4rem);
}
.article-rail { min-width: 0; display: grid; gap: 1.25rem; align-content: start; }
.article-toc {
	position: sticky;
	top: calc(var(--hc-header-h) + 1rem);
	padding: 1rem 1.1rem;
	border-radius: var(--hc-radius-sm);
	background: var(--hc-surface-2);
}
.article-toc__title { margin-bottom: 0.6rem; color: var(--hc-ink-2); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.article-toc ol { margin: 0; padding-left: 1.1rem; }
.article-toc li { margin-bottom: 0.45rem; font-size: 0.83rem; line-height: 1.4; }
.article-toc li::marker { color: var(--hc-ink-3); }
.article-toc__level-3 { margin-left: 0.6rem; }
.article-toc a { color: var(--hc-ink-2); text-decoration: none; }
.article-toc a:hover { color: var(--hc-link); }
.article-toc a.is-current { color: var(--hc-accent-text); font-weight: 700; }

.article-content { min-width: 0; font-size: 1.0625rem; }
.article-content > :first-child { margin-top: 0; }
.article-content h2 { margin-top: 2.5rem; font-size: clamp(1.5rem, 3vw, 2rem); scroll-margin-top: calc(var(--hc-header-h) + 1.5rem); }
.article-content h3 { margin-top: 2rem; font-size: clamp(1.2rem, 2.2vw, 1.45rem); scroll-margin-top: calc(var(--hc-header-h) + 1.5rem); }
.article-content a { color: var(--hc-link); }
.article-content ul, .article-content ol { padding-left: 1.3rem; margin-bottom: 1.15rem; }
.article-content li { margin-bottom: 0.4rem; }
.article-content .alignwide {
	width: min(1120px, calc(100vw - var(--hc-gutter) * 2));
	max-width: none;
	margin-left: 50%;
	transform: translateX(-50%);
}
.article-content .alignfull { width: 100vw; max-width: none; margin-left: 50%; transform: translateX(-50%); }

.takeaways {
	margin: 0 0 2rem;
	padding: 1.15rem 1.3rem;
	border: 1px solid var(--hc-line);
	border-left: 4px solid var(--hc-accent);
	border-radius: var(--hc-radius-sm);
	background: var(--hc-surface-2);
}
.takeaways h2 { margin: 0 0 0.6rem; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--hc-accent-text); }
.takeaways ul { margin: 0; padding-left: 1.15rem; }
.takeaways li { margin-bottom: 0.4rem; font-size: 0.96rem; }
.takeaways li:last-child { margin-bottom: 0; }

.article-video { margin: 2.5rem 0; }
.article-video h2 { margin-top: 0; }

.sources-box {
	margin-top: 2.5rem;
	padding: 1.15rem 1.3rem;
	border: 1px solid var(--hc-line);
	border-radius: var(--hc-radius);
	background: var(--hc-surface-2);
}
.sources-box h2 { margin-top: 0; font-size: 1.15rem; }
.sources-box ul { margin: 0; padding-left: 1.15rem; }
.sources-box li { margin-bottom: 0.4rem; font-size: 0.9rem; word-break: break-word; }
.sources-box > p:last-child { margin: 0.8rem 0 0; font-size: 0.85rem; }

.article-disclaimer {
	margin-top: 1.5rem;
	padding: 0.9rem 1.05rem;
	border-left: 3px solid var(--hc-flat);
	border-radius: 0 var(--hc-radius-sm) var(--hc-radius-sm) 0;
	background: var(--hc-flat-wash);
	color: var(--hc-ink-2);
	font-size: 0.85rem;
}

.author-box {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 1.1rem;
	margin-top: 2.5rem;
	padding-top: 1.75rem;
	border-top: 1px solid var(--hc-line);
}
.author-box img { border-radius: 50%; }
.author-box h2 { font-size: 1.25rem; margin-bottom: 0.35rem; }
.author-box p { color: var(--hc-ink-2); font-size: 0.92rem; }

.related-section { background: var(--hc-paper); }

@media (max-width: 1000px) {
	.article-layout { grid-template-columns: minmax(0, var(--hc-article)); }
	.article-rail { order: 2; }
	.article-toc { position: static; }
}

/* --- City profile -------------------------------------------------------- */

.city-profile__hero { padding: clamp(2rem, 5vw, 4rem) 0; background: var(--hc-inv-bg); color: var(--hc-inv-ink); }
.city-profile__hero-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.city-profile__hero h1 { color: var(--hc-inv-ink); font-size: clamp(2.25rem, 6vw, 4rem); }
.city-profile__hero p { color: var(--hc-inv-ink-2); }
.city-profile__hero-meta { display: flex; flex-wrap: wrap; gap: 0.6rem; align-items: center; color: var(--hc-inv-ink-2); font-size: 0.82rem; }
.city-profile__hero-media img,
.city-profile__hero-media .media-placeholder { width: 100%; border-radius: var(--hc-radius); box-shadow: var(--hc-shadow-lg); }

.city-metrics { background: var(--hc-accent); color: var(--hc-accent-ink); }
.city-metrics__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(50%, 180px), 1fr)); }
.city-metrics__grid > div { padding: 1.15rem var(--hc-gutter); border-right: 1px solid rgba(20, 35, 47, 0.18); }
.city-metrics__grid > div:last-child { border-right: 0; }
.city-metrics small { display: block; margin-bottom: 0.15rem; color: rgba(20, 35, 47, 0.72); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; }
.city-metrics strong { display: block; color: var(--hc-accent-ink); font-size: 1.1rem; line-height: 1.25; font-variant-numeric: tabular-nums; }

.city-profile__layout { display: grid; grid-template-columns: minmax(0, var(--hc-article)) minmax(0, 320px); gap: clamp(2rem, 4vw, 3.5rem); align-items: start; padding-top: clamp(2rem, 4vw, 3rem); padding-bottom: clamp(2.5rem, 5vw, 4rem); }
.city-profile__sidebar { position: sticky; top: calc(var(--hc-header-h) + 1rem); display: grid; gap: 1rem; }
.data-list { margin: 0; }
.data-list > div { padding: 0.7rem 0; border-top: 1px solid var(--hc-line); }
.data-list > div:first-child { border-top: 0; padding-top: 0; }
.data-list dd { margin: 0.1rem 0 0; color: var(--hc-heading); font-weight: 600; font-size: 0.95rem; }

@media (max-width: 1000px) {
	.city-profile__hero-grid,
	.city-profile__layout { grid-template-columns: 1fr; }
	.city-profile__sidebar { position: static; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }
}

/* --- Policy / about / contact ------------------------------------------- */

.policy-layout { display: grid; grid-template-columns: minmax(0, var(--hc-article)) minmax(0, 290px); justify-content: center; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
.policy-content h2:first-child { margin-top: 0; }
.policy-sidebar { position: sticky; top: calc(var(--hc-header-h) + 1rem); }
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { position: relative; padding: 0.5rem 0 0.5rem 1.6rem; border-top: 1px solid var(--hc-line); font-size: 0.92rem; }
.check-list li:first-child { border-top: 0; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--hc-up); font-weight: 800; }

.about-hero { padding: clamp(2.5rem, 6vw, 5rem) 0; background: var(--hc-inv-bg); color: var(--hc-inv-ink); }
.about-hero__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 300px); gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about-hero h1 { color: var(--hc-inv-ink); font-size: clamp(2.25rem, 6vw, 4rem); }
.about-hero p { color: var(--hc-inv-ink-2); font-size: 1.08rem; }
.about-hero__mark { display: grid; place-items: center; aspect-ratio: 1; border: 1px solid var(--hc-inv-line); border-radius: 50%; background: rgba(255, 255, 255, 0.04); }
.about-hero__mark .brand-mark { width: 150px; height: 150px; }

.contact-layout { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.contact-card { display: flex; gap: 0.75rem; align-items: center; padding: 0.9rem 1rem; border-radius: var(--hc-radius-sm); background: var(--hc-surface-2); }
.contact-card small { display: block; color: var(--hc-ink-3); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; }
.contact-form { display: grid; gap: 0.9rem; padding: clamp(1.15rem, 3vw, 1.75rem); border: 1px solid var(--hc-line); border-radius: var(--hc-radius); background: var(--hc-surface); box-shadow: var(--hc-shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.form-note { margin: 0; color: var(--hc-ink-3); font-size: 0.75rem; }

.author-hero { padding: clamp(2rem, 5vw, 3.5rem) 0; background: var(--hc-inv-bg); color: var(--hc-inv-ink); }
.author-hero__inner { display: flex; flex-wrap: wrap; gap: 1.25rem; align-items: center; }
.author-hero img { border-radius: 50%; border: 3px solid var(--hc-accent); }
.author-hero h1 { color: var(--hc-inv-ink); font-size: clamp(1.9rem, 4.5vw, 3rem); }
.author-hero p { color: var(--hc-inv-ink-2); margin-bottom: 0; max-width: 45rem; }

.not-found { display: grid; place-items: center; min-height: 60vh; padding: clamp(2.5rem, 6vw, 4.5rem) 0; background: var(--hc-paper); text-align: center; }
.not-found__mark .brand-mark { width: 88px; height: 88px; padding: 10px; border-radius: 50%; background: var(--hc-brand); }
.not-found h1 { font-size: clamp(1.9rem, 5vw, 3rem); }
.not-found .search-form { max-width: 34rem; margin: 1.75rem auto; }
.search-page-form { max-width: 40rem; margin-bottom: 1.75rem; }

@media (max-width: 860px) {
	.contact-layout,
	.about-hero__grid,
	.policy-layout { grid-template-columns: 1fr; }
	.policy-sidebar { position: static; }
	.form-row { grid-template-columns: 1fr; }
	.about-hero__mark { max-width: 220px; }
}

/* --- Comments ------------------------------------------------------------ */

.comments-area { margin-top: 2.5rem; padding-top: 1.75rem; border-top: 1px solid var(--hc-line); }
.comments-area h2 { font-size: 1.35rem; }
.comment-list { list-style: none; margin: 0 0 2rem; padding: 0; }
.comment-list ol.children { list-style: none; margin: 1rem 0 0; padding-left: clamp(0.75rem, 3vw, 2rem); border-left: 2px solid var(--hc-line); }
.comment-body { padding: 1rem 0; border-bottom: 1px solid var(--hc-line); }
.comment-author { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; font-weight: 700; }
.comment-author img { border-radius: 50%; }
.comment-metadata { color: var(--hc-ink-3); font-size: 0.78rem; }
.comment-metadata a { color: inherit; text-decoration: none; }
.comment-form { display: grid; gap: 0.9rem; }
.comment-form .form-submit { margin: 0; }
.comment-form input[type="submit"] {
	width: auto;
	min-height: 46px;
	padding: 0.7rem 1.35rem;
	border: 0;
	border-radius: var(--hc-radius-sm);
	background: var(--hc-accent);
	color: var(--hc-accent-ink);
	font-weight: 700;
	cursor: pointer;
}

/* --- Pagination ---------------------------------------------------------- */

.navigation.pagination, .pagination-wrap { margin-top: 2.25rem; }
ul.page-numbers { display: flex; flex-wrap: wrap; gap: 0.35rem; padding: 0; margin: 0; list-style: none; }
a.page-numbers, span.page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 42px;
	height: 42px;
	padding: 0 0.6rem;
	border: 1px solid var(--hc-line);
	border-radius: var(--hc-radius-sm);
	color: var(--hc-ink-2);
	font-size: 0.9rem;
	font-weight: 700;
	text-decoration: none;
}
a.page-numbers:hover { border-color: var(--hc-ink-2); color: var(--hc-ink); }
span.page-numbers.current { background: var(--hc-heading); border-color: var(--hc-heading); color: var(--hc-bg); }
.page-numbers.dots { border-color: transparent; }

/* --- Advertising --------------------------------------------------------- */

/* Height is reserved before the ad loads so nothing shifts (CLS = 0). */
.ad-unit {
	display: block;
	width: 100%;
	max-width: var(--hc-shell);
	margin-inline: auto;
	padding-inline: var(--hc-gutter);
	text-align: center;
}
.ad-unit__label {
	display: block;
	margin-bottom: 0.25rem;
	color: var(--hc-ink-3);
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}
.ad-unit__frame {
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin-inline: auto;
	background: var(--hc-surface-2);
	border-radius: var(--hc-radius-sm);
}
.ad-unit .adsbygoogle { display: block; width: 100%; }
.ad-unit--header { margin-block: 1rem; }
.ad-unit--header .ad-unit__frame { min-height: 100px; }
.ad-unit--home .ad-unit__frame,
.ad-unit--below_article .ad-unit__frame { min-height: 280px; }
.ad-unit--in_article { max-width: 100%; padding-inline: 0; margin-block: 2rem; }
.ad-unit--in_article .ad-unit__frame { min-height: 280px; }
.ad-unit--sidebar { padding-inline: 0; }
.ad-unit--sidebar .ad-unit__frame { min-height: 250px; }
.ad-unit.is-filled .ad-unit__frame { background: transparent; min-height: 0; }
@media (min-width: 768px) {
	.ad-unit--header .ad-unit__frame { min-height: 90px; }
	.ad-unit--home .ad-unit__frame,
	.ad-unit--below_article .ad-unit__frame,
	.ad-unit--in_article .ad-unit__frame { min-height: 250px; }
}

/* --- Footer -------------------------------------------------------------- */

.site-footer { background: var(--hc-brand); color: var(--hc-inv-ink-2); }
:root[data-theme="dark"] .site-footer { border-top: 1px solid var(--hc-line); }
.site-footer__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
	gap: clamp(1.5rem, 4vw, 2.5rem);
	padding: clamp(2.25rem, 5vw, 3.5rem) 0;
}
.site-footer .site-brand { color: var(--hc-inv-ink); }
.site-footer .site-brand:hover { color: var(--hc-inv-ink); }
.site-footer .site-brand .brand-mark { background: rgba(255, 255, 255, 0.08); }
.site-footer .site-brand__text strong { color: var(--hc-accent); }
.site-footer__brand > p { max-width: 30rem; margin-top: 0.9rem; color: var(--hc-inv-ink-2); font-size: 0.9rem; }
.site-footer h2 { color: var(--hc-inv-ink); font-size: 0.8rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.site-footer .menu li { margin-bottom: 0.4rem; }
.site-footer a { color: var(--hc-inv-ink-2); font-size: 0.88rem; text-decoration: none; }
.site-footer a:hover { color: var(--hc-accent); text-decoration: underline; }
.site-footer__social { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.site-footer__social a {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.4rem 0.75rem;
	border: 1px solid var(--hc-inv-line);
	border-radius: var(--hc-radius-pill);
}
.site-footer__social a:hover { background: rgba(255, 255, 255, 0.08); text-decoration: none; }
.site-footer__widgets { padding-bottom: 1.75rem; }
.site-footer__bottom { border-top: 1px solid var(--hc-inv-line); }
.site-footer__bottom-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0.75rem 1rem; min-height: 62px; padding-block: 0.85rem; }
.site-footer__bottom p { margin: 0; color: var(--hc-inv-ink-2); font-size: 0.76rem; opacity: 0.85; }
.site-footer__bottom .menu { display: flex; flex-wrap: wrap; gap: 0.4rem 1rem; list-style: none; margin: 0; padding: 0; }
.site-footer__bottom a { font-size: 0.76rem; }

@media (max-width: 900px) { .site-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .site-footer__grid { grid-template-columns: 1fr; } }

/* --- Consent banner ------------------------------------------------------ */

.cookie-consent {
	position: fixed;
	z-index: 900;
	left: 0.85rem;
	right: 0.85rem;
	bottom: 0.85rem;
	width: min(calc(100% - 1.7rem), 900px);
	margin-inline: auto;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 1.25rem;
	align-items: center;
	padding: 1rem 1.15rem;
	border: 1px solid var(--hc-line);
	border-radius: var(--hc-radius);
	background: var(--hc-surface);
	color: var(--hc-ink);
	box-shadow: var(--hc-shadow-lg);
}
.cookie-consent[hidden] { display: none; }
.cookie-consent p { margin: 0; font-size: 0.85rem; }
.cookie-consent p + p { margin-top: 0.25rem; color: var(--hc-ink-2); font-size: 0.8rem; }
.cookie-consent__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
@media (max-width: 700px) {
	.cookie-consent { grid-template-columns: 1fr; }
	.cookie-consent__actions > .button { flex: 1 1 auto; }
}

/* --- Utilities ----------------------------------------------------------- */

.is-hidden { display: none !important; }
.tabular { font-variant-numeric: tabular-nums; }
.data-note { color: var(--hc-ink-3); font-size: 0.75rem; }
.data-note a { color: inherit; }

.source-line {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem 0.75rem;
	margin-top: 0.75rem;
	color: var(--hc-ink-3);
	font-size: 0.72rem;
}
.source-line a { color: inherit; }

.wp-block-image img { border-radius: var(--hc-radius-sm); }
.alignleft { float: left; margin: 0.35rem 1.5rem 1rem 0; }
.alignright { float: right; margin: 0.35rem 0 1rem 1.5rem; }
.aligncenter { margin-inline: auto; }
.sticky .article-card__title::before { content: "★ "; color: var(--hc-accent-text); }
