/* ============================================================================
   TechWafer 2026 — editorial-tech redesign
   Strategy: override the parent's design *tokens* (CSS custom properties) and
   add component styling. We never redefine theme.json palettes, so every
   ncmfse/* block keeps resolving its colors — it just gets new values.
   ========================================================================== */

/* ---- 1. Tokens ----------------------------------------------------------- */
:root {
	--tw-accent:        hsl(330 84% 44%);   /* brand hot-pink (deepened for AA contrast: white-on-pink & pink-on-white both ≥5:1) */
	--tw-accent-hover:  hsl(330 84% 38%);
	--tw-accent-soft:   hsl(330 84% 96%);
	--tw-ink:           hsl(222 47% 11%);
	--tw-muted:         hsl(215 20% 40%);
	--tw-faint:         hsl(215 20% 65%);
	--tw-line:          hsl(214 22% 90%);
	--tw-surface:       hsl(210 20% 98%);
	--tw-card:          hsl(0 0% 100%);
	--tw-radius:        16px;
	--tw-radius-sm:     10px;
	--tw-measure:       61ch;   /* ~68 CPL measured — matches WIRED's article measure.
	                              `ch` is the width of "0", which runs wider than the
	                              average lowercase glyph, so 61ch renders ~68 real
	                              characters in Hanken Grotesk, not 61. */
	--tw-shadow:        0 1px 2px hsl(222 47% 11% / .04), 0 8px 24px -12px hsl(222 47% 11% / .12);

	/* Fonts — distinctive editorial pairing (loaded in functions.php) */
	--tw-font-display: "Bricolage Grotesque", ui-sans-serif, system-ui, sans-serif;
	--tw-font-body:    "Hanken Grotesk", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;

	/* Remap parent shadcn + editorial tokens (light) */
	--wp--preset--color--shadcn-primary:             var(--tw-accent);
	--wp--preset--color--shadcn-primary-foreground:  hsl(0 0% 100%);
	--wp--preset--color--shadcn-foreground:          var(--tw-ink);
	--wp--preset--color--shadcn-background:          hsl(0 0% 100%);
	--wp--preset--color--shadcn-muted:               var(--tw-surface);
	--wp--preset--color--shadcn-muted-foreground:    var(--tw-muted);
	--wp--preset--color--shadcn-accent:              var(--tw-surface);
	--wp--preset--color--shadcn-accent-foreground:   var(--tw-ink);
	--wp--preset--color--shadcn-secondary:           var(--tw-surface);
	--wp--preset--color--shadcn-border:              var(--tw-line);
	--wp--preset--color--base:       hsl(0 0% 100%);
	--wp--preset--color--base-2:     hsl(0 0% 100%);
	--wp--preset--color--contrast:   var(--tw-ink);
	--wp--preset--color--contrast-2: var(--tw-muted);
	--wp--preset--color--contrast-3: var(--tw-faint);

	--wp--preset--font-family--heading: var(--tw-font-display);
	--wp--preset--font-family--body:    var(--tw-font-body);

	/* ---- Typography scale -------------------------------------------------
	   Modelled on WIRED's role taxonomy (audited 2026-08-18). Roles are named
	   by CONTEXT + FUNCTION, never by size, so the same visual weight can
	   differ between an article and a listing card.

	   Three rules carried over from that system:
	     1. Body copy NEVER scales. Hierarchy comes from headings moving,
	        which is why the reading experience stays constant across widths.
	     2. Line-height tightens as size grows (1.05 at a 54px hed, 1.55 at
	        19px body).
	     3. Tracking encodes function: negative on display type, positive and
	        uppercase on metadata. You can identify a role by its tracking.

	   Sizes step at the theme's existing 720/920 breakpoints (WIRED steps at
	   768/1024; reusing ours avoids adding a second breakpoint scale). The
	   step overrides live at the bottom of this file. */
	--tw-font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

	/* consumption — article reading */
	--tw-size-hed:            2.375rem;   /* 38px */
	--tw-lh-hed:              1.05;
	--tw-size-subhed:         1.75rem;    /* 28px */
	--tw-lh-subhed:           1.29;
	--tw-size-subhed-2:       1.375rem;   /* 22px */
	--tw-lh-subhed-2:         1.27;
	--tw-size-dek:            1.25rem;    /* 20px */
	--tw-lh-dek:              1.4;
	--tw-size-body:           1.1875rem;  /* 19px — fixed at every width */
	--tw-lh-body:             1.55;
	/* Pull quote: WIRED's `display-medium` is 28/32 set in the BODY face, not
	   the display face. A quote is separated from a heading by typeface, not by
	   size — which is why it can sit at H2's size without competing with it. */
	--tw-size-quote:          1.75rem;    /* 28px */
	--tw-lh-quote:            1.143;      /* 32/28 */
	--tw-size-cite:           0.9375rem;  /* 15px — WIRED `citation`, also used for captions */
	--tw-lh-cite:             1.334;      /* 20/15 */
	--tw-size-table:          1rem;       /* 16px — dense data sits below body */
	--tw-lh-table:            1.5;

	/* discovery — cards and listings */
	--tw-size-card-hed:       1.25rem;    /* 20px */
	--tw-lh-card-hed:         1.2;
	--tw-size-card-dek:       1rem;       /* 16px */
	--tw-lh-card-dek:         1.5;

	/* metadata — mono, uppercase, positively tracked */
	--tw-size-meta:           0.75rem;    /* 12px */
	--tw-size-label:          0.8125rem;  /* 13px */
	--tw-lh-meta:             1.334;      /* 16px on both */

	/* tracking */
	--tw-track-hed:          -0.01em;     /* ~-0.5px at 54px, as WIRED */
	--tw-track-subhed:       -0.014em;
	--tw-track-card-hed:     -0.015em;
	--tw-track-body:          0.005em;
	--tw-track-quote:        -0.02em;     /* WIRED runs -0.9px here; eased for Hanken */
	--tw-track-meta:          0.092em;    /* ~1.1px at 12px */
	--tw-track-label:         0.069em;    /* ~0.9px at 13px */
}

/* Dark mode is driven by the theme's own toggle, which sets <html class="dark">
   (shadcn/Tailwind pattern) — NOT the OS preference. Scope dark tokens to that
   class so the toggle actually controls light vs dark. */
