:root {
	--sc-ink: #202124;
	--sc-muted: #626262;
	--sc-line: #d9d9d9;
	--sc-soft: #f6f6f6;
	--sc-paper: #fff;
	--sc-accent: #383838;
	--sc-mid: #555;
	--sc-rule: #b8b8b8;
	--sc-shadow: 0 8px 22px rgb(0 0 0 / 7%);
	--sc-sans: "Helvetica Neue", Arial, "Hiragino Sans", "Yu Gothic", sans-serif;
	--sc-serif: Georgia, "Times New Roman", "Hiragino Mincho ProN", serif;
}

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

html {
	color: var(--sc-ink);
	background: var(--sc-paper);
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--sc-sans);
	font-size: 15px;
	line-height: 1.55;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	color: var(--sc-accent);
	text-decoration: none;
	text-decoration-thickness: .08em;
	text-underline-offset: .16em;
}

a:hover,
a:focus-visible {
	text-decoration: underline;
}

:focus-visible {
	outline: 3px solid #1d64b8;
	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);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus {
	top: 8px;
	left: 8px;
	z-index: 100000;
	width: auto;
	height: auto;
	padding: 12px 16px;
	clip: auto;
	background: #fff;
	color: #111;
}

.site-header {
	position: relative;
	z-index: 20;
	border-top: 5px solid #6a6a6a;
	border-bottom: 1px solid var(--sc-line);
	background: var(--sc-paper);
}

.brand-row {
	position: relative;
	display: grid;
	grid-template-columns: minmax(230px, auto) minmax(0, 1fr) auto;
	align-items: center;
	gap: 20px;
	max-width: 1180px;
	margin: 0 auto;
	padding: 16px 20px;
}

.brand {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--sc-muted);
	text-decoration: none;
}

.brand__logo,
.brand__logo img {
	display: block;
	width: 72px;
	height: 72px;
	object-fit: contain;
}

.brand__copy {
	display: grid;
	gap: 1px;
}

.brand__title {
	color: var(--sc-ink);
	font-size: 24px;
	font-weight: 650;
	line-height: 1.05;
}

.brand__tagline {
	font-size: 12px;
}

.header-actions {
	display: flex;
	grid-column: 3;
	grid-row: 1;
	gap: 4px;
}

.header-button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 38px;
	padding: 0;
	border: 1px solid transparent;
	background: transparent;
	color: var(--sc-ink);
	cursor: pointer;
}

.search-icon {
	width: 15px;
	height: 15px;
	border: 2px solid currentcolor;
	border-radius: 50%;
}

.search-icon::after {
	content: "";
	position: absolute;
	width: 9px;
	height: 2px;
	margin: 14px 0 0 -1px;
	background: currentcolor;
	transform: rotate(45deg);
}

.nav-toggle {
	display: none;
	flex-direction: column;
	gap: 4px;
	border-color: var(--sc-line);
}

.nav-toggle > span:not(.screen-reader-text) {
	display: block;
	width: 20px;
	height: 2px;
	background: currentcolor;
}

.main-navigation {
	grid-column: 2;
	grid-row: 1;
}

.main-navigation .menu,
.main-navigation .sub-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.main-navigation .menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 2px 18px;
}

.main-navigation li {
	position: relative;
}

.main-navigation a {
	display: block;
	padding: 9px 0 7px;
	border-bottom: 2px solid transparent;
	color: #333;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
}

.main-navigation a:hover,
.main-navigation a:focus-visible,
.main-navigation .current-menu-item > a,
.main-navigation .current-menu-ancestor > a {
	border-bottom-color: #777;
}

.main-navigation .sub-menu {
	position: absolute;
	top: 100%;
	right: 0;
	display: none;
	min-width: 220px;
	padding: 8px 14px;
	border: 1px solid var(--sc-line);
	background: var(--sc-paper);
	box-shadow: var(--sc-shadow);
}

.main-navigation li:hover > .sub-menu,
.main-navigation li:focus-within > .sub-menu {
	display: block;
}

