/**
 * Indigo Woodblock — front-end styles.
 *
 * Order: tokens, reset, primitives, header, templates, prose, footer,
 * breakpoints, print. Colour and type values are duplicated from theme.json as
 * plain custom properties so the sheet stands on its own if the global styles
 * layer is ever turned off.
 */

/* ---------------------------------------------------------------- tokens */

:root {
	--indigo: #16324f;
	--indigo-deep: #0e2338;
	--indigo-mid: #2e4a68;
	--vermillion: #bf3a28;
	--vermillion-deep: #9e2f20;
	--washi: #f4efe4;
	--washi-2: #ebe4d3;
	--ink: #1c1c1c;
	--ink-2: #4a4a44;
	--stone: #6f6a5c;
	--mist: #a9b4c0;
	--rule: #b1b6b7;

	/* Identity colours above; text variants below.
	   Vermillion and stone are specified against washi, where both clear AA
	   at 4.76 and 4.71. On washi-2 — the dispatch band, the verification box —
	   the same values fall to 4.30 and 4.26. These two are a shade deeper: one
	   value each that clears 4.5 on *both* grounds (5.14 / 4.65), close enough
	   to the originals to be indistinguishable, so nothing has to be scoped by
	   which band it happens to sit in. The identity values stay for graphics —
	   the seal, the plate square, rules, borders — where contrast rules for
	   text do not apply. */
	--vermillion-text: #b63726;
	--stone-text: #696457;

	--serif: 'Shippori Mincho', 'Iowan Old Style', 'Palatino Linotype', Georgia, serif;
	--sans: 'Zen Kaku Gothic New', 'Helvetica Neue', Arial, sans-serif;

	--gutter: 36px;
	--container: 1280px;
	--content: 1208px;
	--measure: 720px;
	--header-h: 72px;

	--s-1: 4px;
	--s-2: 8px;
	--s-3: 12px;
	--s-4: 16px;
	--s-5: 20px;
	--s-6: 24px;
	--s-7: 36px;
	--s-8: 56px;
	--s-9: 80px;
	--s-10: 120px;
}

/* ----------------------------------------------------------------- reset */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	background: var(--washi);
	color: var(--ink-2);
	font-family: var(--sans);
	font-size: 17px;
	line-height: 1.85;
	text-wrap: pretty;
}

img,
svg,
video {
	max-width: 100%;
	height: auto;
	display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--serif);
	font-weight: 800;
	color: var(--ink);
	line-height: 1.25;
	margin: 0;
	text-wrap: pretty;
}

p,
ul,
ol,
dl,
figure,
blockquote,
table {
	margin: 0;
}

a {
	color: var(--vermillion-text);
	text-decoration: none;
}

button,
input,
select,
textarea {
	font: inherit;
	color: inherit;
}

/* The focus ring is the one interactive affordance that never changes. */
:focus-visible {
	outline: 2px solid var(--vermillion);
	outline-offset: 3px;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	position: fixed !important;
	top: 12px;
	left: 12px;
	z-index: 60;
	width: auto;
	height: auto;
	clip: auto;
	clip-path: none;
	margin: 0;
	padding: 12px 18px;
	background: var(--indigo);
	color: var(--washi);
	font: 500 12px/1 var(--sans);
	letter-spacing: 2.5px;
	text-transform: uppercase;
}

.iw-page {
	overflow-x: clip;
}

/* ------------------------------------------------------------ primitives */

.iw-eyebrow {
	font: 500 11px/1.6 var(--sans);
	letter-spacing: 4px;
	text-transform: uppercase;
	color: var(--vermillion-text);
	margin: 0;
}

.iw-label,
.iw-sechead__label {
	font: 400 10.5px/1.6 var(--sans);
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--stone-text);
	margin: 0;
}

.iw-sechead {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: var(--s-5);
	margin-bottom: 18px;
}

.iw-sechead__link {
	font: 500 12px/1.6 var(--sans);
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--vermillion-text);
	white-space: nowrap;
}

.iw-sechead__link:hover {
	text-decoration: underline;
	text-underline-offset: 6px;
	text-decoration-thickness: 1px;
}

.iw-arrow {
	margin-left: 7px;
}

/* Text links: the primary keeps a 2px vermillion rule, the secondary a
   hairline. Neither moves on hover; only the colour changes. */
.iw-textlink {
	display: inline-block;
	font: 700 13px/1.6 var(--sans);
	padding-bottom: 4px;
	transition: color 150ms linear, border-color 150ms linear;
}

.iw-textlink--primary {
	color: var(--vermillion-text);
	border-bottom: 2px solid var(--vermillion);
}

.iw-textlink--primary:hover {
	color: var(--indigo);
	border-bottom-color: var(--indigo);
}

.iw-textlink--secondary {
	color: var(--indigo);
	border-bottom: 1px solid var(--rule);
}

.iw-textlink--secondary:hover {
	color: var(--vermillion-text);
	border-bottom-color: var(--vermillion);
}

.iw-btn {
	display: inline-block;
	background: var(--indigo);
	color: var(--washi);
	border: 0;
	border-radius: 0;
	padding: 14px 24px;
	font: 700 13px/1.2 var(--sans);
	letter-spacing: 1px;
	text-transform: uppercase;
	cursor: pointer;
	transition: background-color 150ms linear;
}

.iw-btn:hover {
	background: var(--indigo-deep);
}

.iw-input {
	flex: 1 1 auto;
	min-width: 0;
	background: var(--washi);
	border: 1px solid var(--indigo);
	border-radius: 0;
	padding: 14px 16px;
	font: 400 14px/1.4 var(--sans);
	color: var(--ink);
}

.iw-input::placeholder {
	color: var(--stone-text);
	opacity: 1;
}

/* Honeypot: off-screen but not display:none, which some bots skip. */
.iw-hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.iw-avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: none;
	border-radius: 50%;
	background: var(--washi-2);
	border: 1px solid var(--indigo);
	color: var(--indigo);
	font-family: var(--serif);
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.02em;
}

/* The seigaiha divider: one wave repeated, drawn rather than shipped. */
.iw-seigaiha {
	height: 26px;
	border-top: 1px solid var(--indigo);
	border-bottom: 1px solid var(--indigo);
	background-color: var(--washi);
	background-image: radial-gradient(circle at 50% 118%, var(--indigo) 9px, transparent 9.8px);
	background-size: 26px 26px;
}

