/*
 * Briefing-only CSS — split out from globals.css to keep landing
 * surfaces' render-blocking CSS small. Imported only from
 * src/app/briefing/layout.tsx (and any other briefing-reader
 * surface that needs these classes). Sections are listed in the
 * order they appeared in globals.css.
 */

/* ── Reader command briefing ── */
.reader-command {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: calc(var(--pub-masthead-h, 44px) + 3.35rem) 1rem 0;
}
@media (min-width: 768px) {
  .reader-command {
    padding: calc(var(--pub-masthead-h, 44px) + 3.75rem) 2rem 0;
  }
}
.reader-command-head {
  display: grid;
  gap: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgb(var(--color-edge) / 0.06);
}
@media (min-width: 960px) {
  .reader-command-head {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }
}
.reader-command-kicker,
.reader-section-label {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  line-height: 1.3;
  letter-spacing: 0;
  color: rgb(var(--color-accent) / 0.82);
  margin: 0;
}
.reader-command-title {
  font-family: var(--font-display), var(--font-serif), Georgia, serif;
  font-size: 2rem;
  line-height: 1.06;
  letter-spacing: 0;
  font-weight: 600;
  color: rgb(var(--color-bone) / 0.94);
  margin: 0.2rem 0 0;
  font-variation-settings: 'opsz' 144, 'SOFT' 45;
}
@media (min-width: 768px) {
  .reader-command-title {
    font-size: 2.75rem;
  }
}
.reader-command-controls {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
@media (min-width: 768px) {
  .reader-command-controls {
    align-items: flex-end;
  }
}
.reader-command-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  line-height: 1.45;
  letter-spacing: 0;
  color: rgb(var(--color-bone) / 0.55);
}
.reader-command-dot {
  color: rgb(var(--color-bone) / 0.25);
}
.reader-command-tabs {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  width: fit-content;
  padding: 0.25rem;
  border: 1px solid rgb(var(--color-edge) / 0.07);
  border-radius: 8px;
  background: rgb(var(--color-card));
}
.reader-tab-button {
  position: relative;
  min-height: 2.25rem;
  padding: 0.45rem 0.85rem;
  border-radius: 6px;
  font-family: var(--font-sans), system-ui, sans-serif;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0;
  color: rgb(var(--color-bone) / 0.58);
  transition: color 0.25s ease, background 0.25s ease;
}
.reader-tab-button:hover,
.reader-tab-button--active {
  color: rgb(var(--color-bone) / 0.92);
  background: rgb(var(--color-edge) / 0.035);
}
.reader-tab-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.25rem;
  min-height: 1.25rem;
  padding: 0 0.35rem;
  border-radius: 6px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  color: rgb(var(--color-bone) / 0.5);
  background: rgb(var(--color-edge) / 0.04);
}
.reader-tab-count--active {
  color: rgb(var(--color-accent) / 0.85);
  background: rgb(var(--color-accent) / 0.1);
}
.reader-tab-indicator {
  position: absolute;
  left: 0.5rem;
  right: 0.5rem;
  bottom: 0.2rem;
  height: 1px;
  border-radius: 999px;
  background: rgb(var(--color-accent) / 0.45);
}
@media (max-width: 720px) {
  .reader-tab-button {
    min-height: 2rem;
    padding: 0.42rem 0.9rem;
    border-radius: 999px;
    color: rgb(var(--color-bone) / 0.58);
  }
  .reader-tab-button:hover,
  .reader-tab-button--active {
    color: rgb(var(--color-bone) / 0.92);
    background: rgb(var(--color-edge) / 0.055);
  }
  .reader-tab-indicator {
    display: none;
  }
}
.reader-issue {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
@media (min-width: 768px) {
  .reader-issue {
    gap: 1.5rem;
  }
}
.reader-hero-grid {
  display: grid;
  gap: 0.9rem;
  align-items: start;
}
@media (min-width: 960px) {
  .reader-hero-grid {
    grid-template-columns: minmax(0, 1.28fr) minmax(280px, 0.92fr);
    grid-template-areas:
      "bottom signal"
      "bottom context";
  }
  .reader-bottom-line { grid-area: bottom; }
  .reader-lead-signal { grid-area: signal; }
  .reader-context-panel { grid-area: context; }
}
@media (min-width: 1160px) {
  .reader-hero-grid {
    grid-template-columns: minmax(0, 1.24fr) minmax(300px, 0.92fr) minmax(220px, 0.68fr);
    grid-template-areas: "bottom signal context";
  }
}
.reader-bottom-line,
.reader-lead-signal,
.reader-context-panel,
.decision-card,
.reader-quick-hits,
.evidence-file {
  background: rgb(var(--color-card));
  border: 1px solid rgb(var(--color-edge) / 0.07);
  border-radius: 8px;
}
[data-theme='dark'] .reader-bottom-line,
[data-theme='dark'] .reader-lead-signal,
[data-theme='dark'] .reader-context-panel,
[data-theme='dark'] .decision-card,
[data-theme='dark'] .reader-quick-hits,
[data-theme='dark'] .evidence-file {
  border-color: rgb(var(--color-edge) / 0.09);
}
.reader-bottom-line,
.reader-lead-signal,
.reader-context-panel {
  padding: 1rem;
}
@media (min-width: 768px) {
  .reader-bottom-line,
  .reader-lead-signal,
  .reader-context-panel {
    padding: 1.25rem;
  }
}
.reader-card-head,
.reader-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgb(var(--color-edge) / 0.06);
}
.reader-card-count,
.reader-section-head > span {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  color: rgb(var(--color-bone) / 0.42);
}
.reader-bottom-list {
  display: grid;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0.85rem 0 0;
}
.reader-bottom-summary {
  margin: 0.95rem 0 0;
  padding-top: 0.95rem;
  border-top: 1px solid rgb(var(--color-edge) / 0.055);
  font-family: var(--font-serif), Georgia, serif;
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgb(var(--color-bone) / 0.7);
}
.reader-bottom-item {
  display: grid;
  grid-template-columns: 2.1rem minmax(0, 1fr);
  gap: 0.85rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgb(var(--color-edge) / 0.055);
  font-family: var(--font-serif), Georgia, serif;
  font-size: 17px;
  line-height: 1.48;
  color: rgb(var(--color-bone) / 0.86);
}
@media (min-width: 768px) {
  .reader-bottom-item {
    font-size: 19px;
  }
}
.reader-bottom-item:last-child {
  border-bottom: none;
}
.reader-bottom-num {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  line-height: 1.8;
  color: rgb(var(--color-accent) / 0.7);
}
.reader-lead-signal {
  position: relative;
  overflow: hidden;
}
.reader-lead-signal::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1rem;
  bottom: 1rem;
  width: 2px;
  background: rgb(var(--color-accent) / 0.5);
}
.reader-lead-signal[data-urgency='act_now']::before {
  background: rgb(201 59 46 / 0.78);
}
.reader-lead-signal[data-urgency='monitor']::before {
  background: rgb(185 130 45 / 0.78);
}
[data-theme='dark'] .reader-lead-signal[data-urgency='act_now']::before {
  background: rgb(227 125 113 / 0.86);
}
[data-theme='dark'] .reader-lead-signal[data-urgency='monitor']::before {
  background: rgb(219 170 98 / 0.86);
}
.reader-lead-signal h2 {
  margin: 0.9rem 0 0;
  font-family: var(--font-display), var(--font-serif), Georgia, serif;
  font-size: 1.55rem;
  line-height: 1.18;
  letter-spacing: 0;
  font-weight: 600;
  color: rgb(var(--color-bone) / 0.94);
  font-variation-settings: 'opsz' 144, 'SOFT' 35;
}
@media (min-width: 768px) {
  .reader-lead-signal h2 {
    font-size: 2rem;
  }
}
.reader-lead-signal p {
  margin: 0.8rem 0 0;
  font-family: var(--font-serif), Georgia, serif;
  font-size: 15.5px;
  line-height: 1.58;
  color: rgb(var(--color-bone) / 0.7);
}
.reader-lead-signal footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.reader-lead-signal footer span,
.decision-card footer span,
.reader-context-tags span,
.evidence-sources span {
  display: inline-flex;
  align-items: center;
  min-height: 1.35rem;
  padding: 0.15rem 0.45rem;
  border: 1px solid rgb(var(--color-edge) / 0.07);
  border-radius: 5px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10.5px;
  letter-spacing: 0;
  color: rgb(var(--color-bone) / 0.54);
}
.reader-urgency {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  color: rgb(var(--color-bone) / 0.48);
}
.reader-urgency-rule {
  display: inline-block;
  width: 18px;
  height: 1px;
  background: currentColor;
}
.reader-urgency[data-urgency='act_now'] { color: rgb(201 59 46 / 0.9); }
.reader-urgency[data-urgency='monitor'] { color: rgb(185 130 45 / 0.9); }
[data-theme='dark'] .reader-urgency[data-urgency='act_now'] { color: rgb(227 125 113 / 0.92); }
[data-theme='dark'] .reader-urgency[data-urgency='monitor'] { color: rgb(219 170 98 / 0.92); }
.reader-context-persona {
  margin: 0.75rem 0 1rem;
  font-family: var(--font-display), var(--font-serif), Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.16;
  color: rgb(var(--color-bone) / 0.9);
}
.reader-context-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  margin: 0;
}
.reader-context-stats div {
  padding: 0.65rem 0.5rem;
  border: 1px solid rgb(var(--color-edge) / 0.055);
  border-radius: 7px;
}
.reader-context-stats dt {
  margin: 0 0 0.25rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  color: rgb(var(--color-bone) / 0.44);
}
.reader-context-stats dd {
  margin: 0;
  font-family: var(--font-display), var(--font-serif), Georgia, serif;
  font-size: 1.15rem;
  color: rgb(var(--color-bone) / 0.88);
}
.reader-context-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1rem;
}
.reader-path {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgb(var(--color-edge) / 0.06);
}
.reader-path ol {
  display: grid;
  gap: 0;
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgb(var(--color-edge) / 0.055);
}
.reader-path li {
  border-bottom: 1px solid rgb(var(--color-edge) / 0.055);
}
.reader-path a {
  display: grid;
  grid-template-columns: 1.8rem minmax(0, 1fr) auto;
  gap: 0.7rem;
  align-items: baseline;
  padding: 0.68rem 0;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.reader-path a:hover {
  color: rgb(var(--color-bone) / 0.9);
}
.reader-path-index,
.reader-path-count,
.reader-path-note {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10.5px;
  line-height: 1.3;
  color: rgb(var(--color-bone) / 0.42);
}
.reader-path-copy {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}
.reader-path-label {
  font-family: var(--font-serif), Georgia, serif;
  font-size: 14.5px;
  line-height: 1.25;
  color: rgb(var(--color-bone) / 0.82);
}
.reader-path-note {
  color: rgb(var(--color-bone) / 0.42);
}
.reader-path-count {
  color: rgb(var(--color-accent) / 0.68);
}
.decision-queue,
.reader-quick-hits,
.reader-evidence {
  margin-top: 0.2rem;
}
.reader-section-head {
  margin-bottom: 0.85rem;
}
.decision-groups {
  display: grid;
  gap: 1rem;
}
@media (min-width: 960px) {
  .decision-groups {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
  }
}
.decision-group {
  min-width: 0;
}
.decision-group > header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.8rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgb(var(--color-edge) / 0.055);
}
.decision-group h2 {
  margin: 0;
  font-family: var(--font-display), var(--font-serif), Georgia, serif;
  font-size: 1.25rem;
  line-height: 1.15;
  letter-spacing: 0;
  color: rgb(var(--color-bone) / 0.9);
}
.decision-group > header span {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10.5px;
  color: rgb(var(--color-bone) / 0.42);
}
.decision-group[data-urgency='act_now'] h2 { color: rgb(201 59 46 / 0.9); }
.decision-group[data-urgency='monitor'] h2 { color: rgb(185 130 45 / 0.92); }
[data-theme='dark'] .decision-group[data-urgency='act_now'] h2 { color: rgb(227 125 113 / 0.92); }
[data-theme='dark'] .decision-group[data-urgency='monitor'] h2 { color: rgb(219 170 98 / 0.92); }
.decision-cards {
  display: grid;
  gap: 0.7rem;
  margin-top: 0.75rem;
}
.decision-card {
  padding: 0.9rem;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.decision-card:hover {
  border-color: rgb(var(--color-edge) / 0.13);
  background: rgb(var(--color-surface));
}
.decision-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  margin-bottom: 0.65rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10.5px;
  color: rgb(var(--color-bone) / 0.45);
}
.decision-card h3 {
  margin: 0;
  font-family: var(--font-serif), Georgia, serif;
  font-size: 16px;
  line-height: 1.34;
  letter-spacing: 0;
  font-weight: 600;
  color: rgb(var(--color-bone) / 0.9);
}
.decision-card > p {
  margin: 0.55rem 0 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgb(var(--color-bone) / 0.66);
}
.decision-card-action {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 0.75rem;
  margin-top: 0.8rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgb(var(--color-edge) / 0.055);
}
.decision-card-action span {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  color: rgb(var(--color-accent) / 0.78);
}
.decision-card-action p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgb(var(--color-bone) / 0.72);
}
.decision-card footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.8rem;
}
.reader-quick-hits {
  padding: 1rem;
}
.reader-quick-hits ul {
  display: grid;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}