.dark {
	--tw-ink:     hsl(210 20% 96%);
	--tw-muted:   hsl(215 16% 66%);
	--tw-faint:   hsl(215 14% 50%);
	--tw-line:    hsl(215 22% 20%);
	--tw-surface: hsl(222 30% 12%);
	--tw-card:    hsl(222 32% 10%);
	--tw-accent-soft: hsl(330 60% 16%);
	--tw-shadow:  0 1px 2px hsl(0 0% 0% / .3), 0 10px 30px -12px hsl(0 0% 0% / .6);
	--wp--preset--color--shadcn-background: hsl(222 47% 7%);
	--wp--preset--color--base:   hsl(222 47% 7%);
	--wp--preset--color--base-2: hsl(222 47% 7%);
}

/* ---- 2. Base + reading typography --------------------------------------- */
body {
	font-family: var(--tw-font-body);
	font-size: 1.0625rem;   /* 17px, fixed — see the "body never scales" note above */
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	font-feature-settings: "kern", "liga", "calt";
	letter-spacing: -0.003em;
	color: var(--tw-ink);
}
h1, h2, h3, h4, h5, h6,
.wp-block-post-title,
.wp-block-heading {
	font-family: var(--tw-font-display);
	letter-spacing: -0.02em;
	line-height: 1.12;
	font-weight: 600;
}

/* Post title — brand display (Anton), blocky and bold.
   Stepped, not fluid: WIRED moves its hed at two discrete widths rather than
   interpolating on vw, so the headline has three deliberate sizes instead of
   an arbitrary one at every viewport. */
.wp-block-post-title,
.single__content .wp-block-post-title {
	font-family: var(--tw-brand-display, "Anton", sans-serif);
	text-transform: uppercase;
	font-weight: 400 !important; /* Anton is 400-only; kill inline 600 faux-bold */
	font-size: var(--tw-size-hed);
	letter-spacing: var(--tw-track-hed);
	line-height: var(--tw-lh-hed);
}

/* Article body: FIXED at 19px on every width (WIRED's rule — body never
   scales, hierarchy comes from the headings moving instead). Leading is 1.55
   rather than WIRED's 1.47: theirs is set on a serif, ours on Hanken Grotesk,
   whose larger x-height needs marginally more room at the same size. */
.single__content .wp-block-post-content {
	font-size: var(--tw-size-body);
	line-height: var(--tw-lh-body);
	letter-spacing: var(--tw-track-body);
	color: var(--tw-ink);
	text-align: left;                 /* no justified text — kills word-spacing rivers */
	--wp--style--block-gap: 1.15em;   /* tame the flow gap between blocks */
}
.single__content .wp-block-post-content > * { max-width: var(--tw-measure); }
.single__content .wp-block-post-content .alignwide,
.single__content .wp-block-post-content .alignfull,
.single__content .wp-block-post-content .wp-block-table,
.single__content .wp-block-post-content .wp-block-image,
.single__content .wp-block-post-content figure { max-width: 100%; }

/* ---- Article column must be allowed to shrink --------------------------
   .wp-block-columns is display:flex, so each column is a flex item, and flex
   items default to min-width:auto: they refuse to shrink below their content's
   intrinsic minimum width. One non-wrapping <pre> line, one wide table, or one
   long unbroken string then pushes the 68% article column wider than its track,
   and the text runs under the sidebar on desktop.

   min-width:0 lets the column honour its flex-basis; the two rules after it give
   the content somewhere to break so it wraps instead of overflowing the column. */
.tw-single-main,
.tw-single-aside { min-width: 0; }

/* <pre> defaults to white-space:pre and never wraps, so a single 400-character
   line sets the column's minimum width by itself. Wrap it, and keep a scrollbar
   as the fallback for genuine code that must not be re-flowed. */
.tw-single-main .single__content pre,
.tw-single-main .single__content .wp-block-code,
.tw-single-main .single__content .wp-block-preformatted {
	white-space: pre-wrap;
	overflow-wrap: anywhere;
	overflow-x: auto;
	max-width: 100%;
}

/* ---- <pre> as a distinct, copyable block --------------------------------
   Posts use <pre> for text readers are meant to reuse verbatim, so it gets a
   real surface rather than the browser default.

   This lives in the head-inlined sheet, NOT in the footer module that adds the
   copy button. Block geometry (the padding-top reserving the toolbar strip
   especially) has to be known at first paint, or the block would render flat
   and then jump once a late stylesheet applied. The button itself is
   position:absolute, so IT can be styled and injected late for free.

   Colours are all tokens, so the dark-mode block at the top of this file
   re-themes these automatically. */
.single__content pre {
	position: relative;
	margin: 1.75rem 0;
	/* 2.6rem top reserves the toolbar strip. Always applied, so the geometry is
	   identical whether or not the copy script ever runs: zero layout shift. */
	padding: 2.6rem 1.05rem 1.05rem;
	background: var(--tw-surface);
	border: 1px solid var(--tw-line);
	border-left: 3px solid var(--tw-accent);
	border-radius: var(--tw-radius-sm);
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
	font-size: 0.9rem;
	line-height: 1.7;
	color: var(--tw-ink);
	tab-size: 2;
}

/* Toolbar divider drawn with a pseudo-element rather than a wrapper div: this
   post type carries 20+ blocks, and that is 20+ elements not created. */
.single__content pre::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2.1rem;
	border-bottom: 1px solid var(--tw-line);
	pointer-events: none;
}

@media print {
	.single__content pre { padding-top: 1.05rem; }
	.single__content pre::after { display: none; }
}

/* Long unbroken tokens in ordinary prose break rather than widening the column. */
.tw-single-main .single__content { overflow-wrap: break-word; }

/* Tables scroll inside the column instead of stretching it. */
.tw-single-main .single__content .wp-block-table { overflow-x: auto; }

/* Never let media break out of the article column (sidebar layout).
   Ncmaz's alignfull uses a viewport-width breakout that overflows a 68% column
   and collides with the sidebar — clamp it back to the column. */