/* --------------------------------------------------------------- plates */

.iw-plate {
	margin: 0;
}

.iw-plate__frame {
	border: 1px solid var(--indigo);
	outline: 1px solid var(--indigo);
	outline-offset: 6px;
	background: var(--washi-2);
	overflow: hidden;
}

.iw-plate__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.iw-plate[style*="--iw-plate-ratio"] .iw-plate__frame {
	aspect-ratio: var(--iw-plate-ratio);
}

.iw-plate__caption {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--s-4);
	/* 6px of outline offset plus the design's 14px breathing room. */
	margin-top: 20px;
}

.iw-plate__text {
	color: var(--stone-text);
	min-width: 0;
}

.iw-plate__text.is-short {
	font: 400 10.5px/1.6 var(--sans);
	letter-spacing: 2px;
	text-transform: uppercase;
}

/* A two-sentence caption set in letterspaced caps is unreadable; the length
   class is decided in PHP, which can measure the string. */
.iw-plate__text.is-long {
	font: 400 12.5px/1.6 var(--sans);
	letter-spacing: 0;
	text-transform: none;
}

.iw-plate__num {
	white-space: nowrap;
}

.iw-plate__text.is-long .iw-plate__num {
	font-size: 10.5px;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.iw-plate__dash {
	margin: 0 6px;
}

.iw-plate__seal {
	flex: none;
	width: 8px;
	height: 8px;
	background: var(--vermillion);
}

/* --------------------------------------------------------------- header */

.iw-header {
	border-bottom: 1px solid var(--indigo);
	background: var(--washi);
}

.iw-header__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--gutter);
	height: var(--header-h);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--s-6);
}

/* The three header zones: the lockup and the search keep their intrinsic
   width, the nav takes what is left and tightens its own gap rather than
   pushing either neighbour out of the bar. */
.iw-header__brand,
.iw-header__end {
	flex: 0 0 auto;
}

.iw-nav {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	justify-content: flex-end;
	overflow: hidden;
}

.iw-lockup {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	color: var(--indigo);
	text-decoration: none;
}

.iw-lockup__mark {
	display: block;
	flex: none;
}

.iw-lockup__text {
	display: block;
	min-width: 0;
}

.iw-lockup__word {
	display: block;
	font-family: var(--serif);
	font-weight: 600;
	font-size: 17px;
	line-height: 1;
	letter-spacing: 4px;
	text-transform: uppercase;
	white-space: nowrap;
	color: inherit;
}

.iw-lockup__tagline {
	display: block;
	margin-top: 5px;
	font: 400 10px/1.2 var(--sans);
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--stone-text);
	white-space: nowrap;
}

.iw-lockup--compact {
	gap: 10px;
}

.iw-lockup--compact .iw-lockup__word {
	font-size: 13px;
	letter-spacing: 3px;
}

.iw-lockup--reverse,
.iw-footer .iw-lockup {
	color: var(--washi);
}

.iw-lockup--reverse .iw-lockup__tagline,
.iw-footer .iw-lockup__tagline {
	color: var(--mist);
}

/* Nav ------------------------------------------------------------------ */

.iw-nav__list {
	display: flex;
	align-items: center;
	gap: clamp(14px, 2.1vw, 30px);
	list-style: none;
	margin: 0;
	padding: 0;
	min-width: 0;
}

.iw-nav__list > li > a,
.iw-nav__list > li > span {
	display: inline-block;
	font: 500 12px/1.4 var(--sans);
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--indigo);
	white-space: nowrap;
	padding: 4px 0;
	border-bottom: 1px solid transparent;
	transition: color 150ms linear, border-color 150ms linear;
}

.iw-nav__list > li > a:hover {
	color: var(--vermillion-text);
	border-bottom-color: var(--vermillion);
}

.iw-nav__list > li.current-menu-item > a,
.iw-nav__list > li.current-menu-parent > a,
.iw-nav__list > li.current-menu-ancestor > a {
	color: var(--vermillion-text);
	border-bottom-color: var(--vermillion);
}

.iw-header__end {
	display: flex;
	align-items: center;
	gap: var(--s-5);
}

.iw-searchlink {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font: 500 12px/1.4 var(--sans);
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--indigo);
	padding: 4px 0;
	transition: color 150ms linear;
}

.iw-searchlink:hover {
	color: var(--vermillion-text);
}

.iw-menubtn {
	display: none;
	background: none;
	border: 0;
	padding: 6px 0;
	font: 500 12px/1.4 var(--sans);
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--indigo);
	cursor: pointer;
}

/* Drawer --------------------------------------------------------------- */

.iw-drawer {
	position: fixed;
	inset: 0;
	z-index: 50;
	background: var(--washi);
	overflow-y: auto;
	opacity: 0;
	transition: opacity 200ms linear;
}

.iw-drawer.is-open {
	opacity: 1;
}

.iw-drawer__inner {
	min-height: 100%;
	padding: 0 20px 40px;
	display: flex;
	flex-direction: column;
}

.iw-drawer__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--s-4);
	height: 60px;
	border-bottom: 1px solid var(--indigo);
	margin: 0 -20px 0;
	padding: 0 20px;
}

.iw-drawer__close {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: none;
	border: 0;
	padding: 8px 0;
	font: 500 12px/1 var(--sans);
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--indigo);
	cursor: pointer;
}

.iw-drawer__list {
	list-style: none;
	margin: 0;
	padding: 0;
	counter-reset: drawer;
}

.iw-drawer__list > li {
	counter-increment: drawer;
	border-bottom: 1px solid var(--rule);
}

.iw-drawer__list > li > a {
	display: flex;
	align-items: baseline;
	gap: 16px;
	padding: 18px 0;
	font-family: var(--serif);
	font-weight: 800;
	font-size: 28px;
	line-height: 1.25;
	color: var(--ink);
}

.iw-drawer__list > li > a::before {
	content: counter(drawer, decimal-leading-zero);
	flex: none;
	font-size: 16px;
	color: var(--vermillion-text);
}

.iw-drawer__list > li.current-menu-item > a {
	color: var(--vermillion-text);
}

