/*
 * Bacheca.
 *
 * Design tokens first, then layout, then components in the order a reader meets
 * them: header, bands, front page, lists, article, rail, footer.
 *
 * On colour. Each guide owns one identity colour, used for fills — bands, dots,
 * table headers, buttons. That colour is never printed as text. The theme
 * derives --pillar-text and --pillar-ontint from it at render time by darkening
 * the same hue until it clears 4.5:1, so the ochre and the amber guides read as
 * well as the teal one. Values that already pass are left exactly as drawn.
 */

/* ------------------------------------------------------------------ Tokens */

:root {
	--ink: #1B1B1F;
	--body: #2A2A30;
	--text-2: #44444D;
	--text-3: #55555F;
	--muted: #6B6B75;
	--muted-2: #6B6B75;
	--surface: #F4F4F6;
	--white: #FFFFFF;
	--rule: rgba(27, 27, 31, .1);
	--rule-soft: rgba(27, 27, 31, .08);
	--rule-firm: rgba(27, 27, 31, .14);
	--ph-a: #F1EDED;
	--ph-b: #E9E4E4;

	/* Overwritten per request by inc/setup.php, and per element on cards. */
	--pillar: #B23A48;
	--pillar-solid: #B23A48;
	--pillar-text: #B23A48;
	--pillar-large: #B23A48;
	--pillar-tint: #F9EFF0;
	--pillar-ontint: #B23A48;
	--pillar-lift: #DCA6AD;
	--pillar-soft: #E0B0B6;
	--pillar-line: #F0D3D7;

	--font-h: "Nunito Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
	--font-b: "Red Hat Text", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;

	--r-sm: 6px;
	--r-md: 8px;
	--r-lg: 12px;
	--r-xl: 14px;
	--r-pill: 999px;

	--gutter: 36px;
	--frame: 1200px;
	--measure: 760px;
	--rail: 320px;
	--col-gap: 48px;

	--t: 120ms ease;
}

@media (max-width: 899px) {
	:root {
		--gutter: 18px;
		--col-gap: 32px;
	}
}

/* The design names two greys for small text: #6B6B75 for byline and breadcrumb
   lines, and #8A8A94 for dates, counts and reading times. The lighter one scores
   3.42:1 on white and 3.03:1 on the lightest guide tint, so every date on the
   site would fail AA. Rather than invent a third value, the two collapse onto
   the design's own #6B6B75, which clears 4.5:1 on white, on the neutral surface
   and on all eighteen guide tints (worst case 4.57:1). #8A8A94 survives
   untouched wherever it is a fill rather than text. */

/* ------------------------------------------------------------------- Reset */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
	}
}

body {
	margin: 0;
	background: var(--white);
	color: var(--body);
	font-family: var(--font-b);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

img,
video,
svg {
	max-width: 100%;
	height: auto;
}

/* An iframe has no intrinsic aspect ratio, unlike an image, so height:auto
   collapses every embed. Embeds get a ratio instead. */
iframe {
	max-width: 100%;
	border: 0;
}

.bac-prose iframe,
.wp-block-embed iframe {
	width: 100%;
	aspect-ratio: 16 / 9;
	height: auto;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-h);
	font-weight: 800;
	color: var(--ink);
	letter-spacing: -.02em;
	margin: 0;
}

p, ul, ol, figure, table, blockquote, pre {
	margin: 0;
}

a {
	color: inherit;
	text-decoration: none;
	transition: color var(--t), border-color var(--t), background-color var(--t);
}

button {
	font: inherit;
	color: inherit;
	cursor: pointer;
}

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
	outline: 2px solid var(--pillar-text);
	outline-offset: 2px;
	border-radius: 2px;
}

.screen-reader-text {
	border: 0;
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.bac-skip {
	position: fixed;
	top: 8px;
	left: 8px;
	z-index: 200;
	padding: 10px 18px;
	background: var(--ink);
	color: var(--white);
	border-radius: var(--r-pill);
	font-size: 14px;
	font-weight: 600;
	transform: translateY(-200%);
}

.bac-skip:focus {
	transform: none;
}

/* ------------------------------------------------------------------ Layout */

.bac-main__in,
.bac-band__in,
.bac-hero__in,
.bac-pillars__in,
.bac-footer__in,
.bac-header__in,
.bac-drawer__in,
.bac-upnext__in,
.bac-authorhead__in,
.bac-404__in {
	max-width: var(--frame);
	margin-inline: auto;
	padding-inline: var(--gutter);
	width: 100%;
}

.bac-main--split .bac-main__in,
.bac-main__in--split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) var(--rail);
	gap: var(--col-gap);
	align-items: start;
}

/* A grid item will not shrink below its widest descendant unless told to, so one
   wide table would otherwise stretch the whole page on a phone. */
.bac-main__in > * {
	min-width: 0;
}

.bac-main--split .bac-main__in {
	padding-block: 10px 48px;
}

.bac-main__in--split {
	padding-block: 36px 48px;
}

.bac-main--single .bac-main__in {
	display: block;
	padding-block: 0 56px;
}

@media (max-width: 1199px) {
	:root {
		--rail: 280px;
	}
}

@media (max-width: 899px) {
	.bac-main--split .bac-main__in,
	.bac-main__in--split {
		grid-template-columns: minmax(0, 1fr);
	}
}

/* ------------------------------------------------------------------ Header */

.bac-header {
	position: relative;
	z-index: 40;
	background: var(--white);
	border-bottom: 1px solid var(--rule);
}

.bac-header__in {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	height: 60px;
}

.bac-brand {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	gap: 10px;
	flex: none;
	width: fit-content;
	min-height: 44px;
	color: var(--ink);
}

.bac-mark {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2px;
	width: 22px;
	height: 22px;
	flex: none;
}

.bac-mark > span {
	border-radius: 2px;
}

