:root {
  --paper: #f6f5f0;
  --white: #fffefa;
  --ink: #202e29;
  --muted: #606b63;
  --line: #d8dcd1;
  --green: #173e35;
  --accent: #c8df8c;
  --wash: #eaf0df;
  --danger: #9d302a;
  --amber: #815609;
  --radius: 10px;
  font-family: "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a,
input,
textarea,
select {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: wait;
  opacity: 0.6;
}
a {
  color: var(--green);
  text-underline-offset: 4px;
}
a:hover {
  text-decoration-thickness: 2px;
}
::selection {
  background: var(--accent);
  color: var(--green);
}
input,
textarea,
select {
  caret-color: var(--green);
}
:focus-visible {
  outline: 3px solid #588534;
  outline-offset: 4px;
}
* {
  scrollbar-width: thin;
  scrollbar-color: #a5b29c var(--paper);
}
[hidden] {
  display: none !important;
}
.skip {
  position: absolute;
  top: -100px;
  left: 24px;
  padding: 14px;
  background: var(--white);
  z-index: 10;
}
.skip:focus {
  top: 12px;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  text-wrap: balance;
}
h1 {
  font-size: clamp(30px, 3.1vw, 45px);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.13;
  margin-bottom: 15px;
}
h2 {
  font-size: 22px;
  letter-spacing: -0.025em;
  font-weight: 650;
  line-height: 1.25;
}
h3 {
  font-size: 17px;
  margin-top: 30px;
  margin-bottom: 13px;
}
p {
  line-height: 1.65;
  max-width: 70ch;
}
small,
.hint {
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
}
code {
  font-family: ui-monospace, monospace;
  font-size: 0.9em;
  overflow-wrap: anywhere;
}
.shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 232px minmax(0, 1fr);
}
.sidebar {
  background: var(--green);
  color: var(--paper);
  padding: 38px 24px 25px;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  letter-spacing: -0.05em;
  font-weight: 650;
  text-decoration: none;
  color: inherit;
}
.brand-symbol {
  font-size: 30px;
  background: var(--accent);
  color: var(--green);
  border-radius: 10px;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 36px;
}
.sidebar nav {
  margin-top: 64px;
  display: grid;
  gap: 8px;
}
.nav-button {
  text-align: left;
  color: #e3ebdf;
  background: transparent;
  border: 0;
  padding: 12px 14px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 550;
  display: flex;
  gap: 13px;
  align-items: center;
}
.nav-button span {
  font-size: 21px;
  line-height: 1;
}
.nav-button:hover {
  background: #2c5147;
}
.nav-button.active {
  color: var(--green);
  background: var(--accent);
}
.sidebar-bottom {
  margin-top: auto;
  padding-top: 40px;
}
.sidebar-bottom .hint {
  color: #c8d5c6;
  font-size: 12px;
  margin-bottom: 24px;
}
.service-line {
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 100%;
  display: inline-block;
}
.dot.offline {
  background: #f0bc73;
}
.text-button {
  background: transparent;
  border: 0;
  color: inherit;
  padding: 4px 0;
  text-decoration: underline;
  text-underline-offset: 4px;
  font-size: 13px;
}
.version {
  display: block;
  font-size: 11px;
  margin-top: 18px;
  color: #c8d5c6;
}
main {
  min-width: 0;
}
.topbar {
  height: 76px;
  border-bottom: 1px solid var(--line);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--muted);
}
.region {
  font-size: 12px;
  color: var(--ink);
}
.region span {
  margin: 0 9px;
  color: var(--muted);
}
.view {
  padding: 40px 48px 32px;
  max-width: 1500px;
  margin: 0 auto;
}
.page-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 35px;
}
.page-heading p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}
.heading-mark {
  font-family: Georgia, serif;
  font-size: 68px;
  letter-spacing: -0.07em;
  white-space: nowrap;
  color: var(--green);
  padding-right: 20px;
}
.heading-mark span {
  font-size: 34px;
  vertical-align: middle;
  padding: 0 7px;
}
.research-grid {
  display: grid;
  grid-template-columns: minmax(290px, 370px) minmax(0, 1fr);
  gap: 38px;
  align-items: start;
}
.brief-panel {
  background: var(--white);
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.brief-panel h2 {
  margin-bottom: 25px;
}
label,
legend {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 9px;
}
input:not([type="radio"]):not([type="checkbox"]),
textarea,
select {
  width: 100%;
  border: 1px solid #bec8bc;
  background: #fffefa;
  padding: 12px 13px;
  border-radius: 6px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.5;
}
input::placeholder,
textarea::placeholder {
  color: #69736c;
  opacity: 1;
}
textarea {
  resize: vertical;
  min-height: 150px;
}
input:hover,
textarea:hover,
select:hover {
  border-color: #789078;
}
.field-meta {
  font-size: 11px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  line-height: 1.5;
  margin: 7px 0 24px;
}
.field-meta span:last-child {
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.optional {
  font-size: 11px;
  color: var(--muted);
  font-weight: 400;
  margin-left: 6px;
}
input + .hint {
  margin-top: 7px;
  margin-bottom: 24px;
}
.mode-select {
  border: 0;
  padding: 0;
  margin: 26px 0 14px;
}
.mode-select legend {
  margin-bottom: 10px;
}
.radio-option {
  display: flex;
  gap: 10px;
  align-items: start;
  margin: 0;
  padding: 10px 0;
  font-weight: 400;
  cursor: pointer;
}
.radio-option input {
  margin: 3px 0;
  accent-color: var(--green);
}
.radio-option strong {
  font-size: 13px;
  font-weight: 600;
  display: block;
}
.radio-option small {
  display: block;
  margin-top: 3px;
  font-size: 11px;
}
.provider-hint {
  font-size: 12px;
  color: var(--amber);
  line-height: 1.6;
  background: #f8f1dd;
  padding: 11px 12px;
  border-radius: 6px;
  margin: 8px 0 20px;
}
.provider-hint.ready {
  background: var(--wash);
  color: var(--green);
}
.primary,
.secondary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--green);
  text-decoration: none;
}
.primary {
  background: var(--green);
  color: var(--white);
}
.primary:hover {
  background: #285849;
}
.primary span {
  margin-left: auto;
  font-size: 19px;
  line-height: 1;
}
.brief-panel .primary,
.login-panel .primary {
  width: 100%;
}
.secondary {
  background: transparent;
  color: var(--green);
  border-color: #b5c3b0;
}
.secondary:hover {
  background: var(--wash);
}
.below-button {
  margin: 12px 0 0;
  text-align: center;
  font-size: 11px;
}
.workspace {
  min-width: 0;
}
.empty-state {
  padding: 26px 12px 0;
}
.word-specimen {
  padding: 12px 0 34px;
  color: var(--green);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.word-specimen > span:first-child {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 23px;
  color: var(--muted);
}
.specimen-rule {
  height: 1px;
  min-width: 24px;
  max-width: 65px;
  flex: 1;
  background: #a6b9a0;
}
.word-specimen strong {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.045em;
}
.word-specimen strong span {
  color: #678735;
}
.empty-state h2 {
  font-size: 27px;
  line-height: 1.25;
  margin-bottom: 14px;
}
.empty-state > p {
  font-size: 14px;
  color: var(--muted);
}
.workflow {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  border-top: 1px solid var(--line);
  counter-reset: steps;
}
.workflow li {
  counter-increment: steps;
  border-bottom: 1px solid var(--line);
  padding: 18px 0 18px 34px;
  position: relative;
}
.workflow li:before {
  content: counter(steps);
  position: absolute;
  left: 2px;
  top: 19px;
  color: var(--green);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}
.workflow strong {
  font-size: 13px;
  font-weight: 600;
  display: block;
}
.workflow span {
  font-size: 12px;
  color: var(--muted);
  display: block;
  margin-top: 5px;
}
.scope-note {
  font-size: 12px !important;
  color: var(--muted);
  line-height: 1.65;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin-top: 25px;
}
.empty-state .scope-note {
  border: 0;
  padding-top: 0;
}
.notice {
  margin: 20px 48px 0;
  padding: 13px 16px;
  border: 1px solid #bbcf9b;
  background: var(--wash);
  border-radius: 6px;
  font-size: 13px;
  line-height: 1.5;
}
.notice.error,
.error {
  color: var(--danger);
}
.notice.error {
  background: #fff0eb;
  border-color: #e5c5bb;
}
.job-top {
  padding: 4px 0 18px;
  border-bottom: 1px solid var(--line);
}
.job-top h2 {
  font-size: 25px;
  margin-bottom: 8px;
}
.job-meta {
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 12px;
}
.progress-status {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 10px;
  color: var(--green);
}
progress {
  width: 100%;
  height: 5px;
  accent-color: var(--green);
  display: block;
  margin: 15px 0;
  background: var(--line);
  border: 0;
  border-radius: 5px;
}
progress::-webkit-progress-bar {
  background: var(--line);
  border-radius: 5px;
}
progress::-webkit-progress-value {
  background: var(--green);
  border-radius: 5px;
}
.job-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.job-actions button {
  font-size: 12px;
}
.job-context {
  font-size: 12px;
  color: var(--muted);
  margin-top: 14px;
}
.job-context p {
  white-space: pre-wrap;
  margin: 10px 0 0;
}
.warning {
  font-size: 12px;
  line-height: 1.6;
  padding: 12px 0;
  color: var(--amber);
  border-bottom: 1px solid var(--line);
  margin: 0;
}
.result-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  margin: 23px 0 0;
}
.result-tab {
  padding: 10px 0 12px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
}
.result-tab.selected {
  border-bottom-color: var(--green);
  color: var(--green);
  font-weight: 650;
}
.candidate {
  border-bottom: 1px solid var(--line);
}
.candidate > summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  display: grid;
  grid-template-columns: 26px 1fr auto;
  gap: 12px;
  align-items: start;
}
.candidate > summary::-webkit-details-marker {
  display: none;
}
.rank {
  font-size: 12px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  padding-top: 5px;
}
.name-block strong {
  display: block;
  font-size: 20px;
  font-weight: 650;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
}
.domain-label {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 5px;
  overflow-wrap: anywhere;
}
.candidate-status {
  font-size: 10px;
  display: inline-block;
  border-radius: 4px;
  margin-top: 9px;
  padding: 4px 6px;
  background: #e9ece5;
  color: #526149;
}
.candidate-status.approved {
  color: var(--green);
  background: #dcebc6;
}
.candidate-status.conflict,
.candidate-status.unavailable {
  color: #943c2d;
  background: #f4e6df;
}
.candidate-status.unknown,
.candidate-status.exploratory,
.candidate-status.preliminary {
  color: var(--amber);
  background: #f5edda;
}
.score {
  text-align: right;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  font-weight: 650;
  padding-top: 4px;
}
.score small {
  display: block;
  font-size: 10px;
  font-weight: 400;
  margin-top: 4px;
}
.candidate-body {
  padding: 0 0 22px 38px;
  font-size: 12px;
  line-height: 1.65;
}
.candidate-body h3 {
  margin-top: 18px;
  font-size: 13px;
}
.candidate-body p {
  margin-bottom: 10px;
}
.candidate-body ul {
  padding-left: 18px;
}
.candidate-body a {
  overflow-wrap: anywhere;
}
.evidence-link {
  display: block;
  margin-bottom: 6px;
}
.evidence-note {
  color: var(--muted);
}
.score-parts {
  color: var(--muted);
  font-size: 11px;
}
.no-results {
  padding: 28px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}