.iw-drawer__search {
	margin-top: var(--s-7);
}

.iw-drawer__smalllist {
	list-style: none;
	margin: var(--s-6) 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 6px 18px;
}

.iw-drawer__smalllist a {
	font: 400 13px/1.8 var(--sans);
	color: var(--ink-2);
}

.iw-drawer__smalllist a:hover {
	color: var(--vermillion-text);
}

/* ----------------------------------------------------------------- home */

.iw-hero__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: var(--s-8) var(--gutter);
	display: flex;
	gap: var(--s-7);
	align-items: stretch;
}

.iw-motif {
	flex: none;
	width: 90px;
	color: var(--indigo);
	display: flex;
	justify-content: center;
}

.iw-motif__svg {
	width: 46px;
	height: auto;
}

.iw-hero__grid {
	flex: 1 1 auto;
	min-width: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--s-7);
	align-items: center;
}

.iw-hero__copy {
	min-width: 0;
}

.iw-hero__title {
	font-size: 44px;
	line-height: 1.25;
	color: var(--ink);
	margin-top: 18px;
}

.iw-hero__body {
	font-size: 14.5px;
	line-height: 1.9;
	color: var(--ink-2);
	max-width: 52ch;
	margin-top: var(--s-5);
}

.iw-hero__links {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: var(--s-6) var(--s-7);
	margin-top: 30px;
}

.iw-hero__plate {
	min-width: 0;
}

.iw-plate--hero .iw-plate__frame {
	height: 440px;
}

.iw-plate--hero[style*="--iw-plate-ratio"] .iw-plate__frame {
	aspect-ratio: auto;
}

/* Featured index rows -------------------------------------------------- */

.iw-featured__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 44px var(--gutter) 50px;
}

.iw-rows {
	margin-top: var(--s-5);
	border-top: 1px solid var(--indigo);
}

.iw-row {
	display: grid;
	grid-template-columns: 64px 1fr 180px;
	gap: var(--s-5);
	align-items: start;
	padding: 18px 0;
	border-bottom: 1px solid var(--rule);
}

.iw-row__num {
	font-family: var(--serif);
	font-weight: 800;
	font-size: 20px;
	line-height: 1.4;
	color: var(--vermillion-text);
}

.iw-row__body {
	min-width: 0;
}

.iw-row__title {
	font-size: 22px;
	line-height: 1.4;
	color: var(--ink);
}

.iw-row__title a {
	color: inherit;
	transition: color 150ms linear;
}

.iw-row__title a:hover {
	color: var(--vermillion-text);
}

.iw-row__blurb {
	font: 400 13px/1.7 var(--sans);
	color: var(--ink-2);
	margin-top: 6px;
}

.iw-row__cat {
	font: 400 10.5px/1.6 var(--sans);
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--indigo);
	text-align: right;
}

/* District wall -------------------------------------------------------- */

.iw-districts__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--gutter) var(--s-8);
}

/* Tiles share their hairlines: the wall draws top and left, each tile draws
   right and bottom, so no rule is ever doubled. */
.iw-tiles {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border-top: 1px solid var(--indigo);
	border-left: 1px solid var(--indigo);
}

.iw-tile {
	border-right: 1px solid var(--indigo);
	border-bottom: 1px solid var(--indigo);
	padding: 26px 28px;
	min-height: 150px;
	display: flex;
	flex-direction: column;
	transition: background-color 150ms linear;
}

.iw-tile:hover {
	background: var(--washi-2);
}

.iw-tile__num {
	font: 400 10.5px/1.6 var(--sans);
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--stone-text);
}

.iw-tile__title {
	font-size: 24px;
	line-height: 1.3;
	color: var(--ink);
	margin-top: 10px;
}

.iw-tile__title a {
	color: inherit;
	transition: color 150ms linear;
}

/* The whole tile is the hit area; the link keeps the accessible name. */
.iw-tile__title a::after {
	content: "";
	position: absolute;
	inset: 0;
}

.iw-tile {
	position: relative;
}

.iw-tile:hover .iw-tile__title a {
	color: var(--vermillion-text);
}

.iw-tile__blurb {
	font: 400 13px/1.7 var(--sans);
	color: var(--ink-2);
	margin-top: 8px;
}

.iw-tile__cta {
	font: 400 10.5px/1.6 var(--sans);
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--indigo);
	margin-top: auto;
	padding-top: 14px;
}

/* Card grids ----------------------------------------------------------- */

.iw-latest__inner,
.iw-grid__inner,
.iw-related__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--gutter) var(--s-8);
}

.iw-related__inner {
	padding-top: var(--s-8);
	border-top: 1px solid var(--rule);
}

.iw-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--s-7);
}

.iw-card {
	position: relative;
	min-width: 0;
}

.iw-card__thumb {
	border: 1px solid var(--indigo);
	background: var(--washi-2);
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.iw-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.iw-card__cat {
	font-size: 10.5px;
	letter-spacing: 3px;
	margin-top: var(--s-4);
}

.iw-card__title {
	font-size: 22px;
	line-height: 1.35;
	color: var(--ink);
	margin-top: var(--s-2);
}

.iw-card__title a {
	color: inherit;
	transition: color 150ms linear;
}

.iw-card__title a::after {
	content: "";
	position: absolute;
	inset: 0;
}

.iw-card:hover .iw-card__title a {
	color: var(--vermillion-text);
}

.iw-card__blurb {
	font: 400 13.5px/1.7 var(--sans);
	color: var(--ink-2);
	margin-top: var(--s-2);
}

.iw-card__meta {
	font: 400 10.5px/1.6 var(--sans);
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--stone-text);
	margin-top: var(--s-3);
}

/* ------------------------------------------------------------- dispatch */

.iw-dispatch {
	background: var(--washi-2);
	border-top: 1px solid var(--indigo);
	border-bottom: 1px solid var(--indigo);
}

.iw-dispatch__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 44px var(--gutter);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--s-8);
	align-items: center;
}

.iw-dispatch__title {
	font-size: 30px;
	line-height: 1.3;
	color: var(--indigo);
	margin-top: var(--s-3);
}

.iw-dispatch__row {
	display: flex;
	gap: 0;
	position: relative;
}