.tw-single-main .single__content .alignfull,
.tw-single-main .single__content .alignwide,
.tw-single-main .single__content .wp-block-post-content .alignfull,
.tw-single-main .single__content .wp-block-post-content .alignwide {
	max-width: 100% !important;
	width: 100% !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	left: auto !important;
	right: auto !important;
	transform: none !important;
}
.single__content img,
.single__content figure,
.single__content .wp-block-image img,
.single__content .wp-block-gallery img {
	max-width: 100%;
	height: auto;
}
.single__content .wp-block-image,
.single__content figure { overflow: hidden; }
/* Paragraph rhythm: WIRED sets the gap to exactly 1em of the body size, so
   the space between paragraphs always tracks the type rather than drifting. */
.single__content .wp-block-post-content p { margin-block: 0 1em; }
.single__content .wp-block-post-content > h2 {
	margin-block: 1.5em 0.5em;
	font-size: var(--tw-size-subhed);
	line-height: var(--tw-lh-subhed);
	letter-spacing: var(--tw-track-subhed);
	scroll-margin-top: 90px;
}
.single__content .wp-block-post-content > h3 {
	margin-block: 1.15em 0.4em;
	font-size: var(--tw-size-subhed-2);
	line-height: var(--tw-lh-subhed-2);
	letter-spacing: var(--tw-track-subhed);
	scroll-margin-top: 90px;
}
/* ---- Quotes, captions, lists, tables ------------------------------------
   None of these had a theme rule before 2026-08-18, so they rendered on WP
   core / parent defaults: blockquotes came out at 29.6px in the DISPLAY face
   (reading as a heading), and list items at 16.32px, i.e. SMALLER than the
   19px body they sit inside. */

/* Pull quote — body face at display size, per WIRED's `display-medium`. The
   left rule is what makes it read as a quote once the face stops doing that. */
.single__content .wp-block-post-content blockquote,
.single__content .wp-block-post-content .wp-block-quote {
	font-family: var(--tw-font-body);
	font-size: var(--tw-size-quote);
	line-height: var(--tw-lh-quote);
	letter-spacing: var(--tw-track-quote);
	font-weight: 400;
	color: var(--tw-ink);
	border-left: 3px solid var(--tw-accent);
	padding-left: 1.1rem;
	margin-block: 1.8em;
	font-style: normal;   /* italic at 28px hurts more than it signals */
}
.single__content .wp-block-post-content blockquote p {
	font-size: inherit;
	line-height: inherit;
	letter-spacing: inherit;
	margin-block: 0 0.5em;
}
.single__content .wp-block-post-content blockquote p:last-child { margin-bottom: 0; }

/* Attribution — WIRED's `citation`, 15/20. */
.single__content .wp-block-post-content blockquote cite,
.single__content .wp-block-post-content blockquote footer,
.single__content .wp-block-post-content .wp-block-quote__citation {
	display: block;
	margin-top: 0.7em;
	font-size: var(--tw-size-cite);
	line-height: var(--tw-lh-cite);
	letter-spacing: normal;
	font-style: normal;
	color: var(--tw-muted);
}

/* Captions and credits — same 15/20 role. */
.single__content .wp-block-post-content figcaption,
.single__content .wp-block-post-content .wp-element-caption {
	font-size: var(--tw-size-cite);
	line-height: var(--tw-lh-cite);
	color: var(--tw-muted);
	margin-top: 0.5rem;
	max-width: var(--tw-measure);
}

/* Lists inherit the body size. They previously did not. */
.single__content .wp-block-post-content ul,
.single__content .wp-block-post-content ol { padding-left: 1.4em; }
.single__content .wp-block-post-content li {
	font-size: var(--tw-size-body);
	line-height: var(--tw-lh-body);
	margin-block: 0.35em;
}
.single__content .wp-block-post-content li > ul,
.single__content .wp-block-post-content li > ol { margin-block: 0.35em; }

/* Tables sit one step below body — dense data, not prose. */
.single__content .wp-block-post-content table th,
.single__content .wp-block-post-content table td {
	font-size: var(--tw-size-table);
	line-height: var(--tw-lh-table);
}

/* Monospace roles pick up the mono token rather than the browser default. */
.single__content .wp-block-post-content code,
.single__content .wp-block-post-content kbd,
.single__content .wp-block-post-content pre {
	font-family: var(--tw-font-mono);
	font-size: 0.9em;
}
.single__content .wp-block-post-content pre {
	line-height: 1.5;
	overflow-x: auto;
}

/* Collapse any empty paragraphs/spacers the old content left behind */
.single__content .wp-block-post-content > p:empty { display: none; }
.single__content .wp-block-post-content a {
	color: var(--tw-accent);
	text-decoration: underline;
	text-underline-offset: 0.18em;
	text-decoration-thickness: 1px;
	text-decoration-color: color-mix(in srgb, var(--tw-accent) 40%, transparent);
	transition: text-decoration-color .15s ease, color .15s ease;
}
.single__content .wp-block-post-content a:hover {
	color: var(--tw-accent-hover);
	text-decoration-color: currentColor;
}

/* Accessible focus ring everywhere */
a:focus-visible, button:focus-visible, input:focus-visible, .wp-block-button__link:focus-visible {
	outline: 2px solid var(--tw-accent);
	outline-offset: 2px;
	border-radius: 4px;
}

/* Featured image: reserve the aspect box from width/height attrs so it can't
   push the byline down when it decodes (kills the ~0.02 CLS on single posts). */
.wp-block-post-featured-image { display: block; }
.wp-block-post-featured-image img {
	display: block;
	width: 100%;
	height: auto;
}

