/**
 * Bauhaus Grid — front-end styles.
 *
 * Palette custom properties (--bh-*) are printed inline by inc/color.php, which
 * derives a text-safe variant of every accent. Use --bh-red for shapes, rules,
 * fills and display type; --bh-red-text (and the blue/yellow equivalents) for
 * anything smaller than about 24px, where the identity colours do not clear
 * WCAG AA on the paper ground.
 *
 * No border radius and no shadows anywhere. Regions are divided by 3px ink
 * rules; controls are 2px; hairlines inside panels are 1px.
 */

/* -------------------------------------------------------------------------
 * Tokens
 * ---------------------------------------------------------------------- */

:root {
	--bh-gutter: 40px;
	--bh-rule: 3px;
	--bh-control: 2px;
	--bh-sans: "Jost", "Helvetica Neue", Helvetica, Arial, sans-serif;
	--bh-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	--bh-prose: 760px;
	--bh-side: 300px;
	--bh-stripe: repeating-linear-gradient(45deg, var(--bh-stripe-a) 0 14px, var(--bh-stripe-b) 14px 28px);
}

@media (max-width: 1024px) {
	:root {
		--bh-gutter: 32px;
	}
}

@media (max-width: 680px) {
	:root {
		--bh-gutter: 20px;
	}
}

/* -------------------------------------------------------------------------
 * Base
 * ---------------------------------------------------------------------- */

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

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

body {
	margin: 0;
	background: var(--bh-paper);
	color: var(--bh-ink);
	font-family: var(--bh-sans);
	font-size: 17px;
	line-height: 1.6;
	font-synthesis-weight: none;
	overflow-wrap: break-word;
}

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

a {
	color: inherit;
	text-decoration: none;
	transition: opacity 120ms ease;
}

a:hover {
	opacity: 0.75;
}

h1,
h2,
h3,
h4 {
	margin: 0;
	font-weight: 700;
	line-height: 1.15;
	overflow-wrap: break-word;
}

p {
	margin: 0;
}

ul,
ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

button,
input,
textarea,
select {
	font: inherit;
	color: inherit;
}

:focus-visible {
	outline: 3px solid var(--bh-ink);
	outline-offset: 2px;
}

.bh-page {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	overflow-x: clip;
}

.bh-main {
	flex: 1 0 auto;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

/* The skip link is not a .screen-reader-text: focusing it has to undo the
 * clipping *and* the 1px box, or it lands on screen invisible. */
.bh-skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 100;
	padding: 12px 20px;
	background: var(--bh-ink);
	color: var(--bh-paper);
	font-family: var(--bh-mono);
	font-size: 13px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.bh-skip-link:focus {
	left: 0;
	width: auto;
	height: auto;
	clip-path: none;
	overflow: visible;
}

/* -------------------------------------------------------------------------
 * Shared pieces
 * ---------------------------------------------------------------------- */

.bh-kicker {
	font-family: var(--bh-mono);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--bh-ink);
}

.bh-meta,
.bh-card__meta {
	font-family: var(--bh-mono);
	font-size: 12px;
	letter-spacing: 0.04em;
	color: var(--bh-faint);
}

.bh-meta__sep {
	margin: 0 8px;
}

.bh-accent-word {
	color: var(--bh-red);
}

.bh-btn {
	display: inline-block;
	padding: 12px 28px;
	font-weight: 600;
	font-size: 16px;
	line-height: 1.2;
	border: var(--bh-control) solid transparent;
	text-align: center;
	transition: background-color 120ms ease, color 120ms ease, opacity 120ms ease;
}

.bh-btn:hover {
	opacity: 1;
}

.bh-btn--red {
	background: var(--bh-red-fill);
	border-color: var(--bh-red-fill);
	color: #fff;
}

.bh-btn--red:hover {
	background: var(--bh-ink);
	border-color: var(--bh-ink);
	color: var(--bh-paper);
}

.bh-btn--ink {
	background: var(--bh-ink);
	border-color: var(--bh-ink);
	color: var(--bh-paper);
}

.bh-btn--ink:hover {
	background: var(--bh-red-fill);
	border-color: var(--bh-red-fill);
	color: #fff;
}

