/* ===================================================================
   Blinki Blog
   Extracted from the Claude Design prototype (Blinki Blog.dc.html).

   The prototype is inline-styles only, so this is an extraction rather
   than a verbatim port: every colour, size and radius below comes
   straight from the design, but the class names are new.

   The design carries no responsive rules and no mobile navigation —
   the breakpoints and the drawer at the bottom of this file are the
   one place the theme deliberately goes beyond it.
   =================================================================== */

:root {
	--violet: #7c3aed;
	--violet-700: #6d28d9;
	--violet-900: #4c1d95;
	--violet-400: #a78bfa;
	--violet-300: #c4b5fd;
	--violet-200: #ddd6fe;
	--violet-100: #ede9fe;
	--violet-50: #f5f3ff;

	--ink: #1e1b2e;
	--ink-2: #3a3450;
	--muted: #5b5570;
	--muted-2: #8b85a0;

	--line: #ede9fe;
	--line-2: #e6e1f2;

	--foot-text: #c9c4dc;
	--foot-muted: #a8a3bd;

	--font-body: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;

	--r-sm: 9px;
	--r-md: 11px;
	--r-lg: 16px;
	--r-xl: 20px;
	--r-pill: 999px;

	--container: 1160px;
}

/* ===== Base ===== */

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

body {
	margin: 0;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	background: #ffffff;
	font-family: var(--font-body);
	color: var(--ink);
	-webkit-font-smoothing: antialiased;
}

a {
	color: var(--violet);
	text-decoration: none;
}

a:hover {
	color: var(--violet-700);
}

img {
	max-width: 100%;
}

:focus-visible {
	outline: 2px solid var(--violet);
	outline-offset: 2px;
	border-radius: 4px;
}

.site-main {
	flex: 1;
}

.container {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 24px;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	position: fixed;
	top: 8px;
	left: 8px;
	z-index: 100;
	width: auto;
	height: auto;
	margin: 0;
	padding: 10px 16px;
	clip-path: none;
	background: #ffffff;
	border: 1px solid var(--violet);
	border-radius: var(--r-md);
	font-weight: 700;
}

/* ===== Buttons ===== */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 18px;
	border: none;
	border-radius: 10px;
	font-family: inherit;
	font-size: 14.5px;
	font-weight: 700;
	cursor: pointer;
}

.btn-primary {
	background: var(--violet);
	color: #ffffff;
	box-shadow: 0 1px 2px rgba(124, 58, 237, 0.3);
}

.btn-primary:hover {
	background: var(--violet-700);
	color: #ffffff;
}

/* ===== Header ===== */

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--line);
}

.admin-bar .site-header {
	top: 32px;
}

.header-inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 24px;
	height: 68px;
	display: flex;
	align-items: center;
	gap: 32px;
}

.brand {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
}

.brand-logo {
	height: 30px;
	width: auto;
	display: block;
}

.brand-badge {
	padding: 2px 9px;
	border: 1px solid var(--line);
	border-radius: var(--r-pill);
	background: var(--violet-50);
	color: var(--violet);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.site-nav {
	display: flex;
	gap: 24px;
	flex: 1;
	/* The nav is built from the categories, so its width is not fixed. A flex
	   item defaults to min-width:auto and would refuse to shrink below its
	   links, pushing the whole header wider than the page. These two let a
	   surplus category clip instead of breaking the layout — the drawer still
	   lists every category. Today's four links need ~457px; if the nav gains
	   items, revisit the 1000px handover below rather than relying on this. */
	min-width: 0;
	overflow: hidden;
}

.nav-link {
	font-size: 14.5px;
	font-weight: 600;
	color: var(--muted);
	/* The header row is a fixed 68px. A wrapped label turns it into a
	   two-line mess, so labels never wrap — the drawer takes over instead,
	   at a width where the row still comfortably fits (see below). */
	white-space: nowrap;
}

.nav-link:hover {
	color: var(--violet);
}

.nav-link.is-active {
	color: var(--ink);
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 16px;
}

.nav-toggle {
	display: none;
	margin-left: auto;
	padding: 8px;
	border: 1px solid var(--line);
	border-radius: var(--r-sm);
	background: #ffffff;
	color: var(--ink);
	cursor: pointer;
}

/* ===== Blog home ===== */

.blog-hero {
	padding: 48px 0 0;
}

.eyebrow {
	margin: 0 0 6px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--violet);
}

.blog-headline {
	margin: 0 0 40px;
	font-size: clamp(28px, 5vw, 40px);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.1;
	text-wrap: pretty;
}

/* ===== Featured card ===== */