.header-search {
	position: absolute;
	top: calc(100% - 8px);
	right: 20px;
	z-index: 30;
	padding: 10px;
	border: 1px solid var(--sc-line);
	background: var(--sc-paper);
	box-shadow: var(--sc-shadow);
}

.search-form {
	display: flex;
	gap: 8px;
}

.search-field {
	width: min(46vw, 360px);
	min-width: 220px;
	padding: 8px 10px;
	border: 1px solid #b8bec6;
	font: inherit;
}

.widget .search-form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
}

.widget .search-field {
	width: 100%;
	min-width: 0;
}

.search-submit,
.button-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 13px;
	border: 1px solid #555;
	background: #4a4a4a;
	color: #fff;
	font: inherit;
	font-size: 13px;
	font-weight: 750;
	text-decoration: none;
	cursor: pointer;
}

.site-main {
	max-width: 1220px;
	margin: 0 auto;
	padding: 24px 20px 64px;
}

.home-hero {
	margin: 0 0 24px;
}

.hero-slider {
	position: relative;
	overflow: hidden;
	background: #202020;
}

.hero-slides {
	height: clamp(360px, 38vw, 460px);
}

.hero-slide {
	position: relative;
	height: 100%;
	overflow: hidden;
	background: #202020;
}

.hero-slide[hidden] {
	display: none;
}

.hero-slider.is-enhanced .hero-slides {
	display: flex;
	transition: transform 600ms cubic-bezier(.22, .61, .36, 1);
	will-change: transform;
}

.hero-slider.is-enhanced .hero-slide {
	flex: 0 0 100%;
	min-width: 100%;
}

.hero-slider.is-enhanced .hero-slide[hidden] {
	display: block;
}

.hero-slide__image,
.hero-slide__overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.hero-slide__image {
	object-fit: cover;
	object-position: var(--hero-position, center 35%);
}

.hero-slide__overlay {
	background:
		linear-gradient(90deg, rgb(0 0 0 / 70%), rgb(0 0 0 / 20%) 58%, rgb(0 0 0 / 4%)),
		linear-gradient(0deg, rgb(0 0 0 / 48%), transparent 50%);
}

.hero-slide__content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-end;
	height: 100%;
	max-width: min(790px, 76%);
	padding: clamp(28px, 5vw, 58px);
	color: #fff;
	text-shadow: 0 2px 3px rgb(0 0 0 / 80%), 0 8px 22px rgb(0 0 0 / 60%);
}

@media (prefers-reduced-motion: reduce) {
	.hero-slider.is-enhanced .hero-slides {
		transition-duration: 1ms;
	}
}

.hero-slide h1,
.hero-slide h2 {
	margin: 0 0 10px;
	color: #fff;
	font-size: clamp(27px, 4vw, 48px);
	line-height: 1.12;
}

.hero-slide__summary {
	max-width: 650px;
	margin: 0 0 18px;
	font-size: clamp(14px, 1.6vw, 18px);
}

.button-link--light {
	border-color: rgb(255 255 255 / 80%);
	background: rgb(0 0 0 / 18%);
}

.hero-control {
	position: absolute;
	top: 50%;
	z-index: 4;
	width: 48px;
	height: 64px;
	border: 0;
	background: rgb(40 40 40 / 58%);
	color: #fff;
	cursor: pointer;
	transform: translateY(-50%);
}

.hero-control--previous { left: 0; }
.hero-control--next { right: 0; }

.hero-control span {
	position: absolute;
	top: 50%;
	width: 14px;
	height: 14px;
	border-top: 2px solid currentcolor;
	border-left: 2px solid currentcolor;
}

.hero-control--previous span { left: 20px; transform: translateY(-50%) rotate(-45deg); }
.hero-control--next span { right: 20px; transform: translateY(-50%) rotate(135deg); }

