/* Lobbying filing detail page. Uses theme tokens so it reads correctly in
   both light and dark themes. */
.lobby-bill-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--sp-3);
}
.lobby-bill-chip {
  border: 1px solid var(--ink-200);
  border-radius: var(--r-md);
  padding: var(--sp-3);
  background: var(--ink-50);
}
.lobby-bill-chip a { font-weight: 700; }
.lobby-bill-sub { margin-top: 2px; }

.lobby-activity {
  padding: var(--sp-3) 0;
  border-top: 1px solid var(--ink-100);
}
.lobby-activity:first-child { border-top: none; padding-top: 0; }
.lobby-activity-issue {
  font-weight: 700;
  color: var(--civic-blue);
  margin-bottom: 2px;
}
.lobby-activity-desc {
  margin: 0;
  line-height: 1.55;
  color: var(--ink-800);
}