.iw-dispatch__note {
	font: 400 10.5px/1.6 var(--sans);
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--stone-text);
	margin-top: var(--s-3);
}

.iw-dispatch__error {
	font: 400 13px/1.6 var(--sans);
	color: var(--vermillion-text);
	margin-top: var(--s-2);
}

.iw-dispatch__done {
	font-family: var(--serif);
	font-weight: 800;
	font-size: 22px;
	line-height: 1.4;
	color: var(--indigo);
}

/* --------------------------------------------------------------- footer */

.iw-footer {
	background: var(--indigo);
	color: var(--washi);
	-webkit-font-smoothing: antialiased;
}

.iw-footer__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: var(--s-8) var(--gutter) 28px;
}

.iw-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: var(--s-7);
}

.iw-footer__blurb {
	font: 400 13px/1.7 var(--sans);
	color: var(--mist);
	margin-top: var(--s-5);
	max-width: 40ch;
}

.iw-footer__head {
	font: 400 10.5px/1.6 var(--sans);
	font-weight: 400;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--mist);
	padding-bottom: 10px;
	margin-bottom: 12px;
	border-bottom: 1px solid var(--indigo-mid);
}

.iw-footer__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.iw-footer__list a {
	font: 400 14px/2.1 var(--sans);
	color: var(--washi);
	transition: color 150ms linear;
}

.iw-footer__list a:hover {
	color: var(--mist);
	text-decoration: underline;
	text-underline-offset: 4px;
	text-decoration-thickness: 1px;
}

.iw-footer__bottom {
	margin-top: 48px;
	padding-top: var(--s-5);
	border-top: 1px solid var(--indigo-mid);
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: var(--s-3) var(--s-6);
}

.iw-footer__copy,
.iw-footer__legallist a {
	font: 400 10.5px/1.8 var(--sans);
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--mist);
	margin: 0;
}

.iw-footer__legallist {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 6px var(--s-5);
}

.iw-footer__legallist a:hover {
	color: var(--washi);
}

.iw-footer--compact .iw-footer__inner {
	padding: 28px var(--gutter);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: var(--s-4) var(--s-6);
}

/* -------------------------------------------------------------- article */

.iw-crumbs__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 18px var(--gutter);
}

.iw-crumbs__list,
.iw-crumbs__inner .rank-math-breadcrumb {
	font: 400 10.5px/1.8 var(--sans);
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--stone-text);
	display: flex;
	flex-wrap: wrap;
	gap: 0 8px;
	align-items: baseline;
}

.iw-crumbs__list a,
.iw-crumbs__inner .rank-math-breadcrumb a {
	color: var(--stone-text);
	transition: color 150ms linear;
}

.iw-crumbs__list a:hover,
.iw-crumbs__inner .rank-math-breadcrumb a:hover {
	color: var(--vermillion-text);
}

.iw-crumbs__current {
	color: var(--indigo);
}

.iw-crumbs__sep {
	color: var(--stone-text);
}

.iw-arthead__inner {
	max-width: 880px;
	margin: 0 auto;
	padding: var(--s-7) var(--gutter) 40px;
	text-align: center;
}

.iw-arthead__title {
	font-size: 40px;
	line-height: 1.25;
	color: var(--ink);
	margin-top: var(--s-4);
}

.iw-arthead__dek {
	font: 400 19px/1.7 var(--sans);
	color: var(--ink-2);
	margin-top: 18px;
}

.iw-byline {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin-top: 26px;
	text-align: left;
}

.iw-byline__text {
	margin: 0;
}

.iw-byline__name {
	display: block;
	font: 400 13px/1.6 var(--sans);
	color: var(--ink-2);
}

.iw-byline__when {
	display: block;
	font: 400 10.5px/1.6 var(--sans);
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--stone-text);
}

.iw-arthero {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--gutter);
}

.iw-plate--arthero .iw-plate__frame {
	height: 520px;
}

.iw-body__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: var(--s-8) var(--gutter) 64px;
	display: grid;
	/* The rail carries a bordered box with 44px of its own padding, so it
	   needs a floor: as a bare 1fr it collapses to zero between 1100 and
	   1280 and the box paints outside the page. 136px is the width the
	   comp gives it at the full 1208px grid. */
	grid-template-columns: 240px minmax(0, var(--measure)) minmax(136px, 1fr);
	gap: var(--s-8);
	align-items: start;
}

/* Without a contents rail the body keeps its measure and centres. */
body:not(.iw-has-toc) .iw-body__inner {
	grid-template-columns: minmax(0, var(--measure)) minmax(136px, 1fr);
}

.iw-body__main {
	min-width: 0;
}

/* Contents rail -------------------------------------------------------- */

.iw-toc {
	position: sticky;
	top: 96px;
	min-width: 0;
}

.iw-toc__details {
	border: 0;
}

.iw-toc__summary {
	list-style: none;
	cursor: default;
	border-bottom: 1px solid var(--indigo);
	padding-bottom: 10px;
}

.iw-toc__summary::-webkit-details-marker {
	display: none;
}

.iw-toc__head {
	font: 400 10.5px/1.6 var(--sans);
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--indigo);
}

.iw-toc__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.iw-toc__item {
	border-bottom: 1px solid var(--rule);
}

.iw-toc__item a {
	display: flex;
	gap: var(--s-3);
	padding: 10px 0;
	color: var(--indigo);
	transition: color 150ms linear;
}

.iw-toc__num {
	flex: none;
	font-family: var(--serif);
	font-weight: 800;
	font-size: 13px;
	line-height: 1.5;
	color: var(--vermillion-text);
}

.iw-toc__text {
	font: 400 13.5px/1.5 var(--sans);
	min-width: 0;
}

.iw-toc__item a:hover,
.iw-toc__item.is-current a {
	color: var(--vermillion-text);
}

/* At a glance ---------------------------------------------------------- */

.iw-glance {
	min-width: 0;
}

.iw-glance__box {
	border: 1px solid var(--indigo);
	padding: 20px 22px;
	position: sticky;
	top: 96px;
}

.iw-glance__head {
	font: 400 10.5px/1.6 var(--sans);
	font-weight: 400;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--indigo);
	border-bottom: 1px solid var(--indigo);
	padding-bottom: 10px;
}