.bh-btn--outline {
	border-color: var(--bh-ink);
	color: var(--bh-ink);
	background: transparent;
}

.bh-btn--outline:hover {
	background: var(--bh-ink);
	color: var(--bh-paper);
}

.bh-shape {
	display: block;
	flex: 0 0 auto;
}

.bh-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	width: 100%;
	height: 100%;
	min-height: 160px;
	background: var(--bh-stripe);
}

.bh-placeholder__label {
	font-family: var(--bh-mono);
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--bh-faint);
}

.bh-section-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
	padding: 40px var(--bh-gutter) 0;
}

.bh-section-head__title {
	font-size: clamp(26px, 3.4vw, 34px);
	min-width: 0;
}

.bh-section-head__link {
	font-family: var(--bh-mono);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--bh-red-text);
}

.bh-section-head__link--blue {
	color: var(--bh-blue-text);
}

.bh-section-head__link--yellow {
	color: var(--bh-yellow-text);
}

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

.bh-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 20px var(--bh-gutter);
	border-bottom: var(--bh-rule) solid var(--bh-ink);
	background: var(--bh-paper);
}

.bh-brand {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
}

.bh-brand__logo {
	width: auto;
	max-height: 44px;
}

.bh-wordmark {
	font-weight: 700;
	font-size: 20px;
	line-height: 1.1;
	letter-spacing: -0.01em;
}

.bh-wordmark__accent {
	color: var(--bh-red);
}

.bh-brand--inverse .bh-wordmark {
	font-size: 17px;
	color: var(--bh-paper);
}

.bh-brand--inverse .bh-wordmark__accent {
	color: var(--bh-red-on-ink);
}

.bh-nav {
	display: flex;
	align-items: center;
	gap: 28px;
	min-width: 0;
}

.bh-nav__list {
	display: flex;
	align-items: center;
	gap: 28px;
	flex-wrap: wrap;
	min-width: 0;
}

.bh-nav__item > a,
.bh-nav__search {
	display: inline-block;
	font-size: 15px;
	font-weight: 500;
	padding-bottom: 2px;
	border-bottom: var(--bh-rule) solid transparent;
}

.bh-nav__item--current > a {
	border-bottom-color: var(--bh-red);
}

.bh-nav__item--blue.bh-nav__item--current > a {
	border-bottom-color: var(--bh-blue);
}

.bh-nav__item--yellow.bh-nav__item--current > a {
	border-bottom-color: var(--bh-yellow);
}

.bh-nav__cta {
	padding: 6px 16px;
	font-size: 15px;
}

.bh-burger {
	display: none;
	align-items: center;
	gap: 10px;
	padding: 8px 14px;
	background: transparent;
	border: var(--bh-control) solid var(--bh-ink);
	font-family: var(--bh-mono);
	font-size: 12px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	cursor: pointer;
}

.bh-burger__bars {
	display: flex;
	flex-direction: column;
	gap: 3px;
	width: 16px;
}

.bh-burger__bars span {
	display: block;
	height: 2px;
	background: var(--bh-ink);
}

.bh-mobile-nav {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 90;
	background: var(--bh-paper);
	overflow-y: auto;
	padding: 24px var(--bh-gutter) 48px;
}

.bh-mobile-nav.is-open {
	display: block;
}

.bh-mobile-nav__inner {
	display: flex;
	flex-direction: column;
	gap: 0;
	padding-top: 72px;
}

.bh-mobile-nav__list,
.bh-mobile-nav .bh-nav__list {
	display: flex;
	flex-direction: column;
	gap: 0;
	width: 100%;
}

.bh-mobile-nav__list > li,
.bh-mobile-nav .bh-nav__list > li {
	border-bottom: var(--bh-rule) solid var(--bh-ink);
}

.bh-mobile-nav__list > li > a,
.bh-mobile-nav .bh-nav__list > li > a {
	display: block;
	padding: 16px 0;
	font-size: clamp(26px, 7vw, 34px);
	font-weight: 700;
	border-bottom: 0;
}

.bh-mobile-nav .bh-search {
	margin: 28px 0;
}