.bac-wordmark {
	font-family: var(--font-h);
	font-weight: 800;
	font-size: 18px;
	letter-spacing: -.02em;
	line-height: 1.1;
}

.bac-brand--sm .bac-mark {
	width: 20px;
	height: 20px;
}

.bac-brand--sm .bac-wordmark {
	font-size: 16px;
}

.bac-brand--img img {
	max-height: 40px;
	width: auto;
}

.bac-nav {
	flex: 0 1 auto;
	min-width: 0;
}

.bac-nav__list {
	display: flex;
	align-items: center;
	gap: clamp(16px, 2.2vw, 28px);
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 14.5px;
	font-weight: 500;
	color: var(--text-2);
	white-space: nowrap;
}

.bac-nav__list a {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
}

.bac-nav__list a {
	color: var(--text-2);
}

.bac-nav__list a:hover,
.bac-nav__list .current-menu-item > a,
.bac-nav__list .current-category-ancestor > a,
.bac-nav__list .current-menu-parent > a {
	color: var(--pillar-text);
}

.bac-nav__list .current-menu-item > a {
	font-weight: 600;
}

.bac-nav__list .sub-menu {
	display: none;
}

.bac-header__search {
	flex: 0 1 230px;
	min-width: 150px;
}

/* Search --------------------------------------------------------------- */

.bac-search {
	position: relative;
	display: flex;
	align-items: center;
	gap: 8px;
	background: var(--surface);
	border: 1px solid transparent;
	border-radius: var(--r-pill);
	padding-inline: 14px;
	transition: background-color var(--t), border-color var(--t);
}

.bac-search:focus-within {
	background: var(--white);
	border-color: var(--ink);
}

.bac-search__icon {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	margin-left: -6px;
	border: 0;
	background: none;
	padding: 0;
	flex: none;
	border-radius: 50%;
}

.bac-search__icon::before {
	width: 11px;
	height: 11px;
	border: 1.5px solid var(--muted-2);
	border-radius: 50%;
	content: "";
}

.bac-search__icon::after {
	position: absolute;
	right: 6px;
	bottom: 7px;
	width: 5px;
	height: 1.5px;
	background: var(--muted-2);
	transform: rotate(45deg);
	content: "";
}

.bac-search:focus-within .bac-search__icon::before {
	border-color: var(--ink);
}

.bac-search:focus-within .bac-search__icon::after {
	background: var(--ink);
}

.bac-search__input {
	flex: 1;
	min-width: 0;
	border: 0;
	background: none;
	font: inherit;
	color: var(--ink);
	padding: 0;
}

.bac-search__input::placeholder {
	color: var(--muted-2);
	opacity: 1;
}

.bac-search__input:focus {
	outline: none;
}

.bac-search--header {
	height: 36px;
	font-size: 13.5px;
	padding-inline: 10px 14px;
}

.bac-search--hero {
	height: 54px;
	max-width: 560px;
	margin-inline: auto;
	font-size: 15px;
	padding-inline: 20px;
}

.bac-search--drawer,
.bac-search--inline {
	height: 48px;
	font-size: 15px;
	padding-inline: 16px;
}

.bac-search--inline {
	max-width: 460px;
}

/* Burger and drawer ---------------------------------------------------- */

.bac-burger {
	display: none;
	flex: none;
	width: 40px;
	height: 40px;
	align-items: center;
	justify-content: center;
	background: none;
	border: 0;
	padding: 0;
}

.bac-burger__bars,
.bac-burger__bars::before {
	display: block;
	width: 18px;
	height: 2px;
	background: var(--ink);
	content: "";
}

.bac-burger__bars {
	position: relative;
}

.bac-burger__bars::before {
	position: absolute;
	top: 6px;
}

.bac-drawer {
	border-top: 1px solid var(--rule);
	background: var(--white);
}

.bac-drawer__in {
	display: flex;
	flex-direction: column;
	gap: 18px;
	padding-block: 18px 24px;
}

