/* alzheimers.ephemerisx.com -- Alzheimer's drugs at the FDA.
   Editorial and plain: paper, ink, one rule colour. No gradients, no icons. */

:root {
  --paper: #F5F2EA;
  --card: #FFFDF8;
  --rule: #D9D3C4;
  --ink: #17191E;
  --ink-2: #33363C;
  --label: #55585F;
  --blue: #1E4A86;
  --amber: #6E520F;
  --orange: #A3470F;
  --grey: #8A8C91;
  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --sans: "IBM Plex Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  --radius: 6px;
  --gutter: 16px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--paper); color: var(--ink-2);
  font: 16px/1.55 var(--sans);
}
a { color: var(--ink); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--blue); }
h1, h2, h3 { color: var(--ink); font-family: var(--serif); font-weight: 500; margin: 0; }
p { margin: 0 0 .6em; }
.mono, time { font-family: var(--mono); font-size: .86em; }
.nowrap { white-space: nowrap; }

/* ---- nav ---- */
.nav {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 24px;
  max-width: 1160px; margin: 0 auto; padding: 18px var(--gutter);
  border-bottom: 1px solid var(--rule);
}
.wordmark { font-family: var(--serif); font-size: 19px; font-weight: 500; text-decoration: none; color: var(--ink); letter-spacing: .01em; }
.crumb { font-family: var(--mono); font-size: 12px; color: var(--label); text-transform: uppercase; letter-spacing: .06em; flex: 1; min-width: 0; }
.crumb a { color: var(--label); }
.crumb .sep { margin: 0 8px; }
.links { display: flex; gap: 18px; font-size: 14px; }
.links a { text-decoration: none; }

/* ---- layout ---- */
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 var(--gutter) 48px; }
.wrap.narrow { max-width: 760px; }
.hero { padding: 40px 0 24px; }
.label, .eyebrow {
  font-family: var(--mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--label); margin: 0 0 10px; font-weight: 500;
}
h1 { font-size: clamp(32px, 5vw, 52px); line-height: 1.08; letter-spacing: -.01em; max-width: 24ch; }
.subhead { font-family: var(--serif); font-size: 21px; line-height: 1.4; color: var(--ink-2); max-width: 44ch; margin-top: 16px; }
.h2 { font-size: 26px; margin: 40px 0 14px; }
.sub { display: block; color: var(--label); font-size: 13px; }
.sub-inline { color: var(--label); font-size: 13px; }
.fine { color: var(--label); font-size: 13px; }
.note { color: var(--label); font-size: 14px; max-width: 70ch; }
.card { background: var(--card); border: 1px solid var(--rule); border-radius: var(--radius); padding: 18px; }
.plain { list-style: none; margin: 0; padding: 0; }
.plain li { padding: 6px 0; border-top: 1px solid var(--rule); }
.plain li:first-child { border-top: 0; }
.more { display: inline-block; margin-top: 8px; font-size: 14px; font-weight: 500; text-decoration: none; }

/* placeholders: visible, never mistaken for the record */
.ph {
  font-family: var(--mono); font-size: 12px; color: var(--label);
  border: 1px dashed var(--grey); border-radius: 3px; padding: 1px 5px; display: inline-block;
}
.tag-incomplete {
  display: inline-block; margin-top: 4px; font-family: var(--mono); font-size: 11px; text-transform: uppercase;
  letter-spacing: .06em; color: var(--label); border: 1px dashed var(--grey); border-radius: 3px; padding: 0 5px;
}

/* a status the editor has proposed but not yet reviewed */
.tag-proposed {
  display: inline-block; margin-left: 6px; font-family: var(--mono); font-size: 10px; text-transform: uppercase;
  letter-spacing: .06em; color: var(--label); border: 1px dashed var(--grey); border-radius: 3px; padding: 0 4px; vertical-align: middle;
}