.iw-glance__list {
	margin: 0;
}

.iw-glance__item {
	padding: 12px 0;
	border-bottom: 1px solid var(--rule);
}

.iw-glance__item:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.iw-glance__label {
	font: 400 10.5px/1.6 var(--sans);
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--stone-text);
}

.iw-glance__value {
	margin: 2px 0 0;
	font: 700 14px/1.6 var(--sans);
	color: var(--ink);
}

/* End matter ----------------------------------------------------------- */

.iw-tags {
	display: flex;
	flex-wrap: wrap;
	gap: var(--s-2);
	margin-top: 40px;
}

.iw-tag {
	border: 1px solid var(--indigo);
	padding: 6px 10px;
	font: 400 10.5px/1.4 var(--sans);
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--indigo);
	transition: background-color 150ms linear, color 150ms linear;
}

.iw-tag:hover {
	background: var(--indigo);
	color: var(--washi);
}

.iw-verified {
	display: flex;
	gap: var(--s-4);
	align-items: flex-start;
	background: var(--washi-2);
	padding: 22px 24px;
	margin-top: var(--s-7);
}

.iw-verified__who {
	font: 400 14px/1.6 var(--sans);
	color: var(--ink);
}

.iw-verified__meta {
	font: 400 10.5px/1.7 var(--sans);
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--stone-text);
	margin-top: var(--s-1);
}

.iw-verified__meta a {
	color: var(--vermillion-text);
}

.iw-verified__meta a:hover {
	text-decoration: underline;
	text-underline-offset: 4px;
	text-decoration-thickness: 1px;
}

.iw-prevnext {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--s-7);
	margin-top: 40px;
	border-top: 1px solid var(--indigo);
	border-bottom: 1px solid var(--indigo);
}

.iw-prevnext__cell {
	padding: var(--s-5) 0;
	min-width: 0;
}

.iw-prevnext__cell--next {
	text-align: right;
}

.iw-prevnext__label {
	font: 400 10.5px/1.6 var(--sans);
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--stone-text);
}

.iw-prevnext__cell--next .iw-arrow {
	margin: 0 0 0 7px;
}

.iw-prevnext__cell .iw-arrow {
	margin: 0 7px 0 0;
}

.iw-prevnext__title {
	font-size: 20px;
	line-height: 1.35;
	margin-top: var(--s-2);
}

.iw-prevnext__title a {
	color: var(--ink);
	transition: color 150ms linear;
}

.iw-prevnext__title a:hover {
	color: var(--vermillion-text);
}

/* ----------------------------------------------------------------- prose */

.entry-content {
	font-size: 17px;
	line-height: 1.85;
	color: var(--ink-2);
	max-width: var(--measure);
}

.entry-content > * {
	margin-block: 0 var(--s-6);
}

.entry-content > *:last-child {
	margin-bottom: 0;
}

.entry-content h2 {
	font-size: 30px;
	line-height: 1.3;
	color: var(--ink);
	margin: 44px 0 var(--s-4);
	scroll-margin-top: 96px;
}

.entry-content h3 {
	font-size: 22px;
	line-height: 1.4;
	color: var(--ink);
	margin: var(--s-7) 0 var(--s-3);
	scroll-margin-top: 96px;
}

.entry-content h4 {
	font-family: var(--sans);
	font-weight: 700;
	font-size: 17px;
	line-height: 1.5;
	color: var(--ink);
	margin: var(--s-6) 0 var(--s-2);
}

.entry-content a {
	color: var(--vermillion-text);
	text-decoration: underline;
	text-underline-offset: 4px;
	text-decoration-thickness: 1px;
	transition: color 150ms linear;
}

.entry-content a:hover {
	color: var(--indigo);
}

.entry-content strong {
	color: var(--ink);
	font-weight: 700;
}

.entry-content ul,
.entry-content ol {
	padding-left: 1.4em;
}

.entry-content li {
	margin-bottom: var(--s-3);
}

.entry-content li::marker {
	color: var(--vermillion-text);
}

.entry-content ol {
	list-style: none;
	counter-reset: iw-step;
	padding-left: 0;
}

.entry-content ol > li {
	counter-increment: iw-step;
	display: grid;
	grid-template-columns: 34px 1fr;
	gap: var(--s-3);
}

.entry-content ol > li::before {
	content: counter(iw-step, decimal-leading-zero);
	font-family: var(--serif);
	font-weight: 800;
	font-size: 15px;
	line-height: 1.9;
	color: var(--vermillion-text);
}

/* Drop cap: only on the first paragraph, and only when PHP judged the
   paragraph long enough to wrap around it. */
.entry-content.iw-dropcap > p:first-of-type::first-letter {
	float: left;
	font-family: var(--serif);
	font-weight: 800;
	font-size: 64px;
	line-height: 0.85;
	color: var(--vermillion-text);
	padding: 6px 10px 0 0;
}

/* Figures get the plate treatment and an automatic plate number. */
.entry-content {
	counter-reset: plate;
}

.entry-content figure {
	margin: var(--s-7) 0;
	counter-increment: plate;
}

.entry-content figure img {
	border: 1px solid var(--indigo);
	outline: 1px solid var(--indigo);
	outline-offset: 6px;
	width: 100%;
}

.entry-content figcaption {
	display: flex;
	align-items: baseline;
	gap: 6px;
	color: var(--stone-text);
	margin-top: 20px;
	letter-spacing: 0;
}

.entry-content figcaption::before {
	content: "Plate " counter(plate, decimal-leading-zero) " —";
	flex: none;
	font: 400 10.5px/1.7 var(--sans);
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--stone-text);
}

.entry-content figcaption.is-short {
	font: 400 10.5px/1.7 var(--sans);
	letter-spacing: 2px;
	text-transform: uppercase;
}

/* The `font` shorthand resets size, weight and family but NOT letter-spacing,
   so a long caption has to zero it explicitly or it keeps the caps tracking. */
.entry-content figcaption.is-long {
	font: 400 12.5px/1.7 var(--sans);
	letter-spacing: 0;
	text-transform: none;
}

/* Editor's note callout, whether derived from prose or applied as a style. */
.entry-content .iw-note,
.entry-content .is-style-iw-note {
	border: 1px solid var(--indigo);
	padding: 20px 24px;
	margin: var(--s-7) 0;
	font-size: 14.5px;
	line-height: 1.8;
	color: var(--ink-2);
}