.reader-quick-hits li {
  display: grid;
  grid-template-columns: 2.1rem minmax(0, 1fr) auto;
  gap: 0.8rem;
  align-items: baseline;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgb(var(--color-edge) / 0.055);
}
.reader-quick-hits li:last-child {
  border-bottom: none;
}
.reader-quick-hits li > span,
.reader-quick-hits em {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10.5px;
  color: rgb(var(--color-bone) / 0.45);
  font-style: normal;
}
.reader-quick-hits p {
  margin: 0;
  font-family: var(--font-serif), Georgia, serif;
  font-size: 15.5px;
  line-height: 1.48;
  color: rgb(var(--color-bone) / 0.78);
}
.reader-quick-hits li[data-urgency='act_now'] em { color: rgb(201 59 46 / 0.88); }
.reader-quick-hits li[data-urgency='monitor'] em { color: rgb(185 130 45 / 0.88); }
[data-theme='dark'] .reader-quick-hits li[data-urgency='act_now'] em { color: rgb(227 125 113 / 0.9); }
[data-theme='dark'] .reader-quick-hits li[data-urgency='monitor'] em { color: rgb(219 170 98 / 0.9); }
.evidence-list {
  display: grid;
  gap: 0.6rem;
}
.evidence-file {
  overflow: hidden;
}
.evidence-file summary {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: baseline;
  padding: 0.95rem 1rem;
  cursor: pointer;
}
.evidence-file summary::-webkit-details-marker {
  display: none;
}
.evidence-file summary span,
.evidence-file summary em {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10.5px;
  color: rgb(var(--color-bone) / 0.45);
  font-style: normal;
}
.evidence-file summary strong {
  font-family: var(--font-serif), Georgia, serif;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 600;
  color: rgb(var(--color-bone) / 0.88);
}
.evidence-file[open] summary {
  border-bottom: 1px solid rgb(var(--color-edge) / 0.055);
}
.evidence-body {
  padding: 1rem;
}
.evidence-body > p {
  margin: 0;
  font-family: var(--font-serif), Georgia, serif;
  font-size: 15px;
  line-height: 1.62;
  color: rgb(var(--color-bone) / 0.68);
}
.evidence-actions {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}
.evidence-actions li {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 0.7rem;
}
.evidence-actions span {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  color: rgb(var(--color-accent) / 0.75);
}
.evidence-actions p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: rgb(var(--color-bone) / 0.72);
}
.evidence-actions small {
  grid-column: 2;
  color: rgb(var(--color-bone) / 0.5);
  line-height: 1.45;
}
.evidence-sources {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 1rem;
}
@media (max-width: 520px) {
  .reader-command {
    padding-top: calc(var(--pub-masthead-h, 44px) + 3.4rem);
  }
  .reader-command-title {
    font-size: 1.75rem;
  }
  .reader-command-tabs {
    width: 100%;
  }
  .reader-tab-button {
    flex: 1;
  }
  .reader-quick-hits li,
  .evidence-file summary {
    grid-template-columns: 1.8rem minmax(0, 1fr);
  }
  .reader-quick-hits em,
  .evidence-file summary em {
    grid-column: 2;
  }
}

