:root {
  --bg: #f5f7fb;
  --paper: #ffffff;
  --ink: #0a1833;
  --muted: #5d687d;
  --line: #d9e1ee;
  --soft: #edf3fb;
  --blue: #1456d9;
  --blue-dark: #0b367d;
  --red: #c53030;
  --green: #0f7a4f;
  --amber: #a15c07;
  --shadow: 0 22px 55px rgba(10, 24, 51, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(20, 86, 217, 0.09), transparent 34rem),
    linear-gradient(180deg, #fbfdff 0%, var(--bg) 42rem);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; }
button, input { font: inherit; }

.site-header,
.hero,
.coverage-band,
.section,
.source-ledger,
.workspace {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  background: rgba(251, 253, 255, 0.92);
  border-bottom: 1px solid rgba(217, 225, 238, 0.72);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 7px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.brand-text { white-space: nowrap; }
nav { display: flex; gap: 22px; color: var(--muted); font-size: 14px; font-weight: 850; }
nav a { text-decoration: none; }
nav a:hover { color: var(--blue); }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 52px;
  align-items: center;
  padding: 76px 0 38px;
}
.hero-copy { min-width: 0; }
h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.042em;
}
.hero p {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.62;
}

.hero-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 118px;
  gap: 0;
  max-width: 690px;
  margin-top: 30px;
  border: 1px solid #cfd9e8;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-search input {
  min-width: 0;
  border: 0;
  padding: 17px 18px;
  outline: none;
  color: var(--ink);
  font-size: 16px;
}
.hero-search button {
  border: 0;
  background: var(--blue-dark);
  color: #fff;
  cursor: pointer;
  font-weight: 900;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}
.proof-strip div {
  border-left: 3px solid var(--blue);
  padding-left: 12px;
}
.proof-strip strong,
.proof-strip span {
  display: block;
}
.proof-strip strong { font-size: 13px; }
.proof-strip span { color: var(--muted); font-size: 12px; line-height: 1.45; margin-top: 4px; }

.hero-visual {
  position: relative;
  margin: 0;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, transparent, rgba(10, 24, 51, 0.1));
  pointer-events: none;
}
.hero-visual img {
  display: block;
  width: 100%;
  height: 470px;
  object-fit: cover;
}

.coverage-band {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  padding: 18px 0 24px;
}
.coverage-band article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  padding: 16px;
}
.coverage-band h2 { margin: 10px 0 6px; font-size: 16px; letter-spacing: -0.01em; }
.coverage-band p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.45; }
.icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 7px;
  background: #eaf1ff;
  color: var(--blue);
  font-weight: 950;
}

.section { padding: 42px 0; }
.section-title {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 18px;
}
h2 { margin: 0; font-size: 30px; letter-spacing: -0.025em; }
.section-title p,
.source-ledger p,
.panel p,
.wide-card p {
  color: var(--muted);
  line-height: 1.6;
}
.section-title p { max-width: 620px; margin: 0; }

.search-box,
.panel,
.wide-card,
.source-ledger,
.external-search,
.source-shortcut-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}
.search-box { padding: 18px; }

.lookup-money-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.lookup-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
  padding: 20px;
}

.lookup-card h3 {
  margin: 8px 0 14px;
  font-size: 22px;
}

.stacked-form {
  display: grid;
  gap: 10px;
}

.stacked-form label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.stacked-form input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 12px 13px;
  font: inherit;
}

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

.date-pair label {
  display: grid;
  gap: 6px;
}

.stacked-form button {
  border: 0;
  border-radius: 8px;
  background: var(--blue);
  color: white;
  font-weight: 900;
  padding: 12px 14px;
}

.lookup-results {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.lookup-result-card {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #f8fafc;
  padding: 13px;
}

.lookup-result-card.saved-summary {
  border-color: #bbf7d0;
  background: #f0fdf4;
}

.lookup-result-card p {
  margin: 7px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.lookup-official-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  margin-top: 12px;
  padding-top: 12px;
}

.lookup-official-row span {
  display: grid;
  gap: 3px;
}

.lookup-official-row small {
  color: var(--muted);
}

.lookup-result-card dl {
  margin-top: 10px;
}

.lookup-result-card .award-description {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.campaign-finance {
  border-top: 1px solid var(--line);
  margin-top: 20px;
  padding-top: 18px;
}

.finance-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 10px;
  margin: 12px 0;
}

.finance-actions label {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.finance-actions input {
  width: 110px;
}

.finance-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.finance-card {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #f8fafc;
  padding: 13px;
}

.finance-card dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 14px;
  margin: 12px 0 0;
}

.finance-card dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.finance-card dd {
  margin: 0;
  font-weight: 900;
}

.review-requirements {
  display: grid;
  gap: 6px;
  margin: 12px 0;
  padding-left: 18px;
  color: var(--muted);
}

.review-requirements li {
  line-height: 1.35;
}

.missing-key {
  border-color: #f2d49b;
  background: #fff8e8;
}

.compliance-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
}
.search-box input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 16px;
  outline: none;
  font-size: 17px;
}
.search-box input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(20, 86, 217, 0.12);
}
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.filters button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  padding: 9px 13px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
}
.filters button.active { border-color: var(--blue); background: #edf4ff; color: var(--blue); }

.source-shortcuts {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(180px, 0.55fr));
  gap: 14px;
}
.source-shortcut-card {
  padding: 18px;
}
.primary-shortcut {
  display: grid;
  gap: 16px;
}
.muted-shortcut {
  box-shadow: none;
  background: rgba(255, 255, 255, 0.72);
}
.shortcut-head {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}
.source-shortcut-card h3 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.015em;
}
.source-shortcut-card p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.external-search {
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
  padding: 16px 0 0;
}
.external-search label {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}
.external-search-row {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) 190px;
  gap: 10px;
}
.external-search select,
.external-search input,
.external-search button {
  min-height: 48px;
  border-radius: 7px;
  font-size: 14px;
}
.external-search select,
.external-search input {
  min-width: 0;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  padding: 0 13px;
  outline: none;
}
.external-search select:focus,
.external-search input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(20, 86, 217, 0.12);
}
.external-search button {
  border: 0;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  font-weight: 900;
}

