:root {
  color-scheme: light;
  --paper: #f4efe4;
  --paper-hot: #fff8da;
  --ink: #10100f;
  --ink-soft: #2e2b27;
  --muted: #70695f;
  --line: #d7cdbc;
  --black: #090909;
  --red: #e7382f;
  --yellow: #ffd83d;
  --green: #15956f;
  --blue: #1557b7;
  --panel: #fffdf5;
  --shadow: 0 18px 0 rgba(16, 16, 15, 0.08);
  --tight-shadow: 0 9px 0 rgba(16, 16, 15, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
  background: var(--paper);
  overflow-x: hidden;
}

body {
  height: 100%;
  margin: 0;
  background:
    linear-gradient(90deg, rgba(16, 16, 15, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(16, 16, 15, 0.026) 1px, transparent 1px),
    var(--paper);
  background-size: 28px 28px;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

button,
input {
  font: inherit;
}

a {
  color: inherit;
}

.app-shell {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  height: 100vh;
  overflow: hidden;
}

main {
  min-height: 0;
  overflow: hidden;
}

.topbar {
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(16px, 3vw, 38px);
  border-bottom: 3px solid var(--black);
  background: var(--black);
  color: #fffdf5;
}

.topbar > .brand {
  margin-right: auto;
}

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

.brand-mark {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border: 2px solid #fffdf5;
  border-radius: 8px;
  background: var(--yellow);
  color: var(--black);
  transform: rotate(-3deg);
}

.brand-mark::before {
  content: "NC";
  font-size: 0.82rem;
  font-weight: 950;
}

.brand-mark span {
  position: absolute;
  right: -5px;
  bottom: -5px;
  width: 18px;
  height: 18px;
  border: 2px solid var(--black);
  border-radius: 50%;
  background: var(--red);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.02rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.brand small {
  margin-top: 3px;
  color: #d7d0c2;
  font-size: 0.78rem;
  line-height: 1.2;
}

.privacy-state {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 12px;
  border: 2px solid #fffdf5;
  border-radius: 999px;
  background: var(--green);
  color: #fffdf5;
  font-size: 0.86rem;
  font-weight: 900;
  white-space: nowrap;
}

.chrome-toggle {
  min-height: 36px;
  border: 2px solid #fffdf5;
  border-radius: 999px;
  padding: 0 12px;
  background: var(--yellow);
  color: var(--black);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
}

.chrome-toggle[aria-pressed="true"] {
  background: var(--red);
  color: #fffdf5;
}

.chrome-toggle:hover {
  transform: translate(-1px, -1px);
}

.live-state {
  min-height: 36px;
  border: 2px solid rgba(255, 253, 245, 0.36);
  border-radius: 999px;
  padding: 8px 12px 0;
  color: #d7d0c2;
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fffdf5;
}

.workspace {
  display: grid;
  grid-template-columns: minmax(250px, 320px) minmax(0, 1fr);
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

.workspace.is-sidebar-hidden {
  grid-template-columns: minmax(0, 1fr);
}

.controls {
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  border-right: 3px solid var(--black);
  padding: 22px;
  background: #181715;
  color: #fffdf5;
}

.controls[hidden] {
  display: none;
}

.control-group + .control-group,
.policy-panel {
  margin-top: 22px;
}

label,
.label {
  display: block;
  margin-bottom: 9px;
  color: #f7d84e;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

input[type="search"] {
  width: 100%;
  min-height: 44px;
  border: 2px solid #fffdf5;
  border-radius: 6px;
  padding: 0 12px;
  background: #fffdf5;
  color: var(--ink);
  outline: none;
  box-shadow: 5px 5px 0 rgba(255, 216, 61, 0.75);
}

input[type="search"]:focus {
  border-color: var(--yellow);
  box-shadow: 5px 5px 0 var(--red);
}

.source-list {
  display: grid;
  gap: 9px;
}

.category-list {
  display: grid;
  gap: 13px;
}

.category-group {
  display: grid;
  gap: 8px;
  border: 2px solid rgba(255, 253, 245, 0.18);
  border-radius: 7px;
  padding: 9px;
  background: rgba(255, 253, 245, 0.05);
}

.category-group-title {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  min-width: 0;
  color: #fffdf5;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 950;
  text-align: left;
  text-transform: uppercase;
}

.category-group-title > span:nth-child(2) {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.category-group-title small {
  margin-left: auto;
  color: #d8d1c3;
  font-size: 0.66rem;
  font-weight: 950;
}

.category-chevron {
  display: inline-grid;
  width: 18px;
  height: 18px;
  place-items: center;
  color: var(--yellow);
  transition: transform 140ms ease;
}

.category-group.is-collapsed .category-chevron {
  transform: rotate(-90deg);
}

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

.category-options[hidden] {
  display: none;
}

.category-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  min-height: 31px;
  border: 2px solid rgba(255, 253, 245, 0.26);
  border-radius: 999px;
  padding: 4px 8px;
  color: #fffdf5;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 850;
}

.category-toggle input {
  width: 13px;
  height: 13px;
  accent-color: var(--yellow);
}

.category-toggle small {
  color: #d8d1c3;
  font-size: 0.66rem;
  font-weight: 950;
}

.category-toggle.is-selected {
  border-color: var(--yellow);
  background: #fffdf5;
  color: var(--black);
}

.category-toggle.is-selected small {
  color: var(--muted);
}

.source-toggle {
  display: grid;
  grid-template-columns: 19px 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  border: 2px solid rgba(255, 253, 245, 0.28);
  border-radius: 7px;
  padding: 8px 9px;
  background: rgba(255, 253, 245, 0.08);
  color: #fffdf5;
  cursor: pointer;
  user-select: none;
}

.source-toggle:hover {
  border-color: var(--yellow);
}

.source-toggle input {
  width: 18px;
  height: 18px;
  accent-color: var(--yellow);
}

.source-toggle.is-selected {
  border-color: var(--yellow);
  background: #fffdf5;
  color: var(--black);
  box-shadow: 4px 4px 0 var(--yellow);
}

.source-badge {
  display: inline-grid;
  min-width: 34px;
  min-height: 24px;
  place-items: center;
  border-radius: 4px;
  background: #171717;
  color: #fffdf5;
  font-size: 0.72rem;
  font-weight: 950;
}

.source-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 850;
}

.segmented,
.view-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.segment,
.view-option {
  min-height: 40px;
  border: 2px solid rgba(255, 253, 245, 0.28);
  border-radius: 7px;
  background: transparent;
  color: #fffdf5;
  cursor: pointer;
  font-weight: 900;
}

.view-option {
  min-height: 44px;
}

.segment[aria-selected="true"],
.view-option[aria-selected="true"] {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--black);
}

.policy-panel {
  border-top: 2px solid rgba(255, 253, 245, 0.2);
  padding-top: 18px;
}

.policy-panel h2 {
  margin: 0 0 10px;
  color: #fffdf5;
  font-size: 0.94rem;
  text-transform: uppercase;
}

.policy-panel ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: #d8d1c3;
  font-size: 0.86rem;
  line-height: 1.45;
}

.feed-panel {
  min-width: 0;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: clamp(22px, 4vw, 50px);
}

.feed-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(2.6rem, 5.6vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.hero-tags span {
  border: 2px solid var(--black);
  border-radius: 999px;
  padding: 7px 11px;
  background: var(--yellow);
  font-size: 0.84rem;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 3px 3px 0 var(--black);
}

.hero-tags span:nth-child(2) {
  background: #fffdf5;
}

.hero-tags span:nth-child(3) {
  background: var(--red);
  color: #fffdf5;
}

.metrics {
  display: flex;
  gap: 10px;
}

.metrics div {
  min-width: 100px;
  border: 2px solid var(--black);
  border-radius: 7px;
  padding: 12px;
  background: #fffdf5;
  box-shadow: 6px 6px 0 var(--black);
}

.metrics strong,
.metrics span {
  display: block;
}

.metrics strong {
  font-size: 1.65rem;
  line-height: 1;
}

.metrics span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.intro-tools {
  display: flex;
  justify-content: flex-end;
  min-height: 0;
}

.intro-toggle,
.intro-dismiss {
  border: 2px solid var(--black);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 950;
  text-transform: uppercase;
}

.intro-toggle {
  margin: 24px 0 12px;
  padding: 9px 13px;
  background: var(--yellow);
  color: var(--black);
  box-shadow: 4px 4px 0 var(--black);
}

.intro-toggle:hover,
.intro-dismiss:hover {
  transform: translate(-1px, -1px);
  box-shadow: 5px 5px 0 var(--black);
}

.notice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 26px 0 18px;
  border: 2px solid var(--black);
  border-radius: 7px;
  padding: 13px 15px;
  background: #fffdf5;
  color: var(--ink-soft);
  font-weight: 800;
  line-height: 1.4;
  box-shadow: 5px 5px 0 var(--yellow);
}

.intro-dismiss {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0 12px;
  background: var(--black);
  color: #fffdf5;
  box-shadow: 3px 3px 0 var(--yellow);
}

.problem-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.55fr);
  gap: 18px;
  margin: 0 0 20px;
  border: 3px solid var(--black);
  border-radius: 8px;
  padding: 18px;
  background: var(--paper-hot);
  box-shadow: 8px 8px 0 var(--black);
}

.problem-panel h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.03;
  text-transform: uppercase;
}