.bh-mobile-nav .bh-btn {
	align-self: flex-start;
}

body.bh-nav-open {
	overflow: hidden;
}

/* -------------------------------------------------------------------------
 * Front page: hero
 * ---------------------------------------------------------------------- */

.bh-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
	border-bottom: var(--bh-rule) solid var(--bh-ink);
}

.bh-hero__copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 24px;
	padding: 56px var(--bh-gutter);
	min-width: 0;
}

.bh-hero__heading {
	font-size: clamp(38px, 5.6vw, 64px);
	line-height: 1.02;
	text-wrap: pretty;
}

.bh-hero__highlight {
	color: var(--bh-red);
}

.bh-hero__text {
	font-size: 19px;
	line-height: 1.5;
	max-width: 44ch;
}

.bh-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.bh-hero__figure {
	position: relative;
	border-left: var(--bh-rule) solid var(--bh-ink);
	min-height: 420px;
	background: var(--bh-stripe);
	min-width: 0;
	overflow: hidden;
}

.bh-hero__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bh-hero__shapes {
	position: absolute;
	right: -3px;
	bottom: -3px;
	width: clamp(72px, 12vw, 120px);
	height: auto;
}

/* -------------------------------------------------------------------------
 * Front page: category tiles
 * ---------------------------------------------------------------------- */

.bh-tiles {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	border-bottom: var(--bh-rule) solid var(--bh-ink);
}

.bh-tile {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 32px var(--bh-gutter);
	border-right: var(--bh-rule) solid var(--bh-ink);
	min-width: 0;
}

.bh-tile:last-child {
	border-right: 0;
}

.bh-tile__title {
	font-size: 22px;
	line-height: 1.2;
}

.bh-tile__text {
	font-size: 15px;
	line-height: 1.5;
	color: var(--bh-muted);
}

.bh-tile__count {
	margin-top: auto;
	font-family: var(--bh-mono);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--bh-red-text);
}

.bh-tile--blue .bh-tile__count {
	color: var(--bh-blue-text);
}

.bh-tile--yellow .bh-tile__count {
	color: var(--bh-yellow-text);
}

/* -------------------------------------------------------------------------
 * Cards
 * ---------------------------------------------------------------------- */

.bh-cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	padding: 24px var(--bh-gutter) 40px;
}

.bh-card {
	background: var(--bh-white);
	border: var(--bh-rule) solid var(--bh-ink);
	min-width: 0;
}

.bh-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.bh-card__figure {
	border-bottom: var(--bh-rule) solid var(--bh-ink);
	background: var(--bh-stripe);
	aspect-ratio: 3 / 2;
	overflow: hidden;
}

.bh-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bh-card__body {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 20px 24px;
	min-width: 0;
}

.bh-card__kicker {
	font-family: var(--bh-mono);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--bh-red-text);
}

.bh-card--blue .bh-card__kicker {
	color: var(--bh-blue-text);
}

.bh-card--yellow .bh-card__kicker {
	color: var(--bh-yellow-text);
}

.bh-card__glyph {
	margin-right: 4px;
}

.bh-card__title {
	font-size: 20px;
	line-height: 1.25;
}

.bh-cards--text .bh-card__title {
	font-size: 18px;
	line-height: 1.3;
}

.bh-card__meta {
	margin-top: auto;
	padding-top: 4px;
}

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

.bh-news {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 32px;
	padding: 36px var(--bh-gutter);
	background: var(--bh-yellow);
	border-top: var(--bh-rule) solid var(--bh-ink);
	border-bottom: var(--bh-rule) solid var(--bh-ink);
	color: var(--bh-ink);
}

.bh-news__copy {
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 0;
}

.bh-news__heading {
	font-size: clamp(21px, 3vw, 26px);
}

.bh-news__text {
	font-size: 15px;
}

.bh-news__form {
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-width: 0;
}

.bh-subscribe {
	display: flex;
	flex-wrap: nowrap;
	min-width: 0;
}

.bh-subscribe__input {
	flex: 0 1 240px;
	min-width: 0;
	padding: 12px 18px;
	background: var(--bh-white);
	border: var(--bh-rule) solid var(--bh-ink);
	border-right-width: 0;
	font-size: 15px;
}