.hero-pagination {
	position: absolute;
	bottom: 16px;
	left: 50%;
	z-index: 4;
	display: flex;
	gap: 8px;
	transform: translateX(-50%);
}

.hero-pagination button {
	width: 28px;
	height: 8px;
	padding: 0;
	border: 0;
	border-top: 3px solid rgb(255 255 255 / 52%);
	background: transparent;
	cursor: pointer;
}

.hero-pagination button[aria-current="true"] {
	border-top-color: #fff;
}

.hero-autoplay {
	position: absolute;
	bottom: 12px;
	left: 12px;
	z-index: 4;
	min-width: 50px;
	padding: 5px 8px;
	border: 1px solid rgb(255 255 255 / 68%);
	background: rgb(28 31 34 / 72%);
	color: #fff;
	font: inherit;
	font-size: 11px;
	font-weight: 750;
	cursor: pointer;
}

.home-dashboard,
.listing-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
	gap: 22px;
	margin-bottom: 26px;
}

.stream,
.module,
.topic-matrix,
.topic-section,
.article-page {
	border: 1px solid var(--sc-line);
	background: var(--sc-paper);
	box-shadow: var(--sc-shadow);
}

.stream,
.topic-matrix {
	padding: 20px;
}

.section-head,
.listing-header {
	padding-bottom: 12px;
	margin-bottom: 14px;
	border-bottom: 1px solid var(--sc-line);
}

.section-head h2,
.listing-header h1 {
	margin: 0;
}