.featured-card {
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	border: 1px solid var(--line);
	border-radius: var(--r-xl);
	overflow: hidden;
	background: #ffffff;
	color: inherit;
	box-shadow: 0 1px 3px rgba(30, 27, 46, 0.05);
	transition: box-shadow 0.2s ease;
}

.featured-card:hover {
	color: inherit;
	box-shadow: 0 8px 30px rgba(124, 58, 237, 0.12);
}

.featured-media {
	min-height: 320px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 60%, #ede9fe 100%);
}

.featured-media.has-image {
	display: block;
	min-height: 0;
}

.featured-media.has-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.mock-card {
	padding: 18px 22px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 10px 30px rgba(76, 29, 149, 0.35);
	transform: rotate(-2deg);
}

.mock-url {
	font-size: 13px;
	font-weight: 700;
	color: var(--violet);
}

.mock-lines {
	margin-top: 8px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.mock-lines span {
	display: block;
	height: 10px;
	border-radius: 5px;
	background: var(--violet-100);
}

.mock-lines span:nth-child(1) {
	width: 150px;
}

.mock-lines span:nth-child(2) {
	width: 110px;
}

.mock-lines span:nth-child(3) {
	width: 130px;
	background: var(--violet-50);
}

.featured-body {
	padding: 36px 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 14px;
}

.featured-meta {
	display: flex;
	align-items: center;
	gap: 10px;
}

.featured-title {
	margin: 0;
	font-size: 27px;
	font-weight: 800;
	letter-spacing: -0.01em;
	line-height: 1.25;
}

.featured-excerpt {
	margin: 0;
	font-size: 15.5px;
	line-height: 1.65;
	color: var(--muted);
	text-wrap: pretty;
}

/* ===== Shared post furniture ===== */

.cat-pill {
	padding: 4px 11px;
	border-radius: var(--r-pill);
	background: var(--violet-50);
	color: var(--violet);
	font-size: 12.5px;
	font-weight: 700;
}

.post-date {
	font-size: 13px;
	color: var(--muted-2);
}

.byline {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 4px;
}

.avatar {
	width: 32px;
	height: 32px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--violet-400), var(--violet));
	color: #ffffff;
	font-size: 13px;
	font-weight: 700;
}

.byline-name {
	font-size: 14px;
	font-weight: 600;
	color: var(--ink);
}

.byline-meta {
	font-size: 13px;
	color: var(--muted-2);
}

.byline-lg {
	gap: 12px;
	margin-top: 0;
}

.byline-lg .avatar {
	width: 40px;
	height: 40px;
	font-size: 14px;
}

.byline-lg .byline-name {
	font-size: 14.5px;
	font-weight: 700;
}

/* Gradient thumbnails — the design's four, used when a post has no image. */

