/* ==========================================================================
   Sovereign Terminal — v11 "Pastel"
   --------------------------------------------------------------------------
   A friendly health-news front: navy ink on near-white paper, sections
   carried on pastel washes that roll into each other along soft waves, and
   one raspberry accent for every action. Fraunces (SOFT axis at full) sets
   headlines; Figtree takes everything else. Each topic owns a pastel/ink
   pair (see st_chip_palette) that tints its plates and icon wells.
   ========================================================================== */

/* ── Tokens ────────────────────────────────────────────────────────────── */
:root {
	--ink: #1A2250;
	--ink-2: #3A4270;
	--ink-3: #6A7096;
	--line: #ECE5EC;
	--line-firm: #D9D1DD;

	--paper: #FFFCFA;
	--surface: #FFFFFF;

	--accent: #E5336B;
	--accent-deep: #C81F56;
	--accent-tint: #FDE3EB;

	--rose: #FDEAF0;
	--rose-deep: #FAD3E0;
	--lilac: #EEEDFB;
	--honey: #FFF4DE;
	--sage: #E1F1E3;

	--font-display: "Fraunces", Georgia, serif;
	--font-body: "Figtree", system-ui, -apple-system, "Segoe UI", sans-serif;

	--fs-micro: 0.78rem;
	--fs-meta: 0.84rem;
	--fs-small: 0.94rem;
	--fs-body: 1rem;

	--r-sm: 12px;
	--r: 20px;
	--r-lg: 28px;
	--r-pill: 999px;

	--shade: 0 1px 0 rgba(26, 34, 80, 0.03), 0 14px 34px -22px rgba(26, 34, 80, 0.32);
	--shade-lift: 0 2px 0 rgba(26, 34, 80, 0.03), 0 24px 44px -24px rgba(26, 34, 80, 0.42);

	--container: 1200px;
	--gutter: clamp(16px, 4vw, 40px);
	--band-pad: clamp(56px, 8vw, 104px);

	--ease: cubic-bezier(0.22, 0.8, 0.28, 1);
	--speed: 200ms;

	--logo-h: 40px;
}

/* ── Reset ─────────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	overflow-x: clip;
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink-2);
	font-family: var(--font-body);
	font-size: var(--fs-body);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

body.nav-open,
body.st-modal-open {
	overflow: hidden;
}

img,
svg,
video {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
select,
textarea {
	font: inherit;
	color: inherit;
}

button {
	cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	color: var(--ink);
}

p {
	margin: 0;
}

ul,
ol {
	margin: 0;
	padding: 0;
}

:focus-visible {
	outline: 3px solid var(--accent);
	outline-offset: 3px;
	border-radius: 4px;
}

.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;
}

.skip-link {
	position: absolute;
	top: -100px;
	left: 16px;
	z-index: 300;
	padding: 0.7rem 1.1rem;
	border-radius: var(--r-sm);
	background: var(--ink);
	color: #fff;
	font-weight: 700;
}

.skip-link:focus {
	top: 12px;
}

.container {
	width: 100%;
	max-width: calc(var(--container) + var(--gutter) * 2);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

/* ── Buttons ───────────────────────────────────────────────────────────── */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	padding: 0.9rem 1.5rem;
	border: 2px solid transparent;
	border-radius: var(--r-sm);
	font-family: var(--font-body);
	font-size: var(--fs-small);
	font-weight: 700;
	line-height: 1.2;
	white-space: nowrap;
	transition: background var(--speed) var(--ease), color var(--speed) var(--ease),
		border-color var(--speed) var(--ease), transform var(--speed) var(--ease);
}

.btn--sm {
	padding: 0.62rem 1.1rem;
	font-size: var(--fs-meta);
}

.btn--accent {
	background: var(--accent);
	color: #fff;
}

.btn--accent:hover {
	background: var(--accent-deep);
	transform: translateY(-1px);
}

.btn--ghost {
	border-color: var(--ink);
	color: var(--ink);
}

.btn--ghost:hover {
	background: var(--ink);
	color: #fff;
}

.arrow-badge {
	display: inline-grid;
	place-items: center;
	flex: none;
	width: 1.05em;
	height: 1.05em;
	transition: transform var(--speed) var(--ease);
}

.arrow-badge svg {
	width: 100%;
	height: 100%;
}

a:hover > .arrow-badge {
	transform: translateX(3px);
}

/* ── Chips and marks ───────────────────────────────────────────────────── */
.chip {
	display: inline-flex;
	align-items: center;
	padding: 0.34rem 0.8rem;
	border-radius: var(--r-pill);
	background: var(--chip-tint, var(--accent-tint));
	color: var(--chip-ink, var(--accent-deep));
	font-size: var(--fs-micro);
	font-weight: 700;
	line-height: 1.3;
	transition: background var(--speed) var(--ease), color var(--speed) var(--ease);
}

a.chip:hover {
	background: var(--chip-ink, var(--accent));
	color: #fff;
}

.topicmark {
	display: inline-grid;
	place-items: center;
	flex: none;
	width: var(--mark-size, 48px);
	height: var(--mark-size, 48px);
	border-radius: calc(var(--mark-size, 48px) * 0.3);
	background: var(--mark-tint, var(--card-tint, var(--lilac)));
	color: var(--mark-ink, var(--card-ink, var(--ink)));
}

.topicmark svg {
	width: 52%;
	height: 52%;
	stroke-width: 1.7;
}

.sparkle {
	position: absolute;
	width: 26px;
	height: 26px;
	color: var(--ink);
	pointer-events: none;
}