.evidence-section {
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}
.evidence-section > summary {
  font-weight: 600;
  cursor: pointer;
}
.keywords-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
  font-size: 12px;
}
.keywords-table td,
.keywords-table th {
  text-align: left;
  padding: 8px 4px;
  border-bottom: 1px solid var(--line);
}
.keywords-table td:last-child,
.keywords-table th:last-child {
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.event-list {
  max-height: 240px;
  overflow: auto;
  padding-left: 20px;
  color: var(--muted);
}
.event-list li {
  padding: 6px 0;
}
.event-list time {
  font-variant-numeric: tabular-nums;
  margin-right: 8px;
}
.history-filter {
  max-width: 540px;
  margin-bottom: 30px;
}
.history-row {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.history-main {
  min-width: 0;
}
.history-main h2 {
  font-size: 17px;
  font-weight: 600;
  margin: 8px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 65ch;
}
.history-main p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}
.history-date {
  font-size: 11px;
  color: var(--muted);
}
.history-row button {
  flex-shrink: 0;
}
.settings-grid {
  display: grid;
  grid-template-columns: minmax(280px, 530px) minmax(220px, 1fr);
  gap: 65px;
}
.settings-panel > p,
.settings-aside p {
  font-size: 13px;
  color: var(--muted);
}
.settings-panel > input,
.settings-panel > select {
  margin-bottom: 20px;
}
.settings-panel .hint {
  font-size: 12px;
}
.checkbox-label {
  font-size: 12px;
  display: flex;
  gap: 9px;
  align-items: center;
  font-weight: 400;
}
.checkbox-label input {
  accent-color: var(--green);
}
.status-pill {
  display: inline-block;
  padding: 5px 9px;
  border-radius: 5px;
  background: var(--wash);
  color: var(--green) !important;
  font-size: 12px !important;
}
.settings-aside {
  border-top: 1px solid var(--line);
  padding-top: 25px;
}
.install-steps {
  padding-left: 18px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
  margin: 22px 0 40px;
}
.install-steps li {
  padding: 4px 0;
}
.settings-aside a {
  font-size: 13px;
}
.login {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.login-panel {
  width: 100%;
  max-width: 490px;
  padding: 65px 45px;
  margin: auto;
}
.login-panel .brand {
  margin-bottom: 65px;
  color: var(--green);
}
.login-panel h1 {
  font-size: 40px;
}
.login-panel > p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 30px;
}
.login-panel label {
  margin-top: 20px;
}
.login-panel .hint {
  margin: 9px 0 25px;
}
.login-panel > small {
  display: block;
  margin-top: 45px;
}
.login-panel .error {
  font-size: 13px;
  margin: 12px 0;
}
.login-art {
  background: var(--green);
  color: #e9eddd;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12%;
  overflow: hidden;
}
.login-art > span {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: clamp(30px, 4vw, 58px);
  color: #c6d6b8;
}
.login-art > strong {
  font-size: clamp(60px, 8vw, 120px);
  font-weight: 650;
  letter-spacing: -0.04em;
  color: var(--accent);
}
.art-line {
  width: 1px;
  height: 60px;
  background: #5c7b67;
  margin: 23px 0 23px 12px;
}
.login-art p {
  font-size: 13px;
  color: #c6d6b8;
  margin-top: 35px;
  line-height: 1.8;
}
footer {
  font-size: 11px;
  color: var(--muted);
  padding: 25px 48px;
  margin-top: 20px;
}
footer span {
  margin: 0 7px;
}
#history-more {
  margin-top: 25px;
}
@media (min-width: 1550px) {
  .view {
    padding-top: 55px;
  }
  .research-grid {
    gap: 60px;
    grid-template-columns: 390px minmax(0, 1fr);
  }
  .brief-panel {
    padding: 32px;
  }
  .empty-state {
    padding: 40px 35px 0;
  }
  .empty-state h2 {
    font-size: 32px;
  }
  .word-specimen {
    padding-bottom: 45px;
  }
  .word-specimen strong {
    font-size: 48px;
  }
}
@media (max-width: 1150px) {
  .shell {
    grid-template-columns: 195px minmax(0, 1fr);
  }
  .sidebar {
    padding: 30px 15px;
  }
  .topbar {
    padding: 0 30px;
  }
  .view {
    padding: 30px;
  }
  .research-grid {
    gap: 24px;
    grid-template-columns: minmax(270px, 330px) minmax(0, 1fr);
  }
  .brief-panel {
    padding: 22px;
  }
  .empty-state {
    padding: 20px 0;
  }
  .word-specimen strong {
    font-size: 31px;
  }
  .word-specimen > span:first-child {
    font-size: 20px;
  }
  .settings-grid {
    gap: 35px;
  }
  .notice {
    margin-left: 30px;
    margin-right: 30px;
  }
  footer {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 900px) {
  .shell {
    grid-template-columns: 170px minmax(0, 1fr);
  }
  .sidebar .brand {
    font-size: 20px;
  }
  .sidebar .brand-symbol {
    width: 34px;
    height: 34px;
    font-size: 26px;
    line-height: 32px;
  }
  .nav-button {
    font-size: 12px;
    padding: 11px 9px;
    gap: 9px;
  }
  .research-grid {
    grid-template-columns: 1fr;
  }
  .brief-panel {
    padding: 25px;
  }
  .empty-state {
    padding: 20px;
  }
  .heading-mark {
    font-size: 52px;
    padding: 0;
  }
  .settings-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .settings-aside {
    max-width: 530px;
  }
  .history-main h2 {
    max-width: 38ch;
  }
  .workspace {
    scroll-margin-top: 24px;
  }
}
@media (max-width: 600px) {
  .shell {
    display: block;
  }
  .sidebar {
    position: relative;
    height: auto;
    padding: 18px 20px 0;
    display: block;
  }
  .sidebar .brand {
    font-size: 22px;
  }
  .sidebar nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
    margin-top: 22px;
  }
  .nav-button {
    flex: 1;
    justify-content: center;
    padding: 12px 6px;
    border-radius: 6px 6px 0 0;
    font-size: 11px;
    white-space: nowrap;
  }
  .nav-button span {
    font-size: 17px;
  }
  .sidebar-bottom {
    position: absolute;
    right: 20px;
    top: 24px;
    padding: 0;
    margin: 0;
    display: block;
  }
  .sidebar-bottom > *:not(#disconnect) {
    display: none;
  }
  .sidebar-bottom .text-button {
    font-size: 11px;
    color: #e3ebdf;
  }
  .topbar {
    height: 48px;
    padding: 0 20px;
    font-size: 11px;
  }
  .region {
    font-size: 11px;
  }
  .view {
    padding: 28px 20px;
  }
  .page-heading {
    margin-bottom: 25px;
  }
  .page-heading p {
    font-size: 13px;
  }
  .heading-mark {
    display: none;
  }
  h1 {
    font-size: 32px;
  }
  .brief-panel {
    padding: 22px 18px;
  }
  .empty-state {
    padding: 15px 0;
  }
  .research-grid {
    gap: 30px;
  }
  .candidate > summary {
    gap: 8px;
    grid-template-columns: 23px 1fr auto;
  }
  .name-block strong {
    font-size: 19px;
  }
  .candidate-body {
    padding-left: 31px;
  }
  .notice {
    margin: 15px 20px 0;
  }
  .history-row {
    gap: 12px;
  }
  .history-main h2 {
    max-width: 25ch;
    font-size: 14px;
  }
  .history-row button {
    padding: 10px;
    font-size: 11px;
  }
  .history-main p {
    font-size: 11px;
  }
  .login {
    display: block;
  }
  .login-art {
    display: none;
  }
  .login-panel {
    padding: 40px 28px;
  }
  .login-panel .brand {
    margin-bottom: 55px;
  }
  .login-panel h1 {
    font-size: 36px;
  }
  footer {
    padding: 20px;
    font-size: 10px;
  }
  .result-tabs {
    gap: 16px;
  }
  .result-tab {
    font-size: 11px;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .word-specimen {
    animation: reveal 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  }
  @keyframes reveal {
    from {
      clip-path: inset(0 65% 0 0);
    }
    to {
      clip-path: inset(0 0 0 0);
    }
  }
}

.research-cost { margin: 1.25rem 0; padding: 1rem 0; border-block: 1px solid var(--line); }
.research-cost > p:first-child { color: var(--green); font-variant-numeric: tabular-nums; }
.research-cost details { margin-top: .75rem; }
.cost-table-scroll { overflow-x: auto; max-width: 100%; margin: .75rem 0; }
.cost-table-scroll th, .cost-table-scroll td { min-width: 6rem; overflow-wrap: anywhere; }

#project-select, #library-project { margin-bottom: 16px; }
#library-project, #library-filter { max-width: 640px; }
.saved-name { padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.saved-name .candidate { border-bottom: 0; }
.saved-name > .evidence-note, .saved-name > .text-button { margin-left: 38px; }