.bh-subscribe__button {
	padding: 12px 24px;
	background: var(--bh-ink);
	color: var(--bh-paper);
	border: var(--bh-rule) solid var(--bh-ink);
	font-weight: 600;
	font-size: 15px;
	cursor: pointer;
	transition: opacity 120ms ease;
}

.bh-subscribe__button:hover {
	opacity: 0.8;
}

.bh-news__note,
.bh-news__placeholder {
	font-family: var(--bh-mono);
	font-size: 12px;
	color: var(--bh-ink);
}

/* -------------------------------------------------------------------------
 * Masthead (archives, search, posts page)
 * ---------------------------------------------------------------------- */

.bh-masthead {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	padding: 48px var(--bh-gutter);
	border-bottom: var(--bh-rule) solid var(--bh-ink);
}

.bh-masthead__copy {
	display: flex;
	flex-direction: column;
	gap: 14px;
	min-width: 0;
}

.bh-masthead__title {
	font-size: clamp(32px, 5vw, 56px);
	line-height: 1.02;
}

.bh-masthead__text {
	font-size: 17px;
	line-height: 1.5;
	max-width: 52ch;
	color: var(--bh-muted);
}

.bh-masthead__count {
	font-family: var(--bh-mono);
	font-size: 12px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--bh-faint);
}

.bh-masthead__shapes {
	flex: 0 0 auto;
}

.bh-masthead__search {
	max-width: 420px;
}

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

.bh-crumbs__list {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 10px;
	font-family: var(--bh-mono);
	font-size: 12px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--bh-faint);
}

.bh-crumbs__item + .bh-crumbs__item::before {
	content: "/";
	margin-right: 10px;
}

.bh-crumbs__item--red {
	color: var(--bh-red-text);
}

.bh-crumbs__item--blue {
	color: var(--bh-blue-text);
}

.bh-crumbs__item--yellow {
	color: var(--bh-yellow-text);
}

/* Chips ------------------------------------------------------------------ */

.bh-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	padding: 20px var(--bh-gutter);
	border-bottom: var(--bh-rule) solid var(--bh-ink);
}

.bh-chip {
	display: inline-block;
	padding: 6px 16px;
	border: var(--bh-control) solid var(--bh-ink);
	font-family: var(--bh-mono);
	font-size: 13px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.bh-chip--current {
	background: var(--bh-ink);
	color: var(--bh-paper);
}

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

.bh-pager {
	padding: 8px var(--bh-gutter) 48px;
}

.bh-pager .nav-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	font-family: var(--bh-mono);
	font-size: 13px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.bh-pager .page-numbers {
	display: inline-block;
	padding: 8px 14px;
	border: var(--bh-control) solid var(--bh-ink);
	min-width: 44px;
	text-align: center;
}

.bh-pager .page-numbers.current {
	background: var(--bh-ink);
	color: var(--bh-paper);
}

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

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

.bh-article__head {
	padding: 48px var(--bh-gutter);
	border-bottom: var(--bh-rule) solid var(--bh-ink);
}

.bh-article__head-inner {
	display: flex;
	flex-direction: column;
	gap: 18px;
	max-width: 860px;
}

.bh-article__title {
	font-size: clamp(30px, 4.4vw, 52px);
	line-height: 1.05;
	text-wrap: pretty;
}

.bh-article__standfirst {
	font-size: 19px;
	line-height: 1.5;
	color: var(--bh-muted);
}

.bh-byline {
	display: flex;
	align-items: center;
	gap: 16px;
	min-width: 0;
}

.bh-byline__avatar {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--bh-red-fill);
	color: #fff;
	font-weight: 600;
	font-size: 15px;
	line-height: 1;
}

.bh-byline__avatar--blue {
	background: var(--bh-blue-fill);
}

.bh-byline__avatar--yellow {
	background: var(--bh-ink);
	color: var(--bh-yellow);
}

.bh-byline__text {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 6px 16px;
	min-width: 0;
}

.bh-byline__author {
	font-family: var(--bh-mono);
	font-size: 12px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--bh-muted);
}