.entry-content .iw-note::before,
.entry-content .is-style-iw-note::before {
	content: attr(data-note-label);
	display: block;
	font: 500 11px/1.6 var(--sans);
	letter-spacing: 4px;
	text-transform: uppercase;
	color: var(--vermillion-text);
	margin-bottom: var(--s-2);
}

.entry-content .is-style-iw-note::before {
	content: "Editor's note";
}

.entry-content .iw-note[data-note-label]::before {
	content: attr(data-note-label);
}

/* Tables --------------------------------------------------------------- */

.iw-tablewrap {
	overflow-x: auto;
	margin: var(--s-7) 0;
	-webkit-overflow-scrolling: touch;
}

.entry-content table {
	width: 100%;
	border-collapse: collapse;
	font: 400 14px/1.6 var(--sans);
}

.entry-content thead th {
	font: 400 10.5px/1.6 var(--sans);
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--indigo);
	text-align: left;
	border-bottom: 1px solid var(--indigo);
	padding: var(--s-3) 14px;
}

.entry-content tbody td,
.entry-content tbody th {
	border-bottom: 1px solid var(--rule);
	padding: var(--s-3) 14px;
	text-align: left;
	vertical-align: top;
}

.entry-content tbody tr > *:first-child {
	font-weight: 700;
	color: var(--ink);
}

/* Quotes --------------------------------------------------------------- */

.entry-content blockquote {
	border-top: 1px solid var(--indigo);
	border-bottom: 1px solid var(--indigo);
	padding: 28px 0;
	margin: 40px 0;
	font-family: var(--serif);
	font-weight: 600;
	font-size: 26px;
	line-height: 1.5;
	color: var(--indigo);
}

.entry-content blockquote p {
	margin: 0 0 var(--s-3);
}

.entry-content blockquote cite,
.entry-content blockquote .wp-block-quote__citation {
	display: block;
	font: 400 10.5px/1.7 var(--sans);
	font-style: normal;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--vermillion-text);
	margin-top: 14px;
}

.iw-embed {
	position: relative;
	margin: var(--s-7) 0;
}

.iw-embed iframe {
	width: 100%;
	aspect-ratio: 16 / 9;
	height: auto;
	border: 1px solid var(--indigo);
}

.entry-content hr,
.entry-content .wp-block-separator.is-style-iw-seigaiha {
	border: 0;
	height: 26px;
	border-top: 1px solid var(--indigo);
	border-bottom: 1px solid var(--indigo);
	background-color: var(--washi);
	background-image: radial-gradient(circle at 50% 118%, var(--indigo) 9px, transparent 9.8px);
	background-size: 26px 26px;
	margin: 40px 0;
}

.iw-pagelinks {
	font: 400 13px/1.8 var(--sans);
	color: var(--stone-text);
	margin-top: var(--s-7);
	display: flex;
	gap: var(--s-3);
}

/* -------------------------------------------------------------- archive */

.iw-masthead__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 44px var(--gutter) var(--s-7);
}

.iw-masthead__title {
	font-size: 56px;
	line-height: 1.15;
	color: var(--ink);
	margin-top: var(--s-4);
}

.iw-masthead__desc {
	font: 400 16.5px/1.8 var(--sans);
	color: var(--ink-2);
	max-width: 60ch;
	margin-top: var(--s-4);
}

.iw-masthead__author {
	display: flex;
	align-items: center;
	gap: var(--s-4);
	margin-top: var(--s-5);
}

.iw-masthead__role {
	font: 400 10.5px/1.6 var(--sans);
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--stone-text);
}

.iw-filters {
	border-top: 1px solid var(--indigo);
	border-bottom: 1px solid var(--indigo);
}

.iw-filters__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--gutter);
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
}

.iw-filters__item {
	padding: var(--s-3) 18px;
	font: 400 11px/1.8 var(--sans);
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--indigo);
	border-left: 1px solid var(--rule);
	transition: color 150ms linear;
}

.iw-filters__inner > .iw-filters__item:first-child {
	border-left: 0;
	padding-left: 0;
}

.iw-filters__item:hover {
	color: var(--vermillion-text);
}

.iw-filters__item.is-current {
	color: var(--vermillion-text);
	text-decoration: underline;
	text-underline-offset: 6px;
	text-decoration-thickness: 1px;
}

.iw-lead__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 44px var(--gutter);
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	gap: 44px;
	align-items: center;
}

.iw-lead__title {
	font-size: 34px;
	line-height: 1.25;
	color: var(--ink);
	margin-top: var(--s-3);
}

.iw-lead__title a {
	color: inherit;
	transition: color 150ms linear;
}

.iw-lead__title a:hover {
	color: var(--vermillion-text);
}

.iw-lead__blurb {
	font: 400 15px/1.7 var(--sans);
	color: var(--ink-2);
	margin-top: var(--s-3);
}

.iw-lead__meta {
	font: 400 10.5px/1.6 var(--sans);
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--stone-text);
	margin-top: var(--s-3);
}

.iw-lead__cta {
	margin-top: var(--s-5);
}

.iw-pagination__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--gutter) var(--s-8);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.iw-pagination__nums {
	display: flex;
	align-items: baseline;
	gap: 22px;
	font-family: var(--serif);
	font-weight: 800;
	font-size: 16px;
}

.iw-pagination__nums .page-numbers {
	color: var(--indigo);
	transition: color 150ms linear;
}

.iw-pagination__nums a.page-numbers:hover {
	color: var(--vermillion-text);
}

.iw-pagination__nums .page-numbers.current {
	color: var(--vermillion-text);
	border-bottom: 2px solid var(--vermillion);
	padding-bottom: 8px;
}

.iw-pagination__nums .page-numbers.dots {
	color: var(--stone-text);
}

.iw-pagination__next {
	position: absolute;
	right: var(--gutter);
}

.iw-pagination__next a {
	font: 400 10.5px/1.6 var(--sans);
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--indigo);
}

.iw-pagination__next a:hover {
	color: var(--vermillion-text);
}

/* ------------------------------------------------------ page and search */