/* ── Header ────────────────────────────────────────────────────────────── */
.read-progress {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 120;
	height: 3px;
}

.read-progress__fill {
	width: 0;
	height: 100%;
	background: var(--accent);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	transition: box-shadow var(--speed) var(--ease);
}

/* The frosted plate lives on a pseudo-element: a backdrop-filter on the
   header itself would make it the containing block of the fixed drawer. */
.site-header::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: rgba(255, 252, 250, 0.92);
	backdrop-filter: saturate(1.4) blur(10px);
	-webkit-backdrop-filter: saturate(1.4) blur(10px);
}

.site-header--scrolled {
	box-shadow: 0 10px 30px -24px rgba(26, 34, 80, 0.45);
}

.admin-bar .site-header {
	top: 32px;
}

.masthead {
	display: flex;
	align-items: center;
	gap: 32px;
	min-height: 84px;
}

.masthead__brand {
	flex: none;
}

.masthead__brand .custom-logo-link,
.masthead__brand .site-logo {
	display: block;
}

.masthead__brand .custom-logo {
	width: auto;
	height: var(--logo-h);
	max-width: 240px;
	object-fit: contain;
}

.site-logo {
	color: var(--ink);
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 800;
	font-variation-settings: "SOFT" 100;
	letter-spacing: -0.02em;
}

.nav-primary {
	flex: 1;
	display: flex;
	justify-content: center;
}

.nav-menu {
	display: flex;
	align-items: center;
}

.nav-head,
.nav-subscribe {
	display: none;
}

.nav-list {
	display: flex;
	align-items: center;
	gap: clamp(14px, 2vw, 30px);
	list-style: none;
}

.nav-list a {
	position: relative;
	display: block;
	padding: 0.5rem 0;
	color: var(--ink);
	font-size: var(--fs-small);
	font-weight: 600;
	transition: color var(--speed) var(--ease);
}

.nav-list a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 2px;
	border-radius: 2px;
	background: var(--accent);
	transform: scaleX(0);
	transition: transform var(--speed) var(--ease);
}

.nav-list a:hover,
.nav-list .current-menu-item > a,
.nav-list .current-menu-parent > a,
.nav-list .current-post-ancestor > a,
.nav-list .current-category-ancestor > a {
	color: var(--accent);
}

.nav-list a:hover::after,
.nav-list .current-menu-item > a::after,
.nav-list .current-post-ancestor > a::after,
.nav-list .current-category-ancestor > a::after {
	transform: scaleX(1);
}

.masthead__util {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: none;
}

.menu-pill {
	display: none;
	place-items: center;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 2px solid var(--ink);
	border-radius: var(--r-sm);
	background: transparent;
}

.menu-pill__bars {
	display: grid;
	gap: 4px;
	width: 18px;
}

.menu-pill__bars span {
	display: block;
	height: 2px;
	border-radius: 2px;
	background: var(--ink);
}

.menu-pill__bars span:nth-child(2) {
	width: 70%;
}

.nav-scrim {
	display: none;
}

/* ── Bands and waves ───────────────────────────────────────────────────── */
.band {
	position: relative;
	padding-block: var(--band-pad);
	background: var(--band-bg, var(--paper));
}

.band--paper {
	--band-bg: var(--paper);
}

.band--rose {
	--band-bg: var(--rose);
}

.band--lilac {
	--band-bg: var(--lilac);
}

.band--honey {
	--band-bg: var(--honey);
}

.band__inner {
	width: 100%;
	max-width: calc(var(--container) + var(--gutter) * 2);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

.wave {
	position: absolute;
	left: 0;
	bottom: calc(100% - 1px);
	width: 100%;
	height: clamp(28px, 4.5vw, 64px);
	color: var(--band-bg, var(--paper));
	pointer-events: none;
}

.band__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px 48px;
	margin-bottom: clamp(28px, 4vw, 44px);
}

.band__eyebrow {
	display: block;
	margin-bottom: 0.4rem;
	color: var(--accent);
	font-size: var(--fs-small);
	font-weight: 700;
}

.band__title {
	position: relative;
	display: inline-block;
	color: var(--ink);
	font-family: var(--font-display);
	font-size: clamp(1.9rem, 3.4vw, 2.75rem);
	font-weight: 700;
	font-variation-settings: "SOFT" 100;
	line-height: 1.08;
	letter-spacing: -0.02em;
	text-wrap: balance;
}

.band__spark {
	position: relative;
	display: inline-block;
	width: 0.55em;
	height: 0.55em;
	margin-left: 0.2em;
	vertical-align: top;
	color: var(--ink);
}

.band__aside {
	display: grid;
	gap: 0.6rem;
	justify-items: start;
	max-width: 40ch;
}

.band__text {
	color: var(--ink-2);
	font-size: 1.02rem;
}

.band__link {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	color: var(--ink);
	font-size: var(--fs-small);
	font-weight: 700;
	white-space: nowrap;
}

.band__link:hover {
	color: var(--accent);
}

.band__cta {
	display: flex;
	justify-content: center;
	margin-top: clamp(32px, 4vw, 48px);
}

/* ── Hero ──────────────────────────────────────────────────────────────── */
.hero {
	position: relative;
	padding: clamp(28px, 5vw, 64px) 0 clamp(88px, 11vw, 140px);
	overflow: hidden;
}

.hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
	align-items: center;
	gap: clamp(32px, 5vw, 72px);
}