.thumb-g1 {
	background: linear-gradient(135deg, #7c3aed, #a78bfa);
}

.thumb-g2 {
	background: linear-gradient(135deg, #4c1d95, #7c3aed);
}

.thumb-g3 {
	background: linear-gradient(135deg, #a78bfa, #ede9fe);
}

.thumb-g4 {
	background: linear-gradient(135deg, #6d28d9, #c4b5fd);
}

/* ===== Chips ===== */

.chip-row {
	display: flex;
	gap: 10px;
	margin: 40px 0 24px;
	flex-wrap: wrap;
}

.chip {
	padding: 8px 16px;
	border: 1px solid var(--line-2);
	border-radius: var(--r-pill);
	background: #ffffff;
	color: var(--ink-2);
	font-size: 14px;
	font-weight: 600;
}

.chip:hover {
	border-color: var(--violet);
	color: var(--violet);
}

.chip.is-active,
.chip.is-active:hover {
	background: var(--violet);
	border-color: var(--violet);
	color: #ffffff;
}

/* ===== Post grid ===== */

.listing {
	padding-bottom: 64px;
}

.post-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.post-card {
	display: flex;
	flex-direction: column;
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	overflow: hidden;
	background: #ffffff;
	color: inherit;
	box-shadow: 0 1px 3px rgba(30, 27, 46, 0.04);
	transition: box-shadow 0.2s ease;
}

.post-card:hover {
	color: inherit;
	box-shadow: 0 8px 24px rgba(124, 58, 237, 0.12);
}

.post-thumb {
	height: 160px;
	display: flex;
	align-items: flex-end;
	padding: 14px;
}

.post-thumb.has-image {
	padding: 0;
}

.post-thumb.has-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.post-glyph {
	font-size: 26px;
	line-height: 1;
	font-weight: 800;
	color: rgba(255, 255, 255, 0.9);
	filter: drop-shadow(0 2px 4px rgba(76, 29, 149, 0.3));
}

.post-card-body {
	padding: 20px 22px 22px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
}

.post-card-meta {
	display: flex;
	align-items: center;
	gap: 8px;
}

.post-card-meta .cat-pill {
	padding: 3px 10px;
	font-size: 12px;
}

.post-card-meta .post-date {
	font-size: 12.5px;
}

.post-card-title {
	margin: 0;
	font-size: 17.5px;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: -0.01em;
}

.post-card-excerpt {
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
	color: var(--muted);
	text-wrap: pretty;
}

.post-card-byline {
	margin-top: auto;
	font-size: 13px;
	color: var(--muted-2);
}

/* ===== Archive hero band ===== */

.cat-hero-band {
	background: linear-gradient(180deg, var(--violet-50) 0%, #ffffff 100%);
	border-bottom: 1px solid var(--line);
}

.cat-hero-inner {
	padding: 48px 0 40px;
}

.back-link {
	font-size: 13.5px;
	font-weight: 600;
	color: var(--violet);
}

.cat-title {
	margin: 14px 0 8px;
	font-size: clamp(26px, 4.4vw, 36px);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.15;
}

.cat-desc {
	margin: 0;
	max-width: 560px;
	font-size: 16px;
	color: var(--muted);
	text-wrap: pretty;
}

.cat-count {
	margin: 14px 0 0;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--muted-2);
}

.cat-body {
	padding: 40px 0 64px;
}

.cat-body .post-thumb {
	height: 150px;
}

/* ===== Single post ===== */

.single-layout {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 56px;
	padding: 40px 0 64px;
}

.single-article {
	min-width: 0;
}

.single-title {
	margin: 16px 0 18px;
	font-size: clamp(28px, 4.6vw, 38px);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.15;
	text-wrap: pretty;
}

.single-byline {
	padding-bottom: 24px;
	border-bottom: 1px solid var(--line);
}

.byline-stack .byline-name {
	font-size: 14.5px;
	font-weight: 700;
}

.byline-stack .byline-meta {
	font-size: 13px;
}

.single-hero {
	margin: 28px 0;
	height: 300px;
	border-radius: var(--r-lg);
	overflow: hidden;
}

.single-hero.has-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* ===== Article body ===== */

.entry-content {
	font-size: 16.5px;
	line-height: 1.75;
	color: var(--ink-2);
}

.entry-content > *:first-child {
	margin-top: 0;
}

.entry-content p {
	margin: 0 0 20px;
	text-wrap: pretty;
}

.entry-content h2 {
	margin: 36px 0 14px;
	font-size: 24px;
	font-weight: 800;
	line-height: 1.25;
	letter-spacing: -0.01em;
	color: var(--ink);
}

.entry-content h3 {
	margin: 28px 0 12px;
	font-size: 19px;
	font-weight: 800;
	color: var(--ink);
}

.entry-content blockquote {
	margin: 28px 0;
	padding: 20px 26px;
	border-radius: 14px;
	background: var(--violet-50);
	font-size: 17px;
	font-weight: 600;
	line-height: 1.6;
	color: var(--violet-900);
}

.entry-content blockquote p {
	margin: 0;
}

.entry-content ul,
.entry-content ol {
	margin: 0 0 20px;
	padding-left: 22px;
}

.entry-content li {
	margin-bottom: 8px;
}

.entry-content a {
	text-decoration: underline;
	text-underline-offset: 2px;
}

.entry-content img {
	height: auto;
	border-radius: 14px;
}

.entry-content code {
	padding: 2px 6px;
	border-radius: 6px;
	background: var(--violet-50);
	font-size: 0.9em;
}

.entry-content pre {
	padding: 18px 20px;
	border-radius: 14px;
	background: var(--ink);
	color: #ffffff;
	overflow-x: auto;
}

.entry-content pre code {
	padding: 0;
	background: none;
	color: inherit;
}

/* ===== CTA banner ===== */

.cta-banner {
	margin: 40px 0 8px;
	padding: 34px 38px;
	border-radius: 18px;
	background: linear-gradient(135deg, #6d28d9, #7c3aed 55%, #8b5cf6);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.cta-title {
	font-size: 21px;
	font-weight: 800;
	letter-spacing: -0.01em;
	color: #ffffff;
}

.cta-text {
	margin-top: 6px;
	font-size: 14.5px;
	color: var(--violet-200);
}

.cta-btn {
	flex-shrink: 0;
	padding: 13px 24px;
	border-radius: 11px;
	background: #ffffff;
	color: var(--violet-700);
	font-size: 15px;
	font-weight: 700;
	box-shadow: none;
}

.cta-btn:hover {
	background: var(--violet-50);
	color: var(--violet-700);
}

/* ===== Sidebar ===== */

.sidebar {
	display: flex;
	flex-direction: column;
	gap: 28px;
	align-self: start;
	position: sticky;
	top: 92px;
}

.admin-bar .sidebar {
	top: 124px;
}

.side-title {
	margin: 0 0 12px;
	font-size: 12.5px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--muted-2);
}

.side-cats {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.side-cat {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	padding: 9px 12px;
	border-radius: var(--r-sm);
	font-size: 14.5px;
	font-weight: 600;
	color: var(--ink-2);
}

.side-cat:hover {
	background: var(--violet-50);
	color: var(--violet);
}

.side-count {
	padding: 1px 8px;
	border-radius: var(--r-pill);
	background: var(--violet-50);
	font-size: 12.5px;
	color: var(--muted-2);
}

.side-recent {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.side-post {
	display: flex;
	gap: 12px;
	align-items: center;
	color: inherit;
}

.side-post:hover {
	color: var(--violet);
}

.side-thumb {
	width: 52px;
	height: 52px;
	flex-shrink: 0;
	border-radius: 10px;
	overflow: hidden;
}

.side-thumb.has-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.side-post-title {
	font-size: 13.5px;
	font-weight: 700;
	line-height: 1.35;
}

.side-post-date {
	margin-top: 3px;
	font-size: 12px;
	color: var(--muted-2);
}

.promo-card {
	padding: 22px;
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	background: var(--violet-50);
}

.promo-logo {
	height: 24px;
	width: auto;
	display: block;
	margin-bottom: 12px;
}

.promo-title {
	font-size: 15px;
	font-weight: 700;
	line-height: 1.4;
}

.promo-text {
	margin: 8px 0 16px;
	font-size: 13.5px;
	line-height: 1.55;
	color: var(--muted);
}

.promo-btn {
	display: block;
	width: 100%;
	padding: 11px 0;
	border-radius: 10px;
	text-align: center;
	font-size: 14px;
}

/* ===== Pagination ===== */

.pagination {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 40px;
	flex-wrap: wrap;
}

.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 12px;
	border: 1px solid var(--line-2);
	border-radius: 10px;
	background: #ffffff;
	font-size: 14px;
	font-weight: 600;
	color: var(--ink-2);
}

.pagination .page-numbers:hover {
	border-color: var(--violet);
	color: var(--violet);
}

.pagination .page-numbers.current,
.pagination .page-numbers.current:hover {
	background: var(--violet);
	border-color: var(--violet);
	color: #ffffff;
}

.pagination .dots {
	border-color: transparent;
}

/* ===== Search form / notice pages ===== */

.search-form {
	display: flex;
	gap: 8px;
	max-width: 420px;
	margin-top: 20px;
}

.search-form input[type="search"] {
	flex: 1;
	min-width: 0;
	padding: 11px 14px;
	border: 1px solid var(--line-2);
	border-radius: 10px;
	font-family: inherit;
	font-size: 14px;
	outline: none;
}

.search-form input[type="search"]:focus {
	border-color: var(--violet);
}

.notice-page {
	padding: 80px 0 96px;
	max-width: 620px;
}

.notice-page .cat-title {
	margin-top: 0;
}

.empty-msg {
	margin: 0;
	padding: 8px 0 40px;
	font-size: 16px;
	color: var(--muted);
}

/* ===== Generic page ===== */

.page-body {
	padding: 48px 0 64px;
	max-width: 760px;
}

/* ===== Footer ===== */

.site-footer {
	background: var(--ink);
	margin-top: auto;
}

.footer-inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 44px 24px 36px;
}

.footer-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 40px;
	flex-wrap: wrap;
	padding-bottom: 32px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-subscribe-col {
	max-width: 340px;
}

.footer-title {
	font-size: 17px;
	font-weight: 800;
	letter-spacing: -0.01em;
	color: #ffffff;
}

.footer-text {
	margin: 6px 0 16px;
	font-size: 13.5px;
	line-height: 1.55;
	color: var(--foot-muted);
}

.footer-subscribe {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	position: relative;
}

.footer-subscribe input[type="email"] {
	flex: 1;
	min-width: 0;
	padding: 11px 14px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.08);
	font-family: inherit;
	font-size: 14px;
	color: #ffffff;
	outline: none;
}

.footer-subscribe input[type="email"]::placeholder {
	color: var(--foot-muted);
}

.footer-subscribe input[type="email"]:focus {
	border-color: var(--violet-400);
}

.footer-subscribe .btn-primary:hover {
	background: #8b5cf6;
}

.subscribe-hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.subscribe-msg {
	flex-basis: 100%;
	margin: 0;
	font-size: 13px;
	color: var(--foot-muted);
}

.subscribe-msg:not(:empty) {
	margin-top: 8px;
}

.subscribe-msg.is-ok {
	color: #a7f3d0;
}

.subscribe-msg.is-err {
	color: #fca5a5;
}

.footer-cols {
	display: flex;
	gap: 56px;
	flex-wrap: wrap;
}

.footer-col {
	display: flex;
	flex-direction: column;
	gap: 9px;
}

.footer-col-title {
	margin-bottom: 3px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--muted-2);
}

.footer-col a {
	font-size: 13.5px;
	color: var(--foot-text);
}

.footer-col a:hover {
	color: #ffffff;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	padding-top: 24px;
	flex-wrap: wrap;
}

.footer-copy {
	font-size: 13px;
	color: var(--muted-2);
}

.footer-legal {
	display: flex;
	gap: 20px;
}

.footer-legal a {
	font-size: 13px;
	color: var(--muted-2);
}

.footer-legal a:hover {
	color: #ffffff;
}

/* ===================================================================
   MOBILE NAVIGATION — not in the design.

   The drawer and scrim are rendered outside <header> on purpose: the
   header uses backdrop-filter, which makes it a containing block for
   fixed-position descendants and would clip both.
   =================================================================== */

.nav-scrim {
	position: fixed;
	inset: 0;
	z-index: 60;
	background: rgba(30, 27, 46, 0.5);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.22s ease, visibility 0.22s ease;
}

.nav-scrim.is-open {
	opacity: 1;
	visibility: visible;
}

.nav-drawer {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 61;
	width: min(320px, 86vw);
	padding: 18px;
	background: #ffffff;
	display: flex;
	flex-direction: column;
	gap: 4px;
	overflow-y: auto;
	transform: translateX(100%);
	visibility: hidden;
	transition: transform 0.22s ease, visibility 0.22s ease;
}

.nav-drawer.is-open {
	transform: none;
	visibility: visible;
}

.drawer-head {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 8px;
}

.drawer-close {
	padding: 8px;
	border: 1px solid var(--line);
	border-radius: var(--r-sm);
	background: #ffffff;
	color: var(--ink);
	cursor: pointer;
}

.drawer-link {
	padding: 11px 12px;
	border-radius: var(--r-sm);
	font-size: 15px;
	font-weight: 600;
	color: var(--ink-2);
}

.drawer-link:hover,
.drawer-link.is-active {
	background: var(--violet-50);
	color: var(--violet);
}

.drawer-sep {
	margin: 12px 0;
	border: 0;
	border-top: 1px solid var(--line);
}

.drawer-cta {
	margin-top: 4px;
}

body.is-nav-open {
	overflow: hidden;
}

/* ===================================================================
   RESPONSIVE — not in the design.
   =================================================================== */

@media (max-width: 1000px) {
	/* Hand the nav over to the drawer here, not lower down. The four links
	   need ~450px and the row also carries the logo and the two actions —
	   below ~920px the labels start wrapping inside the fixed-height header.
	   Handing over at 1000px keeps a comfortable margin, and matches the
	   width at which the featured card and single-post layout also collapse. */
	.site-nav,
	.header-actions {
		display: none;
	}

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

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

	.featured-media {
		min-height: 240px;
	}

	.featured-body {
		padding: 28px;
	}

	.post-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.single-layout {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.sidebar {
		position: static;
	}
}

@media screen and (max-width: 782px) {
	.admin-bar .site-header {
		top: 46px;
	}
}

@media (max-width: 700px) {
	.post-grid {
		grid-template-columns: 1fr;
	}

	.blog-hero {
		padding-top: 36px;
	}

	.blog-headline {
		margin-bottom: 28px;
	}

	.featured-title {
		font-size: 22px;
	}

	.featured-body {
		padding: 24px 22px;
	}

	.chip-row {
		margin: 28px 0 20px;
	}

	.cat-hero-inner {
		padding: 32px 0 28px;
	}

	.single-layout {
		padding-top: 28px;
	}

	.single-hero {
		height: 200px;
	}

	.entry-content {
		font-size: 16px;
	}

	.entry-content h2 {
		font-size: 21px;
	}

	.cta-banner {
		flex-direction: column;
		align-items: flex-start;
		padding: 26px;
	}

	.cta-btn {
		width: 100%;
	}

	.footer-top {
		flex-direction: column;
		gap: 32px;
	}

	.footer-subscribe-col {
		max-width: none;
	}

	.footer-cols {
		gap: 32px;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}
}
