:root {
  color-scheme: light;
  --stock: #eceee6;
  --paper: #f8f9f3;
  --ink: #121510;
  --muted: #656a60;
  --quiet: #91978c;
  --line: #cbd0c4;
  --line-dark: #979f91;
  --acid: #dff56a;
  --acid-soft: #eff8b8;
  --coral: #ff5b3d;
  --blue: #2945f5;
  --mark-key: #f2dc55;
  --mark-evidence: #9fe0c3;
  --mark-question: #c9b7f4;
  --mark-action: #ffad98;
  --white: #fffef9;
  --black: #0d100c;
  --ui: "Archivo", "Arial Narrow", sans-serif;
  --reading: "Literata", Georgia, serif;
  --utility: "IBM Plex Mono", monospace;
  --topbar-height: 68px;
  --footer-height: 42px;
  --wire-row-height: 87px;
  --wire-lens-top: 0px;
  --wire-lens-height: min(390px, calc(100dvh - var(--topbar-height) - var(--footer-height) - var(--wire-lens-top) - 10px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  scrollbar-color: var(--coral) var(--black);
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  width: 9px;
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--coral);
  border: 2px solid var(--black);
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(18, 21, 16, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 21, 16, 0.035) 1px, transparent 1px),
    var(--stock);
  background-size: 48px 48px;
  font-family: var(--ui);
  font-variation-settings: "wdth" 100;
}

body:not(.is-reading) {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
.wire-highlight:focus-visible,
.wire-story:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
}

kbd {
  font-family: var(--utility);
  font-size: 0.76em;
}

.wire-topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  height: var(--topbar-height);
  display: grid;
  grid-template-columns: minmax(250px, 1fr) minmax(260px, 430px) minmax(330px, 1fr);
  align-items: center;
  gap: 20px;
  padding: 0 24px;
  color: var(--white);
  background: var(--black);
  border-bottom: 1px solid #353b32;
}

.wire-brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.wire-pulse {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(255, 91, 61, 0.14);
  animation: wirePulse 2.8s ease-in-out infinite;
}

.wire-wordmark {
  font-size: 19px;
  font-weight: 900;
  font-variation-settings: "wdth" 78;
  letter-spacing: -0.02em;
}

.wire-desk-name {
  padding-left: 10px;
  border-left: 1px solid #3b4038;
  color: #aeb5aa;
  font-family: var(--utility);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.wire-search {
  height: 38px;
  display: grid;
  grid-template-columns: 17px minmax(0, 1fr) auto;
  gap: 9px;
  align-items: center;
  padding: 0 10px 0 13px;
  border: 1px solid #3c4239;
  border-radius: 2px;
  background: #1b1f19;
}

.wire-search:focus-within {
  border-color: var(--acid);
}

.wire-search svg,
.wire-icon-button svg,
.wire-drawer-button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wire-search svg {
  color: #8f978a;
}

.wire-search input {
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--white);
  background: transparent;
  font-size: 13px;
}

.wire-search input::placeholder {
  color: #7d8478;
}

.wire-search kbd,
.wire-drawer-button kbd {
  min-width: 20px;
  padding: 2px 5px;
  border: 1px solid #4e554a;
  color: #b9c1b5;
  background: #262b24;
  text-align: center;
}

.wire-top-actions {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.wire-account-button {
  min-width: 0;
  height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 10px;
  color: var(--white);
  background: #1b1f19;
  border: 1px solid #444b40;
  border-radius: 999px;
  font-family: var(--utility);
  font-size: 9px;
}

.wire-account-button[hidden] {
  display: none;
}

.wire-account-button img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
}

.wire-account-button:hover,
.wire-account-button[aria-expanded="true"] {
  color: var(--black);
  background: var(--acid);
  border-color: var(--acid);
}

.wire-account-panel {
  position: fixed;
  z-index: 70;
  top: calc(var(--topbar-height) + 9px);
  right: 22px;
  width: min(290px, calc(100vw - 24px));
  display: grid;
  gap: 7px;
  padding: 18px;
  color: var(--white);
  background: var(--black);
  border: 2px solid var(--coral);
  box-shadow: 7px 7px 0 rgba(18, 21, 16, 0.2);
}

.wire-account-panel[hidden],
.wire-auth-gate[hidden] {
  display: none;
}

.wire-icon-button[hidden] {
  display: none;
}

.wire-account-panel strong {
  font-size: 20px;
}

.wire-account-panel > span:not(.wire-label) {
  color: #aeb5aa;
  font-family: var(--utility);
  font-size: 10px;
}

.wire-account-panel button {
  min-height: 36px;
  margin-top: 8px;
  color: var(--black);
  background: var(--acid);
  border: 0;
  font-family: var(--utility);
  font-size: 10px;
  text-transform: uppercase;
}

.wire-account-panel button + button {
  margin-top: 0;
}

.wire-account-panel button.is-danger {
  color: var(--white);
  background: transparent;
  border: 1px solid var(--coral);
}

.wire-auth-gate {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(rgba(18, 21, 16, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 21, 16, 0.07) 1px, transparent 1px),
    var(--stock);
  background-size: 48px 48px;
}

.wire-auth-card {
  width: min(570px, 100%);
  padding: clamp(28px, 6vw, 58px);
  background: var(--white);
  border: 3px solid var(--ink);
  box-shadow: 12px 12px 0 var(--coral);
}