.hero__kicker {
	margin-bottom: 1rem;
	color: var(--ink);
	font-size: var(--fs-small);
	font-weight: 700;
}

.hero__kicker::after {
	content: "";
	display: inline-block;
	width: 8px;
	height: 8px;
	margin-left: 0.55rem;
	border-radius: 50%;
	background: var(--accent);
	box-shadow: 0 0 0 4px var(--accent-tint);
	vertical-align: 0.1em;
}

.hero__title {
	margin: 1rem 0 1.1rem;
	font-family: var(--font-display);
	font-size: clamp(2rem, 3.7vw, 3.15rem);
	font-weight: 700;
	font-variation-settings: "SOFT" 100;
	line-height: 1.06;
	letter-spacing: -0.025em;
	text-wrap: balance;
}

.hero__title a {
	text-decoration: underline;
	text-decoration-color: transparent;
	text-decoration-thickness: 3px;
	text-underline-offset: 0.12em;
	transition: text-decoration-color var(--speed) var(--ease);
}

.hero__title a:hover {
	text-decoration-color: var(--accent);
}

.hero__text {
	max-width: 52ch;
	color: var(--ink-2);
	font-size: 1.1rem;
	line-height: 1.65;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 1.9rem;
}

.hero__topics {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-top: 2.4rem;
}

.hero__topics-label {
	margin-right: 0.4rem;
	color: var(--ink);
	font-size: var(--fs-meta);
	font-weight: 700;
}

.hero__topic .topicmark {
	--mark-size: 42px;
	border-radius: 50%;
	transition: transform var(--speed) var(--ease);
}

.hero__topic:hover .topicmark {
	transform: translateY(-3px);
}

.hero__art {
	position: relative;
	aspect-ratio: 1.08;
	min-height: 380px;
}

.hero__blob {
	position: absolute;
	inset: -4% -8% -6% -4%;
	width: 112%;
	height: 110%;
	color: var(--rose-deep);
}

.hero__photo {
	position: absolute;
	top: 9%;
	left: 11%;
	right: 5%;
	bottom: 17%;
	overflow: hidden;
	border: 7px solid #fff;
	border-radius: var(--r-lg);
	background: var(--rose);
	box-shadow: var(--shade-lift);
	transform: rotate(-2deg);
}

.hero__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 600ms var(--ease);
}

.hero__photo:hover img {
	transform: scale(1.04);
}

.hero__badge {
	position: absolute;
	top: 1%;
	right: -1%;
	display: grid;
	place-content: center;
	width: 104px;
	height: 104px;
	border-radius: 50%;
	background: var(--ink);
	color: #fff;
	font-size: var(--fs-micro);
	font-weight: 600;
	line-height: 1.1;
	text-align: center;
	box-shadow: var(--shade-lift);
	transform: rotate(8deg);
}

.hero__badge strong {
	font-family: var(--font-display);
	font-size: 2.1rem;
	font-weight: 700;
	font-variation-settings: "SOFT" 100;
	line-height: 1;
}

.hero__float {
	position: absolute;
	left: 0;
	bottom: 2%;
	display: flex;
	align-items: center;
	gap: 14px;
	width: min(340px, 78%);
	padding: 12px 16px 12px 12px;
	border-radius: var(--r);
	background: var(--surface);
	box-shadow: var(--shade-lift);
}

.hero__float-media {
	flex: none;
	width: 72px;
	height: 72px;
	overflow: hidden;
	border-radius: 14px;
	background: var(--card-tint, var(--lilac));
}

.hero__float-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero__float-label {
	display: block;
	margin-bottom: 0.2rem;
	color: var(--card-ink, var(--accent));
	font-size: var(--fs-micro);
	font-weight: 700;
}

.hero__float-title {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	font-size: 0.92rem;
	font-weight: 700;
	line-height: 1.35;
}

.hero__float-title a:hover {
	color: var(--accent);
}

.hero .sparkle--a {
	top: -2%;
	left: 4%;
	width: 30px;
	height: 30px;
}

.hero .sparkle--b {
	top: 46%;
	right: -4%;
	width: 22px;
	height: 22px;
	color: var(--accent);
}

.hero .sparkle--c {
	bottom: 9%;
	right: 20%;
	width: 18px;
	height: 18px;
}

/* ── Briefing ──────────────────────────────────────────────────────────── */
.briefing__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	align-items: center;
	gap: clamp(32px, 6vw, 88px);
}

.briefing__list {
	padding: clamp(20px, 3vw, 32px);
	border-radius: var(--r-lg);
	background: var(--surface);
	box-shadow: var(--shade);
	transform: rotate(-1deg);
}

.briefing__list-title {
	margin-bottom: 0.6rem;
	font-family: var(--font-display);
	font-size: 1.35rem;
	font-weight: 700;
	font-variation-settings: "SOFT" 100;
}

.brief {
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr);
	align-items: center;
	gap: 16px;
	padding: 14px 0;
	border-top: 2px dashed var(--line);
}

.brief:first-of-type {
	border-top: 0;
}

.brief__media {
	display: grid;
	place-items: center;
	width: 72px;
	height: 72px;
	overflow: hidden;
	border-radius: 16px;
	background: var(--card-tint);
}

.brief__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.brief__topic,
.headline__topic,
.story__topic {
	display: inline-block;
	margin-bottom: 0.25rem;
	color: var(--card-ink, var(--accent));
	font-size: var(--fs-micro);
	font-weight: 700;
}

.brief__title {
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.35;
}