/* ---- status pills ---- */
.pill {
  display: inline-flex; align-items: center; height: 28px; padding: 0 12px; border-radius: 14px;
  font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: .02em; white-space: nowrap;
  border: 1px solid transparent; vertical-align: middle;
}
.pill--origin { border-color: var(--ink); color: var(--ink); background: transparent; }
.pill--consistent { background: var(--blue); border-color: var(--blue); color: #fff; }
.pill--conditional { border-color: var(--amber); color: var(--amber); background: transparent; }
.pill--departs { background: var(--orange); border-color: var(--orange); color: #fff; }
.pill--not-addressed { border: 1px dashed var(--grey); color: var(--label); background: transparent; }

/* ---- counts strip ---- */
.counts {
  display: grid; grid-template-columns: repeat(4, 1fr); margin: 8px 0 12px;
  background: var(--card); border: 1px solid var(--rule); border-radius: var(--radius);
}
.counts div { padding: 16px 18px; border-left: 1px solid var(--rule); }
.counts div:first-child { border-left: 0; }
.counts dt { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--label); }
.counts dd { margin: 4px 0 0; font-family: var(--serif); font-size: 34px; color: var(--ink); line-height: 1; }

/* ---- at a glance ---- */
.glance { width: 100%; border-collapse: collapse; background: var(--card); border: 1px solid var(--rule); border-radius: var(--radius); overflow: hidden; font-size: 14px; }
.glance th {
  text-align: left; font-family: var(--mono); font-size: 11px; font-weight: 500; text-transform: uppercase;
  letter-spacing: .08em; color: var(--label); padding: 12px 12px; border-bottom: 1px solid var(--rule);
}
.glance td { padding: 12px; border-top: 1px solid var(--rule); vertical-align: top; }
.glance tbody tr:first-child td { border-top: 0; }
.row-link { font-weight: 600; text-decoration: none; }
.glance-cards { display: none; list-style: none; margin: 0; padding: 0; }

/* ---- threads on the index ---- */
.tgrid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.tcard h3 { font-size: 22px; margin-bottom: 6px; }
.tcard p { font-size: 14px; }
.tcard { display: flex; flex-direction: column; }
.tcard .more { margin-top: auto; padding-top: 8px; }

.pending { margin-top: 36px; padding: 18px; border: 1px dashed var(--grey); border-radius: var(--radius); }
.pending .empty { font-family: var(--serif); font-size: 19px; color: var(--ink); }
.related { margin-top: 28px; max-width: 760px; }
.pending p { max-width: 70ch; }
.watch { margin: 10px 0 14px; }
.count-note { font-family: var(--sans); font-size: 18px; text-decoration: none; color: var(--ink); line-height: 1.2; display: inline-block; }
.count-note .sub { font-size: 12px; }
.limits { padding-left: 18px; }
.limits li { margin-bottom: 10px; font-size: 16px; line-height: 1.55; }

/* ---- threads screen ---- */
.legend { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 10px 20px; margin: 0 0 24px; }
.legend div { display: flex; gap: 10px; align-items: flex-start; }
.legend dt { flex: none; }
.legend dd { margin: 4px 0 0; font-size: 13px; color: var(--label); }
.grid-scroll { overflow-x: auto; border: 1px solid var(--rule); border-radius: var(--radius); background: var(--card); }
.tgrid-table { border-collapse: collapse; width: 100%; font-size: 14px; }
.tgrid-table th, .tgrid-table td { padding: 10px 12px; border-top: 1px solid var(--rule); text-align: left; vertical-align: middle; }
.tgrid-table thead th { border-top: 0; font-weight: 600; vertical-align: bottom; min-width: 128px; }
.tgrid-table tbody th { font-weight: 500; white-space: nowrap; }
.tgrid-table td a { text-decoration: none; }
.tgrid-table .dash { color: var(--grey); }
.split { display: grid; grid-template-columns: 220px 1fr; gap: 32px; margin-top: 36px; }
.thread-list ol { list-style: none; margin: 0; padding: 0; position: sticky; top: 16px; }
.thread-list a {
  display: block; padding: 10px 12px; margin-bottom: 6px; border: 1px solid var(--rule);
  border-radius: var(--radius); text-decoration: none; background: var(--card);
}
.thread-list a[aria-current] { background: var(--ink); color: var(--card); border-color: var(--ink); }
.chain .h2 { margin-top: 0; }
.question { font-family: var(--serif); font-size: 19px; }
.steps { list-style: none; margin: 18px 0 0; padding: 0 0 0 20px; border-left: 1px solid var(--rule); }
.step { position: relative; padding: 0 0 26px; }
.step::before { content: ""; position: absolute; left: -25px; top: 7px; width: 9px; height: 9px; border-radius: 50%; background: var(--ink); }
.step--gap::before { background: var(--paper); border: 1px dashed var(--grey); }
.step-meta { display: flex; flex-wrap: wrap; gap: 6px 12px; align-items: center; }
.pid { color: var(--label); }

/* ---- quotes & citations ---- */
.quote {
  margin: 12px 0 8px; padding: 0; font-family: var(--serif); font-size: 22px; line-height: 1.4; color: var(--ink);
}
.quote::before { content: "\201C"; }
.quote::after { content: "\201D"; }
.cite { font-family: var(--mono); font-size: 12px; color: var(--label); }
.cite a, .cite-mini { color: var(--label); }
.scan { border-bottom: 1px dotted var(--grey); cursor: help; }
.cite-mini { font-family: var(--mono); font-size: 11px; margin-left: 4px; }
.rel { font-size: 13px; color: var(--ink-2); border-top: 1px solid var(--rule); padding-top: 8px; margin-top: 8px; }

/* ---- entry ---- */
.prevnext { display: flex; justify-content: space-between; gap: 16px; padding-top: 18px; font-size: 14px; }
.prevnext a { text-decoration: none; }
.meta {
  display: grid; grid-template-columns: repeat(5, 1fr); margin: 0 0 20px;
  background: var(--card); border: 1px solid var(--rule); border-radius: var(--radius);
}
.meta div { padding: 14px 16px; border-left: 1px solid var(--rule); }
.meta div:first-child { border-left: 0; }
.meta dt { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--label); margin-bottom: 4px; }
.meta dd { margin: 0; font-size: 14px; color: var(--ink); }
.incomplete { border: 1px dashed var(--grey); border-radius: var(--radius); padding: 14px 18px; margin: 0 0 20px; }
.incomplete ul { margin: 6px 0; padding-left: 18px; }
.entry { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 32px; }
.pos { margin-bottom: 14px; }
.pos-top { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.pos .quote { font-size: 21px; }
.rail > .card { margin-bottom: 14px; }
.docs li { font-size: 14px; }
.mini { display: block; color: var(--ink); margin: 6px 0; }
.mini .g-label { font-family: var(--sans); font-size: 11px; fill: var(--ink-2); }
.mini .g-cur { font-weight: 600; fill: var(--ink); }
.votes { width: 100%; border-collapse: collapse; font-size: 13px; background: var(--card); border: 1px solid var(--rule); }
.votes th, .votes td { padding: 8px 10px; border-top: 1px solid var(--rule); text-align: left; vertical-align: top; }
.votes th { font-family: var(--mono); font-size: 11px; text-transform: uppercase; color: var(--label); font-weight: 500; border-top: 0; }
.votes tr.headline td { background: #F9F6EE; }
.prose p { font-size: 17px; line-height: 1.6; }

/* ---- footer ---- */
.foot { max-width: 1160px; margin: 0 auto; padding: 24px var(--gutter) 48px; border-top: 1px solid var(--rule); }
.foot-lead { font-family: var(--serif); font-size: 20px; color: var(--ink); }
.foot p { font-size: 14px; }

/* ---- responsive ---- */
@media (max-width: 1000px) {
  .tgrid { grid-template-columns: repeat(2, 1fr); }
  .meta { grid-template-columns: repeat(2, 1fr); }
  .meta div { border-left: 0; border-top: 1px solid var(--rule); }
  .meta div:nth-child(-n+2) { border-top: 0; }
  .entry { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav { gap: 6px 16px; }
  .crumb { flex-basis: 100%; order: 3; }
  .crumb:empty { display: none; }
  .links { gap: 12px; flex-wrap: wrap; }
  .counts { grid-template-columns: repeat(2, 1fr); }
  .counts div { border-left: 0; border-top: 1px solid var(--rule); }
  .counts div:nth-child(-n+2) { border-top: 0; }
  .counts div:nth-child(2n) { border-left: 1px solid var(--rule); }
  .glance { display: none; }
  .glance-cards { display: grid; gap: 10px; }
  .dcard a { display: block; background: var(--card); border: 1px solid var(--rule); border-radius: var(--radius); padding: 14px; text-decoration: none; color: var(--ink-2); }
  .dcard-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
  .dcard-drug { display: block; font-family: var(--serif); font-size: 20px; color: var(--ink); }
  .tgrid { grid-template-columns: 1fr; }
  .meta { grid-template-columns: 1fr; }
  .meta div:nth-child(2) { border-top: 1px solid var(--rule); }
  .split { grid-template-columns: 1fr; gap: 16px; }
  .thread-list ol { position: static; display: flex; flex-wrap: wrap; gap: 6px; }
  .thread-list a { margin: 0; }
  .quote, .pos .quote { font-size: 19px; }
  .pos-top { flex-wrap: wrap; }
  .votes { font-size: 12px; }
}

/* ---- drug overview (index) ---- */
.drugs { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 14px; align-items: start; }
.drug { display: flex; flex-direction: column; gap: 12px; }
.drug-head h3 { font-size: 26px; line-height: 1.15; }
.drug-head .sub-inline { display: block; margin-top: 2px; }
.drug .eyebrow { margin: 4px 0 6px; font-size: 11px; }
.products li { display: grid; grid-template-columns: auto 1fr; gap: 2px 10px; padding: 10px 0; }
.prod-name { font-weight: 600; color: var(--ink); }
.prod-app { color: var(--label); text-align: right; }
.prod-status { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: center; gap: 4px 8px; }
.prod-status .sub { flex-basis: 100%; }
.drug .pill { height: 22px; padding: 0 9px; font-size: 11px; }
.history li { font-size: 14px; padding: 8px 0; }
.history li > a { text-decoration: none; font-weight: 500; }
.history .sub { margin-top: 2px; }
.drug-thread { border-top: 1px solid var(--rule); padding-top: 12px; }
.drug-thread li { padding: 10px 0; font-size: 13px; }
.q-mini { display: block; margin: 6px 0 2px; font-family: var(--serif); font-size: 16px; line-height: 1.4; color: var(--ink); }
.q-mini::before { content: "\201C"; }
.q-mini::after { content: "\201D"; }
.drug-thread .cite-mini { margin-left: 0; }

/* ---- maker mark: quiet, at the very bottom ---- */
.maker {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 18px;
  font-family: var(--serif); font-size: 13px; letter-spacing: .02em; color: var(--label); text-decoration: none; opacity: .75;
}
.maker:hover { opacity: 1; color: var(--ink); }
.maker img { display: block; }
@media (max-width: 720px) { .drugs { grid-template-columns: 1fr; } }

/* ---- every approved drug (index) ---- */
.table-scroll { overflow-x: auto; border: 1px solid var(--rule); border-radius: var(--radius); background: var(--card); }
.landscape { width: 100%; border-collapse: collapse; font-size: 14px; }
.landscape th { text-align: left; font-family: var(--mono); font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: .08em; color: var(--label); padding: 12px; }
.landscape td { padding: 12px; border-top: 1px solid var(--rule); vertical-align: top; }
.landscape td:first-child { min-width: 170px; }
.landscape td:nth-child(2) { min-width: 280px; max-width: 460px; }
.landscape tr.grp th { background: var(--paper); border-top: 1px solid var(--rule); font-family: var(--serif); font-size: 17px; font-weight: 500; text-transform: none; letter-spacing: 0; color: var(--ink); padding: 10px 12px; }
.landscape tr.off td { color: var(--label); }
.landscape tr.off strong { color: var(--ink-2); font-weight: 500; }
.q-ind { display: block; font-family: var(--serif); font-size: 15px; line-height: 1.4; color: var(--ink); margin-bottom: 4px; }
.landscape .cite-mini { margin-left: 0; }
.landscape .more { margin-top: 6px; font-size: 13px; }
.landscape .apps li { padding: 3px 0; border: 0; font-size: 13px; }
.landscape .apps .sub-inline { font-size: 12px; }
.landscape td:nth-child(5) { min-width: 250px; }
.mk { font-size: 13px; font-weight: 500; color: var(--ink); white-space: nowrap; }
.mk::before { content: ""; display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--ink); margin-right: 6px; vertical-align: 1px; }
.mk--off { color: var(--label); font-weight: 400; }
.mk--off::before { background: transparent; border: 1px solid var(--grey); }

/* ---- desktop command center (index, >= 1100px with JS) ---- */
.cc { display: none; }
.pill--xs { height: 20px; padding: 0 7px; font-size: 10px; border-radius: 10px; text-decoration: none; margin: 1px 2px 1px 0; }
@media (min-width: 1100px) {
  html.cc-on .cc { display: block; margin: 8px 0 36px; }
  html.cc-on #all-drugs, html.cc-on #drugs, html.cc-on .pending--full { display: none; }
  html.cc-on.cc-table #all-drugs { display: block; }
  html.cc-on .hero { padding: 28px 0 14px; }
  html.cc-on .hero .subhead { font-size: 18px; max-width: 70ch; }
  html.cc-on .wrap, html.cc-on .nav, html.cc-on .foot { max-width: 1440px; }
}
.cc .card { padding: 16px; }
.cc-filters { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px; margin: 0 0 12px; }
.chips { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }
.chips-label { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--label); margin-right: 2px; }
.chip {
  font: 500 13px/1 var(--sans); color: var(--ink-2); background: var(--card); border: 1px solid var(--rule);
  border-radius: 14px; padding: 7px 12px; cursor: pointer;
}
.chip:hover { border-color: var(--ink-2); }
.chip[aria-pressed="true"] { background: var(--ink); color: var(--card); border-color: var(--ink); }
.cc-search { font: 14px var(--sans); padding: 7px 10px; border: 1px solid var(--rule); border-radius: var(--radius); background: var(--card); color: var(--ink); min-width: 240px; }
.cc-count { color: var(--label); margin-left: auto; }
.cc-main { display: grid; grid-template-columns: minmax(0, 1.65fr) minmax(360px, 1fr); gap: 14px; align-items: start; }
.cc-head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 8px 16px; margin-bottom: 8px; }
.cc-h { font-size: 20px; margin: 0 0 6px; }
.cc-legend { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 4px 14px; font-size: 12px; color: var(--label); }
.cc-legend li { display: inline-flex; align-items: center; gap: 6px; }
.linklike { font: inherit; color: var(--ink); background: none; border: 0; padding: 0; text-decoration: underline; cursor: pointer; }