.source-ledger {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(420px, 1.25fr);
  gap: 28px;
  padding: 26px;
}
.overline {
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
th {
  color: var(--muted);
  font-size: 12px;
  text-align: left;
  text-transform: uppercase;
}
td, th {
  border-bottom: 1px solid var(--line);
  padding: 13px 10px;
}
td:first-child { font-weight: 900; color: var(--ink); }

.workspace {
  display: grid;
  grid-template-columns: 390px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 42px 0;
}
.panel { padding: 22px; }
.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.live-load-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  margin: -4px 0 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #f8fbff;
  padding: 10px;
}
.live-load-row span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}
.live-load-row button {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--blue);
  cursor: pointer;
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 900;
}
.live-load-row button:disabled {
  cursor: wait;
  opacity: 0.58;
}
.official-member-search {
  display: grid;
  gap: 9px;
  margin-bottom: 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  padding: 12px;
}
.official-member-search label {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}
.official-member-search div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px;
  gap: 8px;
}
.official-member-search input,
.official-member-search button,
.load-more-members {
  min-height: 40px;
  border-radius: 6px;
  font-size: 13px;
}
.official-member-search input {
  min-width: 0;
  border: 1px solid var(--line);
  padding: 0 10px;
  outline: none;
}
.official-member-search input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(20, 86, 217, 0.12);
}
.official-member-search button,
.load-more-members {
  border: 0;
  background: var(--blue);
  color: #fff;
  cursor: pointer;
  font-weight: 900;
}
.official-member-search button:disabled,
.load-more-members:disabled {
  cursor: wait;
  opacity: 0.62;
}
.official-member-search p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}
.load-more-members {
  width: 100%;
  margin-top: 12px;
  background: var(--ink);
}
#result-count,
.status-pill {
  border-radius: 999px;
  background: #dcfce7;
  color: var(--green);
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 900;
}
#official-list,
.claims,
#bill-list,
#review-list {
  display: grid;
  gap: 12px;
}
.official-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  padding: 14px;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}
.official-row > span:first-child {
  min-width: 0;
}
.official-row.selected { border-color: var(--blue); background: #f0f6ff; }
.official-row small { display: block; margin-top: 4px; color: var(--muted); line-height: 1.35; }
.official-row > span:last-child {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: capitalize;
}
.official-row > span:last-child:where(:not(:empty)) {
  border-radius: 999px;
  background: var(--soft);
  padding: 5px 8px;
}

@media (max-width: 1200px) and (min-width: 981px) {
  .workspace {
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 18px;
  }
  .panel { padding: 18px; }
  .official-row {
    gap: 9px;
    padding: 11px;
  }
  .official-row strong {
    font-size: 14px;
    line-height: 1.2;
  }
  .official-row small {
    font-size: 12px;
  }
  .official-row > span:last-child {
    align-self: flex-start;
    font-size: 10px;
    padding: 4px 6px;
  }
  .live-load-row button {
    padding: 8px;
  }
}
.member-image {
  float: right;
  width: 112px;
  height: 112px;
  margin: 0 0 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  background: var(--soft);
}

dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
}
dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
dd {
  margin: 4px 0 0;
  font-weight: 850;
}
.stats {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.claims article {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fbfdff;
  padding: 16px;
}
.sponsored-legislation {
  margin-top: 24px;
}
.profile-votes {
  margin-top: 24px;
}
.sponsored-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.sponsored-head h3 {
  margin: 0;
}
.sponsored-head span,
.muted-note {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}
#sponsored-list {
  display: grid;
  gap: 10px;
}
.profile-vote-list {
  display: grid;
  gap: 10px;
}
.sponsored-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  padding: 14px;
}
.sponsored-card h4 {
  margin: 6px 0 6px;
  font-size: 16px;
  line-height: 1.35;
}
.sponsored-card p:not(.overline) {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.sponsored-actions {
  display: grid;
  justify-items: start;
  gap: 8px;
}
.profile-vote-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 14px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 13px;
  background: #f8fafc;
}
.profile-vote-card h4 {
  margin: 6px 0 6px;
  font-size: 16px;
  line-height: 1.35;
}
.profile-vote-card p:not(.overline) {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.profile-vote-card strong {
  display: inline-block;
  margin-bottom: 8px;
  border-radius: 999px;
  background: #e8f2ff;
  color: #0b4ea2;
  padding: 6px 10px;
  font-size: 13px;
}
.claims h4 { margin: 12px 0 8px; font-size: 17px; }
.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.card-top strong {
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.card-top span {
  border-radius: 999px;
  background: #fff2d8;
  color: var(--amber);
  padding: 5px 8px;
  font-size: 12px;
  font-weight: 900;
}
.text-button {
  margin: 6px 10px 0 0;
  border: 0;
  border-bottom: 2px solid currentColor;
  background: transparent;
  color: var(--blue);
  cursor: pointer;
  padding: 0;
  font-size: 13px;
  font-weight: 900;
}
.wide-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 20px;
  padding: 20px;
}
.chip {
  display: inline-flex;
  margin: 0 8px 8px 0;
  border-radius: 999px;
  background: var(--soft);
  color: var(--muted);
  padding: 6px 9px;
  font-size: 12px;
  font-weight: 850;
}
.risk {
  display: inline-flex;
  align-items: center;
  height: fit-content;
  width: fit-content;
  border-radius: 7px;
  background: #fff2d8;
  color: var(--amber);
  padding: 9px 10px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 40;
  display: none;
  width: min(520px, 100%);
  height: 100%;
  overflow-y: auto;
  background: #fff;
  padding: 34px;
  box-shadow: -16px 0 50px rgba(10, 24, 51, 0.22);
}
.drawer.open { display: block; }
#drawer-close {
  float: right;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
}
.drawer a { color: var(--blue); overflow-wrap: anywhere; }
.receipt-note {
  margin-top: 18px;
  border-left: 4px solid var(--blue);
  background: #f3f7ff;
  padding: 14px;
}
.receipt-note h3 {
  margin: 0 0 8px;
}
.receipt-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.vote-metrics,
.vote-import-grid {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
}