.bac-drawer__list {
	display: flex;
	flex-direction: column;
	gap: 2px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.bac-drawer__list a {
	display: block;
	padding: 10px 0;
	font-size: 17px;
	font-weight: 600;
	font-family: var(--font-h);
	border-bottom: 1px solid var(--rule-soft);
}

.bac-drawer__list a:hover {
	color: var(--pillar-text);
}

body.bac-drawer-open {
	overflow: hidden;
}

@media (max-width: 1079px) {
	.bac-header__in {
		height: 54px;
	}

	.bac-wordmark {
		font-size: 16px;
	}

	.bac-mark {
		width: 18px;
		height: 18px;
	}

	.bac-nav,
	.bac-header__search {
		display: none;
	}

	.bac-burger {
		display: flex;
	}
}

@media (min-width: 1080px) {
	.bac-drawer {
		display: none;
	}
}

/* ------------------------------------------------------------------- Bands */

.bac-band {
	background: var(--surface);
	border-top: 3px solid var(--ink);
}

.bac-band__in {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding-block: 34px 30px;
}

.bac-band--neutral .bac-band__in,
.bac-band--crumb .bac-band__in {
	padding-block: 12px;
}

.bac-band--pillar {
	background: var(--pillar-tint);
	border-top-width: 4px;
	border-top-color: var(--pillar);
}

.bac-band--crumb {
	background: var(--pillar-tint);
	border-top-color: var(--pillar);
}

.bac-band__h {
	font-size: 44px;
	line-height: 1.08;
	letter-spacing: -.025em;
	text-wrap: balance;
}

.bac-band__desc {
	max-width: var(--measure);
	font-size: 17.5px;
	line-height: 1.55;
	color: var(--text-2);
	text-wrap: pretty;
}

@media (max-width: 899px) {
	.bac-band__in {
		padding-block: 22px 20px;
	}

	.bac-band__h {
		font-size: 29px;
		line-height: 1.1;
	}

	.bac-band__desc {
		font-size: 15px;
	}
}

/* Breadcrumbs ---------------------------------------------------------- */

.bac-crumbs {
	font-size: 13px;
	color: var(--muted);
}

.bac-crumbs ol {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.bac-crumbs li + li::before {
	content: "›";
	margin-right: 8px;
	color: var(--muted-2);
}

.bac-crumbs a:hover {
	color: var(--pillar-text);
}

.bac-crumbs [aria-current="page"],
.bac-crumbs--plugin .last {
	color: var(--text-2);
}

.bac-band--pillar .bac-crumbs [aria-current="page"],
.bac-band--crumb .bac-crumbs [aria-current="page"] {
	color: var(--pillar-ontint);
	font-weight: 500;
}

.bac-crumbs--plugin p {
	margin: 0;
}

/* Pills ---------------------------------------------------------------- */

.bac-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 6px;
}

.bac-pill {
	padding: 6px 12px;
	background: var(--white);
	border-radius: var(--r-pill);
	font-size: 13px;
	font-weight: 500;
	color: var(--text-2);
	white-space: nowrap;
}

.bac-pill--count {
	color: var(--pillar-text);
	font-weight: 600;
}

.bac-pill--author {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
}

.bac-pill--author:hover {
	color: var(--pillar-text);
}

/* ------------------------------------------------------------- Front: hero */

.bac-hero {
	border-bottom: 1px solid var(--rule);
}

.bac-hero__in {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
	padding-block: 60px 44px;
	text-align: center;
}

.bac-hero__h {
	max-width: 880px;
	font-size: 52px;
	line-height: 1.06;
	letter-spacing: -.03em;
	text-wrap: balance;
}

.bac-hero__dek {
	max-width: 640px;
	font-size: 18px;
	line-height: 1.55;
	color: var(--text-3);
	text-wrap: pretty;
}

.bac-hero .bac-search {
	width: min(560px, 100%);
	margin-top: 6px;
}

@media (max-width: 899px) {
	.bac-hero__in {
		align-items: flex-start;
		text-align: left;
		gap: 14px;
		padding-block: 30px 24px;
	}

	.bac-hero__h {
		font-size: 31px;
		line-height: 1.1;
	}

	.bac-hero__dek {
		font-size: 16px;
	}

	.bac-hero .bac-search {
		height: 48px;
		margin-inline: 0;
	}
}

/* Kicker --------------------------------------------------------------- */

.bac-kicker {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--pillar-text);
	line-height: 1.3;
}

.bac-kicker a {
	color: inherit;
}

.bac-kicker a:hover {
	color: var(--ink);
}

.bac-dot {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	flex: none;
}

/* ------------------------------------------------------ Front: guide cards */

.bac-pillars__in {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding-block: 40px 8px;
}

.bac-sectionhead {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}

.bac-sectionhead--rule {
	padding-bottom: 12px;
	border-bottom: 2px solid var(--ink);
}

.bac-sectionhead__h {
	font-size: 28px;
	line-height: 1.2;
	letter-spacing: -.02em;
}

.bac-sectionhead__h--sm {
	font-size: 22px;
}

.bac-sectionhead__more {
	font-size: 14px;
	font-weight: 600;
	color: var(--pillar-text);
}

.bac-sectionhead__more a,
.bac-more__all a,
.bac-aboutbox__more a,
.bac-authorbox__more a,
.bac-sources__foot a,
.bac-authorhead__menu a,
.bac-footer__col a,
.bac-mostread__list a,
.bac-more__h a,
.bac-row__h a,
.bac-crumbs a,
.bac-crumbs span {
	display: inline-flex;
	align-items: center;
	min-height: 24px;
}

/* A single-line title sets a 20px line box, one short of the 24px minimum a
   pointer target needs. Made block so the whole line of the row is clickable. */
.bac-row__h a,
.bac-more__h a,
.bac-mostread__list a {
	display: block;
	min-height: 24px;
}

.bac-sectionhead__more a:hover {
	color: var(--ink);
}

.bac-cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.bac-card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 20px 22px 18px;
	border: 1px solid var(--rule);
	border-top: 4px solid var(--pillar);
	border-radius: var(--r-lg);
	transition: background-color var(--t);
}

.bac-card:hover {
	background: var(--surface);
}

.bac-card__h {
	font-size: 19px;
	line-height: 1.25;
	letter-spacing: -.015em;
}

.bac-card__h a::after {
	position: absolute;
	inset: 0;
	content: "";
	border-radius: inherit;
}

.bac-card__blurb {
	flex: 1;
	font-size: 14.5px;
	line-height: 1.5;
	color: var(--text-3);
}

.bac-card__n {
	margin-top: auto;
	font-size: 13px;
	font-weight: 600;
	color: var(--muted-2);
}

.bac-card__chevron {
	display: none;
}

@media (max-width: 1199px) {
	.bac-cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 599px) {
	.bac-pillars__in {
		gap: 12px;
		padding-block: 22px 0;
	}

	.bac-sectionhead__h {
		font-size: 21px;
	}

	.bac-cards {
		grid-template-columns: minmax(0, 1fr);
		gap: 10px;
	}

	.bac-card {
		flex-direction: row;
		align-items: center;
		gap: 14px;
		padding: 14px 16px;
		border-top: 1px solid var(--rule);
		border-left: 4px solid var(--pillar);
	}

	.bac-card__h {
		font-size: 16px;
		flex: 1;
	}

	.bac-card__blurb {
		display: none;
	}

	.bac-card__n {
		margin-top: 0;
		font-size: 12.5px;
		font-weight: 500;
	}

	.bac-card__chevron {
		display: block;
		color: var(--muted-2);
		flex: none;
	}

	.bac-card__chevron::before {
		content: "›";
		font-size: 18px;
	}
}