.bh-article__figure {
	position: relative;
	margin: 0;
	border-bottom: var(--bh-rule) solid var(--bh-ink);
	background: var(--bh-stripe);
	height: clamp(200px, 30vw, 400px);
	overflow: hidden;
}

.bh-article__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bh-credit {
	position: absolute;
	right: var(--bh-gutter);
	bottom: 0;
	padding: 6px 12px;
	background: var(--bh-ink);
	color: var(--bh-paper);
	font-family: var(--bh-mono);
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	max-width: calc(100% - var(--bh-gutter) * 2);
}

.bh-article__layout {
	display: grid;
	grid-template-columns: var(--bh-side) minmax(0, 1fr);
}

.bh-article__layout--full {
	grid-template-columns: minmax(0, 1fr);
}

/* Sidebar ---------------------------------------------------------------- */

.bh-side {
	border-right: var(--bh-rule) solid var(--bh-ink);
	padding: 36px 28px;
	min-width: 0;
}

.bh-side__sticky {
	display: flex;
	flex-direction: column;
	gap: 24px;
	position: sticky;
	top: 24px;
}

.bh-panel__label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: var(--bh-mono);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--bh-faint);
}

.bh-panel__label--red {
	color: var(--bh-red-text);
}

.bh-panel__label--blue {
	color: var(--bh-blue-text);
}

.bh-panel__label--yellow {
	color: var(--bh-yellow-text);
}

.bh-toc {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.bh-toc__list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.bh-toc__link {
	font-size: 15px;
	font-weight: 500;
	line-height: 1.35;
	border-left: var(--bh-control) solid transparent;
	padding-left: 10px;
	margin-left: -12px;
	display: block;
}

.bh-toc__link.is-current {
	color: var(--bh-red-text);
	border-left-color: var(--bh-red);
}

.bh-panel {
	padding: 20px;
	border: var(--bh-rule) solid var(--bh-ink);
	background: var(--bh-white);
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.bh-panel--promo {
	background: var(--bh-yellow);
}

.bh-promo__heading {
	font-size: 16px;
}

.bh-promo__text {
	font-size: 14px;
	line-height: 1.5;
}

.bh-panel--promo .bh-btn {
	align-self: flex-start;
	padding: 8px 14px;
	font-size: 14px;
}

.bh-facts {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 6px 12px;
	align-items: baseline;
	margin: 0;
	font-size: 14px;
	line-height: 1.45;
}

.bh-facts__label {
	font-family: var(--bh-mono);
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--bh-faint);
}

/* The value column is auto-width and the label wraps instead: a 254px sidebar
 * is narrow enough that a 1fr value column breaks words mid-syllable. */
.bh-facts__value {
	margin: 0;
	font-weight: 500;
	text-align: right;
	overflow-wrap: normal;
}

.bh-facts__value--wide {
	grid-column: 1 / -1;
}

/* -------------------------------------------------------------------------
 * Prose — the_content
 * ---------------------------------------------------------------------- */

.bh-prose {
	padding: 44px 56px;
	max-width: calc(var(--bh-prose) + 112px);
	min-width: 0;
	font-size: 17px;
	line-height: 1.6;
}

.bh-article__layout--full .bh-prose {
	margin: 0 auto;
}

.bh-prose > * {
	margin-block: 24px;
}

.bh-prose > *:first-child {
	margin-top: 0;
}

.bh-prose > *:last-child {
	margin-bottom: 0;
}

.bh-prose h2,
.bh-prose .bh-h2 {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 44px;
	font-size: clamp(24px, 3.2vw, 32px);
	line-height: 1.15;
	scroll-margin-top: 24px;
}

.bh-h2__mark {
	display: flex;
	flex: 0 0 auto;
}

.bh-prose h3 {
	margin-top: 36px;
	font-size: 22px;
	line-height: 1.2;
}

.bh-prose h4 {
	margin-top: 28px;
	font-size: 18px;
}

.bh-prose a:not(.bh-btn) {
	color: var(--bh-red-text);
	border-bottom: var(--bh-control) solid var(--bh-red);
}

.bh-prose ul,
.bh-prose ol {
	padding-left: 24px;
}

.bh-prose ul {
	list-style: square;
}

.bh-prose ol {
	list-style: decimal;
}

.bh-prose li {
	margin-bottom: 8px;
}

.bh-prose li::marker {
	color: var(--bh-red);
}

.bh-prose blockquote {
	position: relative;
	margin-inline: 0;
	padding: 24px 28px;
	background: var(--bh-white);
	border: var(--bh-rule) solid var(--bh-ink);
	font-size: 21px;
	line-height: 1.4;
	font-weight: 500;
}

.bh-prose blockquote p {
	margin: 0 0 12px;
}

.bh-prose blockquote p:last-child {
	margin-bottom: 0;
}

.bh-prose blockquote cite {
	display: block;
	font-family: var(--bh-mono);
	font-size: 12px;
	font-style: normal;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--bh-faint);
}