.vote-metrics {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.vote-metrics article,
.vote-import-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 16px;
  box-shadow: var(--shadow);
}

.vote-metrics strong {
  display: block;
  font-size: 28px;
  letter-spacing: -0.03em;
}

.vote-metrics span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.vote-import-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.vote-import-card h3 {
  margin: 8px 0;
  font-size: 20px;
}

.vote-import-card p:not(.overline) {
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 14px;
}

.vote-import-card button {
  border: 0;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  font-weight: 800;
  padding: 12px 16px;
}

.vote-import-card button:disabled {
  cursor: not-allowed;
  background: #c8d2df;
  color: #526173;
}

.planned-source {
  background: #f8fafc;
}

.vote-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}

.vote-filter-row button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--muted);
  font-weight: 900;
  padding: 10px 13px;
}

.vote-filter-row button.active {
  border-color: var(--blue);
  background: #eaf1ff;
  color: var(--blue);
}

.position-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
  font-size: 0.9rem;
}

.position-table th,
.position-table td {
  border-bottom: 1px solid var(--line);
  padding: 9px 6px;
  text-align: left;
}

@media (max-width: 980px) {
  .hero,
  .source-ledger,
  .workspace,
  .wide-card,
  .source-shortcuts,
  .vote-import-grid,
  .lookup-money-grid {
    grid-template-columns: 1fr;
  }
  .vote-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .coverage-band { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero { padding-top: 44px; }
  .hero-visual img { height: 360px; }
}

@media (max-width: 700px) {
  .site-header,
  .section-title {
    align-items: flex-start;
    flex-direction: column;
  }
  nav { flex-wrap: wrap; gap: 14px; }
  h1 { font-size: 36px; line-height: 1.04; }
  .hero-search { grid-template-columns: 1fr; }
  .hero-search button { min-height: 48px; }
  .proof-strip,
  .coverage-band,
  .vote-metrics,
  .external-search-row,
  .live-load-row,
  .official-member-search div,
  .sponsored-card,
  dl {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .site-header,
  .hero,
  .coverage-band,
  .section,
  .source-ledger,
  .workspace {
    width: min(280px, calc(100vw - 28px));
  }
  .brand-text { white-space: normal; }
  h1 { font-size: 31px; letter-spacing: -0.03em; }
  .hero p { font-size: 16px; }
  .hero-visual img { height: 260px; }
  .hero-search,
  .hero-visual,
  .coverage-band article,
  .source-ledger,
  .external-search,
  .source-shortcut-card,
  .lookup-card,
  .panel,
  .wide-card,
  .search-box {
    max-width: 100%;
    overflow: hidden;
  }
  .member-image {
    float: none;
    display: block;
    margin: 0 0 16px;
  }
  .source-ledger,
  .lookup-card,
  .panel,
  .wide-card,
  .search-box {
    padding: 17px;
  }
  table { font-size: 13px; }
  td, th { padding: 10px 6px; }
}