.problem-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.problem-points article {
  border: 2px solid var(--black);
  border-radius: 7px;
  padding: 12px;
  background: #fffdf5;
}

.problem-points strong,
.problem-points span {
  display: block;
}

.problem-points strong {
  font-size: 0.92rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.problem-points span {
  margin-top: 7px;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.35;
}

.brief-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.workspace.is-sidebar-hidden .brief-grid,
.workspace.is-sidebar-hidden .section-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.brief-grid.is-separated {
  grid-template-columns: 1fr;
}

.source-section {
  display: grid;
  gap: 12px;
}

.source-section + .source-section {
  margin-top: 14px;
}

.source-section-header {
  border: 3px solid var(--black);
  border-radius: 8px;
  padding: 15px 16px;
  background: #fffdf5;
  box-shadow: 6px 6px 0 var(--yellow);
}

.source-section-header .source-lockup {
  align-items: flex-start;
}

.source-section-header h2 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.source-section-header p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.brief-card {
  position: relative;
  display: grid;
  min-width: 0;
  gap: 13px;
  border: 2px solid var(--black);
  border-radius: 8px;
  padding: 17px;
  background: #fffdf5;
  box-shadow: var(--shadow);
}

.brief-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  border-radius: 6px 0 0 6px;
  background: var(--red);
}