.brief__title a:hover,
.headline__title a:hover,
.story__title a:hover {
	color: var(--accent);
}

.briefing__text {
	max-width: 54ch;
	margin-top: 1rem;
	color: var(--ink-2);
	font-size: 1.05rem;
}

.stats {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
	margin-top: 2rem;
	list-style: none;
}

.stat {
	display: grid;
	justify-items: start;
	gap: 0.2rem;
}

.stat .topicmark {
	--mark-size: 52px;
	margin-bottom: 0.6rem;
}

.stat__value {
	color: var(--ink);
	font-size: 1.45rem;
	font-weight: 800;
	line-height: 1.1;
}

.stat__label {
	color: var(--ink-3);
	font-size: var(--fs-meta);
	line-height: 1.35;
}

/* ── Topics ────────────────────────────────────────────────────────────── */
.topicgrid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.topiccard {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	padding: 24px;
	border: 1px solid transparent;
	border-radius: var(--r);
	background: var(--surface);
	box-shadow: var(--shade);
	transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}

.topiccard:hover {
	transform: translateY(-4px);
	box-shadow: var(--shade-lift);
}

.topiccard .topicmark {
	--mark-size: 58px;
	margin-bottom: 0.4rem;
}

.topiccard__title {
	color: var(--ink);
	font-size: 1.15rem;
	font-weight: 800;
	line-height: 1.25;
}

.topiccard__text {
	flex: 1;
	color: var(--ink-2);
	font-size: var(--fs-small);
	line-height: 1.55;
}

.topiccard__more {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	margin-top: 0.4rem;
	color: var(--ink);
	font-size: var(--fs-meta);
	font-weight: 700;
}

.topiccard:hover .topiccard__more {
	color: var(--card-ink);
}

.topiccard:hover .arrow-badge {
	transform: translateX(3px);
}

/* The last cell of the topic grid when the topics leave a gap. */
.topiccard--cta {
	justify-content: center;
	background: var(--ink);
	color: rgba(255, 255, 255, 0.8);
}

.topiccard--cta .topiccard__title,
.topiccard--cta .topiccard__more {
	color: #fff;
}

.topiccard--cta .topiccard__text {
	flex: none;
	color: rgba(255, 255, 255, 0.75);
}

.topiccard--cta:hover .topiccard__more {
	color: var(--accent-tint);
}

@media (min-width: 1181px) {
	.topicgrid > .topiccard--cta:nth-child(4n + 1) {
		grid-column: span 4;
	}
}

/* ── Story cards ───────────────────────────────────────────────────────── */
.storygrid {
	display: grid;
	gap: 22px;
}

.storygrid--4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.storygrid--3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}

.story {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--r);
	background: var(--surface);
	transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}

.story:hover {
	transform: translateY(-4px);
	box-shadow: var(--shade-lift);
}

.story__media {
	display: block;
	padding: 14px 14px 0;
	background: var(--card-tint, var(--lilac));
}

.story__img,
.story__placeholder {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	border-radius: 14px 14px 0 0;
}

.story__img {
	height: auto;
	object-fit: cover;
}

.story__placeholder {
	display: grid;
	place-items: center;
}

.story__placeholder .topicmark {
	--mark-size: 76px;
	--mark-tint: #fff;
}

.story__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 18px 20px 20px;
}

.story__title {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	font-size: 1.06rem;
	font-weight: 800;
	line-height: 1.35;
}

.story__text {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	margin-top: 0.55rem;
	color: var(--ink-2);
	font-size: 0.9rem;
	line-height: 1.55;
}

.story__foot {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 14px;
	margin-top: auto;
	padding-top: 1rem;
	color: var(--ink-3);
	font-size: var(--fs-micro);
	font-weight: 600;
}

.storygrid--3 .story__title {
	font-size: 1.15rem;
}

/* ── Headlines ─────────────────────────────────────────────────────────── */
.headlist {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px 24px;
}

.headline {
	display: grid;
	grid-template-columns: 104px minmax(0, 1fr);
	align-items: center;
	gap: 18px;
	padding: 12px;
	border-radius: var(--r);
	background: var(--surface);
	box-shadow: var(--shade);
}

.headline__media {
	display: grid;
	place-items: center;
	width: 104px;
	height: 88px;
	overflow: hidden;
	border-radius: 14px;
	background: var(--card-tint);
}

.headline__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.headline__title {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.38;
}

.headline__meta {
	display: flex;
	gap: 12px;
	margin-top: 0.35rem;
	color: var(--ink-3);
	font-size: var(--fs-micro);
	font-weight: 600;
}

/* ── Newsletter band ───────────────────────────────────────────────────── */
.signup__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
	align-items: center;
	gap: clamp(32px, 6vw, 80px);
}

.signup__title {
	max-width: 18ch;
	font-family: var(--font-display);
	font-size: clamp(2rem, 3.8vw, 3rem);
	font-weight: 700;
	font-variation-settings: "SOFT" 100;
	line-height: 1.08;
	letter-spacing: -0.02em;
	text-wrap: balance;
}

.signup__text {
	max-width: 50ch;
	margin-top: 1rem;
	color: var(--ink-2);
	font-size: 1.05rem;
}

.signup__form {
	max-width: 540px;
	margin-top: 1.8rem;
}

.signup__art {
	justify-self: center;
	width: 100%;
	max-width: 420px;
	color: var(--ink);
}

.signup__letter {
	transform-box: fill-box;
	transform-origin: center bottom;
	animation: st-letter 5s var(--ease) infinite;
}

@keyframes st-letter {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-8px); }
}