.wire-auth-mark {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 42px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.wire-auth-mark i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(255, 91, 61, 0.14);
}

.wire-auth-card h1 {
  margin: 9px 0 14px;
  font-size: clamp(40px, 8vw, 72px);
  font-weight: 880;
  font-variation-settings: "wdth" 82;
  letter-spacing: -0.055em;
  line-height: 0.91;
}

.wire-auth-card p {
  max-width: 43ch;
  margin: 0 0 28px;
  color: var(--muted);
  font-family: var(--reading);
  font-size: 16px;
  line-height: 1.55;
}

.wire-auth-card button {
  width: 100%;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  color: var(--white);
  background: var(--blue);
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  font-weight: 750;
}

.wire-auth-card button:disabled {
  opacity: 0.6;
  cursor: wait;
}

.wire-auth-card button svg {
  width: 22px;
  height: 22px;
  padding: 2px;
  background: var(--white);
}

.wire-auth-card small {
  display: block;
  margin-top: 16px;
  color: var(--quiet);
  font-family: var(--utility);
  font-size: 9px;
  text-align: center;
}

.wire-live-label {
  min-width: 0;
  overflow: hidden;
  color: #aeb5aa;
  font-family: var(--utility);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wire-icon-button,
.wire-drawer-button,
.wire-drawer-close {
  height: 36px;
  border: 1px solid #444b40;
  border-radius: 2px;
  color: var(--white);
  background: #1b1f19;
}

.wire-drawer-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wire-notebook-link {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 12px;
  color: var(--black);
  background: var(--acid);
  border: 1px solid var(--acid);
  font-family: var(--utility);
  font-size: 10px;
  text-decoration: none;
  text-transform: uppercase;
}

.wire-notebook-link span {
  min-width: 19px;
  padding: 2px 4px;
  color: var(--white);
  background: var(--blue);
  text-align: center;
}

.wire-icon-button {
  width: 38px;
  display: grid;
  place-items: center;
}

.wire-icon-button:hover,
.wire-drawer-button:hover {
  color: var(--black);
  background: var(--acid);
  border-color: var(--acid);
}

.wire-icon-button.is-loading svg {
  animation: spin 900ms linear infinite;
}

.wire-drawer-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 10px 0 12px;
  font-family: var(--utility);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.wire-drawer-button > svg {
  display: none;
}

.wire-drawer-button:hover kbd {
  color: var(--black);
  border-color: rgba(18, 21, 16, 0.25);
  background: rgba(18, 21, 16, 0.08);
}

.wire-drawer {
  position: fixed;
  z-index: 25;
  top: calc(var(--topbar-height) + 10px);
  left: 50%;
  width: min(1060px, calc(100vw - 32px));
  max-height: calc(100dvh - var(--topbar-height) - var(--footer-height) - 30px);
  overflow: auto;
  transform: translateX(-50%);
  padding: 26px 28px 30px;
  color: var(--white);
  background: var(--black);
  border: 2px solid var(--coral);
  box-shadow: 12px 12px 0 rgba(18, 21, 16, 0.2);
}

.wire-drawer[hidden] {
  display: none;
}

.wire-drawer-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid #383e35;
}