/* Premium reader refinement: one restrained dossier, fewer visible boxes. */
.reader-command {
  width: min(100%, 1120px);
  padding-top: calc(var(--pub-masthead-h, 44px) + 3rem);
}
.reader-command-head {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 1rem;
  margin-bottom: 1.65rem;
  padding: 1.1rem 0 1.25rem;
  border-top: 1px solid rgb(var(--color-edge) / 0.07);
  border-bottom: 1px solid rgb(var(--color-edge) / 0.07);
  text-align: center;
}
.reader-command-head::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 50%;
  width: 1px;
  background: rgb(var(--color-edge) / 0.035);
  pointer-events: none;
}
.reader-command-title-block,
.reader-command-controls {
  position: relative;
  z-index: 1;
}
.reader-command-kicker,
.reader-section-label {
  color: rgb(var(--color-accent) / 0.76);
  font-size: 10.5px;
}
.reader-command-title {
  margin-top: 0.28rem;
  font-size: clamp(2.4rem, 5vw, 4.3rem);
  line-height: 0.94;
  font-weight: 600;
  color: rgb(var(--color-bone) / 0.96);
  font-feature-settings: 'ss02' 1;
}
.reader-command-controls {
  align-items: center;
}
.reader-command-meta {
  justify-content: center;
  color: rgb(var(--color-bone) / 0.5);
}
.reader-command-tabs {
  border-radius: 999px;
  background: rgb(var(--color-surface) / 0.76);
  border-color: rgb(var(--color-edge) / 0.06);
}
.reader-tab-button {
  border-radius: 999px;
  padding-inline: 1rem;
}
.reader-tab-button:hover,
.reader-tab-button--active {
  background: rgb(var(--color-card));
}
.reader-tab-indicator {
  left: 0.85rem;
  right: 0.85rem;
}
.reader-issue {
  gap: 1.65rem;
}
.reader-hero-grid {
  position: relative;
  overflow: hidden;
  gap: 0;
  padding: 1.15rem;
  background:
    linear-gradient(rgb(var(--color-edge) / 0.025) 1px, transparent 1px) 0 0 / 100% 3.15rem,
    rgb(var(--color-card));
  border: 1px solid rgb(var(--color-edge) / 0.08);
  border-radius: 8px;
}
.reader-hero-grid::before,
.reader-hero-grid::after {
  content: '';
  position: absolute;
  left: 1.15rem;
  right: 1.15rem;
  height: 1px;
  background: rgb(var(--color-bone) / 0.16);
  pointer-events: none;
}
.reader-hero-grid::before { top: 1.15rem; }
.reader-hero-grid::after { bottom: 1.15rem; }
.reader-bottom-line,
.reader-lead-signal,
.reader-context-panel,
.decision-card,
.reader-quick-hits,
.evidence-file {
  background: transparent;
  border-color: transparent;
  border-radius: 0;
}
.reader-bottom-line,
.reader-lead-signal,
.reader-context-panel {
  padding: 1.1rem 0;
}
.reader-card-head,
.reader-section-head {
  border-bottom-color: rgb(var(--color-edge) / 0.075);
}
.reader-bottom-list {
  margin-top: 1rem;
}
.reader-bottom-summary {
  border-top-color: rgb(var(--color-edge) / 0.07);
  color: rgb(var(--color-bone) / 0.66);
}
.reader-bottom-item {
  grid-template-columns: 2.65rem minmax(0, 1fr);
  gap: 1rem;
  padding: 0.95rem 0;
  font-size: 18px;
  border-bottom-color: rgb(var(--color-edge) / 0.07);
}
.reader-bottom-item:first-child {
  display: block;
  padding: 1rem 0 1.15rem;
  font-family: var(--font-display), var(--font-serif), Georgia, serif;
  font-size: clamp(2rem, 3.2vw, 3.05rem);
  line-height: 1.05;
  font-weight: 500;
  color: rgb(var(--color-bone) / 0.96);
  text-wrap: balance;
}
.reader-bottom-item:first-child .reader-bottom-num {
  display: block;
  margin-bottom: 0.75rem;
  line-height: 1;
}
.reader-bottom-item:first-child > span:last-child {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
}
.reader-bottom-num {
  letter-spacing: 0;
}
.reader-lead-signal {
  padding-left: 0;
}
.reader-lead-signal::before {
  display: none;
}
.reader-lead-signal h2 {
  margin-top: 1rem;
  font-size: clamp(1.65rem, 2.4vw, 2.35rem);
  line-height: 1.08;
  font-weight: 500;
  text-wrap: balance;
}
.reader-lead-signal p {
  font-size: 16px;
  color: rgb(var(--color-bone) / 0.68);
}
.reader-lead-signal footer span,
.decision-card footer span,
.reader-context-tags span,
.evidence-sources span {
  min-height: unset;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: rgb(var(--color-bone) / 0.48);
}
.reader-urgency {
  color: rgb(var(--color-bone) / 0.52);
}
.reader-context-panel {
  color: rgb(var(--color-bone) / 0.74);
}
.reader-context-persona {
  margin: 1rem 0 0.9rem;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 500;
}
.reader-context-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgb(var(--color-edge) / 0.07);
  border-bottom: 1px solid rgb(var(--color-edge) / 0.07);
}
.reader-context-stats div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.72rem 0;
  border: 0;
  border-bottom: 1px solid rgb(var(--color-edge) / 0.055);
  border-radius: 0;
}
.reader-context-stats div:last-child {
  border-bottom: 0;
}
.reader-context-stats dt {
  margin: 0;
}
.reader-context-stats dd {
  font-size: 1rem;
}
.reader-context-tags {
  gap: 0.7rem;
  margin-top: 1rem;
}
.reader-context-tags span::before,
.decision-card footer span::before,
.evidence-sources span::before {
  content: '/';
  margin-right: 0.55rem;
  color: rgb(var(--color-bone) / 0.22);
}
.reader-path {
  border-top-color: rgb(var(--color-edge) / 0.07);
}
.reader-path ol,
.reader-path li {
  border-color: rgb(var(--color-edge) / 0.06);
}
.decision-queue,
.reader-quick-hits,
.reader-evidence {
  margin-top: 0;
}
.decision-queue,
.reader-quick-hits {
  padding: 1.15rem;
  background: rgb(var(--color-card));
  border: 1px solid rgb(var(--color-edge) / 0.08);
  border-radius: 8px;
}
.decision-groups {
  gap: 0;
}
.decision-group {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  padding: 1rem 0 0;
  border-top: 1px solid rgb(var(--color-edge) / 0.07);
}
.decision-group:first-child {
  border-top: 0;
  padding-top: 0;
}
.decision-group > header {
  padding: 0 0 0.75rem;
  border-bottom: 0;
}
.decision-group h2 {
  font-size: 1.35rem;
  font-weight: 500;
}
.decision-cards {
  gap: 0;
  margin-top: 0;
}
.decision-card {
  display: grid;
  grid-template-columns: 3.2rem minmax(0, 1fr);
  column-gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgb(var(--color-edge) / 0.065);
}
.decision-card:last-child {
  border-bottom: 0;
}
.decision-card:hover {
  background: transparent;
  border-color: rgb(var(--color-edge) / 0.1);
}
.decision-card header {
  grid-row: 1 / span 4;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.35rem;
  margin: 0;
}
.decision-card h3,
.decision-card > p,
.decision-card-action,
.decision-card footer {
  grid-column: 2;
}
.decision-card h3 {
  font-size: 17px;
  line-height: 1.28;
}
.decision-card > p {
  max-width: 64ch;
}
.decision-card-action {
  grid-template-columns: 3.25rem minmax(0, 1fr);
  margin-top: 0.9rem;
  padding-top: 0.8rem;
}
.reader-quick-hits {
  padding-top: 1.15rem;
}
.reader-quick-hits li {
  grid-template-columns: 2.7rem minmax(0, 1fr) 5.5rem;
  border-bottom-color: rgb(var(--color-edge) / 0.07);
}
.reader-quick-hits p {
  font-size: 16px;
}
.reader-evidence {
  padding-top: 0.15rem;
}
.evidence-list {
  gap: 0;
  border-top: 1px solid rgb(var(--color-edge) / 0.08);
}
.evidence-file {
  border-bottom: 1px solid rgb(var(--color-edge) / 0.07);
}
.evidence-file summary {
  padding: 1rem 0;
}
.evidence-file summary strong {
  font-size: 17px;
}
.evidence-file[open] summary {
  border-bottom-color: rgb(var(--color-edge) / 0.07);
}
.evidence-body {
  padding: 1rem 0 1.2rem 2.75rem;
}
@media (min-width: 960px) {
  .reader-command-head {
    align-items: center;
  }
  .reader-hero-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(290px, 0.88fr);
    grid-template-areas:
      "bottom signal"
      "bottom context";
    padding: 1.45rem;
  }
  .reader-bottom-line {
    padding: 1.2rem 1.55rem 1.2rem 0;
    border-right: 1px solid rgb(var(--color-edge) / 0.08);
  }
  .reader-lead-signal,
  .reader-context-panel {
    padding: 1.2rem 0 1.2rem 1.55rem;
  }
  .reader-context-panel {
    border-top: 1px solid rgb(var(--color-edge) / 0.08);
  }
  .decision-groups {
    grid-template-columns: 1fr;
  }
  .decision-group {
    grid-template-columns: 10rem minmax(0, 1fr);
    column-gap: 1.5rem;
  }
  .decision-group > header {
    display: block;
    padding-top: 1rem;
  }
  .decision-group:first-child > header {
    padding-top: 0;
  }
}
@media (min-width: 1160px) {
  .reader-hero-grid {
    grid-template-columns: minmax(0, 1.28fr) minmax(280px, 0.82fr) minmax(220px, 0.62fr);
    grid-template-areas: "bottom signal context";
  }
  .reader-lead-signal {
    border-right: 1px solid rgb(var(--color-edge) / 0.08);
    padding-right: 1.45rem;
  }
  .reader-context-panel {
    border-top: 0;
    padding-left: 1.45rem;
  }
}
@media (max-width: 720px) {
  .reader-command {
    padding-top: calc(var(--pub-masthead-h, 44px) + 3rem);
  }
  .reader-command-head {
    margin-bottom: 1rem;
  }
  .reader-hero-grid,
  .decision-queue,
  .reader-quick-hits {
    padding: 1rem;
  }
  .reader-bottom-item:first-child {
    font-size: 1.65rem;
  }
  .reader-quick-hits li {
    grid-template-columns: 2.2rem minmax(0, 1fr);
  }
  .reader-quick-hits em {
    grid-column: 2;
  }
  .decision-card {
    grid-template-columns: 2.6rem minmax(0, 1fr);
  }
  .decision-card-action {
    grid-template-columns: 1fr;
  }
  .decision-card-action span {
    display: none;
  }
  .evidence-body {
    padding-left: 0;
  }
}