/* ------------------------------------------------------------------- Rows */

.bac-rows {
	display: flex;
	flex-direction: column;
}

.bac-row {
	display: grid;
	grid-template-columns: 200px minmax(0, 1fr);
	gap: 22px;
	align-items: start;
	padding-block: 22px;
	border-bottom: 1px solid var(--rule);
}

.bac-row--list {
	grid-template-columns: 150px minmax(0, 1fr);
	gap: 20px;
	padding-block: 18px;
}

.bac-row__body {
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-width: 0;
}

.bac-row__h {
	font-size: 22px;
	line-height: 1.2;
	letter-spacing: -.015em;
	text-wrap: pretty;
}

.bac-row--list .bac-row__h {
	font-size: 20px;
	line-height: 1.25;
}

.bac-row__h a:hover {
	color: var(--pillar-text);
}

.bac-row__dek {
	font-size: 15px;
	line-height: 1.55;
	color: var(--text-3);
}

.bac-meta {
	font-size: 13px;
	color: var(--muted-2);
}

.bac-row .bac-kicker {
	font-size: 12px;
}

/* Thumbnails ----------------------------------------------------------- */

.bac-thumb {
	display: block;
	position: relative;
	overflow: hidden;
	border-radius: var(--r-md);
	background: var(--ph-a);
	aspect-ratio: 3 / 2;
}

.bac-row--cluster .bac-thumb {
	border-radius: var(--r-lg);
}

.bac-thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bac-thumb__ph {
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(135deg, var(--ph-b) 0 10px, var(--ph-a) 10px 20px);
}

.bac-thumb--rail {
	border-radius: var(--r-sm);
}

@media (max-width: 599px) {
	.bac-row,
	.bac-row--list {
		grid-template-columns: 96px minmax(0, 1fr);
		gap: 14px;
		padding-block: 16px;
	}

	.bac-row .bac-thumb {
		aspect-ratio: 1;
	}

	.bac-row__h,
	.bac-row--list .bac-row__h {
		font-size: 16.5px;
		line-height: 1.25;
	}

	.bac-row__dek {
		display: none;
	}

	.bac-row .bac-kicker {
		font-size: 11px;
	}

	.bac-meta {
		font-size: 12.5px;
	}
}

/* -------------------------------------------------------------- List heads */

.bac-listhead {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding-block: 24px 18px;
}

.bac-listhead__h {
	font-size: 36px;
	line-height: 1.1;
	letter-spacing: -.025em;
	text-wrap: balance;
}

.bac-listhead__desc {
	max-width: var(--measure);
	font-size: 16px;
	line-height: 1.55;
	color: var(--text-2);
}

.bac-listhead__meta {
	font-size: 14px;
	color: var(--muted-2);
}

@media (max-width: 599px) {
	.bac-listhead__h {
		font-size: 27px;
	}
}

/* Chips ---------------------------------------------------------------- */

.bac-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 18px;
}

.bac-chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 7px 14px;
	border: 1px solid var(--rule-firm);
	border-radius: var(--r-pill);
	font-size: 13px;
	font-weight: 500;
	color: var(--text-2);
	line-height: 1.3;
	min-height: 32px;
}

.bac-chip:hover {
	border-color: var(--ink);
	color: var(--ink);
}

.bac-chip.is-active {
	background: var(--ink);
	border-color: var(--ink);
	color: var(--white);
	font-weight: 600;
}

/* Pagination ----------------------------------------------------------- */

.bac-pagination {
	padding-top: 26px;
}

.bac-pagination ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 6px;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 14px;
	font-weight: 600;
}

.bac-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	min-height: 40px;
	padding: 8px 14px;
	border: 1px solid var(--rule-firm);
	border-radius: var(--r-pill);
	color: var(--text-2);
}

.bac-pagination .page-numbers:hover {
	border-color: var(--ink);
	color: var(--ink);
}

.bac-pagination .page-numbers.current {
	background: var(--ink);
	border-color: var(--ink);
	color: var(--white);
}

.bac-pagination .page-numbers.dots {
	border-color: transparent;
	min-width: 0;
	padding-inline: 4px;
}

.bac-pagination .prev,
.bac-pagination .next {
	border-color: transparent;
	color: var(--pillar-text);
}

/* --------------------------------------------------------------- Article */

.bac-article {
	display: flex;
	flex-direction: column;
	gap: 22px;
	padding-top: 34px;
	min-width: 0;
}

