:root {
	--np-ink: #171a21;
	--np-muted: #69707d;
	--np-paper: #f7f8fa;
	--np-surface: #ffffff;
	--np-line: #e1e5ea;
	--np-accent: #d62525;
	--np-accent-dark: #9e1818;
	--np-highlight: #fff1ee;
	--np-radius: 12px;
	--np-shadow: 0 12px 32px rgba(23, 26, 33, 0.09);
	--np-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--np-serif: Georgia, "Times New Roman", serif;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--np-paper);
	color: var(--np-ink);
	font-family: var(--np-sans);
	font-size: 16px;
	line-height: 1.6;
}

body.font-inter {
	font-family: "Inter", var(--np-sans);
}

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

a {
	color: inherit;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.15em;
}

a:hover,
a:focus-visible {
	color: var(--np-accent);
}

button,
input,
textarea {
	font: inherit;
}

button {
	cursor: pointer;
}

::selection {
	background: var(--np-accent);
	color: #fff;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background: var(--np-surface);
	clip: auto !important;
	clip-path: none;
	color: var(--np-ink);
	display: block;
	font-weight: 700;
	height: auto;
	left: 1rem;
	padding: 0.75rem 1rem;
	top: 1rem;
	width: auto;
	z-index: 100000;
}

.container {
	width: min(1180px, calc(100% - 2rem));
	margin-inline: auto;
}

.narrow-content {
	width: min(720px, calc(100% - 2rem));
	margin-inline: auto;
}

.eyebrow {
	margin: 0 0 0.55rem;
	color: var(--np-accent-dark);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.13em;
	line-height: 1.2;
	text-transform: uppercase;
}

.post-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.55rem;
	color: var(--np-muted);
	font-size: 0.78rem;
	font-weight: 600;
}

.post-category {
	color: var(--np-accent-dark);
	font-weight: 800;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.post-category:hover,
.post-category:focus-visible {
	color: var(--np-accent);
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.75rem;
	padding: 0.6rem 1.1rem;
	border-radius: 999px;
	background: var(--np-accent);
	color: #fff;
	font-weight: 800;
	text-decoration: none;
}

.button:hover,
.button:focus-visible {
	background: var(--np-accent-dark);
	color: #fff;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	color: var(--np-accent-dark);
	font-size: 0.86rem;
	font-weight: 800;
	text-decoration: none;
}

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

.media-placeholder {
	background:
		linear-gradient(135deg, rgba(214, 37, 37, 0.15), transparent 60%),
		linear-gradient(135deg, #d9dde3, #aeb7c3);
}

.entry-content > * {
	max-width: 100%;
}

.entry-content a {
	color: var(--np-accent-dark);
	font-weight: 650;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
	line-height: 1.2;
}