/* Live premium direction: dark briefing room, ivory dossier, brass rules. */
.reader-command {
  --reader-stage: 14 16 19;
  --reader-paper: 251 248 241;
  --reader-paper-soft: 244 239 229;
  --reader-ink: 30 31 34;
  --reader-muted: 106 101 92;
  --reader-rule: 34 33 29;
  --reader-brass: 176 136 73;
  --reader-blue: 35 85 111;
  --reader-rust: 174 72 48;
  --reader-amber: 175 122 51;
  position: relative;
  width: 100%;
  max-width: none;
  min-height: 100vh;
  padding: calc(var(--pub-masthead-h, 44px) + 2.65rem) 1rem clamp(7rem, 11vh, 8.5rem);
  background: rgb(var(--reader-paper));
  color: rgb(var(--reader-ink));
  isolation: isolate;
}
.reader-command::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 0 0 auto;
  height: clamp(28rem, 48vh, 36rem);
  background:
    linear-gradient(90deg, rgb(255 255 255 / 0.045) 1px, transparent 1px) 0 0 / 4rem 4rem,
    linear-gradient(rgb(255 255 255 / 0.035) 1px, transparent 1px) 0 0 / 4rem 4rem,
    rgb(var(--reader-stage));
}
.reader-command::after {
  content: '';
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: clamp(28rem, 48vh, 36rem);
  height: 1px;
  background: rgb(var(--reader-brass) / 0.65);
}
[data-theme='dark'] .reader-command {
  --reader-stage: 8 9 11;
  --reader-paper: 24 23 21;
  --reader-paper-soft: 31 29 26;
  --reader-ink: 239 233 222;
  --reader-muted: 167 156 140;
  --reader-rule: 235 220 195;
  --reader-brass: 203 168 108;
  --reader-blue: 107 164 188;
  --reader-rust: 218 118 94;
  --reader-amber: 215 164 92;
}
.reader-command > * {
  position: relative;
  z-index: 1;
}
.reader-command-head,
.reader-issue {
  width: min(100%, 1180px);
  margin-left: auto;
  margin-right: auto;
}
.reader-command-head {
  min-height: 9.2rem;
  padding: clamp(1rem, 2.35vw, 1.75rem) 0 1rem;
  color: rgb(248 241 226);
  border: 0;
}
.reader-command-head::before {
  inset: auto 0 0;
  width: auto;
  height: 1px;
  background: rgb(248 241 226 / 0.14);
}
.reader-command-head::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -0.22rem;
  width: 5.5rem;
  height: 1px;
  transform: translateX(-50%);
  background: rgb(var(--reader-brass));
}
.reader-command-kicker {
  color: rgb(var(--reader-brass));
}
.reader-command-title {
  color: rgb(250 244 232);
  text-shadow: 0 1px 0 rgb(255 255 255 / 0.05);
  font-size: clamp(2rem, 3.55vw, 3.25rem);
  line-height: 0.98;
}
.reader-command-meta {
  color: rgb(248 241 226 / 0.58);
}
.reader-command-dot {
  color: rgb(var(--reader-brass) / 0.45);
}
.reader-command-tabs {
  background: rgb(255 255 255 / 0.045);
  border-color: rgb(248 241 226 / 0.14);
}
.reader-tab-button {
  color: rgb(248 241 226 / 0.62);
}
.reader-tab-button:hover,
.reader-tab-button--active {
  color: rgb(248 241 226 / 0.96);
  background: rgb(248 241 226 / 0.08);
}
.reader-tab-count {
  color: rgb(248 241 226 / 0.58);
  background: rgb(248 241 226 / 0.08);
}
.reader-tab-count--active {
  color: rgb(var(--reader-brass));
  background: rgb(var(--reader-brass) / 0.12);
}
.reader-tab-indicator {
  background: rgb(var(--reader-brass));
}
.reader-issue {
  margin-top: -1.65rem;
  padding: clamp(0.9rem, 1.8vw, 1.25rem);
  background: rgb(var(--reader-paper));
  border: 1px solid rgb(var(--reader-rule) / 0.12);
  border-radius: 12px;
}
.reader-section-label,
.reader-card-count,
.reader-section-head > span,
.reader-bottom-num,
.reader-path-index,
.reader-path-note,
.decision-group > header span,
.decision-card header,
.reader-quick-hits li > span,
.reader-quick-hits em,
.evidence-file summary span,
.evidence-file summary em,
.reader-context-stats dt,
.decision-card-action span,
.evidence-actions span {
  color: rgb(var(--reader-muted));
}
.reader-section-label {
  color: rgb(var(--reader-brass));
}
.reader-hero-grid,
.decision-queue,
.reader-quick-hits {
  background: rgb(var(--reader-paper));
  border-color: rgb(var(--reader-rule) / 0.13);
}
.reader-hero-grid {
  background:
    linear-gradient(rgb(var(--reader-rule) / 0.032) 1px, transparent 1px) 0 0 / 100% 3.2rem,
    rgb(var(--reader-paper));
  padding: clamp(0.9rem, 1.7vw, 1.25rem);
}
.reader-hero-grid::before,
.reader-hero-grid::after,
.reader-card-head,
.reader-section-head,
.reader-bottom-item,
.reader-context-stats,
.reader-context-stats div,
.decision-group,
.decision-card,
.reader-quick-hits li,
.evidence-list,
.evidence-file,
.evidence-file[open] summary {
  border-color: rgb(var(--reader-rule) / 0.12);
}
.reader-bottom-item,
.reader-lead-signal h2,
.decision-card h3,
.reader-quick-hits p,
.evidence-file summary strong,
.reader-context-persona {
  color: rgb(var(--reader-ink));
}
.reader-bottom-item:first-child {
  color: rgb(var(--reader-ink));
  font-size: clamp(1.18rem, 1.45vw, 1.55rem);
  line-height: 1.2;
  padding-bottom: 0.72rem;
}
.reader-bottom-summary {
  color: rgb(var(--reader-ink) / 0.64);
}
.reader-lead-signal h2 {
  font-size: clamp(1.22rem, 1.5vw, 1.58rem);
  line-height: 1.16;
}
.podcast-dock {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin: 0 auto 1.35rem;
  padding: 0;
}
/* The dock shell is NOT a descendant of .reader-command — so it can't inherit
 * .reader-command's theme-aware --reader-brass and previously fell back to
 * literal gold in BOTH themes
 * (gold is the DARK accent; light's one accent is sea-slate blue). It now
 * uses the GLOBAL theme tokens (defined at :root + [data-theme='dark'] in
 * globals.css, always in scope): light → cream card + ink text + blue accent;
 * a single [data-theme='dark'] shell override below restores the near-black
 * command-bar look. One accent per theme, honored. */
.podcast-dock-shell {
  width: min(100%, 820px);
  overflow: hidden;
  pointer-events: auto;
  color: rgb(var(--color-bone) / 0.9);
  background: rgb(var(--color-card) / 0.92);
  border: 1px solid rgb(var(--color-accent) / 0.28);
  border-radius: 8px;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}
[data-theme='dark'] .podcast-dock-shell {
  color: rgb(var(--color-bone) / 0.86);
  background: rgb(13 15 18 / 0.9);
}
.podcast-dock-progress {
  height: 0.55rem;
  background: rgb(var(--color-bone) / 0.06);
}
.podcast-dock-progress-fill {
  height: 100%;
  background: rgb(var(--color-accent) / 0.72);
}
.podcast-dock-progress-thumb {
  background: rgb(var(--color-accent));
}
/* The overlaid keyboard-seek range is visually transparent (opacity-0 utility);
 * strip the UA chrome so it never paints a second track/thumb over the styled
 * fill. Focus ring comes from reader-column.css .podcast-dock-seek:focus-visible. */