.brief-card.is-paywalled::before {
  background: repeating-linear-gradient(
    180deg,
    var(--black) 0 10px,
    var(--yellow) 10px 20px
  );
}

.brief-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 10px 10px 0 var(--black);
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-left: 4px;
}

.source-lockup {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}

.source-lockup .source-badge {
  flex: 0 0 auto;
}

.source-lockup span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 950;
  text-transform: uppercase;
}

.topic-pill {
  border: 2px solid var(--black);
  border-radius: 999px;
  padding: 5px 9px;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
}

.brief-card h2 {
  margin: 0;
  padding-left: 4px;
  font-size: 1.25rem;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.brief-card h2 a {
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.brief-card h2 a:hover {
  color: var(--red);
}

.meta {
  margin: -4px 0 0;
  padding-left: 4px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.brief-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 23px;
  color: var(--ink-soft);
  line-height: 1.42;
}

.brief-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 2px solid var(--black);
  padding-top: 12px;
}

.original-link {
  border: 2px solid var(--black);
  border-radius: 999px;
  padding: 6px 10px;
  background: #fffdf5;
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
}

.original-link:hover {
  background: var(--yellow);
}

.risk-label {
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.brief-card.is-paywalled .risk-label {
  color: var(--red);
}

.empty-state {
  border: 2px dashed var(--black);
  border-radius: 8px;
  padding: 28px;
  background: #fffdf5;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 920px) {
  .app-shell {
    height: auto;
    min-height: 100vh;
    overflow: visible;
  }

  main {
    overflow: visible;
  }

  .workspace {
    height: auto;
    grid-template-columns: 1fr;
    min-height: auto;
    overflow: visible;
  }

  .controls {
    min-height: auto;
    overflow-y: visible;
    border-right: 0;
    border-bottom: 3px solid var(--black);
    padding: 18px clamp(14px, 4vw, 24px);
  }

  .feed-panel {
    overflow-y: visible;
  }

  .feed-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .brief-grid,
  .section-grid {
    grid-template-columns: 1fr;
  }

  .problem-panel,
  .problem-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
  }

  body {
    background-size: 18px 18px;
  }

  .topbar {
    position: sticky;
    top: 0;
    z-index: 30;
    gap: 8px;
    min-height: 58px;
    padding: max(8px, env(safe-area-inset-top)) 10px 8px;
    flex-wrap: nowrap;
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    width: 35px;
    height: 35px;
    border-radius: 7px;
  }

  .brand-mark::before {
    font-size: 0.68rem;
  }

  .brand-mark span {
    width: 14px;
    height: 14px;
    right: -4px;
    bottom: -4px;
  }

  .brand strong {
    font-size: 0.86rem;
  }

  .brand small {
    display: none;
  }

  .privacy-state {
    display: none;
  }

  .chrome-toggle {
    min-height: 36px;
    margin-left: auto;
    padding: 0 13px;
    border-color: var(--yellow);
    box-shadow: 3px 3px 0 rgba(255, 253, 245, 0.2);
    font-size: 0.78rem;
  }

  .live-state {
    display: none;
  }

  .status-dot {
    width: 7px;
    height: 7px;
  }

  .controls {
    position: fixed;
    inset: 58px 0 auto 0;
    z-index: 25;
    display: grid;
    gap: 12px;
    max-height: min(72vh, 620px);
    overflow-y: auto;
    overscroll-behavior: contain;
    border-right: 0;
    border-bottom: 3px solid var(--black);
    padding: 14px 12px calc(16px + env(safe-area-inset-bottom));
    background: rgba(9, 9, 9, 0.98);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.42);
  }

  .control-group + .control-group,
  .policy-panel {
    margin-top: 0;
  }

  label,
  .label {
    margin-bottom: 6px;
    font-size: 0.66rem;
  }

  input[type="search"] {
    min-height: 43px;
    border-radius: 6px;
    font-size: 1rem;
    box-shadow: 3px 3px 0 var(--yellow);
  }

  .source-list,
  .category-list,
  .segmented,
  .view-switch {
    display: flex;
    gap: 8px;
    margin: 0 -12px;
    overflow-x: auto;
    padding: 0 12px 3px;
    scrollbar-width: none;
  }

  .source-list::-webkit-scrollbar,
  .category-list::-webkit-scrollbar,
  .segmented::-webkit-scrollbar,
  .view-switch::-webkit-scrollbar {
    display: none;
  }

  .category-group {
    flex: 0 0 min(280px, 82vw);
    padding: 8px;
  }

  .category-group-title {
    font-size: 0.7rem;
  }

  .category-options {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .category-options::-webkit-scrollbar {
    display: none;
  }

  .category-toggle {
    flex: 0 0 auto;
    min-height: 30px;
    font-size: 0.72rem;
  }

  .source-toggle {
    display: inline-flex;
    flex: 0 0 auto;
    min-height: 38px;
    gap: 7px;
    border-radius: 999px;
    padding: 6px 9px;
  }

  .source-toggle input {
    width: 15px;
    height: 15px;
  }

  .source-toggle .source-badge {
    min-width: 28px;
    min-height: 21px;
    border-radius: 999px;
    font-size: 0.64rem;
    order: -1;
  }

  .source-name {
    max-width: 128px;
    font-size: 0.82rem;
  }

  .segment,
  .view-option {
    flex: 0 0 auto;
    min-height: 36px;
    border-radius: 999px;
    padding: 0 14px;
    font-size: 0.84rem;
  }

  .policy-panel {
    display: none;
  }

  .feed-panel {
    width: 100%;
    max-width: 100vw;
    padding: 12px 10px calc(28px + env(safe-area-inset-bottom));
    overflow-x: hidden;
  }

  .feed-header {
    gap: 9px;
  }

  .eyebrow {
    margin-bottom: 5px;
    font-size: 0.66rem;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(1.42rem, 7.6vw, 1.92rem);
    line-height: 0.98;
    overflow-wrap: anywhere;
  }

  .hero-tags {
    display: flex;
    flex-wrap: nowrap;
    gap: 7px;
    max-width: calc(100vw - 20px);
    margin: 8px -10px 0;
    overflow-x: auto;
    padding: 0 10px 4px;
    scrollbar-width: none;
  }

  .hero-tags::-webkit-scrollbar {
    display: none;
  }

  .hero-tags span {
    flex: 0 0 auto;
    padding: 5px 8px;
    font-size: 0.62rem;
    box-shadow: 2px 2px 0 var(--black);
  }

  .hero-tags span:nth-child(n + 3) {
    display: none;
  }

  .metrics {
    width: 100%;
    gap: 8px;
  }

  .metrics div {
    flex: 1;
    min-width: 0;
    padding: 8px 10px;
    border-radius: 7px;
    box-shadow: 4px 4px 0 var(--black);
  }

  .metrics strong {
    font-size: 1.08rem;
  }

  .metrics span {
    margin-top: 3px;
    font-size: 0.62rem;
  }

  .notice {
    align-items: stretch;
    flex-direction: column;
    gap: 9px;
    margin: 10px 0 9px;
    border-radius: 7px;
    padding: 10px 12px;
    font-size: 0.82rem;
    box-shadow: 3px 3px 0 var(--yellow);
  }

  .intro-toggle {
    margin: 13px 0 10px;
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.78rem;
    box-shadow: 3px 3px 0 var(--black);
  }

  .intro-dismiss {
    width: max-content;
    min-height: 34px;
    padding: 0 11px;
    font-size: 0.74rem;
    box-shadow: 2px 2px 0 var(--yellow);
  }

  .problem-panel {
    display: none;
  }

  .problem-panel h2 {
    font-size: 1.18rem;
  }

  .problem-points {
    gap: 7px;
  }

  .problem-points article {
    padding: 9px 10px;
  }

  .problem-points strong {
    font-size: 0.8rem;
  }

  .problem-points span {
    margin-top: 3px;
    font-size: 0.76rem;
  }

  .brief-grid,
  .section-grid {
    width: 100%;
    gap: 11px;
  }

  .source-section {
    gap: 9px;
  }

  .source-section + .source-section {
    margin-top: 5px;
  }

  .source-section-header {
    border-radius: 7px;
    padding: 11px 12px;
    box-shadow: 4px 4px 0 var(--yellow);
  }

  .source-section-header h2 {
    font-size: 0.96rem;
  }

  .source-section-header p {
    font-size: 0.74rem;
  }

  .brief-card {
    gap: 11px;
    border-radius: 7px;
    padding: 13px 12px 13px 14px;
    box-shadow: var(--tight-shadow);
  }

  .brief-card:hover {
    transform: none;
    box-shadow: var(--tight-shadow);
  }

  .card-top {
    gap: 8px;
    min-width: 0;
  }

  .source-lockup {
    gap: 7px;
    min-width: 0;
  }

  .source-lockup .source-badge {
    min-width: 29px;
    min-height: 22px;
    border-radius: 999px;
    font-size: 0.64rem;
  }

  .source-lockup span:last-child {
    font-size: 0.72rem;
  }

  .topic-pill {
    max-width: 42vw;
    overflow: hidden;
    padding: 4px 8px;
    font-size: 0.64rem;
    text-overflow: ellipsis;
  }

  .brief-card h2 {
    font-size: clamp(1.02rem, 5.4vw, 1.26rem);
    line-height: 1.13;
  }

  .meta {
    margin-top: -4px;
    font-size: 0.74rem;
  }

  .brief-list {
    gap: 7px;
    padding-left: 21px;
    font-size: 0.88rem;
    line-height: 1.36;
    overflow-wrap: anywhere;
  }

  .brief-list li:nth-child(n + 4) {
    display: none;
  }

  .brief-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    padding-top: 10px;
  }

  .original-link {
    display: grid;
    width: max-content;
    min-height: 34px;
    place-items: center;
  }

  .risk-label {
    text-align: center;
    font-size: 0.68rem;
  }
}