.iw-page-article__inner {
	max-width: calc(var(--measure) + var(--gutter) * 2);
	margin: 0 auto;
	padding: var(--s-8) var(--gutter) 64px;
}

.iw-pagehead__title {
	font-size: 44px;
	line-height: 1.2;
	color: var(--ink);
	margin-top: 14px;
}

.iw-page-article .entry-content {
	margin-top: var(--s-7);
}

.iw-page-article .iw-plate {
	margin-top: var(--s-7);
}

.iw-searchpage__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: var(--s-8) var(--gutter) 0;
}

.iw-search--page,
.iw-search--drawer {
	display: flex;
	align-items: center;
	gap: var(--s-4);
	border-bottom: 1px solid var(--indigo);
	padding-bottom: var(--s-3);
}

.iw-search--page .iw-search__field {
	flex: 1 1 auto;
	min-width: 0;
	background: none;
	border: 0;
	padding: 0;
	font-family: var(--serif);
	font-weight: 800;
	font-size: 30px;
	line-height: 1.3;
	color: var(--ink);
}

.iw-search--drawer .iw-search__field {
	flex: 1 1 auto;
	min-width: 0;
	background: none;
	border: 0;
	padding: 0;
	font: 400 17px/1.6 var(--sans);
	color: var(--ink);
}

.iw-search__field::placeholder {
	color: var(--stone-text);
	opacity: 1;
}

.iw-search__field:focus-visible {
	outline-offset: 6px;
}

.iw-search__submit {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	flex: none;
	background: none;
	border: 0;
	padding: 6px 0;
	font: 500 12px/1.4 var(--sans);
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--indigo);
	cursor: pointer;
	transition: color 150ms linear;
}

.iw-search__submit:hover {
	color: var(--vermillion-text);
}

.iw-searchpage__count {
	font: 400 10.5px/1.7 var(--sans);
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--stone-text);
	margin-top: 28px;
}

.iw-results__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: var(--s-7) var(--gutter) var(--s-8);
}

.iw-results .iw-rows {
	margin-top: 0;
}

.iw-empty__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: var(--s-8) var(--gutter) var(--s-9);
}

.iw-empty__line {
	font-family: var(--serif);
	font-weight: 600;
	font-size: 26px;
	line-height: 1.4;
	color: var(--indigo);
}

.iw-empty__links {
	display: flex;
	flex-wrap: wrap;
	gap: 6px var(--s-3);
	align-items: baseline;
	margin-top: var(--s-5);
	font: 400 10.5px/1.8 var(--sans);
	letter-spacing: 2px;
	text-transform: uppercase;
}

.iw-empty__try,
.iw-empty__sep {
	color: var(--stone-text);
}

.iw-empty__links a {
	color: var(--indigo);
}

.iw-empty__links a:hover {
	color: var(--vermillion-text);
}

/* ------------------------------------------------------------------ 404 */

.iw-404__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 96px var(--gutter) var(--s-10);
	text-align: center;
}

.iw-404__code {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--s-4);
	font-family: var(--serif);
	font-weight: 800;
	font-size: 160px;
	line-height: 1;
	color: var(--indigo);
}

.iw-404__title {
	font-size: 34px;
	line-height: 1.3;
	color: var(--ink);
	margin-top: 10px;
}

.iw-404__body {
	font: 400 15px/1.8 var(--sans);
	color: var(--ink-2);
	margin-top: var(--s-3);
}

.iw-404__search {
	max-width: 560px;
	margin: var(--s-7) auto 0;
	text-align: left;
}

.iw-404__links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 6px var(--s-3);
	margin-top: 26px;
	font: 400 10.5px/1.8 var(--sans);
	letter-spacing: 2px;
	text-transform: uppercase;
}

.iw-404__links a {
	color: var(--indigo);
}

.iw-404__links a:hover {
	color: var(--vermillion-text);
}

.iw-404__sep {
	color: var(--stone-text);
}

/* ------------------------------------------------------------- comments */

.iw-comments__inner {
	max-width: calc(var(--measure) + var(--gutter) * 2);
	margin: 0 auto;
	padding: 0 var(--gutter) var(--s-8);
}

.iw-comments__head {
	font-size: 22px;
	line-height: 1.4;
	margin-bottom: var(--s-5);
	padding-top: var(--s-7);
	border-top: 1px solid var(--indigo);
}

.iw-comments__list,
.iw-comments__list .children {
	list-style: none;
	margin: 0;
	padding: 0;
}

.iw-comments__list .children {
	padding-left: var(--s-6);
	border-left: 1px solid var(--rule);
	margin-top: var(--s-5);
}

.iw-comments__list li.comment {
	padding: var(--s-5) 0;
	border-bottom: 1px solid var(--rule);
}

.iw-comments__box .comment-form {
	display: grid;
	gap: var(--s-4);
	margin-top: var(--s-5);
}

.iw-comments__box input[type="text"],
.iw-comments__box input[type="email"],
.iw-comments__box input[type="url"],
.iw-comments__box textarea {
	width: 100%;
	background: var(--washi);
	border: 1px solid var(--indigo);
	border-radius: 0;
	padding: 12px 14px;
	font: 400 15px/1.6 var(--sans);
}

.iw-comments__box .form-submit {
	margin: 0;
}

.iw-comments__box .submit {
	background: var(--indigo);
	color: var(--washi);
	border: 0;
	padding: 14px 24px;
	font: 700 13px/1.2 var(--sans);
	letter-spacing: 1px;
	text-transform: uppercase;
	cursor: pointer;
}

/* --------------------------------------------------------- breakpoints */

@media (max-width: 1279px) {
	.iw-pagination__next {
		right: var(--gutter);
	}
}

@media (min-width: 1100px) and (max-width: 1279px) {
	.iw-body__inner {
		grid-template-columns: 200px minmax(0, var(--measure)) minmax(150px, 1fr);
		gap: var(--s-7);
	}
}

/* The tagline is the first thing to go when the bar gets tight — it is
   decoration, and the nav items are not. */
@media (max-width: 1200px) {
	.iw-lockup__tagline {
		display: none;
	}
}

/* Below 1100 the rails leave the grid: the contents list collapses to a
   disclosure above the body, the glance box drops below it. */