.podcast-dock-seek {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
  background: transparent;
}
.podcast-dock-seek::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 1rem;
  height: 100%;
}
.podcast-dock-seek::-moz-range-thumb {
  width: 1rem;
  height: 100%;
  border: 0;
  background: transparent;
}
.podcast-dock-body {
  display: grid;
  /* Four columns for four children: transport controls | flexible meta |
   * expand button | speed pill. The expand button (focused-view trigger) was
   * added as a 4th child without extending this template, so it stayed at 3
   * columns and grid auto-placement wrapped the speed pill onto an orphaned
   * second row. Both right-hand controls now sit at the row's trailing edge. */
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.15rem);
  min-height: 3.45rem;
  padding: 0 0.85rem 0.15rem;
}
.podcast-dock-controls {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.podcast-dock-icon-button,
.podcast-dock-play-button,
.podcast-dock-speed {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgb(var(--color-bone) / 0.56);
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
/* Invisible hit-slop centering a 44px tap target over each transport control —
 * the visible buttons stay 2.25-2.65rem (desktop) / 1.9-2.35rem (mobile), all
 * below 44px, so this lifts every one to WCAG 2.5.5 (AAA) without resizing the
 * glyph. Excludes the speed pill (it already meets 3.1rem × min 2rem and reads
 * as a labelled control, not an icon). */
.podcast-dock-icon-button::before,
.podcast-dock-play-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  transform: translate(-50%, -50%);
}
.podcast-dock-icon-button {
  width: 2.25rem;
  height: 2.25rem;
}
.podcast-dock-icon-button:hover,
.podcast-dock-speed:hover {
  color: rgb(var(--color-bone) / 0.9);
}
.podcast-dock-play-button {
  width: 2.65rem;
  height: 2.65rem;
  border: 1px solid rgb(var(--color-accent) / 0.32);
  border-radius: 50%;
  color: rgb(var(--color-bone) / 0.92);
  background: rgb(var(--color-accent) / 0.08);
}
.podcast-dock-play-button:hover {
  background: rgb(var(--color-accent) / 0.16);
}
.podcast-dock-meta {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: clamp(0.65rem, 1.5vw, 1rem);
}
.podcast-dock-title-block {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
}
.podcast-dock-status {
  flex: 0 0 auto;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: rgb(var(--color-bone) / 0.18);
}
.podcast-dock-status--playing {
  background: rgb(var(--color-accent));
  animation: podcast-dock-pulse 1.4s ease-in-out infinite;
}
.podcast-dock-title {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: var(--font-sans), system-ui, sans-serif;
  font-size: 0.86rem;
  line-height: 1.1;
  color: rgb(var(--color-bone) / 0.72);
}
.podcast-dock-time,
.podcast-dock-speed {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10.5px;
  line-height: 1;
  letter-spacing: 0;
  color: rgb(var(--color-bone) / 0.42);
}
.podcast-dock-time {
  flex: 0 0 auto;
  font-variant-numeric: tabular-nums;
}
.podcast-dock-speed {
  min-width: 3.1rem;
  min-height: 2rem;
  border: 1px solid rgb(var(--color-edge) / 0.1);
  border-radius: 6px;
  font-variant-numeric: tabular-nums;
}
@keyframes podcast-dock-pulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

/* ── Evidence confidence meter (deep dives) ──
 * Three hairline segments beside the "Evidence · <level> confidence" label:
 * high = 3 filled, medium = 2, preliminary = 1. One accent fill on hairline
 * edge tracks — no pills, no dots, no new hues. aria-hidden; the text label
 * carries the grade. */
.evidence-meter {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-left: 0.55rem;
  vertical-align: middle;
}
.evidence-meter-segment {
  width: 14px;
  height: 2px;
  background: rgb(var(--color-edge) / 0.15);
}
.evidence-meter-segment[data-filled] {
  background: rgb(var(--color-accent) / 0.75);
}
.reader-lead-signal p,
.decision-card > p,
.decision-card-action p,
.evidence-body > p,
.evidence-actions p {
  color: rgb(var(--reader-ink) / 0.72);
}
.reader-context-tags span,
.reader-lead-signal footer span,
.decision-card footer span,
.evidence-sources span,
.reader-path-count,
.evidence-actions small {
  color: rgb(var(--reader-muted));
}
.reader-path {
  border-top-color: rgb(var(--reader-rule) / 0.12);
}
.reader-path ol,
.reader-path li {
  border-color: rgb(var(--reader-rule) / 0.1);
}
.reader-path a {
  min-height: 3.05rem;
}
.reader-path a:hover {
  color: rgb(var(--reader-ink));
}
.reader-path-label {
  color: rgb(var(--reader-ink));
}
.reader-path-count {
  color: rgb(var(--reader-brass));
}
.reader-urgency[data-urgency='act_now'],
.decision-group[data-urgency='act_now'] h2,
.reader-quick-hits li[data-urgency='act_now'] em {
  color: rgb(var(--reader-rust));
}
.reader-urgency[data-urgency='monitor'],
.decision-group[data-urgency='monitor'] h2,
.reader-quick-hits li[data-urgency='monitor'] em {
  color: rgb(var(--reader-amber));
}
.reader-context-tags span::before,
.decision-card footer span::before,
.evidence-sources span::before {
  color: rgb(var(--reader-rule) / 0.22);
}
.decision-card-action,
.signal-lede-footer {
  border-color: rgb(var(--reader-rule) / 0.1);
}
@media (min-width: 960px) {
  .reader-bottom-line,
  .reader-lead-signal,
  .reader-context-panel {
    border-color: rgb(var(--reader-rule) / 0.12);
  }
}
@media (max-width: 720px) {
  .reader-command {
    padding-top: calc(var(--pub-masthead-h, 44px) + 2.35rem);
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .reader-command::before {
    height: clamp(24rem, 49vh, 29rem);
  }
  .reader-command::after {
    top: clamp(24rem, 49vh, 29rem);
  }
  .reader-command-head {
    min-height: auto;
    gap: 0.65rem;
    margin-bottom: 0.7rem;
    padding: 0.8rem 0 0.85rem;
  }
  .reader-command-title {
    font-size: clamp(1.95rem, 9vw, 2.45rem);
    line-height: 0.96;
  }
  .reader-command-controls {
    gap: 0.62rem;
  }
  .reader-command-meta {
    gap: 0.38rem;
    font-size: 10px;
  }
  .reader-issue {
    margin-top: -0.45rem;
    padding: 0.65rem;
  }
  .reader-hero-grid {
    padding: 0.75rem;
  }
  .reader-bottom-line,
  .reader-lead-signal,
  .reader-context-panel {
    padding: 0.8rem 0;
  }
  .reader-bottom-list {
    margin-top: 0.55rem;
  }
  .reader-bottom-summary {
    margin-top: 0.72rem;
    padding-top: 0.72rem;
    font-size: 0.93rem;
    line-height: 1.45;
  }
  .reader-bottom-item {
    grid-template-columns: 2rem minmax(0, 1fr);
    gap: 0.62rem;
    padding: 0.72rem 0;
    font-size: 0.98rem;
    line-height: 1.38;
  }
  .reader-bottom-item > span:last-child {
    display: -webkit-box;
    min-width: 0;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .reader-bottom-item:first-child {
    display: grid;
    grid-template-columns: 2rem minmax(0, 1fr);
    gap: 0.62rem;
    padding: 0.72rem 0;
    font-family: var(--font-serif), Georgia, serif;
    font-size: 1.02rem;
    line-height: 1.35;
    font-weight: 600;
    text-wrap: pretty;
  }
  .reader-bottom-item:first-child > span:last-child {
    -webkit-line-clamp: 3;
  }
  .reader-bottom-item:first-child .reader-bottom-num {
    display: block;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
  .reader-path a {
    min-height: 2.8rem;
  }
  .podcast-dock-shell {
    border-radius: 10px;
    box-shadow: none;
  }
  .podcast-dock-body {
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    gap: 0.55rem;
    min-height: 2.95rem;
    padding-inline: 0.55rem;
  }
  .podcast-dock-progress {
    height: 0.42rem;
  }
  .podcast-dock-icon-button {
    width: 1.9rem;
    height: 1.9rem;
  }
  .podcast-dock-play-button {
    width: 2.35rem;
    height: 2.35rem;
  }
  .podcast-dock-title-block {
    /* Keep the episode title on phones — it is the episode's identity. The
     * meta column is minmax(0, 1fr), so the block flexes and the title
     * truncates to a single ellipsis line (base .podcast-dock-title already
     * carries nowrap + text-overflow) without crowding the transport row. */
    flex: 1 1 auto;
    min-width: 0;
  }
  .podcast-dock-meta {
    justify-content: flex-start;
  }
  .podcast-dock-speed {
    min-width: 2.85rem;
  }
}

/* ≤520px the dock cannot carry both the episode title and the clock — the
 * title wins. The time is the redundant half: elapsed/total is already
 * announced on the seek bar (the overlaid range's aria-valuetext) and shown in
 * the ExpandedPlayer, so hiding the text clock loses no function. */
@media (max-width: 520px) {
  .podcast-dock-time {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .podcast-dock-status--playing {
    animation: none;
  }
}

/* ── Briefing reader masthead ── */
.masthead-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgb(var(--color-accent) / 0.8);
  margin-bottom: 0.9rem;
  white-space: nowrap;
}
.masthead-kicker::before,
.masthead-kicker::after {
  content: '';
  display: inline-block;
  width: clamp(18px, 4vw, 36px);
  height: 1px;
  background: rgb(var(--color-accent) / 0.35);
}
.masthead-title {
  font-family: var(--font-display), var(--font-serif), Georgia, serif;
  font-size: clamp(2.35rem, 4.6vw, 3.7rem);
  line-height: 0.98;
  letter-spacing: -0.042em;
  font-weight: 600;
  color: rgb(var(--color-bone) / 0.94);
  margin-bottom: 0.9rem;
  font-variation-settings: 'opsz' 144, 'SOFT' 70;
  font-feature-settings: 'ss02' 1;
}
[data-theme='dark'] .masthead-title {
  font-variation-settings: 'opsz' 144, 'SOFT' 40;
  color: rgb(var(--color-bone) / 0.98);
}
.masthead-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: rgb(var(--color-bone) / 0.55);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.04em;
}
.masthead-meta-dot { color: rgb(var(--color-bone) / 0.25); }
.masthead-meta-text { letter-spacing: 0.04em; }
.masthead-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgb(var(--color-edge) / 0.05);
}
.masthead-nav button {
  padding: 0.6rem 0.25rem 0.85rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  position: relative;
}
.masthead-nav button .text-bone\/90 { color: rgb(var(--color-bone) / 0.95) !important; }

/* ── The Signal lede ── */
.signal-lede {
  position: relative;
  padding: 2rem 0 0;
}
.signal-lede-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.1rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.signal-lede-label {
  color: rgb(var(--color-accent) / 0.8);
  font-weight: 500;
}
.signal-lede-urgency {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: rgb(var(--color-bone) / 0.5);
  font-weight: 500;
}
.signal-lede-urgency-rule {
  display: inline-block;
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}
.signal-lede-urgency[data-urgency="act_now"]      { color: rgb(201 59 46 / 0.85); }
.signal-lede-urgency[data-urgency="monitor"]      { color: rgb(185 130 45 / 0.85); }
.signal-lede-urgency[data-urgency="background"]   { color: rgb(var(--color-bone) / 0.45); }
[data-theme="dark"] .signal-lede-urgency[data-urgency="act_now"]    { color: rgb(227 125 113 / 0.9); }
[data-theme="dark"] .signal-lede-urgency[data-urgency="monitor"]    { color: rgb(219 170 98 / 0.9); }

.signal-lede-rule {
  height: 1px;
  background: rgb(var(--color-bone) / 0.92);
  width: 100%;
  margin-bottom: 1.25rem;
  transform-origin: left;
  animation: signalRule 900ms cubic-bezier(0.22, 1, 0.36, 1) 250ms both;
}
@keyframes signalRule {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
.signal-lede-headline {
  font-family: var(--font-display), var(--font-serif), Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.65rem, 3.4vw, 2.5rem);
  line-height: 1.22;
  letter-spacing: -0.03em;
  color: rgb(var(--color-bone) / 0.95);
  max-width: 38ch;
  text-wrap: balance;
  hanging-punctuation: first last;
  font-variation-settings: 'opsz' 144, 'SOFT' 25;
}
.signal-lede-dropcap {
  float: left;
  font-family: var(--font-display), var(--font-serif), Georgia, serif;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  font-size: clamp(3.4rem, 6vw, 5rem);
  line-height: 0.82;
  padding: 0.2rem 0.55rem 0 0;
  margin-top: 0.14em;
  color: rgb(var(--color-accent) / 0.92);
  font-weight: 600;
  font-style: italic;
}
.signal-lede-detail {
  margin-top: 1.25rem;
  font-family: var(--font-serif), Georgia, serif;
  font-size: 16.5px;
  line-height: 1.65;
  color: rgb(var(--color-bone) / 0.72);
  max-width: 62ch;
}
.signal-lede-footer {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgb(var(--color-edge) / 0.06);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgb(var(--color-bone) / 0.45);
}

/* ── Intelligence Map ── */
.intel-map {
  position: relative;
}
.intel-map-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.15rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgb(var(--color-edge) / 0.05);
}
.intel-map-count {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  color: rgb(var(--color-bone) / 0.35);
}
.intel-card {
  position: relative;
  background: rgb(var(--color-card));
  padding: 1.25rem 1.35rem 1.05rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  min-height: 180px;
  transition:
    background 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.intel-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.25rem;
  bottom: 1.25rem;
  width: 2px;
  background: rgb(var(--color-accent) / 0.35);
  opacity: 0;
  transition: opacity 0.4s;
}
.intel-card:hover::before { opacity: 1; }
.intel-card:hover {
  background: rgb(var(--color-surface));
  transform: translateY(-1px);
}
.intel-card[data-urgency="act_now"]::before {
  background: rgb(201 59 46 / 0.7);
  opacity: 0.7;
}
[data-theme="dark"] .intel-card[data-urgency="act_now"]::before { background: rgb(227 125 113 / 0.75); }
.intel-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.85rem;
}
.intel-card-num {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  color: rgb(var(--color-accent) / 0.75);
  flex-shrink: 0;
}
.intel-card-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem;
}
.intel-card-urgency {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgb(var(--color-bone) / 0.45);
}
.intel-card-urgency-rule {
  display: inline-block;
  width: 14px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}
.intel-card-urgency[data-urgency="act_now"]  { color: rgb(201 59 46 / 0.9); }
.intel-card-urgency[data-urgency="monitor"]  { color: rgb(185 130 45 / 0.9); }
[data-theme="dark"] .intel-card-urgency[data-urgency="act_now"]  { color: rgb(227 125 113 / 0.9); }
[data-theme="dark"] .intel-card-urgency[data-urgency="monitor"]  { color: rgb(219 170 98 / 0.9); }
.intel-card-tag {
  display: inline-flex;
  align-items: center;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  color: rgb(var(--color-bone) / 0.42);
  padding: 0.12rem 0.5rem;
  border: 1px solid rgb(var(--color-edge) / 0.07);
  border-radius: 2px;
}
.intel-card-tag--arc  { color: rgb(var(--color-accent) / 0.75); border-color: rgb(var(--color-accent) / 0.2); }
.intel-card-tag--lead { color: rgb(20 120 95 / 0.85); border-color: rgb(20 120 95 / 0.22); }
[data-theme="dark"] .intel-card-tag--lead { color: rgb(122 196 168 / 0.85); border-color: rgb(122 196 168 / 0.22); }