.bh-quote__marker {
	position: absolute;
	top: -9px;
	left: 24px;
	width: 16px;
	height: 16px;
	background: var(--bh-yellow);
}

.bh-prose figure,
.bh-prose .wp-block-image {
	margin-inline: 0;
}

.bh-prose img {
	border: var(--bh-rule) solid var(--bh-ink);
}

.bh-prose figcaption {
	margin-top: 8px;
	font-family: var(--bh-mono);
	font-size: 12px;
	line-height: 1.5;
	color: var(--bh-faint);
}

.bh-table-scroll {
	overflow-x: auto;
}

.bh-prose table {
	width: 100%;
	border-collapse: collapse;
	border: var(--bh-rule) solid var(--bh-ink);
	font-size: 15px;
}

.bh-prose th {
	font-family: var(--bh-mono);
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-align: left;
	background: var(--bh-white);
}

.bh-prose th,
.bh-prose td {
	padding: 10px 14px;
	border-bottom: 1px solid var(--bh-hairline);
	vertical-align: top;
}

.bh-prose tr:last-child td {
	border-bottom: 0;
}

.bh-prose code,
.bh-prose kbd {
	font-family: var(--bh-mono);
	font-size: 0.9em;
	background: var(--bh-white);
	border: 1px solid var(--bh-hairline);
	padding: 1px 5px;
}

.bh-prose pre {
	overflow-x: auto;
	padding: 20px;
	background: var(--bh-white);
	border: var(--bh-rule) solid var(--bh-ink);
	font-family: var(--bh-mono);
	font-size: 14px;
}

.bh-prose hr,
.bh-prose .wp-block-separator {
	border: 0;
	border-top: var(--bh-rule) solid var(--bh-ink);
	height: 0;
}

.bh-tags {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 8px 12px;
	padding-top: 24px;
	border-top: 1px solid var(--bh-hairline);
	font-family: var(--bh-mono);
	font-size: 12px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.bh-tags__label {
	color: var(--bh-faint);
}

.bh-tags a {
	border-bottom: var(--bh-control) solid var(--bh-red);
	color: var(--bh-red-text);
}

.bh-page-links {
	font-family: var(--bh-mono);
	font-size: 13px;
	letter-spacing: 0.06em;
}

.bh-article__widgets {
	margin-top: 40px;
	padding-top: 24px;
	border-top: 1px solid var(--bh-hairline);
}

.bh-widget + .bh-widget {
	margin-top: 24px;
}

.bh-widget__title {
	font-family: var(--bh-mono);
	font-size: 11px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--bh-faint);
	margin-bottom: 8px;
}

/* Block styles ----------------------------------------------------------- */

.is-style-bauhaus-callout {
	position: relative;
	display: flex;
	gap: 16px;
	align-items: flex-start;
	padding: 20px 24px;
	background: var(--bh-white);
	border: var(--bh-rule) solid var(--bh-blue);
	font-size: 15px;
	line-height: 1.55;
}

/* The callout takes the article's own accent, so its border and the glyph the
 * render filter injects cannot disagree. */
.bh-accent-red .is-style-bauhaus-callout {
	border-color: var(--bh-red);
}

.bh-accent-yellow .is-style-bauhaus-callout {
	border-color: var(--bh-yellow);
}