/* ── Page heads (archive, page, 404, thank-you) ────────────────────────── */
.page-hero {
	position: relative;
	padding: clamp(48px, 7vw, 88px) 0 clamp(80px, 10vw, 128px);
	overflow: hidden;
	background: var(--band-bg, var(--rose));
}

.page-hero--rose {
	--band-bg: var(--rose);
}

.page-hero__inner {
	position: relative;
}

.page-hero .topicmark {
	--mark-size: 68px;
	margin-bottom: 1.2rem;
}

.page-hero__title {
	max-width: 22ch;
	font-family: var(--font-display);
	font-size: clamp(2.3rem, 5vw, 4rem);
	font-weight: 700;
	font-variation-settings: "SOFT" 100;
	line-height: 1.04;
	letter-spacing: -0.025em;
	text-wrap: balance;
}

.page-hero__text {
	max-width: 58ch;
	margin-top: 1rem;
	color: var(--ink-2);
	font-size: 1.12rem;
}

.page-hero__note {
	max-width: 52ch;
	margin-top: 0.8rem;
	color: var(--ink-3);
	font-size: var(--fs-small);
}

.page-hero__count {
	display: inline-block;
	margin-top: 1.3rem;
	padding: 0.4rem 0.9rem;
	border-radius: var(--r-pill);
	background: var(--surface);
	color: var(--card-ink, var(--ink));
	font-size: var(--fs-meta);
	font-weight: 700;
}

.page-hero .sparkle--a {
	top: -12px;
	right: 12%;
	width: 32px;
	height: 32px;
}

.page-hero .sparkle--b {
	bottom: -30px;
	right: 30%;
	width: 20px;
	height: 20px;
	color: var(--accent);
}

.page-hero .sparkle--c {
	top: 40%;
	left: 6%;
	width: 22px;
	height: 22px;
}

.page-hero--center .page-hero__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.page-hero--tall {
	padding-block: clamp(72px, 10vw, 140px) clamp(110px, 13vw, 180px);
}

.notice-mark {
	display: grid;
	place-items: center;
	width: 76px;
	height: 76px;
	margin-bottom: 1.4rem;
	border-radius: 24px;
	background: var(--surface);
	color: var(--accent);
	box-shadow: var(--shade);
}

.notice-mark svg {
	width: 36px;
	height: 36px;
}

.notice-mark--ok {
	color: #3C7A4E;
}

.notice-card {
	max-width: 560px;
	margin: 0 auto;
	padding: 40px;
	border-radius: var(--r-lg);
	background: var(--rose);
	text-align: center;
}

.notice-card__title {
	font-family: var(--font-display);
	font-size: 1.8rem;
	font-weight: 700;
	font-variation-settings: "SOFT" 100;
}

.notice-card__text {
	margin-top: 0.6rem;
}

.notice-card__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin-top: 1.8rem;
}

.page-body {
	max-width: calc(780px + var(--gutter) * 2);
	padding-block: 8px clamp(64px, 8vw, 104px);
}

.page-body .post-hero {
	margin: 0 0 2.5rem;
}

/* ── Pagination ────────────────────────────────────────────────────────── */
.pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin-top: 3rem;
}

.pagination .page-numbers,
.pagination .nav-links > a,
.pagination .nav-links > span {
	display: inline-grid;
	place-items: center;
	min-width: 46px;
	height: 46px;
	padding: 0 1rem;
	border: 1px solid var(--line-firm);
	border-radius: var(--r-sm);
	background: var(--surface);
	color: var(--ink);
	font-size: var(--fs-small);
	font-weight: 700;
	transition: background var(--speed) var(--ease), color var(--speed) var(--ease);
}

.pagination a.page-numbers:hover,
.pagination .nav-links > a:hover {
	border-color: var(--ink);
	background: var(--ink);
	color: #fff;
}

.pagination .page-numbers.current,
.pagination .nav-links > .post-page-numbers.current {
	border-color: var(--accent);
	background: var(--accent);
	color: #fff;
}

.pagination .page-numbers.dots {
	border-color: transparent;
	background: transparent;
}

/* ── Single post ───────────────────────────────────────────────────────── */
.post-head {
	position: relative;
	padding: clamp(36px, 5vw, 64px) 0 clamp(72px, 8vw, 96px);
	overflow: hidden;
	background: var(--rose);
}

.post-head--media {
	padding-bottom: clamp(120px, 14vw, 180px);
}

.post-head__inner {
	position: relative;
}

.post-head .sparkle--a {
	top: 10px;
	right: 8%;
	width: 34px;
	height: 34px;
}

.post-head .sparkle--b {
	top: 55%;
	right: 22%;
	width: 20px;
	height: 20px;
	color: var(--accent);
}

.crumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 1.2rem;
	color: var(--ink-3);
	font-size: var(--fs-meta);
	font-weight: 600;
}

.crumbs a:hover {
	color: var(--accent);
}

.post-head__title {
	max-width: 24ch;
	font-family: var(--font-display);
	font-size: clamp(2.1rem, 4.4vw, 3.6rem);
	font-weight: 700;
	font-variation-settings: "SOFT" 100;
	line-height: 1.07;
	letter-spacing: -0.025em;
	text-wrap: balance;
}

.post-head__standfirst {
	max-width: 62ch;
	margin-top: 1.1rem;
	color: var(--ink-2);
	font-size: 1.18rem;
	line-height: 1.6;
}