.bac-article__head {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.bac-article__h {
	font-size: 42px;
	line-height: 1.1;
	letter-spacing: -.025em;
	text-wrap: balance;
}

.bac-byline {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 14px;
	color: var(--muted);
}

.bac-byline__body {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.bac-byline__who {
	color: var(--ink);
	font-weight: 600;
}

.bac-byline__who a:hover {
	color: var(--pillar-text);
}

.bac-avatar {
	display: block;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	flex: none;
	object-fit: cover;
}

.bac-avatar--ph {
	background: var(--pillar-tint);
	border: 1px solid var(--rule);
}

.bac-byline__avatar {
	display: block;
	flex: none;
}

.bac-article__hero {
	margin: 0;
}

.bac-article__hero img {
	display: block;
	width: 100%;
	aspect-ratio: 2 / 1;
	object-fit: cover;
	border-radius: var(--r-xl);
	background: var(--ph-a);
}

.bac-article__hero figcaption {
	margin-top: 10px;
	font-size: 13px;
	color: var(--muted-2);
}

@media (max-width: 899px) {
	.bac-article {
		padding-top: 18px;
		gap: 18px;
	}

	.bac-article__h {
		font-size: 28px;
		line-height: 1.12;
	}

	.bac-byline {
		font-size: 12.5px;
	}

	.bac-avatar {
		width: 30px;
		height: 30px;
	}

	.bac-article__hero img {
		aspect-ratio: 16 / 9;
		border-radius: var(--r-lg);
	}
}

/* Contents ------------------------------------------------------------- */

.bac-toc {
	padding: 20px 24px;
	background: var(--pillar-tint);
	border-radius: var(--r-lg);
}

.bac-toc__h {
	font-size: 15px;
	font-weight: 800;
	color: var(--pillar-ontint);
	margin-bottom: 10px;
}

/* Multi-column rather than grid, so the numbers read 1, 2, 3 down the first
   column and continue down the second. A grid would run them across the rows. */
.bac-toc__list {
	columns: 2;
	column-gap: 24px;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 14.5px;
	line-height: 1.4;
	color: var(--text-2);
}

.bac-toc__list li {
	break-inside: avoid;
}

.bac-toc--three .bac-toc__list {
	columns: 3;
}

.bac-toc__list a {
	display: flex;
	gap: 6px;
	padding-block: 3px;
}

.bac-toc__list a:hover {
	color: var(--pillar-ontint);
}

.bac-toc__n {
	color: var(--muted);
	flex: none;
}

@media (max-width: 899px) {
	.bac-toc,
	.bac-toc--three {
		padding: 16px 18px;
	}

	.bac-toc__list,
	.bac-toc--three .bac-toc__list {
		columns: 1;
	}
}

/* Prose ---------------------------------------------------------------- */

.bac-prose {
	font-size: 18px;
	line-height: 1.7;
	color: var(--body);
	text-wrap: pretty;
	min-width: 0;
}

.bac-prose > * + * {
	margin-top: 22px;
}

.bac-prose h2,
.bac-faq__h {
	font-size: 28px;
	line-height: 1.2;
	letter-spacing: -.02em;
	scroll-margin-top: 24px;
}

.bac-prose > h2 {
	margin-top: 34px;
}

.bac-prose h3 {
	font-size: 22px;
	line-height: 1.25;
	letter-spacing: -.015em;
}

.bac-prose > h3 {
	margin-top: 28px;
}

.bac-prose h4 {
	font-size: 18px;
}

.bac-h2__n {
	color: var(--pillar-text);
}

.bac-prose a {
	color: var(--pillar-text);
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-thickness: 1px;
}

.bac-prose a:hover {
	color: var(--ink);
}

.bac-prose ul,
.bac-prose ol {
	padding-left: 24px;
}

.bac-prose li + li {
	margin-top: 8px;
}

.bac-prose figure {
	margin: 0;
}

.bac-prose figure img {
	border-radius: var(--r-lg);
}

.bac-prose figcaption {
	margin-top: 8px;
	font-size: 13px;
	line-height: 1.5;
	color: var(--muted-2);
}

.bac-prose blockquote {
	padding-left: 22px;
	border-left: 3px solid var(--pillar);
	font-size: 19px;
	color: var(--text-2);
}

.bac-prose code {
	font-size: .9em;
	background: var(--surface);
	padding: 2px 5px;
	border-radius: 4px;
}

.bac-prose pre {
	overflow-x: auto;
	padding: 16px 18px;
	background: var(--surface);
	border-radius: var(--r-lg);
	font-size: 14px;
	line-height: 1.5;
}

@media (max-width: 899px) {
	.bac-prose {
		font-size: 16.5px;
		line-height: 1.65;
	}

	.bac-prose h2,
	.bac-faq__h {
		font-size: 23px;
	}

	.bac-prose h3 {
		font-size: 19px;
	}
}

/* Tables --------------------------------------------------------------- */

.bac-scroller {
	overflow-x: auto;
	border: 1px solid var(--rule);
	border-radius: var(--r-lg);
	-webkit-overflow-scrolling: touch;
}

.bac-scroller > * {
	margin: 0 !important;
}

.bac-scroller table,
.bac-prose table {
	width: 100%;
	border-collapse: collapse;
	font-size: 15px;
	line-height: 1.45;
}

.bac-scroller table {
	min-width: 520px;
}

.bac-prose table th,
.bac-prose table td {
	padding: 13px 18px;
	text-align: left;
	vertical-align: top;
	border-top: 1px solid var(--rule);
}

.bac-prose table thead th {
	background: var(--pillar-solid);
	color: var(--white);
	font-family: var(--font-h);
	font-weight: 700;
	font-size: 13px;
	border-top: 0;
}

.bac-prose table tbody tr td:first-child,
.bac-prose table tbody tr th:first-child {
	font-weight: 600;
	color: var(--ink);
}

.bac-prose table td {
	color: var(--text-2);
}

.bac-prose .wp-block-table,
.bac-prose figure.wp-block-table {
	margin: 0;
}

.bac-prose .wp-block-table table {
	border: 0;
}

/* Callouts ------------------------------------------------------------- */

.bac-prose .is-style-bac-tip,
.bac-prose .is-style-bac-watch,
.bac-prose .is-style-bac-sources {
	padding: 18px 22px;
	border-radius: var(--r-lg);
	font-size: 16px;
	line-height: 1.6;
	color: var(--text-2);
}

.bac-prose .is-style-bac-tip {
	background: var(--pillar-tint);
}

.bac-prose .is-style-bac-watch {
	border: 1px solid var(--pillar);
}

.bac-prose .is-style-bac-sources {
	background: var(--surface);
	font-size: 14px;
	line-height: 1.5;
}

.bac-prose .is-style-bac-tip > :first-child,
.bac-prose .is-style-bac-watch > :first-child {
	font-family: var(--font-h);
	font-weight: 800;
	font-size: 14px;
	color: var(--pillar-ontint);
	margin: 0 0 6px;
}

.bac-prose .is-style-bac-watch > :first-child {
	color: var(--pillar-text);
}

.bac-prose .is-style-bac-sources > :first-child {
	font-family: var(--font-h);
	font-weight: 800;
	font-size: 14px;
	color: var(--ink);
	margin: 0 0 6px;
}

.bac-prose .is-style-bac-tip > * + *,
.bac-prose .is-style-bac-watch > * + *,
.bac-prose .is-style-bac-sources > * + * {
	margin-top: 6px;
}

.bac-prose .is-style-bac-checks {
	list-style: none;
	padding-left: 0;
}

.bac-prose .is-style-bac-checks li {
	position: relative;
	padding-left: 26px;
}

.bac-prose .is-style-bac-checks li::before {
	position: absolute;
	left: 0;
	top: .1em;
	content: "✓";
	color: var(--pillar-text);
	font-weight: 700;
}

.bac-prose .is-style-bac-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 16px;
}

.bac-prose .is-style-bac-cards > .wp-block-group__inner-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 16px;
}