.is-style-bauhaus-callout > .bh-callout__glyph {
	flex: 0 0 auto;
	margin-top: 2px;
}

.is-style-bauhaus-facts {
	padding: 20px 24px;
	background: var(--bh-white);
	border: var(--bh-rule) solid var(--bh-ink);
	font-size: 15px;
}

.is-style-bauhaus-grid-table table {
	border: var(--bh-rule) solid var(--bh-ink);
}

.is-style-bauhaus-squares {
	list-style: square;
}

.is-style-bauhaus-framed img {
	border: var(--bh-rule) solid var(--bh-ink);
}

.is-style-bauhaus-rule {
	border-top-width: var(--bh-rule);
	border-top-color: var(--bh-ink);
	max-width: none;
}

/* -------------------------------------------------------------------------
 * Related, empty state, 404, comments
 * ---------------------------------------------------------------------- */

.bh-related {
	border-top: var(--bh-rule) solid var(--bh-ink);
	padding-bottom: 16px;
}

.bh-cards--text .bh-card__link {
	padding: 20px 24px;
}

.bh-empty {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 56px var(--bh-gutter);
	max-width: 640px;
}

.bh-empty__title {
	font-size: clamp(26px, 4vw, 34px);
}

.bh-empty__text {
	color: var(--bh-muted);
}

.bh-notfound {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	padding: 64px var(--bh-gutter);
	border-bottom: var(--bh-rule) solid var(--bh-ink);
}

.bh-notfound__copy {
	display: flex;
	flex-direction: column;
	gap: 18px;
	min-width: 0;
}

.bh-notfound__title {
	font-size: clamp(32px, 5vw, 56px);
	line-height: 1.05;
}

.bh-notfound__text {
	max-width: 52ch;
	color: var(--bh-muted);
}

.bh-notfound__search {
	max-width: 420px;
}

.bh-notfound__shapes {
	flex: 0 0 auto;
}

.bh-comments {
	padding: 40px var(--bh-gutter) 56px;
	border-top: var(--bh-rule) solid var(--bh-ink);
	max-width: 860px;
}

.bh-comments__title {
	font-size: 24px;
	margin-bottom: 20px;
}

.bh-comments__list,
.bh-comments__list .children {
	list-style: none;
	padding: 0;
}

.bh-comments__list .children {
	padding-left: 24px;
	border-left: var(--bh-control) solid var(--bh-hairline);
}

.bh-comments__list li {
	margin-bottom: 24px;
}

.bh-comments .comment-meta,
.bh-comments .comment-metadata {
	font-family: var(--bh-mono);
	font-size: 12px;
	color: var(--bh-faint);
}

.bh-comments input[type="text"],
.bh-comments input[type="email"],
.bh-comments input[type="url"],
.bh-comments textarea {
	width: 100%;
	max-width: 100%;
	padding: 10px 14px;
	background: var(--bh-white);
	border: var(--bh-control) solid var(--bh-ink);
}

/* The core cookie-consent checkbox ships at 13x13, which fails WCAG 2.5.8
 * target size once the form stacks on a narrow screen. */
.bh-comments input[type="checkbox"] {
	width: 24px;
	height: 24px;
	margin-right: 8px;
	vertical-align: middle;
	accent-color: var(--bh-ink);
}

.bh-comments .comment-form-cookies-consent {
	display: flex;
	align-items: center;
	gap: 4px;
}

.bh-comments .submit {
	padding: 12px 28px;
	background: var(--bh-ink);
	color: var(--bh-paper);
	border: var(--bh-control) solid var(--bh-ink);
	font-weight: 600;
	cursor: pointer;
}

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

.bh-search {
	display: flex;
	flex-wrap: wrap;
	min-width: 0;
}

.bh-search__input {
	flex: 1 1 200px;
	min-width: 0;
	padding: 10px 16px;
	background: var(--bh-white);
	border: var(--bh-control) solid var(--bh-ink);
	border-right-width: 0;
	font-size: 15px;
}

.bh-search__button {
	padding: 10px 20px;
	background: var(--bh-ink);
	color: var(--bh-paper);
	border: var(--bh-control) solid var(--bh-ink);
	font-family: var(--bh-mono);
	font-size: 13px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	cursor: pointer;
}

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