.intel-card-title {
  font-family: var(--font-serif), Georgia, serif;
  font-size: 17px;
  line-height: 1.28;
  letter-spacing: -0.022em;
  color: rgb(var(--color-bone) / 0.92);
  font-weight: 500;
  text-wrap: balance;
}
.intel-card-summary {
  font-size: 14px;
  line-height: 1.6;
  color: rgb(var(--color-bone) / 0.64);
  letter-spacing: -0.005em;
}
.intel-card-footer {
  margin-top: auto;
  padding-top: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.intel-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

/* ── Deep dives ── */
.deep-dives-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.15rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgb(var(--color-edge) / 0.05);
}
.deep-dives-count {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  color: rgb(var(--color-bone) / 0.35);
}
.deep-dives-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.deep-dive {
  position: relative;
  background: rgb(var(--color-card));
  border: 1px solid rgb(var(--color-edge) / 0.06);
  border-radius: 14px;
  padding: 1.75rem 1.75rem 1.5rem;
  transition: border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), transform 0.45s;
}
@media (min-width: 768px) {
  .deep-dive { padding: 2.25rem 2.25rem 1.75rem; }
}
.deep-dive:hover {
  border-color: rgb(var(--color-edge) / 0.12);
}
.deep-dive[data-urgency="act_now"] {
  border-left-color: rgb(201 59 46 / 0.55);
  border-left-width: 2px;
}
[data-theme="dark"] .deep-dive[data-urgency="act_now"] {
  border-left-color: rgb(227 125 113 / 0.65);
}
.deep-dive-header {
  display: flex;
  gap: 1.15rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
}
.deep-dive-num {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: rgb(var(--color-accent) / 0.75);
  flex-shrink: 0;
  padding-top: 0.35rem;
}
.deep-dive-header-main {
  flex: 1;
  min-width: 0;
}
.deep-dive-title {
  font-family: var(--font-serif), Georgia, serif;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  line-height: 1.22;
  letter-spacing: -0.025em;
  color: rgb(var(--color-bone) / 0.94);
  font-weight: 500;
  text-wrap: balance;
  margin-bottom: 0.45rem;
}
.deep-dive-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
.deep-dive-urgency {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgb(var(--color-bone) / 0.5);
}
.deep-dive-urgency-rule {
  display: inline-block;
  width: 14px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}
.deep-dive-urgency[data-urgency="act_now"] { color: rgb(201 59 46 / 0.9); }
.deep-dive-urgency[data-urgency="monitor"] { color: rgb(185 130 45 / 0.9); }
[data-theme="dark"] .deep-dive-urgency[data-urgency="act_now"] { color: rgb(227 125 113 / 0.9); }
[data-theme="dark"] .deep-dive-urgency[data-urgency="monitor"] { color: rgb(219 170 98 / 0.9); }
.deep-dive-tag {
  display: inline-flex;
  align-items: center;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  color: rgb(var(--color-bone) / 0.45);
  padding: 0.1rem 0.5rem;
  border: 1px solid rgb(var(--color-edge) / 0.07);
  border-radius: 2px;
}
.deep-dive-tag--arc  { color: rgb(var(--color-accent) / 0.75); border-color: rgb(var(--color-accent) / 0.2); }
.deep-dive-tag--lead { color: rgb(20 120 95 / 0.85); border-color: rgb(20 120 95 / 0.22); }
[data-theme="dark"] .deep-dive-tag--lead { color: rgb(122 196 168 / 0.85); border-color: rgb(122 196 168 / 0.22); }
.deep-dive-summary {
  font-family: var(--font-serif), Georgia, serif;
  font-size: 16px;
  line-height: 1.6;
  color: rgb(var(--color-bone) / 0.72);
  margin: 0 0 1.1rem;
  max-width: 62ch;
}
@media (min-width: 768px) {
  .deep-dive-summary { padding-left: 0; }
}
.deep-dive-body-rule {
  height: 1px;
  background: rgb(var(--color-edge) / 0.07);
  margin-bottom: 1.1rem;
}
.deep-dive-content--collapsed {
  max-height: 240px;
  overflow: hidden;
}
.deep-dive-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 110px;
  background: linear-gradient(to top, rgb(var(--color-card)) 15%, rgb(var(--color-card) / 0.6) 60%, transparent);
  pointer-events: none;
}
.deep-dive-toggle {
  margin-top: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgb(var(--color-accent) / 0.8);
  padding: 0.45rem 0;
  transition: color 0.3s;
}
.deep-dive-toggle:hover { color: rgb(var(--color-accent)); }
.deep-dive-actions {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgb(var(--color-edge) / 0.06);
}
.deep-dive-actions-label {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgb(var(--color-accent) / 0.75);
  margin-bottom: 0.75rem;
}
.deep-dive-actions-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
}
.deep-dive-action {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}
.deep-dive-action-mark {
  color: rgb(var(--color-accent) / 0.6);
  font-size: 0.95rem;
  padding-top: 0.1rem;
  flex-shrink: 0;
}
.deep-dive-action-body { flex: 1; min-width: 0; }
.deep-dive-action-text {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgb(var(--color-bone) / 0.78);
  letter-spacing: -0.005em;
}
.deep-dive-action-meta {
  margin-top: 0.3rem;
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.deep-dive-action-urgency {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.1rem 0.45rem;
  border: 1px solid currentColor;
  border-radius: 2px;
  color: rgb(var(--color-bone) / 0.45);
  opacity: 0.9;
}
.deep-dive-action-urgency[data-urgency="now"]         { color: rgb(201 59 46 / 0.9); }
.deep-dive-action-urgency[data-urgency="this_sprint"] { color: rgb(185 130 45 / 0.9); }
.deep-dive-action-urgency[data-urgency="this_quarter"]{ color: rgb(var(--color-accent) / 0.9); }
[data-theme="dark"] .deep-dive-action-urgency[data-urgency="now"]         { color: rgb(227 125 113 / 0.9); }
[data-theme="dark"] .deep-dive-action-urgency[data-urgency="this_sprint"] { color: rgb(219 170 98 / 0.9); }
.deep-dive-action-rationale {
  font-size: 12.5px;
  color: rgb(var(--color-bone) / 0.5);
  line-height: 1.5;
}
.deep-dive-footer {
  margin-top: 1rem;
  display: flex;
  justify-content: flex-end;
}

/* ── Quick hits ── */
.quick-hits-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgb(var(--color-edge) / 0.05);
}
.quick-hits-count {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  color: rgb(var(--color-bone) / 0.35);
}
.quick-hits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.quick-hit {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: baseline;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgb(var(--color-edge) / 0.05);
  transition: background 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.quick-hit:last-child { border-bottom: none; }
.quick-hit:hover { background: rgb(var(--color-edge) / 0.025); }
.quick-hit-num {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  color: rgb(var(--color-accent) / 0.6);
  min-width: 2ch;
}
.quick-hit-text {
  font-family: var(--font-serif), Georgia, serif;
  font-size: 15.5px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: rgb(var(--color-bone) / 0.8);
  text-wrap: pretty;
}
.quick-hit-urgency {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgb(var(--color-bone) / 0.4);
  flex-shrink: 0;
}
.quick-hit-urgency[data-urgency="act_now"] { color: rgb(201 59 46 / 0.9); }
.quick-hit-urgency[data-urgency="monitor"] { color: rgb(185 130 45 / 0.9); }
[data-theme="dark"] .quick-hit-urgency[data-urgency="act_now"] { color: rgb(227 125 113 / 0.9); }
[data-theme="dark"] .quick-hit-urgency[data-urgency="monitor"] { color: rgb(219 170 98 / 0.9); }

/* ── Bottom line — The Editor's Close ──
 * A 2-4 sentence closing paragraph at reading scale (matches the live
 * reader's .col-bottomline treatment). The old centered-italic pull-quote
 * sizing suited a one-line aphorism and was retired 2026-07-30. */
.bottom-line {
  position: relative;
  padding: 1.75rem 0 0.5rem;
  text-align: left;
}
.bottom-line-kicker {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgb(var(--color-accent) / 0.75);
  margin-bottom: 1.1rem;
}
.bottom-line-rule {
  width: 100%;
  height: 1px;
  background: rgb(var(--color-edge) / 0.12);
  margin: 0 0 1.5rem;
  transform-origin: left center;
  animation: bottomLineRule 900ms cubic-bezier(0.22, 1, 0.36, 1) 300ms both;
}
@keyframes bottomLineRule {
  from { transform: scaleX(0); opacity: 0; }
  to   { transform: scaleX(1); opacity: 1; }
}
.bottom-line-text {
  font-family: var(--font-serif), Georgia, serif;
  font-weight: 450;
  font-style: normal;
  font-size: 1.05rem;
  line-height: 1.7;
  letter-spacing: -0.008em;
  color: rgb(var(--color-bone) / 0.9);
  max-width: 66ch;
  margin: 0;
  text-wrap: pretty;
}
/* No .bottom-line-signoff rules: the "— Clarity" signature was removed
 * 2026-07-31 (the masthead already names the publication). The edition ends
 * on the closing paragraph. */

/* ── Story cards (desktop feed) ── */
/* ── Stories feed — editorial dispatches view ──────────────────── */
.stories-feed {
  max-width: 760px;
  margin: 0 auto;
}
.stories-feed-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: 0.9rem;
  margin-bottom: 0;
}
.stories-feed-kicker {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgb(var(--color-accent) / 0.82);
  margin: 0;
}
.stories-feed-count {
  display: inline-flex;
  align-items: baseline;
  gap: 0.55rem;
  margin: 0;
}
.stories-feed-count-num {
  font-family: var(--font-display), var(--font-serif), Georgia, serif;
  font-variation-settings: 'opsz' 96, 'SOFT' 40;
  font-style: italic;
  font-weight: 500;
  font-size: 1.35rem;
  letter-spacing: -0.015em;
  color: rgb(var(--color-accent) / 0.95);
  font-feature-settings: 'lnum' 1, 'tnum' 1;
}
.stories-feed-count-label {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgb(var(--color-bone) / 0.45);
}
/* Desk-level track record — one quiet mono line above the section rule.
 * Companion to each card's crossover credit; the single controlled accent,
 * tracked mono, a soft pulse dot. Renders only when there's a real record. */