.post-head__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 22px;
	margin-top: 1.6rem;
	color: var(--ink-2);
	font-size: var(--fs-small);
	font-weight: 600;
}

.post-head__meta .chip {
	background: var(--surface);
}

.post-head__fact {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
}

.post-head__fact svg {
	width: 18px;
	height: 18px;
	color: var(--accent);
}

.post-hero {
	position: relative;
	margin: calc(clamp(120px, 14vw, 180px) * -1 + 40px) 0 0;
	overflow: hidden;
	border: 8px solid #fff;
	border-radius: var(--r-lg);
	background: var(--card-tint, var(--lilac));
	box-shadow: var(--shade-lift);
}

.post-hero__img {
	width: 100%;
	max-height: 560px;
	aspect-ratio: 16 / 8;
	object-fit: cover;
}

.layout__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	align-items: start;
	gap: clamp(40px, 5vw, 72px);
	padding-block: clamp(40px, 5vw, 64px) clamp(72px, 9vw, 120px);
}

.layout__main {
	max-width: 720px;
}

/* ── Entry content ─────────────────────────────────────────────────────── */
.entry-content {
	color: var(--ink-2);
	font-size: 1.12rem;
	line-height: 1.78;
}

.entry-content > * + * {
	margin-top: 1.3em;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
	font-family: var(--font-display);
	font-weight: 700;
	font-variation-settings: "SOFT" 100;
	line-height: 1.2;
	letter-spacing: -0.015em;
	text-wrap: balance;
}

.entry-content h2 {
	margin-top: 2em;
	font-size: 1.85rem;
}

.entry-content h3 {
	margin-top: 1.8em;
	font-size: 1.45rem;
}

.entry-content h4 {
	margin-top: 1.6em;
	font-size: 1.2rem;
}

.entry-content h2 + *,
.entry-content h3 + *,
.entry-content h4 + * {
	margin-top: 0.6em;
}

.entry-content a {
	color: var(--accent-deep);
	font-weight: 600;
	text-decoration: underline;
	text-decoration-color: var(--rose-deep);
	text-decoration-thickness: 2px;
	text-underline-offset: 0.16em;
	transition: text-decoration-color var(--speed) var(--ease);
}

.entry-content a:hover {
	text-decoration-color: currentColor;
}

.entry-content strong {
	color: var(--ink);
}

.entry-content ul,
.entry-content ol {
	padding-left: 1.4em;
}

.entry-content li + li {
	margin-top: 0.45em;
}

.entry-content li::marker {
	color: var(--accent);
	font-weight: 700;
}

.entry-content blockquote {
	position: relative;
	margin-inline: 0;
	padding: 28px 32px 28px 72px;
	border-radius: var(--r);
	background: var(--lilac);
	color: var(--ink);
	font-family: var(--font-display);
	font-size: 1.3rem;
	font-variation-settings: "SOFT" 100;
	line-height: 1.5;
}

.entry-content blockquote::before {
	content: "“";
	position: absolute;
	top: 12px;
	left: 24px;
	color: #5D4DC4;
	font-size: 3.6rem;
	line-height: 1;
}

.entry-content blockquote p + p {
	margin-top: 0.6em;
}

.entry-content blockquote cite {
	display: block;
	margin-top: 0.8em;
	color: var(--ink-3);
	font-family: var(--font-body);
	font-size: var(--fs-meta);
	font-style: normal;
	font-weight: 600;
}

.entry-content img {
	border-radius: 16px;
}

.entry-content figure {
	margin-inline: 0;
}

.entry-content figcaption,
.entry-content .wp-element-caption {
	margin-top: 0.6rem;
	color: var(--ink-3);
	font-size: var(--fs-meta);
	line-height: 1.5;
	text-align: center;
}

.entry-content hr {
	width: 120px;
	height: 0;
	margin: 2.4em auto;
	border: 0;
	border-top: 3px dotted var(--line-firm);
}

.entry-content table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.95rem;
}

.entry-content th,
.entry-content td {
	padding: 0.7rem 0.9rem;
	border-bottom: 1px solid var(--line);
	text-align: left;
}

.entry-content th {
	background: var(--lilac);
	color: var(--ink);
}

.entry-content pre,
.entry-content code {
	border-radius: 8px;
	background: var(--lilac);
	font-size: 0.9em;
}

.entry-content code {
	padding: 0.15em 0.4em;
}

.entry-content pre {
	padding: 1rem 1.2rem;
	overflow-x: auto;
}

.entry-content .alignleft {
	float: left;
	margin: 0.3em 1.5em 1em 0;
}

.entry-content .alignright {
	float: right;
	margin: 0.3em 0 1em 1.5em;
}

.entry-content .aligncenter {
	margin-inline: auto;
}

.entry-content iframe,
.entry-content video {
	max-width: 100%;
	border-radius: 16px;
}

/* ── Tags, share, post nav ─────────────────────────────────────────────── */
.single-tags {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-top: 2.6rem;
}

.single-tags__label {
	margin-right: 0.4rem;
	color: var(--ink);
	font-size: var(--fs-small);
	font-weight: 700;
}

.single-tags a {
	padding: 0.35rem 0.85rem;
	border-radius: var(--r-pill);
	background: var(--lilac);
	color: var(--ink);
	font-size: var(--fs-meta);
	font-weight: 600;
}

.single-tags a:hover {
	background: var(--ink);
	color: #fff;
}

.share-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-top: 2.4rem;
	padding-top: 1.6rem;
	border-top: 2px dashed var(--line);
}