/* A group block wraps its children in an inner container, so a grid on the group
   itself would have exactly one child. Declare it on both, then stand the outer
   one down wherever the container is present. */
.bac-prose .is-style-bac-cards:has(> .wp-block-group__inner-container) {
	display: block;
}

.bac-prose .is-style-bac-cards .wp-block-group {
	padding: 20px 22px;
	background: var(--surface);
	border-radius: var(--r-lg);
	margin: 0;
}

.bac-prose .wp-block-separator.is-style-bac-rule {
	border: 0;
	border-top: 2px solid var(--ink);
	opacity: 1;
	margin-block: 32px;
}

.bac-prose .wp-block-separator:not(.is-style-bac-rule) {
	border: 0;
	border-top: 1px solid var(--rule);
	opacity: 1;
	margin-block: 32px;
}

/* Questions ------------------------------------------------------------ */

.bac-faq__list {
	border-top: 1px solid var(--rule);
	margin-top: 14px;
}

.bac-faq__item {
	border-bottom: 1px solid var(--rule);
}

.bac-faq__q {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	padding-block: 16px;
	font-family: var(--font-h);
	font-weight: 700;
	font-size: 16.5px;
	line-height: 1.35;
	color: var(--ink);
	cursor: pointer;
	list-style: none;
}

.bac-faq__q::-webkit-details-marker {
	display: none;
}

.bac-faq__q:hover {
	color: var(--pillar-text);
}

.bac-faq__mark {
	position: relative;
	flex: none;
	width: 14px;
	height: 14px;
	margin-top: .3em;
}

.bac-faq__mark::before,
.bac-faq__mark::after {
	position: absolute;
	left: 50%;
	top: 50%;
	background: var(--pillar-text);
	content: "";
	transform: translate(-50%, -50%);
}

.bac-faq__mark::before {
	width: 14px;
	height: 2px;
}

.bac-faq__mark::after {
	width: 2px;
	height: 14px;
}

.bac-faq__item[open] .bac-faq__mark::after {
	display: none;
}

.bac-faq__a {
	padding-bottom: 18px;
	font-size: 15.5px;
	line-height: 1.6;
	color: var(--text-2);
}

.bac-faq__a > * + * {
	margin-top: 12px;
}

.bac-faq__a a {
	color: var(--pillar-text);
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* Sources -------------------------------------------------------------- */

.bac-sources {
	padding: 18px 22px;
	background: var(--surface);
	border-radius: var(--r-lg);
	font-size: 14px;
	line-height: 1.5;
	color: var(--text-2);
}

.bac-sources__h {
	font-size: 14px;
	font-weight: 800;
	color: var(--ink);
	margin-bottom: 8px;
}

.bac-sources__body > * + * {
	margin-top: 8px;
}

.bac-sources__body ul,
.bac-sources__body ol {
	padding-left: 20px;
	margin: 0;
}

.bac-sources__body a {
	color: var(--pillar-text);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.bac-sources__foot {
	margin-top: 12px;
	font-size: 13px;
	color: var(--muted-2);
}

.bac-sources__foot a {
	color: var(--pillar-text);
	font-weight: 600;
}

/* Author box ----------------------------------------------------------- */

.bac-authorbox {
	display: grid;
	grid-template-columns: 64px minmax(0, 1fr);
	gap: 18px;
	align-items: start;
	padding: 22px 24px;
	border: 1px solid var(--rule);
	border-radius: var(--r-xl);
}

.bac-authorbox .bac-avatar {
	width: 64px;
	height: 64px;
}

.bac-authorbox__body {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.bac-authorbox__h {
	font-size: 17px;
}

.bac-authorbox__bio {
	font-size: 15px;
	line-height: 1.55;
	color: var(--text-3);
}

.bac-authorbox__more {
	font-size: 14px;
	font-weight: 600;
	color: var(--pillar-text);
}

.bac-authorbox__more a:hover {
	color: var(--ink);
}

@media (max-width: 599px) {
	.bac-authorbox {
		grid-template-columns: 48px minmax(0, 1fr);
		gap: 14px;
		padding: 18px;
	}

	.bac-authorbox .bac-avatar {
		width: 48px;
		height: 48px;
	}
}

/* Up next -------------------------------------------------------------- */

.bac-upnext {
	background: var(--ink);
	color: var(--white);
}

.bac-upnext__in {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-block: 18px;
}

.bac-upnext__body {
	display: flex;
	flex-direction: column;
	gap: 3px;
	min-width: 0;
}

.bac-upnext__label {
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--pillar-lift);
}

.bac-upnext__title {
	font-family: var(--font-h);
	font-weight: 800;
	font-size: 18px;
	line-height: 1.25;
}

.bac-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 18px;
	background: var(--pillar-solid);
	color: var(--white);
	border: 0;
	border-radius: var(--r-pill);
	font-family: var(--font-b);
	font-size: 14px;
	font-weight: 600;
	white-space: nowrap;
	flex: none;
	min-height: 40px;
}

.bac-btn:hover {
	background: var(--white);
	color: var(--ink);
}

.bac-upnext .bac-btn:focus-visible {
	outline-color: var(--white);
}

@media (max-width: 599px) {
	.bac-upnext__in {
		flex-direction: column;
		align-items: flex-start;
		gap: 14px;
	}

	.bac-upnext__title {
		font-size: 16px;
	}
}

/* ------------------------------------------------------------------- Rail */

.bac-rail {
	display: flex;
	flex-direction: column;
	gap: 28px;
	padding-top: 22px;
	min-width: 0;
}

@media (min-width: 1024px) {
	.bac-rail--sticky {
		position: sticky;
		top: 20px;
	}
}

.bac-rail__h {
	font-family: var(--font-h);
	font-size: 15px;
	font-weight: 800;
	color: var(--ink);
	padding-bottom: 10px;
	border-bottom: 2px solid var(--ink);
	margin-bottom: 6px;
}

.bac-rail__h--pillar {
	border-bottom-color: var(--pillar);
}

.bac-guides {
	margin: 0;
	padding: 0;
	list-style: none;
}

.bac-guides a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding-block: 9px;
	border-bottom: 1px solid var(--rule-soft);
	font-size: 14px;
	line-height: 1.35;
	color: var(--text-2);
	min-height: 36px;
}