.stories-ledger {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.1rem 0.15rem;
  margin: 0 0 0.9rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgb(var(--color-bone) / 0.42);
}
.stories-ledger-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 0.5rem;
  border-radius: 9999px;
  background: rgb(var(--color-accent) / 0.9);
  animation: story-scoop-pulse 2.8s ease-in-out infinite;
}
.stories-ledger-em {
  color: rgb(var(--color-accent) / 0.92);
}
.stories-ledger-sep {
  color: rgb(var(--color-bone) / 0.28);
}
@media (prefers-reduced-motion: reduce) {
  .stories-ledger-dot { animation: none; opacity: 0.9; }
}

.stories-feed-rule {
  height: 1px;
  width: 100%;
  margin-bottom: 1.75rem;
  background: linear-gradient(
    to right,
    rgb(var(--color-accent) / 0.4) 0%,
    rgb(var(--color-accent) / 0.15) 35%,
    rgb(var(--color-edge) / 0.08) 70%,
    transparent 100%
  );
}

/* Stories empty state — editorial "press awaiting" card */
.stories-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 40vh;
  text-align: center;
  max-width: 440px;
  margin: 0 auto;
  padding: 1rem;
}
.stories-empty-rule {
  width: 48px;
  height: 1px;
  background: rgb(var(--color-accent) / 0.4);
  margin-bottom: 1.75rem;
}
.stories-empty-kicker {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10.5px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgb(var(--color-accent) / 0.78);
  margin-bottom: 0.9rem;
}
.stories-empty-title {
  font-family: var(--font-display), var(--font-serif), Georgia, serif;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
  font-size: clamp(1.8rem, 3.6vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 500;
  color: rgb(var(--color-bone) / 0.92);
  margin: 0 0 1rem;
  text-wrap: balance;
}
.stories-empty-title-accent {
  font-style: italic;
  color: rgb(var(--color-accent) / 0.95);
}
.stories-empty-lede {
  font-family: var(--font-serif), Georgia, serif;
  font-size: 15px;
  line-height: 1.65;
  color: rgb(var(--color-bone) / 0.6);
  max-width: 40ch;
  margin: 0;
  text-wrap: pretty;
}

.story-card {
  position: relative;
  background: rgb(var(--color-card));
  border: 1px solid rgb(var(--color-edge) / 0.06);
  /* Squared to the broadsheet card idiom (was 14px — rounded card chrome
   * read SaaS against the front page). overflow:hidden still clips the
   * leading accent rail flush to the card edge. */
  border-radius: 0;
  overflow: hidden;
  transition:
    border-color 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  /* Direct saved/search links land beneath the sticky publication masthead. */
  scroll-margin-top: calc(var(--pub-masthead-h, 64px) + 1rem);
}
/* A dormant accent rail down the leading edge — the signature editorial mark,
   revealed on hover instead of a scale/lift transform. */
.story-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 2px;
  background: rgb(var(--color-accent) / 0.9);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-theme='dark'] .story-card {
  background:
    linear-gradient(180deg,
      rgb(var(--color-card)) 0%,
      rgb(var(--color-void)) 100%);
  border-color: rgb(var(--color-edge) / 0.08);
}
.story-card:hover {
  border-color: rgb(var(--color-accent) / 0.22);
  box-shadow: 0 4px 22px rgb(var(--color-bone) / 0.04);
}
.story-card:hover::before {
  opacity: 1;
}
.story-card:hover .story-card-title {
  color: rgb(var(--color-bone) / 1);
}
.story-card:hover .story-card-num {
  color: rgb(var(--color-accent) / 1);
}
.story-card-title {
  transition: color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.story-card-inner {
  padding: 1.5rem 1.5rem 1.1rem;
}
.story-card--quick-hit .story-card-inner {
  padding: 1.15rem 1.25rem 1rem;
}
@media (min-width: 768px) {
  .story-card-inner { padding: 1.85rem 1.85rem 1.35rem; }
  .story-card--quick-hit .story-card-inner { padding: 1.35rem 1.5rem 1.1rem; }
}
.story-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}
/* Leading metadata cluster: folio + relevance + sources, middot-separated. */
.story-card-meta-lead {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
/* Folio number — the signature 2-digit editorial rhythm mark (serif italic,
   accent, replacing the old "Nº" mono prefix). */
.story-card-num {
  font-family: var(--font-display), var(--font-serif), Georgia, serif;
  font-style: italic;
  font-variation-settings: 'opsz' 40;
  font-size: 1.05rem;
  line-height: 1;
  letter-spacing: -0.01em;
  color: rgb(var(--color-accent) / 0.9);
  font-variant-numeric: tabular-nums;
  transition: color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.story-card-meta-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgb(var(--color-bone) / 0.22);
  flex: none;
}
.story-card-read {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgb(var(--color-bone) / 0.35);
  font-variant-numeric: tabular-nums;
}
.story-card-title {
  font-family: var(--font-display), var(--font-serif), Georgia, serif;
  font-variation-settings: 'opsz' 96, 'SOFT' 30;
  font-size: clamp(1.25rem, 2.1vw, 1.55rem);
  line-height: 1.22;
  letter-spacing: -0.028em;
  color: rgb(var(--color-bone) / 0.94);
  font-weight: 500;
  margin-bottom: 0.55rem;
  text-wrap: balance;
}
.story-card--quick-hit .story-card-title {
  font-size: clamp(1.1rem, 1.7vw, 1.3rem);
  margin-bottom: 0.2rem;
}
/* ── Story continuity ribbon ("Day 4 · Developing" + crossover credit) ──
 * Mirrors the reader column's .col-arc mono idiom so a Story wears the same
 * "the paper remembers" treatment as a Brief entry. Calm-urgency: tracked
 * mono-caps in the single controlled accent, a hairline lead rule, and a
 * quiet pulse dot on the mainstream-crossover flex. */
.story-card-arc {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  margin: 0.15rem 0 0.85rem;
  min-height: 1rem;
}
.story-card-arc-day,
.story-card-scoop {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}
.story-card-arc-day {
  color: rgb(var(--color-accent) / 0.85);
}
.story-card-arc-rule {
  display: inline-block;
  width: 14px;
  height: 1px;
  background: currentColor;
  opacity: 0.65;
}
.story-card-arc-traj {
  color: rgb(var(--color-accent) / 0.7);
}
.story-card-scoop {
  color: rgb(var(--color-accent) / 0.92);
  letter-spacing: 0.14em;
}
.story-card-scoop-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 9999px;
  background: rgb(var(--color-accent) / 0.9);
  animation: story-scoop-pulse 2.8s ease-in-out infinite;
}
@keyframes story-scoop-pulse {
  0%, 100% { opacity: 0.45; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .story-card-scoop-dot { animation: none; opacity: 0.9; }
}

.story-card-summary {
  font-family: var(--font-serif), Georgia, serif;
  font-size: 15px;
  line-height: 1.62;
  color: rgb(var(--color-bone) / 0.66);
  letter-spacing: -0.005em;
  max-width: 60ch;
  margin-bottom: 0.9rem;
  text-wrap: pretty;
}
.story-card--quick-hit .story-card-summary {
  margin-bottom: 0.8rem;
}
.story-card-editor-note {
  max-width: 60ch;
  margin: 0.1rem 0 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgb(var(--color-edge) / 0.06);
}
.story-card-editor-note-label {
  margin: 0 0 0.3rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgb(var(--color-accent) / 0.62);
}
.story-card-editor-note-copy {
  margin: 0;
  font-family: var(--font-serif), Georgia, serif;
  font-size: 14px;
  line-height: 1.58;
  color: rgb(var(--color-bone) / 0.7);
  text-wrap: pretty;
}
/* Collapsed decks clamp to 3 lines with a soft fade so long summaries never
   dominate the scan; expanding the card releases the clamp.
   SCOPED AWAY FROM EDITOR PICKS (2026-07-23): an editor-selected Story has no
   long-form body to expand into (detailedContent is '') so its card never
   renders the "Read analysis" toggle — the clamp could never be released, which
   silently ate a full line of real copy on ~3 of 7 live stories and put a
   "there's more" fade on complete decks that had no more. Engine-bounded decks
   (≤420 chars) are short enough to show whole. */
.story-card:not(.story-card--quick-hit) .story-card-summary:not(.is-expanded) {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, #000 62%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 62%, transparent 100%);
}
.story-card-summary.is-expanded {
  -webkit-line-clamp: none;
  -webkit-mask-image: none;
  mask-image: none;
}
.story-card-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgb(var(--color-accent) / 0.8);
  padding: 0.5rem 0 0;
  transition: color 0.3s;
}
.story-card-toggle:hover { color: rgb(var(--color-accent)); }
@media (prefers-reduced-motion: reduce) {
  .story-card,
  .story-card::before,
  .story-card-title,
  .story-card-num {
    transition: none;
  }
}

/* ── Feedback buttons (thumbs) ── */
.feedback {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.feedback-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  color: rgb(var(--color-bone) / 0.35);
  transition:
    color 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.3s;
}
/* Invisible hit-slop centering a 44px tap target over the 28px visual glyph —
 * WCAG 2.5.5 (AAA). The visible thumb button is unchanged. */
.feedback-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  transform: translate(-50%, -50%);
}
.feedback-btn:hover {
  background: rgb(var(--color-edge) / 0.04);
}
.feedback-btn--down:hover { color: rgb(201 59 46 / 0.85); }
.feedback-btn--up:hover   { color: rgb(20 120 95 / 0.85); }
[data-theme="dark"] .feedback-btn--down:hover { color: rgb(227 125 113 / 0.9); }
[data-theme="dark"] .feedback-btn--up:hover   { color: rgb(122 196 168 / 0.9); }
.feedback-btn[data-active="true"] {
  background: rgb(var(--color-edge) / 0.05);
}
.feedback-btn--down[data-active="true"] { color: rgb(201 59 46 / 0.9); }
.feedback-btn--up[data-active="true"]   { color: rgb(20 120 95 / 0.9); }
[data-theme="dark"] .feedback-btn--down[data-active="true"] { color: rgb(227 125 113 / 0.95); }
[data-theme="dark"] .feedback-btn--up[data-active="true"]   { color: rgb(122 196 168 / 0.95); }

