@font-face {
  font-family: "Source Sans 3";
  src: url("fonts/source-sans-3.woff2") format("woff2");
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Source Serif 4";
  src: url("fonts/source-serif-4.woff2") format("woff2");
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}
:root {
  color-scheme: light;
  --bg: #f6f3ec;
  --ink: #141210;
  --muted: #5c574e;
  --line: #e2dbce;
  --card: #fffdf8;
  --accent: #1a4334;
  --accent-2: #1d4e89;
  --sans: "Source Sans 3", ui-sans-serif, system-ui, sans-serif;
  --serif: "Source Serif 4", "Iowan Old Style", Georgia, serif;
}
* { box-sizing: border-box; }
html { font-size: 17px; }
body {
  margin: 0;
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  font-optical-sizing: auto;
}
a { color: var(--accent); }
header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--card) 90%, transparent);
  backdrop-filter: saturate(1.15) blur(12px);
}
.wrap { max-width: 72rem; margin: 0 auto; padding: 1rem 1.25rem; }
header .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: center;
  justify-content: space-between;
}
.brand-lockup .ed { padding-left: 2.25rem; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--serif);
  font-weight: 650;
  letter-spacing: -0.03em;
  text-decoration: none;
  color: var(--ink);
  font-size: 1.32rem;
  line-height: 1;
}
.brand:hover { color: var(--accent); }
.brand-mark {
  width: 1.75rem;
  height: 1.75rem;
  display: block;
  flex-shrink: 0;
}
.tabs { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.tabs a {
  text-decoration: none;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
  font-size: 0.88rem;
}
.tabs a[aria-current="page"] { color: var(--ink); border-color: var(--ink); }
nav { display: flex; gap: 1.05rem; font-size: 0.8rem; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 600; }
nav a { color: var(--muted); text-decoration: none; }
nav a[aria-current="page"], nav a:hover { color: var(--ink); }
.ed { font-size: 0.8rem; color: var(--muted); }
h1, h2 { font-family: var(--serif); font-weight: 650; }
h1 { font-size: clamp(1.55rem, 3.2vw, 2.15rem); letter-spacing: -0.03em; line-height: 1.15; margin: 0 0 0.4rem; }
.lead { color: var(--muted); max-width: 40rem; }
.meta { color: var(--muted); font-size: 0.88rem; }
.grid { display: grid; gap: 0.85rem; margin: 1.25rem 0; }
@media (min-width: 720px) {
  .grid.stories { grid-template-columns: 1fr 1fr; }
  .grid.cards { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1040px) {
  .grid.cards { grid-template-columns: 1fr 1fr 1fr; }
}
.card, .story {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 0 1rem;
  text-decoration: none;
  color: inherit;
  display: block;
  overflow: hidden;
}
.card .kicker, .card h2, .card p, .card .btn,
.story .kicker, .story h2, .story p { padding-left: 1.1rem; padding-right: 1.1rem; }
.card .kicker, .story .kicker { padding-top: 0.75rem; }
.card .btn { margin-left: 1.1rem; }
.thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #e6e0d2;
  overflow: hidden;
}
.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.thumb.ph { background: linear-gradient(135deg, #e6e0d2, #d3cbb8); }
a.story.frame-left,
a.story.frame-left:hover { border: 4px solid #b42318; }
a.story.frame-right,
a.story.frame-right:hover { border: 4px solid #1d4e89; }
a.story.frame-center,
a.story.frame-center:hover { border: 4px solid #8a8478; }
.thumb.frame-left, .hero.frame-left {
  box-shadow: inset 0 0 0 12px #b42318;
}
.thumb.frame-right, .hero.frame-right {
  box-shadow: inset 0 0 0 12px #1d4e89;
}
.thumb.frame-center, .hero.frame-center {
  box-shadow: inset 0 0 0 12px #8a8478;
}
a.story:hover { border-color: #c9c0ae; }
.mast { margin: 0.35rem 0 0.15rem; }
.mast .ed { margin: 0 0 0.35rem; }
.mast h1 { margin-bottom: 0.3rem; }
.lead-slot { margin: 1rem 0 0.35rem; }
.story.lead .thumb { aspect-ratio: 16 / 7; }
.story.lead h2 { font-size: clamp(1.25rem, 2.5vw, 1.8rem); margin-top: 0.35rem; }
.kicker {
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 650;
}
.kicker a { color: inherit; text-decoration: none; }
.kicker a:hover { text-decoration: underline; }
.story h2 { font-size: 1.05rem; margin: 0.25rem 0 0.4rem; letter-spacing: -0.02em; }
.card h2 { font-size: 1rem; margin: 0.15rem 0 0.35rem; }
.card p, .story p { margin: 0; color: var(--muted); font-size: 0.92rem; }
.excerpt { color: var(--ink); font-size: 0.95rem; margin: 0.4rem 0 0.7rem; }
.more { list-style: none; padding: 0; margin: 1.25rem 0 2rem; }
.more li { border-top: 1px solid var(--line); padding: 0.7rem 0; }
.more a { color: inherit; text-decoration: none; display: block; }
.more a:hover { color: var(--accent); }
.also { font-size: 0.85rem; color: var(--muted); margin: 0.4rem 0 0; }
.also-list { margin: 0.2rem 0 0; padding-left: 1.15rem; font-size: 0.88rem; }
.also-list a { color: inherit; }
.btn {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 600;
}
.note {
  background: #efe8d8;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: #3d382e;
}
footer {
  border-top: 1px solid var(--line);
  margin-top: 2.5rem;
  color: var(--muted);
  font-size: 0.85rem;
}
ul.plain { padding-left: 1.1rem; }
table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
th, td { text-align: left; padding: 0.45rem 0.3rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.tag {
  display: inline-block;
  font-size: 0.75rem;
  background: #e8efe9;
  color: var(--accent);
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
}
.logo {
  width: 1.6rem;
  height: 1.6rem;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 0.35rem;
  border-radius: 4px;
  background: #fff;
}
.logo-row { display: flex; gap: 0.25rem; padding: 0.35rem 1.1rem 0; min-height: 1.4rem; }
.chip {
  display: inline-block;
  margin: 0.35rem 1.1rem 0;
  font-size: 0.75rem;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.1rem 0.5rem;
}
.dist { margin: 1rem 0 1.4rem; }
.dist-label { color: var(--muted); font-size: 0.88rem; margin: 0 0 0.5rem; }
.bars { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 0.4rem; }
.bar {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: #e8efe9;
  border-radius: 6px;
  padding: 0.25rem 0.5rem;
  font-size: 0.8rem;
}
.bar i { display: none; }
td .logo { margin-right: 0.5rem; }
.hero { position: relative; margin: 0 0 1rem; border-radius: 10px; overflow: hidden; aspect-ratio: 16/7; background: #e6e0d2; }
.hero img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sources { display: flex; flex-direction: column; gap: 0.7rem; margin: 1rem 0 2rem; }
.source {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 0.9rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 6px solid var(--line);
  border-radius: 10px;
  padding: 0.75rem;
  align-items: start;
}
.source-amplify {
  background: #b5d9c4;
  border: 2px solid #1e4d3a;
  border-left: 14px solid #1e4d3a;
}
.source-neutral {
  background: #d8d3c8;
  border: 2px solid #5c564b;
  border-left: 14px solid #5c564b;
}
.source-soften {
  background: #efd08a;
  border: 2px solid #8a6418;
  border-left: 14px solid #a67c1a;
}
.source-invert {
  background: #e8b0a6;
  border: 2px solid #8a2f22;
  border-left: 14px solid #8a2f22;
}
.source-neg {
  background: #f8e4e0;
  border-color: #e0b4ac;
}
.source-pos {
  background: #e4f0ea;
  border-color: #b4d0c2;
}
.source-neu {
  background: #eeeae3;
  border-color: #d4cec4;
}
.treat-pill {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.02em;
  border-radius: 999px;
  padding: 0.12rem 0.55rem;
  color: #fff;
}
.treat-amplify { background: #1e4d3a; }
.treat-neutral { background: #6a655c; }
.treat-soften { background: #a67c1a; }
.treat-invert { background: #8a2f22; }
.why {
  margin: 0.4rem 0 0;
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--ink);
}
.tone-tag {
  font-size: 0.78rem;
  font-weight: 750;
  border-radius: 999px;
  padding: 0.12rem 0.55rem;
  color: #fff;
}
.tone-tag.tone-neg { background: #b42318; }
.tone-tag.tone-neu { background: #6a655c; }
.tone-tag.tone-pos { background: #1e4d3a; }
.tone-tag.tone-left { background: #b42318; }
.tone-tag.tone-right { background: #1d4e89; }
.tone-tag.tone-mix { background: #6a655c; }
@media (max-width: 560px) {
  .source { grid-template-columns: 5.2rem 1fr; }
}
.source-thumb {
  position: relative;
  display: block;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  background: #e6e0d2;
}
.source-thumb img { width: 100%; height: 100%; object-fit: cover; }
.source-thumb.ph { background: linear-gradient(135deg, #e6e0d2, #d3cbb8); }
.source-body { min-width: 0; }
.source-media {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 0.25rem;
}
.source-name { font-weight: 650; text-decoration: none; color: var(--ink); font-size: 0.88rem; }
.source h2 { font-size: 1.05rem; margin: 0 0 0.25rem; letter-spacing: -0.02em; line-height: 1.25; }
.source h2 a { color: inherit; text-decoration: none; }
.source h2 a:hover { text-decoration: underline; }
.source .excerpt { margin: 0.3rem 0 0; color: var(--muted); }
.axes { display: flex; flex-wrap: wrap; gap: 0.35rem; margin: 0.2rem 0 0.35rem; }
.ax {
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.08rem 0.45rem;
}
.ax em { font-style: normal; font-weight: 650; }
.ax-gov { background: #e4f0ea; color: #1e4d3a; }
.ax-gov em { color: #2a6b4e; }
.ax-eco { background: #f3ead8; color: #6b4e1f; }
.ax-eco em { color: #8a6418; }
.ax-k { background: #ece6f3; color: #4a3563; }
.ax-k em { color: #6b4c8a; }
.stance {
  position: relative;
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  border-radius: 999px;
  padding: 0.08rem 0.45rem;
  margin-left: 0.35rem;
  vertical-align: middle;
  cursor: help;
}
.stance[data-tip]::after {
  content: attr(data-tip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.4rem);
  transform: translateX(-50%);
  width: max-content;
  max-width: 16rem;
  padding: 0.35rem 0.5rem;
  border-radius: 6px;
  background: #1c1915;
  color: #f4efe6;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.3;
  white-space: normal;
  text-align: left;
  opacity: 0;
  pointer-events: none;
  z-index: 8;
}
.stance[data-tip]:hover::after,
.stance[data-tip]:focus::after {
  opacity: 1;
}
.stance-neg { background: #f3e0dc; color: #8a2f22; }
.stance-neu { background: #ece9e2; color: #5c564b; }
.stance-pos { background: #e0eee4; color: #1e4d3a; }
.stance-left { background: #f3e0dc; color: #b42318; }
.stance-right { background: #dce8f5; color: #1d4e89; }
.pill .ax { margin: 0; }
.tone-mark {
  position: absolute;
  right: 0.3rem;
  bottom: 0.3rem;
  z-index: 1;
  min-width: 1.35rem;
  height: 1.35rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.95rem;
  line-height: 1;
  color: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,.25);
}
.tone-mark.tone-neg { background: #b42318; }
.tone-mark.tone-neu { background: #6a655c; }
.tone-mark.tone-pos { background: #1e4d3a; }
.tone-mark.tone-left { background: #b42318; }
.tone-mark.tone-right { background: #1d4e89; }
.tone-mark.tone-mix { background: #6a655c; }
.tone-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  height: 1.45rem;
  z-index: 1;
}
.tone-bar i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  min-width: 0;
  color: #fff;
}
.tone-bar b { font-size: 0.78rem; font-weight: 750; }
.tb-neg { background: #b42318; }
.tb-neu { background: #6a655c; }
.tb-pos { background: #1e4d3a; }
.tb-left { background: #b42318; }
.tb-right { background: #1d4e89; }
.source-left { background: #f8e4e0; border-color: #e0b4ac; }
.source-right { background: #dce8f5; border-color: #9bb6d4; }
.source-thumb .tone-bar { height: 1.2rem; }
.source-thumb .tone-bar b { font-size: 0.72rem; }
.logo-hit { position: relative; display: inline-block; }
.logo-hit .tone-mark {
  right: -0.15rem;
  bottom: -0.2rem;
  min-width: 0.95rem;
  height: 0.95rem;
  font-size: 0.7rem;
}
.logo-row .logo { margin-right: 0; }
a.card:hover { border-color: #c9c0ae; }
.sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.6rem;
  margin: 1rem 0 1.35rem;
}
.stats b {
  display: block;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.stats span { color: var(--muted); font-size: 0.82rem; }
.outlet-browser { position: relative; }
.tabs label {
  text-decoration: none;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
  font-size: 0.88rem;
  cursor: pointer;
}
#ok-all:checked ~ .tabs label[for="ok-all"],
#ok-newspaper:checked ~ .tabs label[for="ok-newspaper"],
#ok-digital:checked ~ .tabs label[for="ok-digital"],
#ok-tv:checked ~ .tabs label[for="ok-tv"],
#ok-radio:checked ~ .tabs label[for="ok-radio"],
#ok-streamer:checked ~ .tabs label[for="ok-streamer"],
#hv-agenda:checked ~ .tabs label[for="hv-agenda"],
#hv-all:checked ~ .tabs label[for="hv-all"],
#tv-freq:checked ~ .tabs label[for="tv-freq"],
#tv-gaps:checked ~ .tabs label[for="tv-gaps"],
#ok-own-no:checked ~ .tabs label[for="ok-own-no"] {
  color: var(--ink);
  border-color: var(--ink);
}
#ok-newspaper:checked ~ .outlets .outlet:not([data-kind="newspaper"]),
#ok-digital:checked ~ .outlets .outlet:not([data-kind="digital"]),
#ok-tv:checked ~ .outlets .outlet:not([data-kind="tv"]),
#ok-radio:checked ~ .outlets .outlet:not([data-kind="radio"]),
#ok-streamer:checked ~ .outlets .outlet:not([data-kind="streamer"]),
#ok-own-no:checked ~ .outlets .outlet:not([data-own="no"]) {
  display: none;
}
.outlet { padding-top: 1rem; }
.outlet-top {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding: 0 1.1rem;
}
.outlet .logo {
  width: 2.55rem;
  height: 2.55rem;
  margin: 0;
  flex-shrink: 0;
}
.logo.ph {
  display: inline-grid;
  place-items: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--muted);
  background: #efe8d8;
}
.outlet .kicker,
.outlet-top h2 { padding: 0; }
.outlet h2 { margin: 0.1rem 0 0; }
.outlet .pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  padding: 0.45rem 1.1rem 0;
}
.pill {
  font-size: 0.72rem;
  border-radius: 999px;
  padding: 0.08rem 0.45rem;
  border: 1px solid var(--line);
  color: var(--muted);
}
.pill.ok {
  background: #e8efe9;
  color: var(--accent);
  border-color: transparent;
}
.pill.miss {
  background: #efe8d8;
  color: #5c564b;
  border-color: transparent;
}
.outlet .own {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 3.9em;
  margin-top: 0.35rem;
}
.own-miss { font-style: italic; }
.outlet .btn { margin-top: 0.55rem; }
.groups { margin-top: 2.2rem; }
.group {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.85rem 1.1rem;
  margin: 0.7rem 0;
}
.group h3 { margin: 0 0 0.35rem; font-size: 1rem; }
.group p { margin: 0 0 0.35rem; }
.group p:last-child { margin: 0; }
.group-also, .group-src {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.9rem 1.1rem;
  margin: 1rem 0;
}
.group-also h2, .group-src h2 { margin: 0 0 0.45rem; font-size: 1.05rem; }
.group-also ul, .group-src ul { list-style: none; padding: 0; margin: 0; }
.group-also li, .group-src li { margin: 0 0 0.65rem; }
.group-also li:last-child, .group-src li:last-child { margin: 0; }
.group-src .quote {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}
.listed {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.65rem 0.85rem;
  margin: 0.7rem 0;
}
.listed-listed { border-color: var(--accent); }
header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in srgb, var(--card) 90%, transparent);
  backdrop-filter: blur(10px);
}
nav {
  flex-wrap: wrap;
  gap: 0.45rem 0.95rem;
}
nav a {
  padding: 0.15rem 0;
}
a:focus-visible,
label:focus-visible,
input:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
h1 .logo {
  width: 2.15rem;
  height: 2.15rem;
  margin-right: 0.45rem;
  vertical-align: -0.32rem;
}
main > a.story { margin-top: 0.7rem; }
th {
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 650;
}
th, td {
  padding: 0.62rem 0.5rem;
}
tbody tr:hover td { background: #f7f2e8; }
td { overflow-wrap: anywhere; }
td:nth-child(2),
td:nth-child(3),
th:nth-child(2),
th:nth-child(3) { font-variant-numeric: tabular-nums; }
code { font-size: 0.86em; }
.tag { margin: 0.15rem 0.15rem 0 0; }
.agenda-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  align-items: center;
  padding: 0.35rem 1.1rem 0;
}
.agenda-chip {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 650;
  line-height: 1.25;
  border-radius: 999px;
  padding: 0.12rem 0.55rem;
  text-decoration: none;
  max-width: 100%;
}
.agenda-chip.agenda-left { background: #f3e0dc; color: #b42318; }
.agenda-chip.agenda-right { background: #dce8f5; color: #1d4e89; }
.agenda-chip.agenda-none { background: #efe8d8; color: #5c564b; font-weight: 500; }
a.agenda-chip:hover { text-decoration: underline; }
.agenda-on-thumb {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  padding: 0.45rem 0.55rem;
  background: linear-gradient(rgba(28, 26, 22, 0.62), transparent);
}
.press-bar {
  position: absolute;
  left: 0.4rem;
  right: 0.4rem;
  bottom: 0.4rem;
  display: flex;
  height: 1.35rem;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,.35);
  z-index: 2;
}
.press-bar i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  min-width: 0;
  color: #fff;
}
.press-bar b {
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
}
.pb-left { background: #b42318; }
.pb-center { background: #f4efe6; color: #3a352c; }
.pb-center b { color: #3a352c; }
.pb-right { background: #1d4e89; }
.hero .press-bar { left: 0.7rem; right: 0.7rem; bottom: 0.7rem; height: 1.55rem; }
.hero .press-bar b { font-size: 0.78rem; }
.agenda-on-thumb .agenda-chip { box-shadow: 0 1px 2px rgba(0,0,0,.2); }
.treat-mini { font-size: 0.75rem; color: var(--muted); }
.fact-side {
  margin: 0 0 0.55rem;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.fact, .treat-sum, .blind {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.85rem 1.1rem;
  margin: 0.85rem 0 1.1rem;
}
.fact.fact-left {
  background: #f3ddd8;
  border: 3px solid #b42318;
}
.fact.fact-left .fact-side { color: #b42318; }
.fact.fact-right {
  background: #dce8f5;
  border: 3px solid #1d4e89;
}
.fact.fact-right .fact-side { color: #1d4e89; }
.fact.fact-mix { border: 3px solid #6a655c; }
.fact h2, .treat-sum h2, .blind h2 { margin: 0 0 0.25rem; font-size: 1.05rem; }
.fact-list { list-style: none; padding: 0; margin: 0.6rem 0 0; }
.fact-list li { margin: 0 0 0.55rem; }
.fact-list .quote, .source .quote {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}
.side-lab {
  font-size: 0.78rem;
  color: var(--muted);
  margin-left: 0.35rem;
}
.treat-sum .press-bar {
  position: static;
  display: flex;
  height: 1.7rem;
  margin-top: 0.55rem;
  box-shadow: none;
}
.treat-bar {
  display: flex;
  gap: 0.15rem;
  overflow: hidden;
  border-radius: 8px;
  margin-top: 0.55rem;
  min-height: 1.55rem;
}
.treat-bar i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  min-width: 0;
  color: #fff;
}
.treat-bar b { font-size: 0.78rem; font-weight: 750; }
.tr-amp { background: #1e4d3a; }
.tr-neu { background: #6a655c; }
.tr-soft { background: #8a6a3d; }
.tr-inv { background: #8a2f22; }
.blind h3 { font-size: 0.82rem; letter-spacing: 0.03em; text-transform: uppercase; color: var(--muted); margin: 0.7rem 0 0.35rem; }
.blind-row { display: flex; flex-wrap: wrap; gap: 0.35rem; margin: 0; }
.blind-out {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.12rem 0.55rem 0.12rem 0.25rem;
  text-decoration: none;
  color: var(--ink);
  font-size: 0.82rem;
  background: #fff;
}
.blind-out .logo { width: 1.15rem; height: 1.15rem; margin: 0; }
.blind-out.dim { color: var(--muted); background: transparent; }
.blind-out:hover { border-color: var(--ink); }
.gov-box {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.85rem 1.1rem;
  margin: 1rem 0 1.4rem;
}
.gov-box h2 { margin: 0 0 0.3rem; font-size: 1.05rem; }
.gov-box .press-bar { position: static; margin: 0.55rem 0 0.7rem; }
.gov-cols {
  display: grid;
  gap: 0.85rem 1.4rem;
  margin-top: 0.6rem;
}
@media (min-width: 720px) {
  .gov-cols { grid-template-columns: 1fr 1fr; }
}
.gov-cols h3 {
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.3rem;
}
.gov-cols ul { margin: 0; }
.avatar {
  width: 2.4rem;
  height: 2.4rem;
  object-fit: cover;
  border-radius: 999px;
  vertical-align: middle;
  margin-right: 0.5rem;
  background: #efe8d8;
}
.avatar.ph {
  display: inline-grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
}
td .avatar { width: 1.85rem; height: 1.85rem; }
td .press-bar {
  position: static;
  min-width: 8rem;
  height: 0.85rem;
  margin: 0 0.4rem 0 0;
  box-shadow: none;
  display: inline-flex;
  vertical-align: middle;
}
button.sort {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-transform: inherit;
  letter-spacing: inherit;
  font-weight: inherit;
}
button.sort[data-dir="desc"]::after { content: " ↓"; }
button.sort[data-dir="asc"]::after { content: " ↑"; }
.gold fieldset { border: 1px solid var(--line); border-radius: 10px; padding: 0.75rem 1rem; margin: 1rem 0; }
.gold fieldset label { display: block; margin: 0.25rem 0; }
.gold-nav { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.gold-nav button {
  font: inherit;
  padding: 0.35rem 0.8rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--card);
  cursor: pointer;
}
.gold-item { display: flex; flex-wrap: wrap; align-items: center; gap: 0.35rem 0.5rem; }
.gold-item .agenda-chip { font-size: 0.7rem; }
.gold input[type="text"] {
  width: 100%;
  max-width: 28rem;
  font: inherit;
  padding: 0.35rem 0.5rem;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.person-top {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  margin: 0 0 1rem;
}
.person-top .avatar { width: 4.2rem; height: 4.2rem; margin: 0; }
.person-top h1 { margin: 0 0 0.2rem; }
.person-top .meta { margin: 0; }
.rank-list { display: flex; flex-direction: column; gap: 0.55rem; margin: 0.7rem 0 1.4rem; }
.rank-row, .count-row {
  display: block;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.7rem 0.9rem 0.8rem;
  text-decoration: none;
  color: inherit;
}
a.rank-row:hover, a.count-row:hover { border-color: #c9c0ae; }
.rank-head, .count-head {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.55rem;
  align-items: center;
  margin-bottom: 0.4rem;
}
.rank-head strong, .count-head strong { font-size: 1rem; font-weight: 650; }
.count-head strong { flex: 1; min-width: 0; }
.rank-n {
  font-variant-numeric: tabular-nums;
  color: var(--muted);
  font-size: 0.82rem;
  min-width: 1.4rem;
}
.count-split {
  display: grid;
  gap: 0.5rem 2rem;
  margin: 1.25rem 0 2rem;
}
.count-split h2 { font-size: 1.05rem; margin: 0 0 0.15rem; letter-spacing: -0.02em; }
.count-n {
  margin-left: auto;
  display: flex;
  gap: 0.75rem;
  font-variant-numeric: tabular-nums;
  font-size: 1.05rem;
}
.n-left { color: #b42318; }
.n-right { color: #1d4e89; }
.count-row .press-bar { height: 0.7rem; }
@media (min-width: 840px) {
  .count-split { grid-template-columns: 1fr 1fr; align-items: start; }
}
.page-inclinacion .lead { max-width: 42rem; }
.rank-bar {
  display: block;
  height: 0.7rem;
  background: #efe8d8;
  border-radius: 999px;
  overflow: hidden;
}
.rank-bar i { display: block; height: 100%; }
.rb-left { background: #b42318; }
.rb-right { background: #1d4e89; }
.rank-list .press-bar {
  position: static;
  height: 0.85rem;
  margin: 0.15rem 0 0;
  box-shadow: none;
}
footer .wrap { padding-top: 1.2rem; padding-bottom: 1.6rem; }
@media (max-width: 720px) {
  html { font-size: 16px; }
  body { overflow-x: hidden; }
  .wrap {
    padding: 0.75rem max(0.85rem, env(safe-area-inset-right)) 0.75rem max(0.85rem, env(safe-area-inset-left));
  }
  header { padding-top: env(safe-area-inset-top); }
  header .wrap {
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
  }
  .brand-lockup .ed { padding-left: 0; }
  .ed-stats { display: none; }
  nav {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.25rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 -0.25rem;
    padding-bottom: 0.15rem;
  }
  nav::-webkit-scrollbar { display: none; }
  nav a {
    flex: 0 0 auto;
    padding: 0.45rem 0.55rem;
    font-size: 0.84rem;
  }
  .tabs { gap: 0.4rem; }
  .tabs a, .tabs label {
    font-size: 0.86rem;
    padding: 0.4rem 0.75rem;
    min-height: 2.4rem;
    display: inline-flex;
    align-items: center;
  }
  .hero { aspect-ratio: 16 / 9; border-radius: 8px; }
  .story.lead .thumb { aspect-ratio: 16 / 9; }
  .story.lead h2 { font-size: 1.2rem; }
  a.story.frame-left,
  a.story.frame-left:hover,
  a.story.frame-right,
  a.story.frame-right:hover,
  a.story.frame-center,
  a.story.frame-center:hover { border-width: 3px; }
  .thumb.frame-left, .hero.frame-left,
  .thumb.frame-right, .hero.frame-right,
  .thumb.frame-center, .hero.frame-center {
    box-shadow: inset 0 0 0 5px currentColor;
  }
  .thumb.frame-left, .hero.frame-left { box-shadow: inset 0 0 0 5px #b42318; }
  .thumb.frame-right, .hero.frame-right { box-shadow: inset 0 0 0 5px #1d4e89; }
  .thumb.frame-center, .hero.frame-center { box-shadow: inset 0 0 0 5px #8a8478; }
  .press-bar {
    left: 0.3rem;
    right: 0.3rem;
    bottom: 0.3rem;
    height: 1.15rem;
  }
  .thumb .press-bar b { display: none; }
  .hero .press-bar b { display: block; font-size: 0.68rem; }
  .hero .press-bar { left: 0.4rem; right: 0.4rem; bottom: 0.4rem; height: 1.25rem; }
  .agenda-on-thumb { padding: 0.3rem 0.35rem; }
  .agenda-on-thumb .agenda-chip { font-size: 0.68rem; padding: 0.06rem 0.35rem; }
  .source { grid-template-columns: 4.2rem 1fr; gap: 0.55rem; padding: 0.6rem; }
  .source h2 { font-size: 0.98rem; }
  .why { font-size: 0.9rem; }
  .fact-side { font-size: 1.02rem; }
  .key { padding: 0.55rem 0.75rem; }
  .card.outlet .outlet-bar { margin: 0.5rem 0.85rem 0; }
  table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  thead, tbody { display: table; width: 100%; min-width: 26rem; }
  .stats { gap: 0.55rem 1rem; }
  .stats b { font-size: 1.15rem; }
  .more li { padding: 0.85rem 0; }
}
#hv-agenda:checked ~ .home-rest { display: none; }
.key {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.7rem 1rem;
  margin: 0.7rem 0 1.1rem;
}
.key p { margin: 0.2rem 0; font-size: 0.92rem; }
.break { margin: 1.1rem 0; }
.card.outlet.lean-left,
tr.lean-left td {
  background: #f3ddd8;
}
.card.outlet.lean-left {
  border: 3px solid #b42318;
}
.card.outlet.lean-right,
tr.lean-right td {
  background: #dce8f5;
}
.card.outlet.lean-right {
  border: 3px solid #1d4e89;
}
.card.outlet.lean-mix {
  border: 3px solid #6a655c;
}
.outlet-bar {
  position: static;
  display: flex;
  height: 1.45rem;
  margin: 0.55rem 0 0;
  box-shadow: none;
}
.card.outlet .outlet-bar { margin: 0.65rem 1.1rem 0; }
body.lean-left { background: #f3ddd8; }
body.lean-right { background: #d6e4f4; }
body.lean-mix { background: #e8e4dc; }
.map-axis { margin: 0.35rem 0 1.4rem; }
.map-axis th { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--muted); }
.map-axis td.map-o { color: var(--muted); font-size: 0.85em; }
.map-axis td.map-l { background: #faf3f1; }
.map-axis td.map-r { background: #f1f5fa; }
.map-axis .agenda-chip { margin: 0.12rem 0.12rem 0.12rem 0; }
.map-notes { max-width: 40rem; }
.mind { margin: 0 0 1.8rem; }
.mind-split { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.mind-l, .mind-r { padding: 0.85rem 1rem; border-radius: 8px; }
.mind-l { background: #faf3f1; }
.mind-r { background: #f1f5fa; }
.mind h3 { margin: 0 0 0.4rem; font-size: 1rem; }
.mind p { margin: 0; font-size: 0.92rem; }
.moral-flow {
  margin: 1rem 0 0;
  padding: 0 0 0 1.2rem;
  border-left: 2px solid var(--line);
  list-style: none;
}
.moral-flow li {
  position: relative;
  margin: 0.35rem 0;
  padding-left: 0.85rem;
}
.moral-flow li::before {
  content: "";
  position: absolute;
  left: -1.2rem;
  top: 0.7em;
  width: 0.85rem;
  border-top: 2px solid var(--line);
}
.derive-how { color: var(--muted); font-size: 0.92rem; max-width: 42rem; margin: 0.2rem 0 0.7rem; }
.root-pairs { width: auto; max-width: 28rem; margin: 0.5rem 0 0; font-size: 0.95rem; }
.root-pairs th { text-align: left; }
.pair-def { margin: 0.25rem 0 0.7rem; max-width: 42rem; }
.lvl-agendas { margin-top: 2rem; padding-top: 1.2rem; border-top: 1px solid var(--line); }
@media (max-width: 40rem) {
  .mind-split { grid-template-columns: 1fr; }
}
.ag-graph { width: 100%; max-width: 52rem; height: auto; display: block; margin: 0.4rem 0 1.4rem; }
.ag-edge { stroke: #c8c2b6; stroke-width: 1.2; }
.ag-el { stroke: #c98980; }
.ag-er { stroke: #7a9cc4; }
.ag-hub { fill: #2c2a26; }
.ag-hub-t { fill: #f6f1e8; font-size: 12px; font-weight: 700; text-anchor: middle; }
.ag-pole { font-size: 11px; font-weight: 700; text-anchor: middle; }
.ag-pole-l { fill: #b42318; }
.ag-pole-r { fill: #1d4e89; }
.ag-box { fill: #fff; stroke: #c8c2b6; stroke-width: 1; }
.ag-box-t { font-size: 10px; text-anchor: middle; fill: #2c2a26; }
.ag-graph a:hover .ag-box { stroke: #2c2a26; }
.thermo {
  background: #12100e;
  color: #f3eee6;
}
.thermo-track {
  display: flex;
  width: 100%;
  height: 2.85rem;
}
.thermo-track i {
  display: flex;
  align-items: center;
  font-style: normal;
  min-width: 0;
  overflow: hidden;
}
.thermo-track b {
  padding: 0 1.1rem;
  font-size: 0.92rem;
  font-weight: 750;
  color: #fff;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.thermo-cap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.35rem 1.1rem;
  margin: 0 auto;
  padding-top: 0.45rem;
  padding-bottom: 0.65rem;
  font-size: 0.78rem;
  color: #b4aba0;
}
.hist-block {
  background: var(--card);
  border-bottom: 1px solid var(--line);
}
.hist-fig {
  margin: 0.7rem 0 0.85rem;
}
.hist-fig figcaption {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0 0 0.5rem;
}
.hist-svg { width: 100%; height: auto; display: block; }
.hist-l { fill: #b42318; }
.hist-r { fill: #1d4e89; }
.hist-grid { stroke: var(--line); stroke-width: 1; }
.hist-x, .hist-y {
  fill: var(--muted);
  font-size: 11px;
  font-family: var(--sans);
}
.page-home .mast { margin-top: 0.15rem; }
.page-home .story h2 { font-weight: 650; }
.theme-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin: 0.35rem 0 0.85rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.theme-tools select {
  font: inherit;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--card);
  padding: 0.15rem 0.4rem;
}
.theme-gaps-note { display: none; max-width: 42rem; }
#tv-gaps:checked ~ .theme-gaps-note { display: block; }
.theme-list { display: flex; flex-direction: column; gap: 0.55rem; margin: 0.5rem 0 2rem; }
.theme {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.15rem 0.9rem 0.15rem;
}
.theme summary {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0.7rem;
  align-items: baseline;
  cursor: pointer;
  padding: 0.55rem 0;
  list-style: none;
}
.theme summary::-webkit-details-marker { display: none; }
.theme summary strong { font-family: var(--serif); font-size: 1.05rem; font-weight: 650; }
.theme-gloss { max-width: 44rem; }
.theme-n { color: var(--muted); font-size: 0.88rem; font-variant-numeric: tabular-nums; margin-left: auto; }
.theme-coh { font-size: 0.78rem; color: var(--muted); }
.coh-alta { color: var(--accent); }
.coh-media { color: #6a5a38; }
.coh-baja { color: #8a2218; }
.theme .tag { margin-left: 0; }
.cover-si { background: #e8efe9; color: var(--accent); }
.cover-parcial { background: #efe8d8; color: #5c4a28; }
.cover-no { background: #f3ddd8; color: #8a2218; }
.cover-fuera { background: #eeeae3; color: var(--muted); }
.theme .more { margin: 0 0 0.7rem; }
.theme[hidden] { display: none; }
.page-home .key { border-radius: 6px; }
@media (max-width: 40rem) {
  .thermo-track { height: 2.35rem; }
  .thermo-track b { font-size: 0.78rem; padding: 0 0.7rem; }
  .thermo-cap { font-size: 0.72rem; }
}
.tree-wrap { margin: 0 0 1.8rem; }
.tree-search { display: flex; gap: 0.5rem; align-items: center; margin: 0 0 0.7rem; font-size: 0.9rem; }
.tree-search input { flex: 1; max-width: 22rem; padding: 0.35rem 0.55rem; border: 1px solid var(--line); border-radius: 6px; font: inherit; }
.tree { list-style: none; padding: 0; margin: 0; font-size: 0.92rem; }
.tree ul { list-style: none; padding: 0 0 0 1.1rem; margin: 0; border-left: 1px solid var(--line); }
.tree li { margin: 0.15rem 0; }
.tree summary { cursor: pointer; }
.tree-o { color: var(--muted); font-size: 0.82em; font-weight: 400; }
.tw-l { color: #9b2c2c; }
.tw-r { color: #1d4e89; }
@media (prefers-reduced-motion: reduce) {
  header { backdrop-filter: none; }
}