.wire-drawer-head h2 {
  max-width: 700px;
  margin: 5px 0 0;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 860;
  font-variation-settings: "wdth" 86;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.wire-saved-searches {
  margin: 18px 0 0;
  padding: 16px;
  background: #171b15;
  border: 1px solid #3d4439;
}

.wire-saved-searches[hidden] {
  display: none;
}

.wire-saved-search-create {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto;
  gap: 8px;
  align-items: end;
}

.wire-saved-search-create label span {
  display: block;
  margin-bottom: 5px;
  color: #919a8d;
  font-family: var(--utility);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wire-saved-search-create input {
  width: 100%;
  height: 36px;
  padding: 0 10px;
  color: var(--white);
  background: var(--black);
  border: 1px solid #444b40;
  outline: 0;
}

.wire-saved-search-create input:focus {
  border-color: var(--acid);
}

.wire-saved-search-create button {
  min-height: 36px;
  padding: 0 13px;
  color: var(--black);
  background: var(--acid);
  border: 1px solid var(--acid);
  font-family: var(--utility);
  font-size: 9px;
  text-transform: uppercase;
}

.wire-saved-search-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 11px;
}

.wire-saved-search-chip {
  display: inline-flex;
  align-items: stretch;
  color: var(--white);
  border: 1px solid #444b40;
  border-radius: 999px;
  overflow: hidden;
}

.wire-saved-search-chip button {
  min-height: 31px;
  padding: 0 10px;
  color: inherit;
  background: transparent;
  border: 0;
  font-family: var(--utility);
  font-size: 9px;
}

.wire-saved-search-chip button:last-child {
  width: 30px;
  padding: 0;
  color: #919a8d;
  border-left: 1px solid #444b40;
}

.wire-drawer-close {
  padding: 0 14px;
  font-family: var(--utility);
  font-size: 10px;
  text-transform: uppercase;
}

.wire-filter-group {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  padding: 20px 0 0;
}

.wire-filter-group + .wire-filter-group {
  margin-top: 18px;
  border-top: 1px solid #30352d;
}

.wire-filter-title {
  color: #919a8d;
  font-family: var(--utility);
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.wire-filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.wire-filter-chip {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 12px;
  border: 1px solid #444b40;
  border-radius: 999px;
  color: #cbd1c7;
  background: transparent;
  font-size: 12px;
  font-weight: 650;
}

.wire-filter-chip em {
  color: #838b7e;
  font-family: var(--utility);
  font-size: 9px;
  font-style: normal;
}

.wire-filter-chip:hover,
.wire-filter-chip.is-active {
  color: var(--black);
  background: var(--acid);
  border-color: var(--acid);
}

.wire-filter-chip.is-active em,
.wire-filter-chip:hover em {
  color: rgba(18, 21, 16, 0.64);
}

.wire-page {
  width: min(1180px, calc(100vw - 64px));
  min-height: 100vh;
  margin: 0 auto;
  padding: calc(var(--topbar-height) + 34px) 0 calc(var(--footer-height) + 66px);
}

.wire-edition-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: end;
  padding: 0 0 20px;
}

.wire-label {
  color: var(--coral);
  font-family: var(--utility);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.wire-edition-head h1 {
  margin: 8px 0 0;
  font-size: clamp(38px, 4.2vw, 56px);
  font-weight: 900;
  font-variation-settings: "wdth" 78;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.wire-edition-meta {
  display: grid;
  justify-items: end;
  gap: 5px;
  padding-bottom: 3px;
  font-family: var(--utility);
  font-size: 10px;
  text-align: right;
  text-transform: uppercase;
}

.wire-edition-meta strong {
  color: var(--blue);
  font-size: 17px;
}

.wire-edition-meta span:last-child {
  color: var(--muted);
}

.wire-stream-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  gap: 18px;
  align-items: start;
}

.wire-stream {
  position: relative;
  min-width: 0;
  background: var(--paper);
  border: 1px solid var(--line-dark);
  border-top: 5px solid var(--ink);
  box-shadow: 0 20px 60px rgba(18, 21, 16, 0.08);
  overflow-anchor: none;
}

.wire-story {
  position: relative;
  min-width: 0;
  border-bottom: 1px solid var(--line);
}

.wire-story:last-child {
  border-bottom: 0;
}

.wire-compact {
  min-height: 86px;
  display: grid;
  grid-template-columns: 54px 150px minmax(0, 1fr) 82px 38px;
  gap: 14px;
  align-items: center;
  padding: 11px 18px 11px 13px;
  cursor: pointer;
}

.wire-story:not(.is-selected) .wire-compact:hover {
  background: #f0f2ea;
}

.wire-story.is-read:not(.is-selected) .wire-compact {
  opacity: 0.58;
}

.wire-number {
  color: var(--quiet);
  font-family: var(--utility);
  font-size: 10px;
}

.wire-compact-source {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.wire-compact-source strong {
  overflow: hidden;
  font-family: var(--utility);
  font-size: 9px;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.wire-compact-source span,
.wire-compact-time {
  color: var(--muted);
  font-family: var(--utility);
  font-size: 9px;
  text-transform: uppercase;
}

.wire-compact-title {
  min-width: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 790;
  font-variation-settings: "wdth" 88;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.wire-compact-title > span:last-child {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.wire-unread {
  width: 7px;
  height: 7px;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--blue);
}

.wire-compact-time {
  text-align: right;
}

.wire-save-icon,
.wire-lead-action,
.wire-reader-action {
  border: 1px solid currentColor;
  color: var(--ink);
  background: transparent;
}

.wire-save-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-color: var(--line);
  border-radius: 50%;
}

.wire-save-icon svg,
.wire-lead-action svg,
.wire-reader-action svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wire-save-icon.is-saved {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.wire-save-icon.is-held,
.wire-lead-action.is-held {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.wire-save-icon.is-saved svg {
  fill: currentColor;
}

.wire-lead {
  display: none;
}

.wire-story.is-selected {
  z-index: 2;
  margin: 22px -13px 24px;
  border: 2px solid var(--ink);
  background: var(--acid);
  box-shadow: 9px 9px 0 var(--coral);
}

body:not(.is-reading) .wire-page {
  position: fixed;
  inset: var(--topbar-height) 0 var(--footer-height);
  width: 100%;
  min-height: 0;
  margin: 0;
  padding: 0;
}

body:not(.is-reading) .wire-edition-head {
  display: none;
}

body:not(.is-reading) .wire-stream-layout {
  display: block;
  height: 100%;
}

body:not(.is-reading) .wire-position {
  display: none;
}

body:not(.is-reading) .wire-stream {
  height: 100%;
  overflow: hidden;
  border-right: 0;
  border-left: 0;
  box-shadow: none;
  touch-action: pan-x;
  overscroll-behavior: none;
  -webkit-user-select: none;
  user-select: none;
}

body:not(.is-reading) .wire-lens {
  position: absolute;
  inset: var(--wire-lens-top) 0 auto;
  z-index: 4;
  height: var(--wire-lens-height);
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-top: 7px solid var(--coral);
  box-shadow: inset -9px 0 0 var(--coral), 0 8px 0 var(--coral);
  cursor: pointer;
}

body:not(.is-reading) .wire-lens .wire-lead,
body:not(.is-reading) .wire-lens-panel,
body:not(.is-reading) .wire-lens-panel .wire-lead {
  height: 100%;
}

body:not(.is-reading) .wire-lens .wire-lead-main {
  padding-top: 26px;
  padding-bottom: 20px;
}

body:not(.is-reading) .wire-lens .wire-lead-meta {
  margin-bottom: 14px;
}

body:not(.is-reading) .wire-lens .wire-lead-summary {
  margin-top: 14px;
}

body:not(.is-reading) .wire-lens .wire-lead-actions {
  margin-top: 16px;
}

.wire-tape {
  position: absolute;
  inset: var(--wire-lens-top) 0 auto;
  z-index: 1;
  transform: translate3d(0, calc(0px - var(--wire-tape-offset, 0px)), 0);
  will-change: transform;
}

.wire-tape-story {
  height: var(--wire-row-height);
  overflow: hidden;
  background: var(--paper);
  will-change: transform;
}

.wire-tape-story.is-after-lens {
  transform: translate3d(0, calc(var(--wire-lens-height) - var(--wire-row-height)), 0);
}

.wire-tape .wire-compact {
  height: 100%;
  min-height: 0;
}

.wire-lens-panel {
  position: absolute;
  inset: 0;
  will-change: transform, opacity, clip-path;
}

.wire-lens-panel.is-incoming {
  z-index: 2;
}

.wire-lens.is-transitioning {
  pointer-events: none;
}

.wire-stream.is-touch-navigating .wire-lens {
  box-shadow: inset -9px 0 0 var(--coral), 0 8px 0 var(--coral), 0 0 0 3px rgba(41, 69, 245, 0.32);
}

body:not(.is-reading) .wire-lead-main {
  overflow: hidden;
}

body:not(.is-reading) .wire-lead-story {
  grid-template-columns: minmax(0, 1fr);
}

body:not(.is-reading) .wire-lead h2 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.wire-story.is-selected .wire-compact {
  display: none;
}

.wire-story.is-selected .wire-lead {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  background: var(--acid);
}

.wire-lead-index {
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 0;
  color: var(--white);
  background: var(--ink);
  font-family: var(--utility);
  font-size: 10px;
  letter-spacing: 0.08em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  cursor: pointer;
}

.wire-lead-index:hover {
  color: var(--acid);
}

.wire-lead-main {
  min-width: 0;
  padding: clamp(22px, 3vw, 32px);
}

.wire-lead-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.wire-tag {
  min-height: 22px;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  border: 1px solid rgba(18, 21, 16, 0.28);
  border-radius: 999px;
  font-family: var(--utility);
  font-size: 9px;
  text-transform: uppercase;
}

.wire-tag.is-source {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.wire-tag.is-review {
  color: var(--white);
  background: var(--coral);
  border-color: var(--coral);
}

.wire-lead-story {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(210px, 0.8fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
}

.wire-lead-story.no-image {
  grid-template-columns: minmax(0, 1fr);
}

.wire-lead h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(34px, 4vw, 49px);
  font-weight: 900;
  font-variation-settings: "wdth" 82;
  letter-spacing: -0.06em;
  line-height: 0.92;
  text-wrap: balance;
}

.wire-lead-summary {
  max-width: 720px;
  display: -webkit-box;
  margin: 17px 0 0;
  overflow: hidden;
  font-family: var(--reading);
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 480;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.wire-lead-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 2px solid var(--ink);
  background: var(--black);
  transform: rotate(1.2deg);
}

.wire-lead-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.wire-lead-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.wire-lead-action,
.wire-reader-action {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 13px;
  border-radius: 999px;
  font-family: var(--utility);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.wire-lead-action:hover,
.wire-lead-action.is-primary,
.wire-reader-action:hover {
  color: var(--white);
  background: var(--ink);
}

.wire-lead-action.is-saved,
.wire-reader-action.is-saved {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.wire-lead-action kbd {
  padding-left: 8px;
  border-left: 1px solid currentColor;
}

.wire-lead-action.is-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
}

.wire-article {
  position: relative;
  display: none;
}

body.is-reading {
  overflow: hidden;
}

body.is-reading .wire-edition-head,
body.is-reading .wire-position {
  display: none;
}

body.is-reading .wire-page {
  position: fixed;
  inset: var(--topbar-height) 0 var(--footer-height);
  width: min(1180px, calc(100vw - 48px));
  min-height: 0;
  margin: 0 auto;
  padding: 0;
}

body.is-reading .wire-stream-layout {
  display: block;
  height: 100%;
}

body.is-reading .wire-stream {
  height: 100%;
  border: 1px solid var(--line-dark);
  border-top: 7px solid var(--coral);
  box-shadow: 0 24px 80px rgba(18, 21, 16, 0.12);
  overflow: hidden;
  touch-action: pan-y;
}

body.is-reading .wire-story.is-selected {
  height: 100%;
  margin: 0;
  border: 0;
  background: var(--acid);
  box-shadow: none;
}

body.is-reading .wire-story:not(.is-selected) {
  background: var(--paper);
}

body.is-reading .wire-reading-chamber {
  height: 100%;
  min-height: var(--wire-lens-height);
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  border: 2px solid var(--ink);
  border-top: 0;
  background: var(--acid);
  box-shadow: inset -8px 0 0 var(--coral);
  overflow: hidden;
  transform-origin: top center;
}

body.is-reading .wire-reading-chamber > .wire-lead-index {
  grid-column: 1;
  grid-row: 1;
  min-height: 0;
}

body.is-reading .wire-reading-scroll {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  background: var(--acid);
  touch-action: pan-y;
}

body.is-reading .wire-reading-scroll:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: -5px;
}

body.is-reading .wire-story.is-selected .wire-reading-head {
  display: block;
  margin: 0;
  border: 0;
  background: var(--acid);
  box-shadow: none;
}

body.is-reading .wire-lead-main {
  padding: clamp(30px, 5vw, 60px) clamp(28px, 6vw, 72px) clamp(38px, 6vw, 68px);
}

body.is-reading .wire-lead-story {
  grid-template-columns: minmax(0, 1fr);
}

body.is-reading .wire-lead h2 {
  font-size: clamp(40px, 7vw, 78px);
}

body.is-reading .wire-lead-image {
  aspect-ratio: 16 / 8.5;
  margin-top: 12px;
  transform: none;
}

body.is-reading .wire-article {
  display: block;
  margin: 0 clamp(14px, 3vw, 34px) clamp(18px, 3vw, 34px);
  padding: clamp(36px, 8vw, 86px) clamp(26px, 10vw, 108px) clamp(80px, 12vw, 130px);
  border: 2px solid var(--ink);
  background-color: var(--white);
  background-image: repeating-linear-gradient(
    to bottom,
    rgb(41 69 245 / 7%) 0 1px,
    transparent 1px 192px,
    rgb(38 155 114 / 8%) 192px 193px,
    transparent 193px 384px
  );
  box-shadow: 8px 8px 0 rgba(13, 16, 12, 0.18);
}

.wire-reading-end {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(22px, 4vw, 48px) 30px;
  color: var(--ink);
  font-family: var(--utility);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wire-reading-end strong {
  color: var(--blue);
  font-size: 9px;
}

.wire-reading-release-space {
  width: 100%;
  min-height: 0;
  background: var(--acid);
  pointer-events: none;
}

.wire-article-image {
  width: calc(100% + clamp(12px, 4vw, 44px));
  max-height: 520px;
  margin: 0 0 clamp(36px, 7vw, 72px) clamp(-22px, -2vw, -6px);
  overflow: hidden;
  border: 2px solid var(--ink);
  background: var(--black);
}

.wire-article-image img {
  width: 100%;
  height: min(48vw, 520px);
  display: block;
  object-fit: cover;
}

body.is-reading .wire-article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 clamp(14px, 4vw, 42px);
  width: 20px;
  background:
    repeating-linear-gradient(
      to bottom,
      var(--blue) 0 4px,
      transparent 4px 96px,
      var(--coral) 96px 100px,
      transparent 100px 192px,
      #269b72 192px 196px,
      transparent 196px 288px,
      #7652d6 288px 292px,
      transparent 292px 384px
    ),
    linear-gradient(var(--line), var(--line)) 0 0 / 1px 100% no-repeat;
  opacity: 0.9;
  pointer-events: none;
}

.wire-article-intro {
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--utility);
  font-size: 10px;
  line-height: 1.7;
  text-transform: uppercase;
}

.wire-article-section {
  margin: 54px 0 0;
}

.wire-article-section h3 {
  margin: 0 0 20px;
  color: var(--coral);
  font-family: var(--utility);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wire-article-section p,
.wire-article-section li {
  font-family: var(--reading);
  font-size: clamp(18px, 2.2vw, 21px);
  font-weight: 460;
  line-height: 1.78;
}

.wire-article-section p {
  margin: 0 0 1.25em;
}

.wire-article-section:first-of-type p:first-of-type::first-letter {
  float: left;
  margin: 0.09em 0.09em 0 0;
  color: var(--blue);
  font-family: var(--ui);
  font-size: 4.1em;
  font-weight: 900;
  font-variation-settings: "wdth" 78;
  line-height: 0.72;
}

.wire-article-section ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.wire-article-section li {
  position: relative;
  padding: 18px 0 18px 28px;
  border-bottom: 1px solid var(--line);
}

.wire-article-section li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--coral);
  font-family: var(--utility);
}

.wire-article code {
  padding: 0.08em 0.28em;
  border-radius: 3px;
  color: #1737c6;
  background: #edf0ff;
  font-family: var(--utility);
  font-size: 0.8em;
}

.wire-highlight,
.wire-pullout {
  --annotation-solid: #b9a000;
  --annotation-fill: rgb(242 220 85 / 64%);
  --annotation-wash: rgb(242 220 85 / 18%);
}

.wire-highlight.is-evidence,
.wire-pullout.is-evidence {
  --annotation-solid: #23845f;
  --annotation-fill: rgb(159 224 195 / 66%);
  --annotation-wash: rgb(159 224 195 / 18%);
}

.wire-highlight.is-question,
.wire-pullout.is-question {
  --annotation-solid: #7652d6;
  --annotation-fill: rgb(201 183 244 / 68%);
  --annotation-wash: rgb(201 183 244 / 18%);
}

.wire-highlight.is-action,
.wire-pullout.is-action {
  --annotation-solid: #d84229;
  --annotation-fill: rgb(255 173 152 / 68%);
  --annotation-wash: rgb(255 173 152 / 18%);
}

.wire-highlight.is-ink,
.wire-pullout.is-ink {
  --annotation-solid: var(--blue);
  --annotation-fill: var(--blue);
  --annotation-wash: rgb(41 69 245 / 9%);
}

mark.wire-highlight {
  padding: 0 0.045em;
  color: inherit;
  background: linear-gradient(transparent 17%, var(--annotation-fill) 17% 88%, transparent 88%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  cursor: pointer;
}

mark.wire-highlight.is-ink {
  color: var(--white);
  background: var(--blue);
}

mark.wire-highlight.has-note {
  box-shadow: inset 0 -2px 0 var(--annotation-solid);
}

.wire-lead-summary mark.wire-highlight.is-key {
  --annotation-fill: rgb(255 254 249 / 76%);
  box-shadow: inset 0 -2px 0 #ad9300;
}

.wire-highlight.is-new {
  animation: wireMarkerSweep 460ms ease-out both;
}

.wire-pullout {
  margin: 46px 0 52px;
  padding: 21px 26px 24px;
  background: linear-gradient(90deg, var(--annotation-wash), transparent 76%);
  border-left: 7px solid var(--annotation-solid);
  cursor: pointer;
}

.wire-pullout > span {
  color: var(--annotation-solid);
  font-family: var(--utility);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wire-pullout blockquote {
  margin: 10px 0 0;
  font-family: var(--ui);
  font-size: clamp(27px, 4.5vw, 44px);
  font-weight: 870;
  font-variation-settings: "wdth" 82;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.wire-article-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 60px;
  padding-top: 28px;
  border-top: 2px solid var(--ink);
}

.wire-review {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--utility);
  font-size: 10px;
  line-height: 1.7;
}

.wire-review summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 600;
  text-transform: uppercase;
}

.wire-review ul {
  margin: 14px 0 0;
  padding-left: 18px;
}

.wire-position {
  position: sticky;
  top: calc(var(--topbar-height) + 30px);
  height: calc(100vh - var(--topbar-height) - var(--footer-height) - 60px);
  display: grid;
  grid-template-rows: auto minmax(80px, 1fr) auto;
  justify-items: center;
  gap: 8px;
  color: var(--muted);
  font-family: var(--utility);
  font-size: 8px;
}

.wire-position-track {
  position: relative;
  width: 2px;
  height: 100%;
  background: var(--line-dark);
}

.wire-position-track i {
  position: absolute;
  top: var(--wire-progress, 0%);
  left: 50%;
  width: 14px;
  height: 28px;
  transform: translate(-50%, -50%);
  background: var(--coral);
  border: 2px solid var(--ink);
}

.wire-empty {
  min-height: 340px;
  display: grid;
  place-items: center;
  padding: 50px;
  text-align: center;
}

.wire-empty strong {
  display: block;
  font-size: 36px;
  font-variation-settings: "wdth" 82;
  letter-spacing: -0.04em;
}

.wire-empty p {
  color: var(--muted);
}

.wire-shortcuts {
  position: fixed;
  inset: auto 0 0;
  z-index: 20;
  min-height: var(--footer-height);
  display: flex;
  align-items: center;
  gap: 19px;
  padding: 0 18px;
  color: #aeb5aa;
  background: var(--black);
  border-top: 1px solid #353b32;
  font-family: var(--utility);
  font-size: 9px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.wire-shortcuts span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.wire-shortcuts kbd {
  min-width: 19px;
  padding: 2px 4px;
  border: 1px solid #4c5348;
  color: var(--white);
  background: #22271f;
  text-align: center;
}

.wire-touch-nav {
  display: none;
}

.wire-gesture-preview {
  position: fixed;
  z-index: 39;
  right: 8px;
  bottom: calc(var(--footer-height) + 8px);
  display: none;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  color: var(--white);
  background: var(--blue);
  border: 1px solid var(--black);
  box-shadow: 3px 3px 0 var(--coral);
  font-family: var(--utility);
  font-size: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  pointer-events: none;
}

.wire-gesture-preview span {
  padding-right: 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.45);
  font-weight: 600;
}

.wire-gesture-preview strong {
  font-weight: 400;
}

body.is-gesture-preview .wire-gesture-preview {
  display: flex;
}

.wire-save-shortcut.is-saved {
  color: var(--white);
}

.wire-save-shortcut.is-saved kbd {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 2px 2px 0 var(--coral);
}

.wire-save-beacon {
  position: fixed;
  right: 18px;
  bottom: calc(var(--footer-height) + 18px);
  z-index: 38;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 9px 0 13px;
  color: var(--white);
  background: var(--blue);
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--coral);
  font-family: var(--utility);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.wire-save-beacon[hidden] {
  display: none;
}

.wire-save-beacon svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wire-save-beacon kbd {
  min-width: 22px;
  padding: 3px 5px;
  color: var(--ink);
  background: var(--acid);
  border: 1px solid var(--ink);
  text-align: center;
}

.wire-save-beacon:hover {
  color: var(--ink);
  background: var(--acid);
}

.wire-save-beacon:hover kbd {
  color: var(--white);
  background: var(--blue);
}

.wire-annotation-trigger {
  position: fixed;
  z-index: 44;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--ink);
  background: var(--mark-key);
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 3px 3px 0 var(--coral);
  animation: wireAnnotationTip 180ms ease-out both;
}

.wire-annotation-trigger[hidden] {
  display: none;
}

.wire-annotation-trigger svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wire-annotation-tools {
  position: fixed;
  z-index: 45;
  width: min(330px, calc(100vw - 24px));
  max-height: calc(100vh - var(--topbar-height) - var(--footer-height) - 24px);
  overflow: auto;
  padding: 14px;
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--ink);
  box-shadow: 7px 7px 0 var(--coral);
}

.wire-annotation-tools[hidden] {
  display: none;
}

.wire-annotation-tools header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.wire-annotation-kicker {
  color: var(--blue);
  font-family: var(--utility);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wire-annotation-tools header p {
  display: -webkit-box;
  overflow: hidden;
  margin: 5px 0 0;
  font-family: var(--reading);
  font-size: 13px;
  line-height: 1.38;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.wire-annotation-tools header button {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  padding: 0;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
  font-size: 20px;
  line-height: 1;
}

.wire-annotation-colors {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  padding-top: 13px;
  border-top: 1px solid var(--line);
}

.wire-annotation-colors button {
  width: 31px;
  height: 22px;
  padding: 0;
  border: 2px solid transparent;
  background: var(--mark-key);
  transform: rotate(-2deg);
}

.wire-annotation-colors .is-evidence { background: var(--mark-evidence); transform: rotate(1deg); }
.wire-annotation-colors .is-question { background: var(--mark-question); transform: rotate(-1deg); }
.wire-annotation-colors .is-action { background: var(--mark-action); transform: rotate(2deg); }
.wire-annotation-colors .is-ink { background: var(--blue); transform: rotate(-2deg); }

.wire-annotation-colors button[aria-pressed="true"] {
  border-color: var(--ink);
  box-shadow: 2px 2px 0 var(--coral);
}

.wire-annotation-actions {
  display: flex;
  gap: 7px;
  margin-top: 13px;
}

.wire-annotation-actions button,
.wire-annotation-tools footer button {
  min-height: 32px;
  padding: 0 10px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--ink);
  font-family: var(--utility);
  font-size: 9px;
  text-transform: uppercase;
}

.wire-annotation-actions button.is-active,
.wire-annotation-tools footer button {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.wire-annotation-note {
  display: block;
  margin-top: 13px;
}

.wire-annotation-note span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-family: var(--utility);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.wire-annotation-note textarea {
  width: 100%;
  min-height: 94px;
  resize: vertical;
  padding: 10px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line-dark);
  font-family: var(--utility);
  font-size: 11px;
  line-height: 1.55;
}

.wire-annotation-tools footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
  color: var(--quiet);
  font-family: var(--utility);
  font-size: 8px;
}

[data-wire-save].is-confirming,
.wire-save-shortcut.is-confirming {
  animation: wireSaveControl 520ms cubic-bezier(0.18, 0.9, 0.26, 1.35);
}

.wire-save-beacon.is-confirming {
  animation: wireSaveBeacon 560ms cubic-bezier(0.18, 0.9, 0.26, 1.2);
}

.wire-views {
  display: flex;
  align-items: stretch;
  align-self: stretch;
  gap: 0;
  margin-left: auto;
}

.wire-views a {
  display: flex;
  align-items: center;
  padding: 0 12px;
  color: #8f978a;
  text-decoration: none;
  border-left: 1px solid #353b32;
}

.wire-views a:hover,
.wire-views a.is-active {
  color: var(--black);
  background: var(--acid);
}

.wire-toast {
  position: fixed;
  z-index: 50;
  right: 22px;
  bottom: calc(var(--footer-height) + 18px);
  max-width: min(360px, calc(100vw - 44px));
  padding: 12px 16px;
  color: var(--white);
  background: var(--blue);
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 var(--coral);
  font-family: var(--utility);
  font-size: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.wire-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes wirePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.58; transform: scale(0.76); }
}

@keyframes wireAnnotationTip {
  from { opacity: 0; transform: translateY(5px) scale(0.78); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes wireMarkerSweep {
  from { background-size: 0 100%; }
  to { background-size: 100% 100%; }
}

@keyframes wireSaveControl {
  0% { transform: scale(0.82); }
  55% { transform: scale(1.12) rotate(-2deg); }
  100% { transform: scale(1); }
}

@keyframes wireSaveBeacon {
  0% { opacity: 0; transform: translateY(16px) rotate(2deg) scale(0.78); }
  58% { opacity: 1; transform: translateY(-3px) rotate(-1deg) scale(1.06); }
  100% { opacity: 1; transform: translateY(0) rotate(0) scale(1); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 980px) {
  .wire-topbar {
    grid-template-columns: auto minmax(220px, 1fr) auto;
  }

  .wire-desk-name,
  .wire-live-label {
    display: none;
  }

  .wire-page {
    width: min(100% - 36px, 940px);
  }

  .wire-compact {
    grid-template-columns: 42px 110px minmax(0, 1fr) 34px;
  }

  .wire-compact-time {
    display: none;
  }

  .wire-lead-story {
    grid-template-columns: minmax(0, 1fr);
  }

  .wire-lead-image {
    aspect-ratio: 16 / 8;
    transform: none;
  }
}

@media (max-width: 720px) {
  :root {
    --topbar-height: calc(60px + env(safe-area-inset-top));
    --footer-height: calc(58px + env(safe-area-inset-bottom));
    --wire-row-height: 79px;
  }

  .wire-topbar {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 10px;
    padding: env(safe-area-inset-top) 10px 0;
  }

  .wire-wordmark {
    font-size: 16px;
  }

  .wire-pulse {
    width: 8px;
    height: 8px;
  }

  .wire-search {
    height: 35px;
  }

  .wire-search kbd,
  .wire-drawer-button span,
  .wire-drawer-button kbd {
    display: none;
  }

  .wire-drawer-button {
    width: 44px;
    height: 44px;
    justify-content: center;
    padding: 0;
  }

  .wire-drawer-button > svg {
    width: 20px;
    height: 20px;
    display: block;
  }

  .wire-icon-button {
    display: none;
  }

  .wire-account-button {
    width: 36px;
    padding: 0 6px;
  }

  .wire-account-button span {
    display: none;
  }

  .wire-page {
    width: 100%;
    padding-top: calc(var(--topbar-height) + 34px);
  }

  .wire-edition-head {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding-bottom: 12px;
  }

  .wire-edition-head h1 {
    display: none;
  }

  .wire-edition-meta {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    text-align: left;
  }

  .wire-edition-meta > span:first-child {
    display: none;
  }

  .wire-edition-meta strong {
    font-size: 14px;
  }

  .wire-stream-layout {
    display: block;
  }

  .wire-position {
    display: none;
  }

  .wire-stream {
    border-left: 0;
    border-right: 0;
  }

  .wire-compact {
    min-height: 78px;
    grid-template-columns: 30px minmax(0, 1fr) 34px;
    gap: 10px;
    padding: 10px 11px;
  }

  .wire-compact-source {
    display: none;
  }

  .wire-compact-title {
    font-size: 18px;
  }

  .wire-story.is-selected {
    margin: 0 0 14px;
    box-shadow: inset -6px 0 0 var(--coral), 0 6px 0 var(--coral);
  }

  .wire-story.is-selected .wire-lead {
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .wire-lead-index {
    font-size: 8px;
  }

  .wire-lead-main {
    padding: 20px 17px 24px;
  }

  body:not(.is-reading) .wire-lens .wire-lead-main {
    padding: 20px 17px 18px;
  }

  .wire-lead h2 {
    font-size: clamp(31px, 9.5vw, 44px);
  }

  .wire-lead-summary {
    font-size: 16px;
    line-height: 1.46;
    -webkit-line-clamp: 3;
  }

  .wire-lead-action {
    min-height: 44px;
  }

  .wire-save-icon {
    width: 44px;
    height: 44px;
  }

  .wire-drawer {
    width: calc(100vw - 16px);
    padding: 20px 18px 24px;
    box-shadow: 6px 6px 0 rgba(18, 21, 16, 0.2);
  }

  .wire-drawer-head {
    gap: 12px;
  }

  .wire-drawer-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .wire-filter-group {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  .wire-saved-search-create {
    grid-template-columns: minmax(0, 1fr);
  }

  .wire-shortcuts {
    min-height: var(--footer-height);
    padding: 0 0 env(safe-area-inset-bottom);
  }

  .wire-shortcuts > span {
    display: none;
  }

  .wire-touch-nav {
    width: 100%;
    height: 58px;
    display: grid;
    grid-template-columns: 1fr 1.35fr 1fr;
  }

  .wire-touch-nav button {
    min-width: 0;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 10px;
    color: var(--white);
    background: var(--black);
    border: 0;
    border-right: 1px solid #353b32;
    font-family: var(--utility);
    font-size: 9px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .wire-touch-nav button:last-child {
    border-right: 0;
  }

  .wire-touch-nav button.is-primary {
    color: var(--black);
    background: var(--acid);
    font-weight: 600;
  }

  .wire-touch-nav button:disabled {
    color: #5f665b;
    background: #171a15;
  }

  .wire-touch-nav svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .wire-views {
    display: none;
  }

  .wire-views a {
    flex: 1 1 0;
    justify-content: center;
    padding: 0 7px;
    border-right: 1px solid #353b32;
  }

  .wire-annotation-tools {
    inset: auto 8px calc(var(--footer-height) + 10px);
    width: auto;
    max-height: min(410px, calc(100dvh - var(--topbar-height) - var(--footer-height) - 26px));
    box-shadow: 5px 5px 0 var(--coral);
  }

  .wire-pullout {
    margin: 34px 0 40px;
    padding: 18px 16px 20px;
  }

  .wire-pullout blockquote {
    font-size: clamp(25px, 8vw, 36px);
  }

  body.is-reading .wire-page {
    inset: var(--topbar-height) 0 var(--footer-height);
    width: 100%;
    padding: 0;
  }

  body.is-reading .wire-reading-chamber {
    grid-template-columns: 34px minmax(0, 1fr);
    border-right: 0;
    border-left: 0;
    box-shadow: inset -5px 0 0 var(--coral);
  }

  body.is-reading .wire-lead-main {
    padding: 22px 16px 28px;
  }

  body.is-reading .wire-article {
    margin: 0 8px 10px;
    padding: 44px 24px 86px;
    touch-action: pan-y;
    overscroll-behavior-y: contain;
    box-shadow: 5px 5px 0 rgba(13, 16, 12, 0.16);
  }

  body.is-reading .wire-article::before {
    left: 6px;
    width: 12px;
  }
}

@media (forced-colors: active) {
  mark.wire-highlight {
    background: transparent;
    outline: 2px solid Highlight;
    text-decoration: underline 3px Highlight;
  }

  .wire-pullout {
    border-color: Highlight;
  }
}

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