/* ── Save / bookmark toggle (deep dives · quick hits · stories) ──
   A quiet mono-labeled chip that matches the feedback affordance's weight —
   accent-filled bookmark + "Saved" when active, hairline + "Save" at rest. */
.save-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
  color: rgb(var(--color-bone) / 0.4);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition:
    color 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.3s;
}
.save-btn:hover {
  color: rgb(var(--color-accent) / 0.85);
  background: rgb(var(--color-edge) / 0.04);
}
.save-btn[data-active="true"] {
  color: rgb(var(--color-accent) / 0.9);
}
.save-btn-label {
  line-height: 1;
}

/* ── Share chip (deep dives · quick hits · stories) ──
   Same shape and weight as .save-btn right beside it — a quiet mono-labeled
   chip, not a differently-styled bare icon — so "Share your take" reads as
   a peer affordance to "Save", not an afterthought. Icon-only item-surface
   call sites (no triggerLabel) keep the plain .feedback-btn square instead. */
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
  color: rgb(var(--color-bone) / 0.4);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition:
    color 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.3s;
}
.share-btn:hover {
  color: rgb(var(--color-accent) / 0.85);
  background: rgb(var(--color-edge) / 0.04);
}
.share-btn-label {
  line-height: 1;
}

/* ── Deep-dive lede (summary as editorial paragraph) ── */
.deep-dive-lede {
  font-family: var(--font-serif), Georgia, serif;
  font-size: 15.5px;
  line-height: 1.55;
  letter-spacing: -0.012em;
  color: rgb(var(--color-bone) / 0.68);
  margin-bottom: 1rem;
  text-wrap: pretty;
}
.deep-dive-lede::first-line {
  /* subtle small-caps on the opening phrase for magazine feel */
  letter-spacing: 0.02em;
}

/* Smooth scrolling when users jump to section anchors. The per-heading
 * scroll-margin-top that keeps the sticky masthead + running-index nav from
 * covering the target now lives with the reader in reader-column.css, keyed to
 * the live col-*-heading ids (this block previously targeted dead the-signal-
 * heading/intel-map-heading/... ids that no longer exist in the markup). */
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* Stagger the TOC list items in one by one — small editorial flourish */
.toc-item {
  opacity: 0;
  animation: toc-row-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.toc-item:nth-child(1) { animation-delay: 0.35s; }
.toc-item:nth-child(2) { animation-delay: 0.45s; }
.toc-item:nth-child(3) { animation-delay: 0.55s; }
.toc-item:nth-child(4) { animation-delay: 0.65s; }
.toc-item:nth-child(5) { animation-delay: 0.75s; }
@keyframes toc-row-in {
  from { opacity: 0; transform: translateX(-6px); }
  to { opacity: 1; transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
  .toc-item { opacity: 1; animation: none; }
}

/* TOC hover: roman numeral slides right slightly, title brightens */
.toc-link .toc-roman {
  display: inline-block;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              color 0.35s;
}
.toc-link:hover .toc-roman {
  transform: translateX(3px);
}

/* ── Editorial section divider (briefing reader) ── */
.editorial-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  padding: 0.5rem 0;
  margin: 0 auto;
  max-width: 180px;
  user-select: none;
}
.editorial-divider-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgb(var(--color-bone) / 0.12) 50%,
    transparent 100%
  );
}
.editorial-divider-ornament {
  font-size: 7px;
  color: rgb(var(--color-accent) / 0.55);
  letter-spacing: 0.3em;
  transform: translateY(-1px);
}
@media (prefers-reduced-motion: no-preference) {
  .editorial-divider-ornament {
    transition: color 0.8s ease;
  }
}

/* ── Table of Contents (briefing front-matter index) ──────────────── */
.toc {
  max-width: 620px;
  margin: 0 auto;
  padding: 1.75rem 1rem 0;
}
.toc-kicker {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9.5px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgb(var(--color-accent) / 0.75);
  text-align: center;
  margin-bottom: 1.2rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgb(var(--color-edge) / 0.08);
}
.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.toc-item { display: block; }
.toc-link {
  display: grid;
  grid-template-columns: 2.2rem 1fr auto;
  align-items: baseline;
  gap: 0.9rem;
  padding: 0.55rem 0.25rem;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid rgb(var(--color-edge) / 0.04);
  transition: color 0.3s, border-color 0.3s;
}
.toc-link:hover {
  border-color: rgb(var(--color-accent) / 0.3);
}
.toc-link:hover .toc-title {
  color: rgb(var(--color-bone) / 1);
}
.toc-link:hover .toc-roman {
  color: rgb(var(--color-accent) / 1);
}
.toc-roman {
  font-family: var(--font-serif), Georgia, serif;
  font-style: italic;
  font-size: 15px;
  font-weight: 500;
  color: rgb(var(--color-accent) / 0.75);
  letter-spacing: -0.01em;
  text-align: center;
  transition: color 0.3s;
}
.toc-rule {
  display: none;
}
.toc-title {
  font-family: var(--font-serif), Georgia, serif;
  font-size: 16px;
  letter-spacing: -0.015em;
  color: rgb(var(--color-bone) / 0.82);
  transition: color 0.3s;
}
.toc-time {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgb(var(--color-bone) / 0.45);
}

/* ── Editor's handoff (post-login cover card) ─────────────────────── */
.editor-handoff {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgb(var(--color-void) / 0.96);
  -webkit-backdrop-filter: blur(24px);
  /* Standard syntax MUST come last: the prod CSS minifier keeps only the
   * final declaration of a vendor pair, and Chromium ignores -webkit-. */
  backdrop-filter: blur(24px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  cursor: pointer;
}
.editor-handoff-card {
  position: relative;
  max-width: 560px;
  width: 100%;
  text-align: center;
  padding: clamp(2rem, 6vw, 3.5rem) clamp(1.5rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  cursor: default;
}
.editor-handoff-rule {
  width: clamp(48px, 8vw, 72px);
  height: 1px;
  background: rgb(var(--color-accent) / 0.45);
}
.editor-handoff-kicker {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10.5px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgb(var(--color-accent) / 0.82);
  margin: 0;
}
.editor-handoff-greeting {
  font-family: var(--font-display), var(--font-serif), Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 500;
  color: rgb(var(--color-bone) / 0.96);
  margin: 0;
  text-wrap: balance;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
}
.editor-handoff-lede {
  font-family: var(--font-serif), Georgia, serif;
  font-size: 17px;
  line-height: 1.55;
  color: rgb(var(--color-bone) / 0.7);
  margin: 0;
  text-wrap: balance;
}
.editor-handoff-column {
  font-style: italic;
  color: rgb(var(--color-bone) / 0.92);
}
.editor-handoff-time {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgb(var(--color-accent) / 0.8);
  display: inline-block;
  margin-top: 0.5rem;
}
/* The arrival ritual's primary action takes the square stop-press idiom —
 * a solid ink block with a tracked mono caps label (the front page's .fp-btn),
 * replacing the old hairline-bordered ghost button. Token-driven: the Night
 * edition inverts it to a cream block with a gold hover, exactly like the
 * landing's stop-press button. */
.editor-handoff-cta {
  appearance: none;
  border: 1px solid rgb(var(--color-bone));
  background: rgb(var(--color-bone));
  padding: 0.95rem 1.9rem;
  margin-top: 0.75rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgb(var(--color-void));
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s, color 0.3s;
}
.editor-handoff-cta:hover {
  border-color: rgb(var(--color-accent));
  background: rgb(var(--color-accent));
  color: rgb(var(--color-void));
}
.editor-handoff-cta:focus-visible {
  outline: 2px solid rgb(var(--color-accent));
  outline-offset: 3px;
}
.editor-handoff-cta-arrow {
  transition: transform 0.3s;
}
.editor-handoff-cta:hover .editor-handoff-cta-arrow {
  transform: translateX(3px);
}
/* ── Briefing reader colophon (end-of-issue sign-off) ─────────────── */
.colophon {
  max-width: 560px;
  margin: 3.5rem auto 0;
  padding: 0 1rem;
  text-align: center;
}
.colophon-rule {
  width: 48px;
  height: 1px;
  background: rgb(var(--color-accent) / 0.35);
  margin: 0 auto 1.75rem;
}
.colophon-kicker {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgb(var(--color-accent) / 0.75);
  margin-bottom: 1.25rem;
}
.colophon-text {
  font-family: var(--font-serif), Georgia, serif;
  font-size: 15px;
  line-height: 1.72;
  letter-spacing: -0.008em;
  color: rgb(var(--color-bone) / 0.62);
  text-wrap: balance;
  margin: 0 auto 1rem;
}
.colophon-column {
  font-style: italic;
  color: rgb(var(--color-bone) / 0.86);
}
.colophon-num {
  font-family: var(--font-display), var(--font-serif), Georgia, serif;
  font-variation-settings: 'opsz' 96, 'SOFT' 40;
  font-style: italic;
  color: rgb(var(--color-accent) / 0.9);
  font-feature-settings: 'lnum' 1, 'tnum' 1;
  font-weight: 500;
}
.colophon-window {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: rgb(var(--color-bone) / 0.75);
  white-space: nowrap;
}
.colophon-next {
  font-family: var(--font-serif), Georgia, serif;
  font-size: 13.5px;
  line-height: 1.5;
  color: rgb(var(--color-bone) / 0.5);
  margin: 0 auto 2rem;
}
.colophon-next-day {
  color: rgb(var(--color-bone) / 0.75);
  font-style: italic;
}
.colophon-signature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgb(var(--color-bone) / 0.45);
}
.colophon-signature-rule {
  display: inline-block;
  width: 42px;
  height: 1px;
  background: rgb(var(--color-accent) / 0.3);
}
.colophon-signature-text {
  color: rgb(var(--color-accent) / 0.82);
}

/* ── Mobile Stories list ─────────────────────────────────────────── */
/* Editor picks are a set to scan, never a one-at-a-time carousel. */
.stories-mobile-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.stories-mobile-card {
  width: 100%;
  scroll-margin-top: calc(var(--pub-masthead-h, 64px) + 1rem);
}