.share-row__label {
	margin-right: 0.4rem;
	color: var(--ink);
	font-weight: 700;
}

.share-row__link {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: var(--r-sm);
	background: var(--rose);
	color: var(--ink);
	transition: background var(--speed) var(--ease), color var(--speed) var(--ease);
}

.share-row__link svg {
	width: 19px;
	height: 19px;
	fill: currentColor;
}

.share-row__link:hover {
	background: var(--accent);
	color: #fff;
}

.postnav {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	margin-top: 2.4rem;
}

.postnav__item {
	display: grid;
	gap: 0.35rem;
	padding: 20px 22px;
	border: 1px solid var(--line);
	border-radius: var(--r);
	background: var(--surface);
	transition: box-shadow var(--speed) var(--ease), transform var(--speed) var(--ease);
}

.postnav__item:hover {
	transform: translateY(-2px);
	box-shadow: var(--shade-lift);
}

.postnav__item--next {
	text-align: right;
}

.postnav__item--next:only-child {
	grid-column: 2;
}

.postnav__label {
	color: var(--accent);
	font-size: var(--fs-micro);
	font-weight: 700;
}

.postnav__title {
	color: var(--ink);
	font-size: 0.98rem;
	font-weight: 700;
	line-height: 1.4;
}

/* ── Sidebar ───────────────────────────────────────────────────────────── */
.sidebar {
	position: sticky;
	top: 108px;
	display: grid;
	gap: 22px;
}

.admin-bar .sidebar {
	top: 140px;
}

.panel {
	position: relative;
	padding: 24px;
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	background: var(--surface);
}

.panel--subscribe {
	border-color: transparent;
	background: var(--rose);
}

.panel__spark {
	top: 20px;
	right: 20px;
	width: 22px;
	height: 22px;
	color: var(--accent);
}

.panel__icon {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	margin-bottom: 1rem;
	border-radius: 16px;
	background: var(--surface);
	color: var(--accent);
}

.panel__icon svg {
	width: 26px;
	height: 26px;
}

.panel__heading {
	margin-bottom: 0.9rem;
	font-family: var(--font-display);
	font-size: 1.3rem;
	font-weight: 700;
	font-variation-settings: "SOFT" 100;
	line-height: 1.2;
}

.panel--subscribe .panel__heading {
	margin-bottom: 0.4rem;
}

.panel__intro {
	margin-bottom: 1.1rem;
	color: var(--ink-2);
	font-size: var(--fs-small);
	line-height: 1.5;
}

.cat-list {
	list-style: none;
}

.cat-list__link {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 7px 0;
	color: var(--ink);
	font-size: var(--fs-small);
	font-weight: 600;
}

.cat-list__link .topicmark {
	--mark-size: 36px;
}

.cat-list__name {
	flex: 1;
}

.cat-list__link:hover .cat-list__name {
	color: var(--card-ink);
}

.cat-list__count {
	min-width: 32px;
	padding: 0.1rem 0.55rem;
	border-radius: var(--r-pill);
	background: var(--card-tint);
	color: var(--card-ink);
	font-size: var(--fs-micro);
	font-weight: 700;
	text-align: center;
}

.minilist__item {
	display: grid;
	grid-template-columns: 64px minmax(0, 1fr);
	align-items: center;
	gap: 14px;
	padding: 10px 0;
	border-top: 2px dashed var(--line);
}

.minilist__item:first-child {
	border-top: 0;
	padding-top: 0;
}

.minilist__item:not(:has(.minilist__media)) {
	grid-template-columns: minmax(0, 1fr);
}

.minilist__media {
	width: 64px;
	height: 64px;
	overflow: hidden;
	border-radius: 14px;
	background: var(--lilac);
}

.minilist__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.minilist__title {
	font-size: 0.92rem;
	font-weight: 700;
	line-height: 1.38;
}

.minilist__title a:hover {
	color: var(--accent);
}

.minilist__meta {
	display: block;
	margin-top: 0.2rem;
	color: var(--ink-3);
	font-size: var(--fs-micro);
	font-weight: 600;
}

/* ── Footer ────────────────────────────────────────────────────────────── */
.site-footer {
	position: relative;
	padding-top: clamp(40px, 6vw, 72px);
	background: var(--ink);
	color: rgba(255, 255, 255, 0.74);
	font-size: var(--fs-small);
}

.site-footer .wave {
	color: var(--ink);
}

.footer__grid {
	display: grid;
	grid-template-columns: 1.3fr 0.9fr 1.4fr 1.1fr;
	gap: 40px;
	padding-bottom: 48px;
}

.footer-brand .custom-logo-link,
.footer-brand .site-logo {
	display: inline-block;
}

.footer-brand .custom-logo {
	width: auto;
	max-width: 220px;
	height: auto;
	max-height: 48px;
	filter: brightness(0) invert(1);
}

.footer-brand .site-logo {
	color: #fff;
}

.footer-brand__text {
	max-width: 32ch;
	margin: 1.1rem 0 1.5rem;
	line-height: 1.6;
}

.footer-col__heading {
	margin-bottom: 1.1rem;
	color: #fff;
	font-size: 1rem;
	font-weight: 700;
}

.footer-links,
.footer-latest,
.footer-notes,
.footer-legal__menu {
	list-style: none;
}

.footer-links li + li,
.footer-latest li + li,
.footer-notes li + li {
	margin-top: 0.7rem;
}

.footer-links a {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	transition: color var(--speed) var(--ease);
}

.footer-links a::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--dot, var(--accent-tint));
}