.bh-footer {
	background: var(--bh-ink);
	color: var(--bh-paper);
	border-top: var(--bh-rule) solid var(--bh-ink);
	padding: 44px var(--bh-gutter) 28px;
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.bh-footer__columns {
	display: flex;
	flex-wrap: wrap;
	gap: 40px 64px;
}

.bh-footer__brand {
	display: flex;
	flex-direction: column;
	gap: 14px;
	max-width: 300px;
	min-width: 0;
}

.bh-footer__blurb {
	font-size: 14px;
	line-height: 1.55;
	color: var(--bh-footer-muted);
}

.bh-footer__column {
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-width: 0;
}

.bh-footer__label {
	font-family: var(--bh-mono);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--bh-faint-on-ink);
}

.bh-footer__list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	font-size: 14px;
}

.bh-footer__list a {
	color: var(--bh-paper);
}

.bh-footer__extras {
	color: var(--bh-footer-muted);
}

.bh-footer__extras a {
	color: var(--bh-paper);
}

.bh-widget--dark .bh-widget__title {
	color: var(--bh-faint-on-ink);
}

.bh-footer__legal {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 12px 24px;
	padding-top: 18px;
	border-top: 1px solid var(--bh-footer-rule);
	font-family: var(--bh-mono);
	font-size: 12px;
	color: var(--bh-faint-on-ink);
}

/* -------------------------------------------------------------------------
 * Responsive
 * ---------------------------------------------------------------------- */

@media (max-width: 1024px) {
	.bh-hero {
		grid-template-columns: minmax(0, 1fr);
	}

	.bh-hero__figure {
		border-left: 0;
		border-top: var(--bh-rule) solid var(--bh-ink);
		min-height: 320px;
		order: 2;
	}

	.bh-hero__copy {
		padding-block: 44px;
	}

	.bh-article__layout {
		grid-template-columns: minmax(0, 1fr);
	}

	.bh-side {
		border-right: 0;
		border-bottom: var(--bh-rule) solid var(--bh-ink);
		padding: 28px var(--bh-gutter);
	}

	.bh-side__sticky {
		position: static;
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
		gap: 24px;
		align-items: start;
	}

	.bh-prose {
		padding: 36px var(--bh-gutter);
		max-width: none;
		margin: 0 auto;
	}

	.bh-cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bh-tile {
		border-bottom: var(--bh-rule) solid var(--bh-ink);
	}

	.bh-tiles > .bh-tile:last-child {
		border-bottom: 0;
	}
}

@media (max-width: 900px) {
	.bh-nav {
		display: none;
	}

	.bh-burger {
		display: inline-flex;
	}

	.bh-masthead,
	.bh-notfound {
		flex-direction: column;
		align-items: flex-start;
	}

	.bh-masthead__shapes svg,
	.bh-notfound__shapes svg {
		width: 96px;
		height: 96px;
	}
}

@media (max-width: 680px) {
	body {
		font-size: 16px;
	}

	.bh-cards {
		grid-template-columns: minmax(0, 1fr);
	}

	.bh-tiles {
		grid-template-columns: minmax(0, 1fr);
	}

	.bh-tile {
		border-right: 0;
	}

	.bh-article__head,
	.bh-masthead,
	.bh-notfound {
		padding-block: 32px;
	}

	.bh-news {
		flex-direction: column;
		align-items: flex-start;
	}

	.bh-news__form {
		width: 100%;
	}

	.bh-subscribe {
		flex-wrap: wrap;
	}

	.bh-subscribe__input {
		flex-basis: 100%;
		border-right-width: var(--bh-rule);
		border-bottom-width: 0;
	}

	.bh-subscribe__button {
		width: 100%;
	}

	.bh-search__input {
		flex-basis: 100%;
		border-right-width: var(--bh-control);
	}

	.bh-search__button {
		width: 100%;
		border-top-width: 0;
	}

	.bh-credit {
		right: 0;
		max-width: 100%;
	}

	.bh-prose h2,
	.bh-prose .bh-h2 {
		gap: 10px;
	}
}

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