/* timeline */
.tl { display: block; overflow: visible; }
.tl-grid { stroke: var(--rule); stroke-width: 1; }
.tl-today { stroke: var(--label); stroke-width: 1; stroke-dasharray: 3 3; }
.tl-tick { font: 11px var(--mono); fill: var(--label); text-anchor: middle; }
.tl-group { font: 500 13px var(--serif); fill: var(--ink); }
.tl-name { font: 500 13px var(--sans); fill: var(--ink); }
.lane--off .tl-name { fill: var(--label); font-weight: 400; }
.lane { cursor: pointer; outline: none; }
.lane-bg { fill: transparent; }
.lane:hover .lane-bg, .lane:focus-visible .lane-bg { fill: #EFEBE0; }
.lane.sel .lane-bg { fill: #E8E3D5; }
.lane:focus-visible .lane-bg { stroke: var(--ink); stroke-width: 1; }
.lane.dim { opacity: .18; }
.tl-span, .cc-legend .tl-span { stroke: var(--ink); stroke-opacity: .28; stroke-width: 2; stroke-linecap: round; }
.mk-appl { fill: var(--ink); stroke: var(--card); stroke-width: 2; }
.mk-appl-off { fill: var(--card); stroke: var(--grey); stroke-width: 1.5; }
.mk-approved { fill: var(--blue); stroke: var(--card); stroke-width: 2; }
.mk-refused { fill: var(--orange); stroke: var(--card); stroke-width: 2; }
.mk-x { stroke: #fff; stroke-width: 1.6; stroke-linecap: round; }
.tm .hit { fill: transparent; }
.tm:hover .mk-appl, .tm:hover .mk-approved, .tm:hover .mk-refused { stroke: var(--ink); }

/* detail panel */
.cc-panel { position: sticky; top: 12px; max-height: calc(100vh - 24px); overflow-y: auto; }
.cc-detail h3 { font-size: 30px; line-height: 1.1; margin: 2px 0 4px; }
.cc-detail .eyebrow { margin: 14px 0 6px; font-size: 11px; }
.cc-detail header .eyebrow { margin-top: 0; }
.cc-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 14px 0; border: 1px solid var(--rule); border-radius: var(--radius); }
.cc-facts div { padding: 8px 10px; border-left: 1px solid var(--rule); }
.cc-facts div:first-child { border-left: 0; }
.cc-facts dt { font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; color: var(--label); }
.cc-facts dd { margin: 3px 0 0; font-size: 14px; color: var(--ink); }
.cc-ind .q-ind { font-size: 17px; }
.cc-detail .apps li { padding: 4px 0; border: 0; font-size: 13px; }
.cc-deep { margin-top: 12px; border-top: 1px solid var(--rule); padding-top: 4px; }
.cc-deep .drug { border: 0; padding: 0; background: none; }
.cc-deep .drug-head { display: none; }

/* bottom row */
.cc-row { display: grid; grid-template-columns: minmax(0, 1.65fr) minmax(360px, 1fr); gap: 14px; margin-top: 14px; align-items: start; }
.cc-side { display: grid; gap: 14px; }
.cc-matrix { width: 100%; border-collapse: collapse; font-size: 13px; }
.cc-matrix th, .cc-matrix td { padding: 7px 6px; border-top: 1px solid var(--rule); text-align: left; vertical-align: middle; }
.cc-matrix thead th { border-top: 0; font-weight: 600; vertical-align: bottom; }
.cc-matrix thead a, .cc-matrix tbody th a { text-decoration: none; }
.cc-matrix tbody th { font-weight: 500; white-space: nowrap; }
.cc-matrix .dash { color: var(--grey); }
.votes-list li { display: grid; grid-template-columns: 1fr auto; gap: 2px 10px; padding: 9px 0; }
.vote-name { font-weight: 600; color: var(--ink); }
.vote .sub-inline { text-align: right; }
.vote-bar { grid-column: 1 / -1; display: flex; gap: 2px; height: 10px; }
.vote-n { grid-column: 1; font-size: 12px; color: var(--ink-2); }
.vote .cite-mini { grid-column: 2; text-align: right; }
.vote--none .sub-inline:last-child { grid-column: 1 / -1; text-align: left; }
.seg { display: inline-block; border-radius: 2px; min-width: 4px; height: 10px; }
.seg--yes { background: var(--blue); }
.seg--no { background: var(--orange); }
.seg--third { background: #C9C3B3; }
.cc-votes-key { font-size: 12px; color: var(--label); display: flex; align-items: center; gap: 6px; }
.cc-votes-key .seg { width: 12px; }
.cc-pending p { font-size: 14px; }

/* tooltip */
.cc-tip {
  position: fixed; z-index: 10; pointer-events: none; max-width: 320px;
  background: var(--ink); color: var(--card); border-radius: var(--radius); padding: 8px 10px; font-size: 12px; line-height: 1.4;
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
}
.cc-tip strong { display: block; font-size: 13px; }
.cc-tip[hidden] { display: none; }
.tl[hidden] { display: none; }
.tl-today-label { text-anchor: end; }
.lane--before .tl-name { fill: var(--grey); }
.cc-range { margin: 0 0 6px; }
.cc-range .chip { padding: 5px 10px; font-size: 12px; }
.cc-deep-h { font: 500 18px var(--serif); color: var(--ink); margin: 12px 0 4px; }
@media (min-width: 1100px) {
  html.cc-on.cc-pending-open .pending--full { display: block; }
}
.cc-main { align-items: stretch; }
.cc-panel { position: relative; top: 0; height: 0; min-height: 100%; max-height: none; }
.no-committee li { padding: 4px 0; border: 0; font-size: 13px; }
.no-committee a { font-weight: 500; }
.cc-detail .drug-thread .q-mini { font-size: 15px; }