.eyebrow,
.kicker {
	margin: 0 0 3px;
	color: var(--sc-mid);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.eyebrow a,
.kicker a {
	color: inherit;
}

.update {
	display: grid;
	grid-template-columns: 62px minmax(0, 1fr);
	gap: 14px;
	padding: 14px 0;
	border-bottom: 1px solid #e6e9ed;
}

.update--no-date {
	grid-template-columns: minmax(0, 1fr);
}

.update:last-of-type {
	border-bottom: 0;
}

.update__title {
	margin: 0 0 6px;
	font-size: 18px;
	line-height: 1.3;
}

.update__content,
.update__title,
.update__excerpt,
.section-card,
.section-card h3,
.hero-slide__summary {
	min-width: 0;
	overflow-wrap: anywhere;
}

.update__excerpt p {
	margin: 0 0 7px;
}

.datebox {
	display: grid;
	place-items: center;
	grid-template-rows: 14px 28px 12px;
	align-content: center;
	width: 62px;
	height: 62px;
	border: 1px solid #bfc3c7;
	color: #333;
	font-style: normal;
}

.datebox__month { font-size: 11px; font-weight: 800; line-height: 1; }
.datebox__day { font-size: 24px; line-height: 1; }
.datebox__year { color: #707981; font-size: 10px; line-height: 1; }

.datebox--small {
	width: 46px;
	height: 46px;
	grid-template-rows: 11px 21px 9px;
}

.datebox--small .datebox__month { font-size: 10px; }
.datebox--small .datebox__day { font-size: 18px; }
.datebox--small .datebox__year { font-size: 8px; }
.datebox--muted { border-color: #b9c1c9; color: var(--sc-muted); }

.meta {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	color: var(--sc-muted);
	font-size: 12px;
}

.meta > * {
	padding: 2px 6px;
	border: 1px solid #d3d7dc;
	background: var(--sc-soft);
}

.side-stack {
	display: grid;
	align-content: start;
	gap: 18px;
}

.module {
	min-width: 0;
	padding: 16px;
}

.widget-title {
	padding-bottom: 10px;
	margin: 0 0 12px;
	border-bottom: 1px solid var(--sc-line);
	font-size: 18px;
}

.widget ul {
	padding-left: 1.2em;
}

.widget select,
.widget input {
	max-width: 100%;
}

.nlpp-list {
	display: grid;
	gap: 10px;
	padding: 0 !important;
	list-style: none;
}

.nlpp-link {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 10px;
	align-items: center;
}

.topic-matrix {
	margin-bottom: 26px;
}

.topic-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.topic-section {
	overflow: hidden;
}

.topic-section > header {
	padding: 14px 16px;
	border-top: 3px solid var(--sc-rule);
	border-bottom: 1px solid var(--sc-line);
}

.topic-section > header h2 {
	margin: 0;
	font-size: 19px;
}

.section-card {
	display: grid;
	grid-template-columns: 92px minmax(0, 1fr);
	gap: 12px;
	padding: 12px 16px;
	border-bottom: 1px solid #e6e9ed;
}

.section-card__image img {
	display: block;
	width: 92px;
	height: 70px;
	object-fit: cover;
}

.section-card time {
	color: var(--sc-muted);
	font-size: 11px;
}

.section-card h3 {
	margin: 2px 0 0;
	font-size: 15px;
	line-height: 1.35;
}

.topic-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 12px 16px;
}

.topic-links a {
	padding: 4px 8px;
	border: 1px solid var(--sc-line);
	background: var(--sc-soft);
	font-size: 12px;
	font-weight: 700;
}

.action-strip {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.action-strip a {
	padding: 14px;
	border: 1px solid var(--sc-line);
	color: var(--sc-ink);
	text-decoration: none;
}

.action-strip span,
.action-strip strong {
	display: block;
}

.action-strip span { font-weight: 800; }
.action-strip strong { margin-top: 2px; color: var(--sc-muted); font-size: 13px; font-weight: 500; }

.article-main {
	max-width: 1180px;
	margin: 0 auto;
}

.breadcrumb {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 14px;
	color: var(--sc-muted);
	font-size: 13px;
}

.article-hero {
	padding: 28px 28px 0;
	border-top: 3px solid var(--sc-rule);
}

.article-hero h1 {
	max-width: 920px;
	margin: 0 0 12px;
	font-size: clamp(30px, 4vw, 46px);
	line-height: 1.12;
}

.article-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-bottom: 20px;
	color: var(--sc-muted);
	font-size: 13px;
}

.article-meta > * {
	padding: 4px 8px;
	border: 1px solid var(--sc-line);
	background: var(--sc-soft);
}

.article-hero__image {
	display: block;
	width: calc(100% + 56px);
	max-width: none;
	max-height: 620px;
	margin: 0 -28px;
	border-top: 1px solid var(--sc-line);
	border-bottom: 1px solid var(--sc-line);
	object-fit: contain;
	background: var(--sc-soft);
}

.article-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(260px, .34fr);
	gap: 28px;
	padding: 28px;
}

.article-layout--single,
.page .article-layout {
	grid-template-columns: minmax(0, 1fr);
}

.article-body {
	min-width: 0;
	font-family: var(--sc-serif);
	font-size: 18px;
	line-height: 1.75;
}

.article-body h2,
.article-body h3,
.article-body h4 {
	font-family: var(--sc-sans);
}

.article-body h1 strong,
.article-body h1 b,
.article-body h2 strong,
.article-body h2 b,
.article-body h3 strong,
.article-body h3 b,
.article-body h4 strong,
.article-body h4 b,
.article-body h5 strong,
.article-body h5 b,
.article-body h6 strong,
.article-body h6 b {
	font-weight: inherit;
}

.article-body h2 {
	padding-bottom: 7px;
	margin: 28px 0 12px;
	border-bottom: 1px solid var(--sc-line);
	font-size: 22px;
}

.article-body blockquote {
	position: relative;
	margin: 24px 0;
	padding: 24px 30px;
	border: 1px solid #8bc0b8;
	border-radius: 10px;
	background: #effafa;
}

.article-body blockquote::before,
.article-body blockquote::after {
	position: absolute;
	color: #5f9f96;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 30px;
	font-weight: 700;
	line-height: 1;
	pointer-events: none;
}

.article-body blockquote::before {
	top: 8px;
	left: 10px;
	content: "“";
}

.article-body blockquote::after {
	right: 10px;
	bottom: 2px;
	content: "”";
}

.article-body blockquote > :first-child {
	margin-top: 0;
}

.article-body blockquote > :last-child {
	margin-bottom: 0;
}

.article-body blockquote cite {
	display: block;
	padding-right: 16px;
	color: var(--sc-muted);
	font-family: var(--sc-sans);
	font-size: .82rem;
	font-style: normal;
	text-align: right;
}

.article-body .nat-xsq > blockquote,
.article-body .nat-xsq-quoted blockquote {
	border-radius: 0;
}

.article-body .nat-xsq > blockquote::after,
.article-body .nat-xsq-quoted blockquote::before,
.article-body .nat-xsq-quoted blockquote::after {
	content: none;
}

.article-body pre {
	max-width: 100%;
	padding: 14px;
	overflow-x: auto;
	background: var(--sc-soft);
	font-size: 14px;
}

.article-body iframe,
.article-body video {
	max-width: 100%;
}

.article-body p,
.article-body li,
.article-body :not(pre) > code,
.comment-content {
	overflow-wrap: anywhere;
}

.article-body table {
	display: block;
	width: 100%;
	max-width: 100%;
	overflow-x: auto;
	border: 2px solid var(--sc-line);
	border-collapse: collapse;
	background: var(--sc-paper);
}

.article-body th,
.article-body td {
	padding: 9px 10px;
	border: 1px solid var(--sc-line);
	text-align: left;
	vertical-align: top;
}

.article-body th {
	background: #555;
	color: #fff;
	font-family: var(--sc-sans);
	font-weight: 700;
}

.article-body tbody tr:nth-child(even) {
	background: #f4eeee;
}

.article-body table caption,
.article-body .wp-element-caption {
	padding-top: 7px;
	color: var(--sc-muted);
	font-family: var(--sc-sans);
	font-size: 13px;
	text-align: left;
}

.article-body .fem-table table,
.article-body .fem-table th,
.article-body .fem-table td {
	text-align: center;
}

.article-body .fem-table th {
	border-color: #fff;
	background: #aaa;
}

.article-facts {
	display: grid;
	align-content: start;
	gap: 12px;
}

.fact-card {
	display: grid;
	gap: 4px;
	padding: 14px;
	border: 1px solid var(--sc-line);
	background: var(--sc-soft);
}

.post-navigation-wrap,
.comments-area {
	margin-top: 22px;
	padding: 20px;
}

.comments-area textarea,
.comments-area input[type="text"],
.comments-area input[type="email"],
.comments-area input[type="url"] {
	width: 100%;
	max-width: 100%;
}

.nav-links {
	display: flex;
	justify-content: space-between;
	gap: 16px;
}

.pagination .nav-links {
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 8px;
}

.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	min-height: 36px;
	padding: 6px 10px;
	border: 1px solid var(--sc-line);
	background: var(--sc-surface);
}