.bac-guides a:hover {
	color: var(--pillar-text);
}

.bac-guides li.is-current a {
	color: var(--ink);
	font-weight: 600;
}

.bac-guides .bac-dot {
	width: 9px;
	height: 9px;
}

.bac-guides__name {
	flex: 1;
}

.bac-guides__n {
	font-size: 12px;
	color: var(--muted-2);
	flex: none;
}

.bac-mostread__list {
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: none;
}

.bac-mostread__list li {
	display: flex;
	gap: 12px;
	align-items: baseline;
	padding-block: 10px;
	border-bottom: 1px solid var(--rule-soft);
}

.bac-mostread__n {
	font-family: var(--font-h);
	font-weight: 800;
	font-size: 20px;
	line-height: 1;
	color: var(--pillar-soft);
	flex: none;
}

.bac-mostread__list a {
	font-size: 14px;
	line-height: 1.4;
	font-weight: 500;
	color: var(--body);
}

.bac-mostread__list a:hover {
	color: var(--pillar-text);
}

.bac-more__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.bac-more__item {
	display: grid;
	grid-template-columns: 84px minmax(0, 1fr);
	gap: 12px;
	align-items: start;
	padding-block: 12px;
	border-bottom: 1px solid var(--rule-soft);
}

.bac-more__body {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.bac-more__h {
	font-size: 14.5px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0;
}

.bac-more__h a:hover {
	color: var(--pillar-text);
}

.bac-more__all {
	padding-top: 12px;
	font-size: 14px;
	font-weight: 600;
	color: var(--pillar-text);
}

.bac-more__all a:hover {
	color: var(--ink);
}

.bac-aboutbox {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 20px 22px;
	background: var(--surface);
	border-radius: var(--r-lg);
}

.bac-aboutbox__h {
	font-size: 15px;
	font-weight: 800;
}

.bac-aboutbox__t {
	font-size: 14px;
	line-height: 1.55;
	color: var(--text-3);
}

.bac-aboutbox__more {
	font-size: 14px;
	font-weight: 600;
	color: var(--pillar-text);
}

.bac-rail__widgets {
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.bac-widget ul {
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 14px;
}

.bac-widget li {
	padding-block: 8px;
	border-bottom: 1px solid var(--rule-soft);
}

.bac-widget li > a {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
}

/* ------------------------------------------------------------ Author page */

.bac-authorhead {
	border-bottom: 1px solid var(--rule);
}

.bac-authorhead__in {
	display: grid;
	grid-template-columns: 96px minmax(0, 1fr);
	gap: 26px;
	align-items: start;
	padding-block: 40px 30px;
}

.bac-authorhead .bac-avatar {
	width: 96px;
	height: 96px;
}

.bac-authorhead__body {
	display: flex;
	flex-direction: column;
	gap: 10px;
	max-width: var(--measure);
}

.bac-authorhead__h {
	font-size: 36px;
	line-height: 1.1;
	letter-spacing: -.025em;
}

.bac-authorhead__meta {
	font-size: 14px;
	color: var(--muted-2);
}

.bac-authorhead__bio {
	font-size: 17px;
	line-height: 1.6;
	color: var(--text-2);
	text-wrap: pretty;
}

.bac-authorhead__menu {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 14px;
	font-weight: 600;
	color: var(--pillar-text);
}

@media (max-width: 599px) {
	.bac-authorhead__in {
		grid-template-columns: 64px minmax(0, 1fr);
		gap: 16px;
		padding-block: 24px 20px;
	}

	.bac-authorhead .bac-avatar {
		width: 64px;
		height: 64px;
	}

	.bac-authorhead__h {
		font-size: 26px;
	}

	.bac-authorhead__bio {
		font-size: 15px;
	}
}

/* --------------------------------------------------------------- Pages */

.bac-page {
	max-width: var(--measure);
	margin-inline: auto;
	display: flex;
	flex-direction: column;
	gap: 22px;
	padding-top: 44px;
}

.bac-page__head {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.bac-page__h {
	font-size: 42px;
	line-height: 1.1;
	letter-spacing: -.025em;
	text-wrap: balance;
}

.bac-page__lede {
	font-size: 20px;
	line-height: 1.5;
	color: var(--text-3);
	text-wrap: pretty;
}

.bac-page__meta {
	font-size: 13px;
	color: var(--muted-2);
}

@media (max-width: 599px) {
	.bac-page {
		padding-top: 26px;
	}

	.bac-page__h {
		font-size: 28px;
	}

	.bac-page__lede {
		font-size: 17px;
	}
}

/* ------------------------------------------------------------------- 404 */

.bac-404__in {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
	padding-block: 96px 80px;
	text-align: center;
}

.bac-404__h {
	max-width: var(--measure);
	font-size: 44px;
	line-height: 1.08;
	letter-spacing: -.03em;
	text-wrap: balance;
}

.bac-404__t {
	max-width: 560px;
	font-size: 17.5px;
	line-height: 1.55;
	color: var(--text-3);
	text-wrap: pretty;
}

.bac-404 .bac-search {
	width: min(520px, 100%);
	height: 54px;
}

.bac-404 .bac-chips {
	justify-content: center;
	max-width: 820px;
	margin-top: 10px;
	margin-bottom: 0;
}

@media (max-width: 599px) {
	.bac-404__in {
		padding-block: 48px 56px;
	}

	.bac-404__h {
		font-size: 28px;
	}

	.bac-404__t {
		font-size: 16px;
	}
}

/* Empty states --------------------------------------------------------- */

.bac-empty,
.bac-noresults__t {
	font-size: 17px;
	line-height: 1.6;
	color: var(--text-3);
	padding-block: 12px;
}

.bac-noresults {
	display: flex;
	flex-direction: column;
	gap: 18px;
	padding-block: 8px 40px;
}

/* ---------------------------------------------------------------- Footer */

.bac-footer {
	background: var(--surface);
	border-top: 1px solid var(--rule);
	margin-top: auto;
}

.bac-footer__in {
	display: flex;
	flex-direction: column;
	gap: 28px;
	padding-block: 40px 26px;
}

.bac-footer__cols {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 32px;
}

.bac-footer__brand {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.bac-footer__tag {
	max-width: 320px;
	font-size: 14px;
	line-height: 1.55;
	color: var(--text-3);
}

.bac-footer__h {
	font-family: var(--font-h);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--ink);
	margin-bottom: 4px;
}

.bac-footer__col ul {
	display: flex;
	flex-direction: column;
	gap: 9px;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 14px;
	color: var(--text-2);
}

.bac-footer__col a:hover {
	color: var(--pillar-text);
}

.bac-footer__all {
	color: var(--pillar-text);
	font-weight: 600;
}

.bac-footer__base {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	padding-top: 18px;
	border-top: 1px solid var(--rule);
	font-size: 12.5px;
	color: var(--muted-2);
}

.bac-footer__base p {
	margin: 0;
}

@media (max-width: 899px) {
	.bac-footer__cols {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.bac-footer__brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 599px) {
	.bac-footer__cols {
		grid-template-columns: minmax(0, 1fr);
		gap: 24px;
	}
}

/* ------------------------------------------------------------------- Ads */

.bac-ad {
	display: block;
	width: 100%;
	overflow: hidden;
}

.bac-ad--rail {
	position: relative;
}

.bac-ad:empty {
	display: none;
}

/* ------------------------------------------------------------ Odds and ends */

.bac-stretch::after {
	position: absolute;
	inset: 0;
	content: "";
}

.bac-linkpages {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	font-size: 14px;
	font-weight: 600;
	padding-top: 8px;
}

.bac-linkpages a {
	color: var(--pillar-text);
}

.bac-comments {
	padding-top: 12px;
	border-top: 1px solid var(--rule);
}

.bac-comments__h {
	font-size: 22px;
	margin-bottom: 16px;
}

.bac-comments__list {
	list-style: none;
	margin: 0 0 24px;
	padding: 0;
}

.bac-comments__list ol {
	list-style: none;
	padding-left: 24px;
}

.bac-comments .comment-body {
	padding-block: 16px;
	border-bottom: 1px solid var(--rule-soft);
	font-size: 15px;
}

.bac-comments input[type="text"],
.bac-comments input[type="email"],
.bac-comments input[type="url"],
.bac-comments textarea {
	width: 100%;
	max-width: var(--measure);
	padding: 10px 14px;
	border: 1px solid var(--rule-firm);
	border-radius: var(--r-md);
	font: inherit;
	font-size: 15px;
}

.bac-comments .submit {
	display: inline-flex;
	align-items: center;
	padding: 10px 18px;
	background: var(--pillar-solid);
	color: var(--white);
	border: 0;
	border-radius: var(--r-pill);
	font-family: var(--font-b);
	font-size: 14px;
	font-weight: 600;
	min-height: 40px;
}

.bac-comments .submit:hover {
	background: var(--ink);
}

/* Alignment helpers for block content inside the reading column ---------- */

.bac-prose .alignwide {
	width: min(100%, 1128px);
}

.bac-prose .alignfull {
	width: 100%;
}

.bac-prose .alignleft {
	float: left;
	margin: 4px 24px 16px 0;
	max-width: 45%;
}

.bac-prose .alignright {
	float: right;
	margin: 4px 0 16px 24px;
	max-width: 45%;
}

.bac-prose .aligncenter {
	margin-inline: auto;
	text-align: center;
}

.bac-prose::after {
	display: table;
	clear: both;
	content: "";
}

@media (max-width: 599px) {
	.bac-prose .alignleft,
	.bac-prose .alignright {
		float: none;
		margin-inline: 0;
		max-width: 100%;
	}
}

/* Print ----------------------------------------------------------------- */

@media print {
	.bac-header,
	.bac-footer,
	.bac-rail,
	.bac-upnext,
	.bac-ad,
	.bac-skip,
	.bac-chips {
		display: none !important;
	}

	.bac-main--split .bac-main__in {
		display: block;
	}

	.bac-faq__item {
		break-inside: avoid;
	}

	.bac-faq__a {
		display: block !important;
	}
}