/* ---- 3. Category pill + meta -------------------------------------------- */
.single__content .wp-block-post-terms.is-style-pill a,
.wp-block-post-terms.is-style-pill a {
	background: var(--tw-accent);
	color: #fff;
	border: none;
	font-family: var(--tw-font-display);
	font-weight: 600;
	letter-spacing: 0.02em;
}
.tw-post-header .wp-block-post-excerpt {
	font-size: 1.15rem;
	line-height: 1.5;
	color: var(--tw-muted);
}
.tw-byline { align-items: center; row-gap: 0.5rem; }
.tw-byline__author { align-items: center; }
.tw-byline__author .wp-block-avatar img { width: 32px; height: 32px; border-radius: 999px; }
.tw-byline__by { color: var(--tw-muted); margin: 0; }
.tw-byline__name { margin: 0; }
.tw-byline__name, .tw-byline__name a { color: var(--tw-ink); font-weight: 600; text-decoration: none; }
.tw-byline__name a:hover { color: var(--tw-accent); }
.tw-updated { color: var(--tw-muted); font-size: 0.85rem; align-items: center; }
.tw-updated::before {
	content: "";
	width: 7px; height: 7px; border-radius: 999px;
	background: var(--wp--preset--color--price, #22c55e);
	display: inline-block; margin-right: 0.15rem;
}

/* ---- 4. Components ------------------------------------------------------- */
.wp-element-button, .wp-block-button__link {
	border-radius: 999px;
	font-family: var(--tw-font-display);
	font-weight: 600;
	transition: background-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.wp-element-button:hover, .wp-block-button__link:hover {
	transform: translateY(-1px);
	box-shadow: var(--tw-shadow);
}

/* Data tables — critical for AEO extraction */
.wp-block-table { margin-inline: 0; }
.wp-block-table table {
	border-collapse: separate;
	border-spacing: 0;
	width: 100%;
	font-size: 0.98rem;
	border: 1px solid var(--tw-line);
	border-radius: var(--tw-radius-sm);
	overflow: hidden;
}
.wp-block-table th,
.wp-block-table td {
	padding: 0.72em 0.95em;
	border-bottom: 1px solid var(--tw-line);
	text-align: left;
}
.wp-block-table thead th {
	background: var(--tw-ink);
	color: hsl(0 0% 100%);
	font-family: var(--tw-font-display);
	font-weight: 600;
	letter-spacing: -0.01em;
}
.wp-block-table tbody tr:nth-child(even) td { background: var(--tw-surface); }
.wp-block-table tbody tr:last-child td { border-bottom: 0; }

/* ---- 5. Sidebar (fixed: 68/32 layout, sticky cards) --------------------- */
.tw-sidebar-sticky { align-self: start; }
.tw-single-aside .wp-block-categories,
.tw-single-aside .wp-block-navigation,
.tw-single-aside .wp-block-search__inside-wrapper { font-size: 0.95rem; }
.tw-single-aside h2 {
	font-family: var(--tw-font-display);
	font-size: 0.82rem !important;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--tw-muted);
}
.tw-single-aside .wp-block-categories li { padding-block: 0.28rem; }
.tw-single-aside .wp-block-categories a { color: var(--tw-ink); }
.tw-single-aside .wp-block-categories a:hover { color: var(--tw-accent); }
.tw-single-aside .wp-block-search__input {
	border: 1px solid var(--tw-line);
	border-radius: var(--tw-radius-sm);
	background: var(--tw-card);
}
.tw-single-aside .wp-block-avatar img { box-shadow: var(--tw-shadow); }

/* ---- 6. AEO / E-E-A-T blocks -------------------------------------------- */
.tw-answer {
	background: var(--tw-accent-soft);
	border: 1px solid color-mix(in srgb, var(--tw-accent) 22%, transparent);
	border-left: 4px solid var(--tw-accent);
	border-radius: var(--tw-radius);
	padding: 1.15rem 1.35rem;
	margin-block: 1.6rem;
	font-size: 1.06rem;
	line-height: 1.62;
	max-width: var(--tw-measure);
}
.tw-answer__label {
	font-family: var(--tw-font-display);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: var(--tw-accent-hover);
	margin: 0 0 0.35rem;
}
.tw-answer p:last-child { margin-bottom: 0; }

/* TL;DR — front-loaded, scannable key takeaways for AEO/AIO passage retrieval.
   Placed right after the H1; each bullet a self-contained, specific point. */
.tw-tldr {
	background: var(--tw-card);
	border: 1px solid var(--tw-line);
	border-radius: var(--tw-radius);
	padding: 1.25rem 1.4rem 1.35rem;
	margin-block: 1.6rem;
	box-shadow: var(--tw-shadow);
	max-width: var(--tw-measure);
}
.tw-tldr__label {
	display: inline-flex; align-items: center; gap: 0.5rem;
	font-family: var(--tw-font-display);
	font-size: 0.72rem; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase;
	color: var(--tw-accent-hover);
	margin: 0 0 0.7rem;
}
.tw-tldr__label::before { content: ""; width: 22px; height: 2px; background: var(--tw-accent); border-radius: 2px; }
.tw-tldr ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.tw-tldr li {
	position: relative; padding-left: 1.7rem;
	font-size: 1.02rem; line-height: 1.5; color: var(--tw-ink); margin: 0;
}
.tw-tldr li::before {
	content: ""; position: absolute; left: 0.35rem; top: 0.18em;
	width: 0.42rem; height: 0.72rem;
	border: solid var(--tw-accent); border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.tw-verdict {
	border: 1px solid var(--tw-line);
	border-radius: var(--tw-radius);
	padding: 1.25rem 1.4rem;
	margin-block: 1.6rem;
	background: var(--tw-card);
	box-shadow: var(--tw-shadow);
	max-width: var(--tw-measure);
}
.tw-verdict h3 { margin-top: 0; }
.tw-verdict .wp-block-columns { gap: 1.5rem; margin-top: 0.5rem; }
.tw-verdict h4 { font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--tw-muted); }
.tw-verdict ul { margin: 0.3rem 0 0; padding-left: 1.1rem; }
.tw-verdict li { margin-block: 0.3rem; }

.tw-faq { margin-block: 2.4rem; max-width: var(--tw-measure); }
.tw-faq > h2 { font-size: var(--tw-size-subhed); line-height: var(--tw-lh-subhed); letter-spacing: var(--tw-track-subhed); margin-bottom: 0.4rem; }
.tw-faq__item {
	border-top: 1px solid var(--tw-line);
	padding-block: 1rem;
}
.tw-faq__item:last-child { border-bottom: 1px solid var(--tw-line); }
.tw-faq__q {
	font-family: var(--tw-font-display);
	font-weight: 600;
	font-size: 1.1rem !important;
	color: var(--tw-ink);
	margin: 0 0 0.35rem;
}
.tw-faq__a { color: var(--tw-ink); line-height: 1.65; margin: 0; }

.tw-author {
	display: flex;
	gap: 1.1rem;
	align-items: flex-start;
	border: 1px solid var(--tw-line);
	border-radius: var(--tw-radius);
	padding: 1.3rem 1.4rem;
	margin-top: 2.4rem;
	background: var(--tw-surface);
	max-width: var(--tw-measure);
}
.tw-author__avatar { border-radius: 999px; flex: 0 0 auto; width: 56px; height: 56px; }
.tw-author__body { min-width: 0; }
.tw-author__name {
	display: inline-block;
	font-family: var(--tw-font-display);
	font-weight: 600;
	font-size: 1.08rem;
	color: var(--tw-ink);
	text-decoration: none;
	margin: 0;
}
.tw-author__name:hover { color: var(--tw-accent); }
.tw-author__bio { color: var(--tw-muted); font-size: 0.95rem; line-height: 1.6; margin: 0.3rem 0 0; }
.tw-author__socials { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.85rem; }
.tw-author__social {
	display: inline-flex; align-items: center; justify-content: center;
	width: 34px; height: 34px; border-radius: 999px;
	background: var(--tw-card);
	border: 1px solid var(--tw-line);
	color: var(--tw-muted);
	transition: color .15s ease, border-color .15s ease, transform .15s ease;
}
.tw-author__social:hover { color: var(--tw-accent); border-color: var(--tw-accent); transform: translateY(-1px); }

/* ---- 7. Responsive ------------------------------------------------------ */
@media (max-width: 900px) {
	.tw-single-columns { flex-wrap: wrap; }
	.tw-single-main, .tw-single-aside { flex-basis: 100% !important; }
	.tw-sidebar-sticky { position: static !important; }
	.tw-single-aside { border-top: 1px solid var(--tw-line); margin-top: 1.5rem; padding-top: 1.5rem; }
}

/* ---- 8. Footer ---------------------------------------------------------- */
.tw-footer__brand { max-width: 320px; }
.tw-footer__tagline { color: var(--tw-muted); line-height: 1.55; }
.tw-footer__h {
	font-family: var(--tw-font-display);
	font-size: 0.78rem !important;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--tw-muted);
	margin: 0 0 0.3rem;
}
.tw-footer__nav a { color: var(--tw-ink); text-decoration: none; }
.tw-footer__nav a:hover { color: var(--tw-accent); }
.tw-footer__bar { margin-top: 0.5rem; }
.tw-footer__copy { color: var(--tw-muted); margin: 0; }
.tw-footer .wp-block-social-links a { color: var(--tw-muted); }
.tw-footer .wp-block-social-links a:hover { color: var(--tw-accent); }
@media (max-width: 700px) {
	.tw-footer__col { flex-basis: 45%; }
}