.pagination .page-numbers.current {
	border-color: var(--sc-ink);
	background: var(--sc-ink);
	color: #fff;
}

.stream-more {
	display: flex;
	justify-content: flex-start;
	margin-top: 22px;
}

.not-found {
	max-width: 900px;
	margin: 0 auto;
}

.site-footer {
	padding: 24px clamp(18px, 4vw, 56px);
	border-top: 1px solid var(--sc-line);
	background: #f6f4ef;
	color: var(--sc-muted);
	font-size: 14px;
}

.footer-widgets {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.footer-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
}

.footer-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 18px;
	padding: 0;
	list-style: none;
}

@media (max-width: 1000px) {
	.brand-row {
		grid-template-columns: minmax(0, 1fr) auto;
		gap: 10px;
	}

	.header-actions {
		grid-column: 2;
	}

	.nav-toggle {
		display: inline-flex;
	}

	.main-navigation {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		display: none;
		grid-column: auto;
		padding: 8px 20px 14px;
		border-top: 1px solid var(--sc-line);
		border-bottom: 1px solid var(--sc-line);
		background: var(--sc-paper);
		box-shadow: var(--sc-shadow);
	}

	.main-navigation.is-open {
		display: block;
	}

	.main-navigation .menu {
		display: grid;
		justify-content: stretch;
	}

	.main-navigation a {
		padding: 10px 0;
		border-bottom: 1px solid var(--sc-line);
	}

	.main-navigation .sub-menu {
		position: static;
		display: block;
		min-width: 0;
		padding: 0 0 0 14px;
		border: 0;
		box-shadow: none;
	}

	.header-search {
		left: 20px;
		right: 20px;
		top: 100%;
	}

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

@media (max-width: 860px) {
	.home-dashboard,
	.listing-layout,
	.article-layout {
		grid-template-columns: 1fr;
	}

	.topic-grid {
		grid-template-columns: 1fr;
	}

	.topic-section {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.topic-section > header,
	.topic-links {
		grid-column: 1 / -1;
	}

	.section-card {
		grid-template-columns: 1fr;
	}

	.section-card__image img {
		width: 100%;
		height: auto;
		aspect-ratio: 16 / 9;
	}
}

@media (max-width: 560px) {
	.site-main {
		padding: 14px 12px 40px;
	}

	.brand-row {
		padding: 10px 12px;
	}

	.brand__logo,
	.brand__logo img {
		width: 54px;
		height: 54px;
	}

	.brand__title {
		font-size: 20px;
	}

	.brand__tagline {
		display: none;
	}

	.header-search {
		left: 12px;
		right: 12px;
	}

	.search-form {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
	}

	.search-field {
		width: 100%;
		min-width: 0;
	}

	.hero-slides {
		height: 310px;
	}

	.hero-slide__overlay {
		background: linear-gradient(0deg, rgb(0 0 0 / 82%), transparent 78%), linear-gradient(90deg, rgb(0 0 0 / 28%), transparent);
	}

	.hero-slide__content {
		max-width: 100%;
		padding: 18px 16px 42px;
	}

	.hero-slide h1,
	.hero-slide h2 {
		display: -webkit-box;
		overflow: hidden;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
		font-size: 24px;
	}

	.hero-slide__summary {
		display: -webkit-box;
		flex-shrink: 0;
		overflow: hidden;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		font-size: 14px;
	}

	.hero-control {
		width: 38px;
		height: 54px;
	}

	.hero-control--previous span { left: 15px; }
	.hero-control--next span { right: 15px; }

	.hero-pagination {
		bottom: 12px;
	}

	.hero-pagination button {
		width: 20px;
	}

	.stream,
	.topic-matrix {
		padding: 16px;
	}

	.update {
		grid-template-columns: 54px minmax(0, 1fr);
		gap: 12px;
	}

	.datebox {
		width: 54px;
	}

	.topic-section {
		display: block;
	}

	.section-card {
		grid-template-columns: 82px minmax(0, 1fr);
	}

	.section-card__image img {
		width: 82px;
		height: 64px;
	}

	.action-strip,
	.footer-widgets {
		grid-template-columns: 1fr;
	}

	.article-hero {
		padding: 18px 16px 0;
	}

	.article-hero__image {
		width: calc(100% + 32px);
		margin: 0 -16px;
	}

	.article-layout {
		padding: 18px 16px;
	}

	.article-body {
		font-size: 16px;
	}

	.footer-bar {
		align-items: flex-start;
		flex-direction: column;
	}
}

.alignleft {
	float: left;
	margin: 0 1.5rem 1rem 0;
}

.alignright {
	float: right;
	margin: 0 0 1rem 1.5rem;
}

.aligncenter {
	display: block;
	margin-right: auto;
	margin-left: auto;
}

.wp-caption {
	max-width: 100%;
}

.wp-caption-text,
.gallery-caption {
	color: var(--muted);
	font-size: .875rem;
}

.sticky {
	border-inline-start: 3px solid var(--accent);
}

.bypostauthor .comment-author {
	font-weight: 700;
}

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