@media (max-width: 1099px) {
	.iw-body__inner,
	body:not(.iw-has-toc) .iw-body__inner {
		display: block;
	}

	.entry-content,
	.iw-body__main {
		max-width: var(--measure);
		margin-left: auto;
		margin-right: auto;
	}

	.iw-toc {
		position: static;
		max-width: var(--measure);
		margin: 0 auto var(--s-7);
		border: 1px solid var(--indigo);
		padding: var(--s-4) 18px;
	}

	.iw-toc__summary {
		cursor: pointer;
		border-bottom: 0;
		padding-bottom: 0;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.iw-toc__summary::after {
		content: "";
		width: 8px;
		height: 8px;
		border-right: 1.5px solid var(--indigo);
		border-bottom: 1.5px solid var(--indigo);
		transform: rotate(45deg) translateY(-2px);
		transition: transform 150ms linear;
	}

	.iw-toc__details[open] .iw-toc__summary::after {
		transform: rotate(225deg) translateY(-2px);
	}

	.iw-toc__details[open] .iw-toc__list {
		margin-top: var(--s-3);
		border-top: 1px solid var(--indigo);
	}

	.iw-glance {
		max-width: var(--measure);
		margin: var(--s-7) auto 0;
	}

	.iw-glance__box {
		position: static;
	}

	.iw-plate--arthero .iw-plate__frame {
		height: auto;
		aspect-ratio: 16 / 10;
	}
}

@media (max-width: 999px) {
	.iw-hero__grid {
		grid-template-columns: 1fr;
	}

	.iw-plate--hero .iw-plate__frame {
		height: auto;
		aspect-ratio: 16 / 10;
	}

	.iw-footer__grid {
		grid-template-columns: 1fr 1fr;
		gap: var(--s-7) var(--s-6);
	}

	.iw-lead__inner {
		grid-template-columns: 1fr;
		gap: var(--s-6);
	}

	.iw-dispatch__inner {
		grid-template-columns: 1fr;
		gap: var(--s-6);
	}
}

@media (max-width: 900px) {
	:root {
		--gutter: 20px;
		--header-h: 60px;
	}

	.iw-nav,
	.iw-searchlink {
		display: none;
	}

	.iw-menubtn {
		display: inline-block;
	}

	.iw-lockup__mark svg {
		width: 32px;
		height: 32px;
	}

	.iw-lockup__word {
		font-size: 14px;
		letter-spacing: 3px;
	}

	.iw-lockup__tagline {
		display: none;
	}

	.iw-motif {
		display: none;
	}

	.iw-hero__inner {
		padding: var(--s-7) var(--gutter);
	}

	.iw-cards {
		grid-template-columns: repeat(2, 1fr);
		gap: var(--s-6);
	}

	.iw-tiles {
		grid-template-columns: repeat(2, 1fr);
	}

	.iw-arthead__inner,
	.iw-body__inner,
	.iw-featured__inner,
	.iw-districts__inner,
	.iw-latest__inner,
	.iw-grid__inner,
	.iw-related__inner,
	.iw-masthead__inner,
	.iw-lead__inner,
	.iw-page-article__inner,
	.iw-searchpage__inner,
	.iw-results__inner,
	.iw-empty__inner,
	.iw-404__inner,
	.iw-footer__inner,
	.iw-dispatch__inner {
		padding-left: var(--gutter);
		padding-right: var(--gutter);
	}
}

@media (max-width: 767px) {
	.iw-row {
		grid-template-columns: 44px 1fr;
		gap: var(--s-4);
	}

	.iw-row__cat {
		grid-column: 2;
		text-align: left;
		margin-top: var(--s-2);
	}

	.iw-tiles {
		grid-template-columns: 1fr;
	}

	.iw-prevnext {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.iw-prevnext__cell {
		border-bottom: 1px solid var(--rule);
	}

	.iw-prevnext__cell:last-child {
		border-bottom: 0;
	}

	.iw-prevnext__cell--next {
		text-align: left;
	}

	.iw-dispatch__row {
		flex-wrap: wrap;
		gap: var(--s-3);
	}

	.iw-input {
		flex-basis: 100%;
	}

	.iw-pagination__inner {
		flex-direction: column;
		gap: var(--s-5);
	}

	.iw-pagination__next {
		position: static;
	}
}

@media (max-width: 640px) {
	body {
		font-size: 16.5px;
	}

	.iw-hero__title {
		font-size: 32px;
	}

	.iw-arthead__title {
		font-size: 30px;
	}

	.iw-arthead__dek {
		font-size: 17px;
	}

	.iw-masthead__title {
		font-size: 34px;
	}

	.iw-pagehead__title {
		font-size: 30px;
	}

	.iw-lead__title {
		font-size: 26px;
	}

	.entry-content {
		font-size: 16.5px;
		line-height: 1.8;
	}

	.entry-content h2 {
		font-size: 24px;
	}

	.entry-content h3 {
		font-size: 20px;
	}

	.entry-content.iw-dropcap > p:first-of-type::first-letter {
		font-size: 52px;
	}

	.iw-cards {
		grid-template-columns: 1fr;
	}

	.iw-404__inner {
		padding-top: var(--s-8);
	}

	.iw-404__code {
		font-size: 96px;
	}

	.iw-404__title {
		font-size: 26px;
	}

	.iw-search--page .iw-search__field {
		font-size: 22px;
	}

	.iw-search__submittext {
		display: none;
	}

	.iw-byline {
		flex-direction: column;
		text-align: center;
		gap: var(--s-3);
	}

	.iw-drawer__list > li > a {
		font-size: 24px;
	}
}

/* ------------------------------------------------------------- motion */

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

/* -------------------------------------------------------------- print */

@media print {
	.iw-header,
	.iw-drawer,
	.iw-dispatch,
	.iw-footer,
	.iw-toc,
	.iw-prevnext,
	.iw-related,
	.iw-pagination,
	.skip-link {
		display: none !important;
	}

	body {
		background: #fff;
		color: #000;
	}

	.iw-body__inner {
		display: block;
		padding: 0;
	}

	.entry-content {
		max-width: none;
	}

	.entry-content figure img {
		outline: 0;
	}

	a[href^="http"]::after {
		content: " (" attr(href) ")";
		font-size: 10px;
		color: #555;
	}
}