/* ============================================================================
   Sitewide branded header + footer (brand chrome on every page).
   The dark-mode toggle (ncmfse/toggle-dark-mode) is left untouched.
   ========================================================================== */
:root { --tw-brand-pink: #e6197f; --tw-brand-display: "Anton", "Bricolage Grotesque", ui-sans-serif, system-ui, sans-serif; }

/* ---- Header (top bar removed; brand strip + dark toggle now on main header) ---- */
.tw-topbar { display: none !important; }
.global-header {
	border-top: 3px solid var(--tw-brand-pink);
	border-bottom: 2px solid var(--tw-ink) !important;
	padding-top: 10px !important;
	padding-bottom: 10px !important;
	/* The Tools dropdown (added 2026-08-18) has z-index:2, but that number only
	   ever competes within a stacking context — and .global-header had
	   position:relative with no z-index of its own, so it never created one.
	   .tw-sidebar-sticky (position:sticky, article pages) DOES create a
	   stacking context just by being sticky, with no z-index needed, so it
	   painted over the open dropdown despite z-index:2 "winning" on paper.
	   Giving the header its own elevated stacking context fixes it for any
	   sticky/positioned element on the page, not just this one sidebar. */
	position: relative;
	z-index: 30;
}
/* Header must stay ONE row at every width.
   The block markup nests three wrapping flex groups. Two problems fell out:
   1. The outer group wrapped, dropping nav + actions onto a second row (mobile).
   2. Each inner cluster also wrapped, so the decorative "/" separator fell to a
      second flex line and its 18.75px row-gap added ~50px of phantom header
      height even though the tallest real child is 32px.
   nowrap on all three fixes both; min-width:0 lets them shrink instead. */
.global-header > .wp-block-group.alignwide,
.global-header > .wp-block-group.alignwide > .wp-block-group {
	flex-wrap: nowrap !important;
	align-items: center;
}
.global-header > .wp-block-group.alignwide > .wp-block-group { min-width: 0; }

/* Nav links inherited line-height as a LENGTH (88.32px against a 14.72px font,
   a ratio of 6) from a larger-font ancestor, so every desktop nav item was 88px
   tall and pushed the header to 113px. Reset to a ratio and pad for a real
   click target: item 35px, header 60px. */
/* !important is required: .wp-block-navigation.is-style-global-header ... sets
   line-height:4 at higher specificity, which is what made the items 88-106px. */
.global-header .wp-block-navigation-item__content {
	line-height: 1.2 !important;
	padding-block: .55rem !important;
}

/* Core collapses the nav to a hamburger only below 600px, so from 600px up the
   full menu rendered and overflowed the header. Measured need: logo 183px +
   nav 607px + actions 65px + gaps/separators = ~940px of content width, and the
   constrained layout takes a ~187px gutter, so the menu only fits from ~1130px.
   Threshold set at 1199px for headroom. If nav items are added later,
   re-measure: enough of them will wrap the header again. */
@media (max-width: 1199px) {
	.global-header .wp-block-navigation__responsive-container-open:not(.always-shown) { display: flex !important; }
	.global-header .wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) { display: none !important; }
	.global-header .wp-block-navigation__responsive-container.is-menu-open { display: flex !important; }
}
.tw-header-actions { align-items: center; gap: .9rem; }
.tw-header-actions .wp-block-ncmfse-toggle-dark-mode { display: inline-flex; align-items: center; }
.tw-search-open {
	background: none; border: 0; padding: 4px; cursor: pointer;
	display: inline-flex; align-items: center;
	color: var(--tw-muted); transition: color .14s ease;
}
.tw-search-open:hover { color: var(--tw-brand-pink); }
.dark .global-header { border-bottom-color: var(--tw-line) !important; }
.global-header .wp-block-navigation a,
.global-header .wp-block-navigation .wp-block-navigation-item__content {
	text-transform: uppercase; font-weight: 600; letter-spacing: .035em; font-size: .92rem;
	transition: color .14s ease;
}
.global-header .wp-block-navigation-item:hover > .wp-block-navigation-item__content,
.global-header .wp-block-navigation .current-menu-item > .wp-block-navigation-item__content,
.global-header .wp-block-navigation .current_page_item > .wp-block-navigation-item__content {
	color: var(--tw-brand-pink) !important;
}