.footer-links a:hover,
.footer-latest a:hover,
.footer-legal a:hover,
.footer-contact:hover {
	color: #fff;
}

.footer-latest a {
	display: block;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 600;
	line-height: 1.4;
}

.footer-latest time {
	display: block;
	margin-top: 0.15rem;
	color: rgba(255, 255, 255, 0.5);
	font-size: var(--fs-micro);
}

.footer-notes li {
	position: relative;
	padding-left: 1.4rem;
	line-height: 1.5;
}

.footer-notes li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.5em;
	width: 10px;
	height: 6px;
	border: solid var(--accent);
	border-width: 0 0 2px 2px;
	transform: rotate(-45deg);
}

.footer-contact {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	margin-top: 1.4rem;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 600;
	word-break: break-all;
}

.footer-contact svg {
	flex: none;
	width: 18px;
	height: 18px;
	color: var(--accent);
}

.footer-base {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px 32px;
	padding: 22px 0 28px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	font-size: var(--fs-meta);
}

.footer-legal__menu {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 22px;
}

/* ── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 1180px) {
	.topicgrid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.stats {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 1080px) {
	.masthead {
		justify-content: space-between;
		min-height: 72px;
	}

	.nav-primary {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		z-index: 150;
		display: block;
		width: min(380px, 88vw);
		padding: 20px 24px 32px;
		overflow-y: auto;
		background: var(--surface);
		box-shadow: -24px 0 60px -30px rgba(26, 34, 80, 0.5);
		transform: translateX(105%);
		visibility: hidden;
		transition: transform 280ms var(--ease), visibility 0s linear 280ms;
	}

	.nav-primary.is-open {
		transform: none;
		visibility: visible;
		transition: transform 280ms var(--ease);
	}

	.admin-bar .nav-primary {
		top: 46px;
	}

	.nav-menu {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 24px;
	}

	.nav-head {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.nav-head__title {
		color: var(--ink);
		font-family: var(--font-display);
		font-size: 1.5rem;
		font-weight: 700;
		font-variation-settings: "SOFT" 100;
	}

	.nav-close {
		display: grid;
		place-items: center;
		width: 44px;
		height: 44px;
		padding: 0;
		border: 0;
		border-radius: var(--r-sm);
		background: var(--rose);
		color: var(--ink);
	}

	.nav-close svg {
		width: 20px;
		height: 20px;
		fill: none;
		stroke: currentColor;
		stroke-width: 2;
		stroke-linecap: round;
	}

	.nav-list {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.nav-list a {
		padding: 0.95rem 0;
		border-bottom: 2px dashed var(--line);
		font-size: 1.1rem;
	}

	.nav-list a::after {
		display: none;
	}

	.nav-subscribe {
		display: inline-flex;
	}

	.menu-pill {
		display: grid;
	}

	.nav-scrim {
		position: fixed;
		inset: 0;
		z-index: 140;
		display: block;
		background: rgba(26, 34, 80, 0.4);
		opacity: 0;
		visibility: hidden;
		transition: opacity 280ms var(--ease), visibility 0s linear 280ms;
	}

	.nav-scrim.is-open {
		opacity: 1;
		visibility: visible;
		transition: opacity 280ms var(--ease);
	}

	.storygrid--4 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.layout__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.layout__main {
		max-width: 760px;
	}

	.sidebar {
		position: static;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		align-items: start;
	}

	.panel--subscribe {
		grid-column: 1 / -1;
	}

	.footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.hero__grid,
	.briefing__grid,
	.signup__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.hero__art {
		width: min(100%, 560px);
		min-height: 0;
		margin: 8px auto 0;
	}

	.briefing__list {
		transform: none;
	}

	.band__head {
		flex-direction: column;
		align-items: flex-start;
	}

	.storygrid--3 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.topicgrid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.headlist {
		grid-template-columns: minmax(0, 1fr);
	}

	.signup__art {
		max-width: 300px;
		order: -1;
	}
}

@media (max-width: 782px) {
	.admin-bar .site-header {
		top: 46px;
	}
}

@media (max-width: 640px) {
	.masthead__cta {
		display: none;
	}

	.masthead__brand .custom-logo {
		max-width: 190px;
		height: min(var(--logo-h), 34px);
	}

	.hero__actions .btn {
		flex: 1 1 auto;
	}

	.hero__badge {
		width: 80px;
		height: 80px;
	}

	.hero__badge strong {
		font-size: 1.6rem;
	}

	.hero__float {
		width: 88%;
	}

	.hero__badge {
		right: 2%;
	}

	.hero .sparkle--b {
		right: 1%;
	}

	.storygrid--4,
	.storygrid--3,
	.topicgrid,
	.sidebar,
	.footer__grid,
	.postnav {
		grid-template-columns: minmax(0, 1fr);
	}

	.postnav__item--next:only-child {
		grid-column: auto;
	}

	.stats {
		gap: 18px 14px;
	}

	.headline {
		grid-template-columns: 84px minmax(0, 1fr);
		gap: 14px;
	}

	.headline__media {
		width: 84px;
		height: 76px;
	}

	.post-hero {
		border-width: 5px;
		border-radius: var(--r);
	}

	.post-hero__img {
		aspect-ratio: 4 / 3;
	}

	.entry-content {
		font-size: 1.06rem;
	}

	.entry-content blockquote {
		padding: 56px 22px 22px;
	}

	.entry-content .alignleft,
	.entry-content .alignright {
		float: none;
		margin: 1em 0;
	}

	.footer-base {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation: none !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}