/* ---- Footer (brutalist brand band, black in both modes) ---- */
.tw-sfooter {
	background: #0a0a0a; color: #f5f5f7;
	border-top: 4px solid var(--tw-brand-pink);
	padding-block: clamp(2.5rem, 5vw, 4rem) 1.5rem;
	margin-top: clamp(2rem, 5vw, 4rem);
}
.tw-sfooter .tw-wrap { max-width: 1180px; margin-inline: auto; padding-inline: clamp(1rem, 4vw, 3rem); }
.tw-sfooter__top { padding-bottom: 1.6rem; margin-bottom: 1.9rem; border-bottom: 2px solid rgba(255,255,255,.14); gap: 1.2rem; }
.tw-sfooter__wordmark {
	font-family: var(--tw-brand-display) !important; text-transform: uppercase; font-weight: 400 !important;
	font-size: clamp(1.6rem, 1.1rem + 2vw, 2.8rem) !important; color: #fff !important; line-height: 1; margin: 0 !important; letter-spacing: .01em;
}
.tw-sfooter__pink { color: var(--tw-brand-pink); }
.tw-sfooter__socials a { color: #fff !important; }
.tw-sfooter__socials a:hover { color: var(--tw-brand-pink) !important; transform: translateY(-2px); }
.tw-sfooter__cols { gap: 2rem; align-items: flex-start; }
.tw-sfooter__brandcol { flex: 1 1 240px; max-width: 340px; }
.tw-sfooter__col { flex: 1 1 140px; gap: .55rem !important; }
.tw-sfooter__tagline { color: rgba(255,255,255,.6); font-size: .95rem; line-height: 1.55; margin: 0; }
.tw-sfooter__h {
	font-family: var(--tw-brand-display) !important; text-transform: uppercase; font-weight: 400 !important;
	letter-spacing: .06em; font-size: 1rem !important; color: var(--tw-brand-pink) !important; margin: 0 0 .5rem !important;
}
.tw-sfooter__nav a { color: rgba(255,255,255,.72) !important; text-decoration: none; font-size: .92rem; transition: color .14s ease; }
.tw-sfooter__nav a:hover { color: #fff !important; }
.tw-sfooter__nav .wp-block-navigation__container { gap: .5rem !important; }
.tw-sfooter__bar { border-top: 2px solid rgba(255,255,255,.14); margin-top: 2.2rem; padding-top: 1.2rem; gap: 1rem; }
.tw-sfooter__copy { color: rgba(255,255,255,.5); font-size: .85rem; margin: 0; }
@media (max-width: 720px) { .tw-sfooter__col { flex-basis: 44%; } }

/* ============================================================================
   Single post → brand: harden the AEO components (brutalist edges, pink offset,
   Anton labels). Body prose stays clean/readable.
   ========================================================================== */
.tw-answer {
	border: 2px solid var(--tw-ink);
	border-left: 6px solid var(--tw-accent);
	border-radius: 4px;
	box-shadow: 5px 5px 0 var(--tw-accent);
}
.tw-tldr, .tw-verdict, .tw-author {
	border: 2px solid var(--tw-ink) !important;
	border-radius: 4px !important;
	box-shadow: 5px 5px 0 var(--tw-accent) !important;
}
.tw-answer__label, .tw-tldr__label {
	font-family: var(--tw-brand-display); text-transform: uppercase; letter-spacing: .08em;
}
.tw-faq__q, .tw-faq__item, .tw-author__name {
	font-family: var(--tw-brand-display) !important;
	text-transform: uppercase; letter-spacing: .01em; font-weight: 400 !important;
}
.tw-faq { border: 2px solid var(--tw-ink); border-radius: 4px; padding: 0 1rem; box-shadow: 5px 5px 0 var(--tw-accent); }
.tw-faq > h2 { padding-top: 1rem; }
.tw-faq__item { border-top: 2px solid var(--tw-line); }
.tw-tldr li::before { border-color: var(--tw-accent); }
/* Category pill on the article header → brand block */
.tw-post-header .wp-block-post-terms.is-style-pill a {
	border: 2px solid var(--tw-ink); border-radius: 3px;
	font-family: var(--tw-brand-display); text-transform: uppercase; letter-spacing: .04em;
	font-weight: 400; /* Anton 400-only — drop the inherited 600 faux-bold */
}

/* ============================================================================
   Mobile drawer → brand (black overlay, big Anton links, pink accents).
   ========================================================================== */
.wp-block-navigation__responsive-container.is-menu-open {
	background-color: #0a0a0a !important;
	color: #fff;
}
.is-menu-open .wp-block-navigation__responsive-container-content {
	padding-top: 1rem;
}
.is-menu-open .wp-block-navigation__container { gap: 0 !important; }
.is-menu-open .wp-block-navigation__container > .wp-block-navigation-item {
	width: 100%;
	border-bottom: 1px solid rgba(255,255,255,.12);
}
.is-menu-open .wp-block-navigation-item__content,
.is-menu-open .wp-block-navigation__responsive-container-content a {
	font-family: var(--tw-brand-display) !important;
	text-transform: uppercase !important;
	font-weight: 400 !important;
	font-size: clamp(1.5rem, 1.1rem + 2vw, 2rem) !important;
	letter-spacing: .02em;
	color: #fff !important;
	padding-block: .5rem;
	display: block;
	transition: color .14s ease;
}
.is-menu-open .wp-block-navigation-item__content:hover,
.is-menu-open .current-menu-item > .wp-block-navigation-item__content { color: var(--tw-brand-pink) !important; }
.is-menu-open .wp-block-navigation__responsive-container-close { color: #fff; }
.is-menu-open .wp-block-navigation__responsive-container-close:hover { color: var(--tw-brand-pink); }
.is-menu-open .wp-block-navigation__submenu-container { background: transparent !important; }
.is-menu-open .wp-block-navigation__submenu-container a { font-size: 1.1rem !important; color: rgba(255,255,255,.7) !important; }

/* ============================================================================
   Sidebar cards → brand (brutalist tiles: ink border + pink offset shadow).
   Only the outer card wrappers change; round social/avatar chips stay round.
   ========================================================================== */
.tw-single-aside .wp-block-group.has-base-2-background-color.has-border-color {
	border: 2px solid var(--tw-ink) !important;
	border-radius: 4px !important;
	box-shadow: 5px 5px 0 var(--tw-accent) !important;
	background: var(--tw-card) !important;
}
.tw-single-aside h2 {
	font-family: var(--tw-brand-display) !important;
	font-weight: 400 !important;
	font-size: 0.95rem !important;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: var(--tw-ink);
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}
.tw-single-aside h2::before {
	content: "";
	width: 20px; height: 3px;
	background: var(--tw-accent);
	border-radius: 2px;
}
.tw-single-aside .wp-block-categories a:hover,
.tw-single-aside .wp-block-navigation a:hover { color: var(--tw-accent); }
/* Sidebar buttons → brand block (square, ink border, pink offset) */
.tw-single-aside .wp-block-button__link,
.tw-single-aside .wp-element-button {
	border-radius: 3px !important;
	border: 2px solid var(--tw-ink);
	font-family: var(--tw-brand-display);
	text-transform: uppercase;
	letter-spacing: .03em;
}

/* ============================================================================
   Share row (branded, brutalist icon tiles) under single posts.
   ========================================================================== */
.tw-share {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.7rem 0.9rem;
	max-width: var(--tw-measure);
	margin: 2.4rem 0 0.4rem;
	padding-top: 1.4rem;
	border-top: 2px solid var(--tw-line);
}
.tw-share__title {
	font-family: var(--tw-brand-display);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-size: 0.95rem;
	color: var(--tw-ink);
}
.tw-share__btns { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.tw-share__btn {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	height: 40px;
	padding: 0 0.7rem;
	border: 2px solid var(--tw-ink);
	border-radius: 4px;
	background: var(--tw-card);
	color: var(--tw-ink);
	cursor: pointer;
	text-decoration: none !important;
	transition: transform .12s ease, box-shadow .12s ease, background-color .12s ease, color .12s ease;
}
.tw-share__btn:not(.tw-share__copy) { width: 40px; padding: 0; justify-content: center; }
.tw-share__btn:hover {
	background: var(--tw-accent);
	color: #fff;
	transform: translate(-1px, -1px);
	box-shadow: 3px 3px 0 var(--tw-ink);
}
.tw-share__label {
	font-family: var(--tw-brand-display);
	text-transform: uppercase;
	letter-spacing: 0.03em;
	font-size: 0.82rem;
	line-height: 1;
}
.tw-share__copy.is-copied {
	background: var(--tw-accent);
	color: #fff;
	box-shadow: 3px 3px 0 var(--tw-ink);
}
.dark .tw-share__btn { border-color: var(--tw-line); }
.dark .tw-share__btn:hover { box-shadow: 3px 3px 0 var(--tw-accent); }

/* ---- Post tags (share removed) ---- */
.tw-tags { max-width: var(--tw-measure); }
.tw-tags .wp-block-post-terms.is-style-pill a {
	background: transparent;
	color: var(--tw-ink);
	border: 2px solid var(--tw-ink);
	border-radius: 3px;
	font-family: var(--tw-brand-display);
	text-transform: uppercase;
	letter-spacing: .03em;
	font-weight: 400;
}
.tw-tags .wp-block-post-terms.is-style-pill a:hover { background: var(--tw-accent); color: #fff; border-color: var(--tw-accent); }
.dark .tw-tags .wp-block-post-terms.is-style-pill a { border-color: var(--tw-line); color: var(--tw-ink); }

/* ============================================================================
   Floating meta bar (like / bookmark / share / progress) → brand pill.
   Keeps the pill shape + all ncmfse interactivity; adds ink border + pink drop.
   ========================================================================== */
.tw-floatbar .wp-block-template-part > .wp-block-group.has-background {
	border: 2px solid var(--tw-ink) !important;
	box-shadow: 4px 4px 0 var(--tw-accent) !important;
}
.dark .tw-floatbar .wp-block-template-part > .wp-block-group.has-background { border-color: var(--tw-line) !important; }

/* ============================================================================
   Related posts ("More posts") → brutalist cards + brand heading.
   ========================================================================== */
.tw-more { border-top: 2px solid var(--tw-ink) !important; }
.dark .tw-more { border-top-color: var(--tw-line) !important; }
.tw-more__title {
	font-family: var(--tw-brand-display) !important;
	text-transform: uppercase;
	font-weight: 400 !important;
	letter-spacing: .01em;
	line-height: 1.05;
}
.tw-more__title mark { color: var(--tw-muted) !important; }
.tw-more__track { padding-bottom: .5rem; }

.tw-related-card {
	flex: 0 0 auto;
	background: var(--tw-card);
	border: 2px solid var(--tw-ink);
	border-radius: 5px;
	box-shadow: 5px 5px 0 var(--tw-accent);
	overflow: hidden;
	transition: transform .14s ease, box-shadow .14s ease;
}
.dark .tw-related-card { border-color: var(--tw-line); }
.tw-related-card:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--tw-accent); }
.tw-related-card__img,
.tw-related-card__img img {
	width: 100%;
	display: block;
	border-radius: 0 !important;
}
.tw-related-card__img img { aspect-ratio: 16 / 10; object-fit: cover; border-bottom: 2px solid var(--tw-ink); }
.dark .tw-related-card__img img { border-bottom-color: var(--tw-line); }
.tw-related-card__body { padding: .9rem 1rem 1.1rem; gap: .55rem; }
.tw-related-card__cat.wp-block-post-terms.is-style-pill a {
	background: var(--tw-accent); color: #fff; border: none;
	font-family: var(--tw-brand-display); text-transform: uppercase; letter-spacing: .03em;
	font-size: .74rem; padding: .2em .6em;
}
.wp-block-post-title.tw-related-card__title {
	font-family: var(--tw-brand-display) !important;
	text-transform: uppercase;
	font-weight: 400 !important;
	font-size: 1.02rem !important;
	line-height: 1.14 !important;
	letter-spacing: .005em;
	margin: 0;
}
.tw-related-card__title a { color: var(--tw-ink); text-decoration: none; }
.tw-related-card__title a:hover { color: var(--tw-accent); }
.tw-related-card__meta { color: var(--tw-muted); font-size: .78rem; }
.tw-related-card__meta a, .tw-related-card__meta p { color: var(--tw-muted); margin: 0; }

/* ============================================================================
   Sidebar → Recent Posts list (compact rows).
   ========================================================================== */
.tw-recent__h {
	font-family: var(--tw-brand-display) !important;
	font-weight: 400 !important;
	text-transform: uppercase;
	letter-spacing: .04em;
	font-size: .95rem !important;
	color: var(--tw-ink) !important;
	margin: 0 !important;
}
.tw-recent__item { align-items: center; }
.tw-recent__img { flex: 0 0 auto; }
.tw-recent__img img {
	width: 78px; height: 58px;
	object-fit: cover;
	border: 2px solid var(--tw-ink);
	border-radius: 4px;
	display: block;
}
.dark .tw-recent__img img { border-color: var(--tw-line); }
.tw-recent__txt { min-width: 0; }
.wp-block-post-title.tw-recent__title {
	font-family: var(--tw-font-display) !important;
	text-transform: none !important;
	font-weight: 600 !important;
	font-size: .92rem !important;
	line-height: 1.25 !important;
	letter-spacing: -0.01em;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.tw-recent__title a { color: var(--tw-ink); text-decoration: none; }
.tw-recent__title a:hover { color: var(--tw-accent); }
.tw-recent__date { color: var(--tw-muted); font-size: .74rem; }
.tw-recent__date a, .tw-recent__date { color: var(--tw-muted) !important; }

/* "More posts" snap-scroll arrows → brand square buttons.
   The visible pill is the plugin's inner `.icon-container` (radius 99px, grey
   border) inside the <a>, NOT the <a> itself — so style that, and flatten the
   <a> wrapper so it doesn't add a second box. */
.tw-more__head .wp-block-ncmfse-snap-scroll-arrow-previous,
.tw-more__head .wp-block-ncmfse-snap-scroll-arrow-next {
	border: 0 !important; background: transparent !important; padding: 0 !important; border-radius: 0 !important; box-shadow: none !important;
}
.tw-more__head .wp-block-ncmfse-snap-scroll-arrow-previous .icon-container,
.tw-more__head .wp-block-ncmfse-snap-scroll-arrow-next .icon-container {
	display: inline-flex !important; align-items: center; justify-content: center;
	width: 48px !important; height: 48px !important; padding: 0 !important; box-sizing: border-box;
	border: 2px solid var(--tw-ink, #16181d) !important;
	border-radius: 6px !important;
	background: var(--tw-surface, #fff) !important;
	color: var(--tw-ink, #16181d) !important;
	transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.tw-more__head .wp-block-ncmfse-snap-scroll-arrow-previous .icon-container svg,
.tw-more__head .wp-block-ncmfse-snap-scroll-arrow-next .icon-container svg { width: 20px !important; height: 20px !important; color: inherit; }
.tw-more__head .wp-block-ncmfse-snap-scroll-arrow-previous:hover .icon-container,
.tw-more__head .wp-block-ncmfse-snap-scroll-arrow-next:hover .icon-container {
	background: var(--tw-accent, #ce1270) !important; border-color: var(--tw-accent, #ce1270) !important; color: #fff !important;
}
.tw-more__head .wp-block-ncmfse-snap-scroll-arrow-previous[aria-disabled="true"],
.tw-more__head .wp-block-ncmfse-snap-scroll-arrow-next[aria-disabled="true"] { opacity: .3; pointer-events: none; }
.dark .tw-more__head .wp-block-ncmfse-snap-scroll-arrow-previous .icon-container,
.dark .tw-more__head .wp-block-ncmfse-snap-scroll-arrow-next .icon-container { border-color: var(--tw-line) !important; background: transparent !important; color: var(--tw-ink) !important; }

/* ============================================================================
   Sidebar "We are on social" cards → brand brutalist chips.
   ========================================================================== */
.tw-social .button-outline {
	align-items: center;
	border: 2px solid var(--tw-ink);
	border-radius: 5px;
	background: var(--tw-card, #fff);
	box-shadow: 3px 3px 0 var(--tw-ink);
	text-decoration: none;
	transition: transform .12s ease, box-shadow .12s ease;
}
.tw-social .button-outline:hover {
	transform: translate(-2px, -2px);
	box-shadow: 5px 5px 0 var(--tw-accent);
}
.dark .tw-social .button-outline {
	border-color: var(--tw-line);
	box-shadow: 3px 3px 0 var(--tw-line);
}
/* icon chip: pink-soft squircle with ink edge (was a plain grey circle) */
.tw-social .button-outline .has-background {
	background: var(--tw-accent-soft) !important;
	border: 1.5px solid var(--tw-ink);
	border-radius: 8px !important;
}
.dark .tw-social .button-outline .has-background { border-color: var(--tw-line); }
.tw-social .button-outline .wp-social-link,
.tw-social .button-outline .wp-block-social-links { background: transparent !important; }
/* name → brand ink, tighter */
.tw-social .button-outline p:first-child { color: var(--tw-ink) !important; font-weight: 700 !important; letter-spacing: -0.01em; }
.tw-social .button-outline p + p { color: var(--tw-muted) !important; }

/* ---- Typography steps ----------------------------------------------------
   WIRED redefines its size tokens inside media queries rather than restyling
   each component, so a role changes size in exactly one place. Same mechanism
   here, stepped at the theme's existing 720/920 breakpoints.

   Note what does NOT appear below: --tw-size-body. Body copy holds 19px from
   320px to 4K by design. */
@media (min-width: 720px) {
	:root {
		--tw-size-hed: 2.75rem;      /* 44px */
		--tw-lh-hed:   1.09;
	}
}
@media (min-width: 920px) {
	:root {
		--tw-size-hed:    3.375rem;  /* 54px */
		--tw-lh-hed:      1.04;
		--tw-size-subhed: 2.125rem;  /* 34px */
		--tw-lh-subhed:   1.18;
	}
}
