/* Public blocklist checker - aligned with portal + marketing typography. */

:root {
  --ff-font-sans: Arial, "Helvetica Neue", Helvetica, sans-serif;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --space-1: 6px;
  --space-2: 10px;
  --space-3: 14px;
  --space-4: 18px;
  --space-5: 24px;
  --bg: #f3f6fa;
  --surface: #ffffff;
  --surface-soft: #f8fbfd;
  --ink: #162434;
  --muted: #4a5a6a;
  --text-faint: #5a6570;
  --line: #d8e3ec;
  --line-strong: #c4d3df;
  --label: #344d63;
  --placeholder: #8295a7;
  --blue-focus: rgba(47, 125, 183, 0.72);
  --blue-focus-ring: rgba(230, 242, 252, 0.95);
  --primary: #2d6f9f;
  --primary-strong: #245b83;
  --primary-soft: #eaf3fb;
  --success: #23845a;
  --success-soft: #e8f6ef;
  --warning: #9a6a1b;
  --warning-soft: #fff6e6;
  --danger: #b44b5c;
  --danger-soft: #fbecef;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.07), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 12px 32px rgba(30, 55, 90, 0.1), 0 4px 12px rgba(22, 36, 52, 0.05);
  --shadow-lg: 0 20px 52px rgba(22, 36, 52, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--ff-font-sans);
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--bg);
}

button,
input,
.button-link {
  font-family: var(--ff-font-sans);
}

.mono {
  font-family: var(--font-mono, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace);
}

.shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: var(--space-5) clamp(16px, 3vw, 24px) 56px;
}

.shell.compact {
  max-width: none;
  padding: var(--space-3);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  flex-wrap: wrap;
}

.topbar-end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.checker-hero-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-2);
}

.checker-hero-head .eyebrow {
  margin-bottom: 0;
}

.checker-rag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 10px 5px 7px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line-strong);
  background: var(--surface-soft);
  box-shadow: var(--shadow-sm);
}

.checker-rag-lamp {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #d5dee8;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.45);
  transition: background 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.checker-rag[data-level="clear"] .checker-rag-lamp--clear {
  background: var(--success);
  box-shadow: 0 0 0 2px var(--success-soft), inset 0 1px 1px rgba(255, 255, 255, 0.5);
  transform: scale(1.08);
}

.checker-rag[data-level="amber"] .checker-rag-lamp--amber {
  background: linear-gradient(165deg, #e8b84a 0%, var(--warning) 100%);
  box-shadow: 0 0 0 2px var(--warning-soft), inset 0 1px 1px rgba(255, 255, 255, 0.45);
  transform: scale(1.08);
}

.checker-rag[data-level="red"] .checker-rag-lamp--red {
  background: linear-gradient(165deg, #d67384 0%, var(--danger) 100%);
  box-shadow: 0 0 0 2px var(--danger-soft), inset 0 1px 1px rgba(255, 255, 255, 0.45);
  transform: scale(1.08);
}

.checker-rag-label {
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-left: 2px;
  white-space: nowrap;
}

.checker-rag[data-level="red"] .checker-rag-label {
  color: var(--danger);
}

.checker-rag[data-level="amber"] .checker-rag-label {
  color: var(--warning);
}

.checker-rag[data-level="clear"] .checker-rag-label {
  color: var(--success);
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-sm);
}

.brand h1 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--text-faint);
  font-size: 11px;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-4);
  align-items: start;
}

.panel {
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.panel-inner {
  padding: var(--space-4) 22px;
}

.checker-page .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--space-2);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface-soft);
  color: var(--text-faint);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.checker-page h2 {
  margin: 0 0 var(--space-2);
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 750;
  color: var(--ink);
}

.checker-page h3 {
  margin: 0 0 var(--space-2);
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.checker-page h4 {
  margin: var(--space-3) 0 var(--space-2);
  font-size: 0.92rem;
  font-weight: 650;
  color: var(--ink);
}

.checker-page p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.checker-page .lead {
  margin-bottom: var(--space-2);
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.5;
}

.checker-disclaimer {
  margin: 0 0 var(--space-3);
  padding: var(--space-3) 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--surface-soft);
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
}

.hit-pill.checker-hit {
  background: rgba(180, 75, 92, 0.14);
  color: var(--danger);
  border: 1px solid rgba(180, 75, 92, 0.28);
}

.hit-pill.checker-no-hit {
  background: rgba(35, 132, 90, 0.16);
  color: var(--success);
  border: 1px solid rgba(35, 132, 90, 0.28);
}

.checker-form {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: var(--space-4);
}

.field label {
  display: block;
  margin-bottom: 9px;
  color: var(--label);
  font-size: 0.78rem;
  font-weight: 675;
  letter-spacing: 0.01em;
}

.checker-page input[type="text"],
.checker-page input[type="email"],
.checker-page input[type="url"] {
  width: 100%;
  min-height: 39px;
  padding: 0 13px;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  background: #fff;
  font: inherit;
  font-size: 0.86rem;
  color: var(--ink);
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.03);
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.checker-page input::placeholder {
  color: var(--placeholder);
  opacity: 1;
}

.checker-page input:hover:not(:focus):not(:disabled) {
  border-color: #b8c9d8;
}

.checker-page input:focus {
  outline: none;
  border-color: var(--blue-focus);
  box-shadow: 0 0 0 4px var(--blue-focus-ring), inset 0 1px 2px rgba(15, 23, 42, 0.03);
  background: #fff;
}

.checker-page input:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  align-items: center;
}

.checker-page button,
.checker-page .button-link {
  appearance: none;
  border-radius: var(--radius-sm);
  min-height: 40px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.checker-page button[type="submit"],
.checker-page .button-link:not(.secondary) {
  border: 1px solid rgba(36, 91, 131, 0.45);
  background: var(--primary);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 2px 8px rgba(36, 91, 131, 0.22);
}

.checker-page button[type="submit"]:hover,
.checker-page .button-link:not(.secondary):hover {
  background: var(--primary-strong);
}

.checker-page .button-link.secondary,
.checker-page button.alt {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-sm);
}

.checker-page .button-link.secondary:hover,
.checker-page button.alt:hover {
  background: var(--surface-soft);
}

.checker-page button:focus-visible,
.checker-page .button-link:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.loading-note {
  margin-top: var(--space-2);
  font-size: 13px;
  color: var(--muted);
}

.loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(243, 246, 250, 0.88);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: var(--space-4);
}

.loading-overlay.is-open {
  display: flex;
}

.loading-card {
  max-width: 440px;
  width: 100%;
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.loading-card h3 {
  margin: 0 0 var(--space-2);
}

.loading-card p {
  margin: 0;
  font-size: 14px;
}

.spinner {
  width: 40px;
  height: 40px;
  margin: 0 auto var(--space-3);
  border-radius: 50%;
  border: 3px solid var(--primary-soft);
  border-top-color: var(--primary);
  animation: ffpc-spin 0.85s linear infinite;
}

@keyframes ffpc-spin {
  to {
    transform: rotate(360deg);
  }
}

.summary-grid {
  display: grid;
  gap: var(--space-2);
}

.summary-card {
  padding: var(--space-3);
  border-radius: var(--radius-md);
  background: var(--surface-soft);
  border: 1px solid var(--line);
}

.summary-label {
  color: var(--text-faint);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.summary-value {
  margin-top: var(--space-1);
  font-size: 1.45rem;
  font-weight: 750;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.verdict {
  margin-top: var(--space-3);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}

.verdict.green {
  background: var(--success-soft);
  border-color: rgba(35, 132, 90, 0.28);
}

.verdict.amber {
  background: var(--warning-soft);
  border-color: rgba(154, 106, 27, 0.35);
}

.verdict.red {
  background: var(--danger-soft);
  border-color: rgba(180, 75, 92, 0.35);
}

.verdict-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  min-width: 120px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.verdict-pill.green {
  background: rgba(35, 132, 90, 0.18);
  color: var(--success);
}

.verdict-pill.amber {
  background: rgba(154, 106, 27, 0.2);
  color: var(--warning);
}

.verdict-pill.red {
  background: rgba(180, 75, 92, 0.18);
  color: var(--danger);
}

.subject-list {
  display: grid;
  gap: var(--space-2);
  margin-top: var(--space-3);
}

.subject-row {
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--line);
}

.subject-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.subject-row span {
  color: var(--muted);
  font-size: 14px;
}

.subject-row strong {
  text-align: right;
  overflow-wrap: anywhere;
  font-size: 14px;
  color: var(--ink);
}

.results-shell {
  margin-top: var(--space-4);
  display: grid;
  gap: var(--space-4);
}

.results-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.signal-grid {
  display: grid;
  gap: var(--space-2);
}

.item-hit-table-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow-x: auto;
  background: var(--surface-soft);
}

.item-hit-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

.item-hit-table--ip {
  min-width: 860px;
}

.item-hit-table th,
.item-hit-table td {
  padding: 11px 12px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  text-align: left;
  vertical-align: top;
}

.item-hit-table thead th {
  background: rgba(255, 255, 255, 0.02);
  color: var(--ink);
  font-weight: 650;
}

.item-hit-table-title th {
  background: rgba(36, 91, 131, 0.12);
}

.item-hit-table-title th:last-child {
  text-align: center;
  color: var(--primary-strong);
  font-weight: 750;
}

.item-hit-table tbody tr:last-child td {
  border-bottom: 0;
}

.item-hit-table td.item-hit-result-col {
  overflow-wrap: normal;
}

.signal-card {
  padding: var(--space-3);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--surface-soft);
  display: grid;
  grid-template-columns: 220px 120px 1fr;
  gap: var(--space-3);
  align-items: start;
}

.signal-name {
  font-weight: 650;
  font-size: 14px;
  color: var(--ink);
}

.hit-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hit-pill.yes.red {
  background: rgba(180, 75, 92, 0.14);
  color: var(--danger);
}

.hit-pill.yes.amber {
  background: rgba(154, 106, 27, 0.14);
  color: var(--warning);
}

.hit-pill.yes.green {
  background: rgba(35, 132, 90, 0.14);
  color: var(--success);
}

.hit-pill.no {
  background: var(--surface);
  color: var(--muted);
  border: 1px solid var(--line);
}

.intel-provenance {
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--line);
}

.intel-provenance[hidden] {
  display: none;
}

.intel-provenance-title {
  margin: 0 0 var(--space-2);
  font-size: 16px;
  font-weight: 650;
  color: var(--ink);
}

.intel-provenance-lead {
  margin: 0 0 var(--space-3);
  font-size: 14px;
  color: var(--muted);
  max-width: 72ch;
}

.intel-provenance-grid {
  display: grid;
  gap: var(--space-2);
}

@media (min-width: 720px) {
  .intel-provenance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.intel-provenance-card {
  padding: var(--space-3);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--surface);
  display: grid;
  gap: var(--space-1);
  min-width: 0;
}

.intel-provenance-kind {
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.intel-provenance-bucket {
  font-weight: 650;
  font-size: 14px;
  color: var(--ink);
}

.intel-provenance-value {
  font-size: 13px;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.intel-provenance-sources {
  font-size: 14px;
  color: var(--muted);
  margin-top: var(--space-1);
}

.intel-provenance-sources-label {
  font-weight: 600;
  color: var(--ink);
  margin-right: 4px;
}

.context-value {
  grid-column: 1 / -1;
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 14px;
  color: var(--muted);
}

.inline-refresh {
  margin-top: var(--space-3);
  padding: var(--space-3);
  border-radius: var(--radius-md);
  border: 1px solid rgba(154, 106, 27, 0.28);
  background: var(--warning-soft);
  color: var(--muted);
  display: flex;
  gap: var(--space-2);
  align-items: center;
}

.inline-refresh[hidden] {
  display: none;
}

.mini-spinner {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 3px solid rgba(154, 106, 27, 0.2);
  border-top-color: var(--warning);
  animation: ffpc-spin 0.85s linear infinite;
  flex: 0 0 auto;
}

.helper-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.helper-card {
  padding: var(--space-4);
}

.helper-card h3 {
  margin: 0 0 var(--space-2);
}

.helper-card p {
  margin: 0;
}

.checker-review-section {
  margin: var(--space-3) 0;
}

.checker-review-section summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--primary-strong);
}

.checker-footer-links {
  text-align: center;
  margin-top: var(--space-4);
  font-size: 13px;
  color: var(--muted);
}

.checker-footer-links a {
  color: var(--primary-strong);
  font-weight: 600;
  text-decoration: none;
}

.checker-footer-links a:hover {
  text-decoration: underline;
}

.checker-page .muted {
  color: var(--muted);
}

.checker-flash {
  margin-bottom: var(--space-4);
  padding: var(--space-3) 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line-strong);
  font-size: 14px;
  font-weight: 600;
}

.checker-flash--success {
  background: var(--success-soft);
  border-color: rgba(35, 132, 90, 0.35);
  color: var(--success);
}

.checker-flash--error {
  background: var(--danger-soft);
  border-color: rgba(180, 75, 92, 0.35);
  color: var(--danger);
}

.verdict-traffic-hint {
  margin-top: var(--space-2);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.removal-shell .removal-lead {
  color: var(--muted);
  line-height: 1.55;
}

.removal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
  margin-top: var(--space-3);
}

.removal-form .field-hint {
  margin-top: var(--space-1);
  font-size: 12px;
  color: var(--text-faint);
  line-height: 1.45;
}

.removal-form textarea {
  width: 100%;
  min-height: 122px;
  padding: 12px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  background: #fff;
  font: inherit;
  font-size: 0.86rem;
  color: var(--ink);
  resize: vertical;
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.03);
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.removal-form textarea:focus {
  outline: none;
  border-color: var(--blue-focus);
  box-shadow: 0 0 0 4px var(--blue-focus-ring), inset 0 1px 2px rgba(15, 23, 42, 0.03);
}

.removal-form textarea:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.removal-policy-note {
  margin-top: var(--space-3);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.removal-blocked {
  margin: var(--space-2) 0 0;
  padding: var(--space-3);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--surface-soft);
  color: var(--muted);
  line-height: 1.5;
}

.removal-honey {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.checker-dialog {
  border: none;
  padding: 0;
  max-width: min(560px, 94vw);
  width: 100%;
  background: transparent;
}

.checker-dialog::backdrop {
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(2px);
}

.checker-dialog__panel {
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-md);
  max-height: min(86vh, 720px);
  overflow: auto;
}

.checker-dialog__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-3);
  margin-bottom: var(--space-2);
}

.checker-dialog__head h3 {
  margin: 0;
  font-size: 1.15rem;
}

.checker-dialog__close {
  appearance: none;
  border: none;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
}

.checker-dialog__close:hover {
  color: var(--ink);
  background: var(--surface-soft);
}

.checker-dialog__form {
  position: relative;
}

.checker-req-hint {
  font-weight: 500;
  color: var(--text-faint);
  font-size: 12px;
}

.checker-report-actions {
  gap: var(--space-2);
}

@media (min-width: 768px) {
  .item-hit-table tbody td {
    vertical-align: middle;
  }

  .item-hit-table .item-hit-result-col {
    width: 6.75rem;
    min-width: 6.75rem;
    max-width: 6.75rem;
    padding-left: 8px;
    padding-right: 14px;
    text-align: right;
    vertical-align: middle;
    white-space: nowrap;
  }

}

@media (max-width: 960px) {
  .hero,
  .helper-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .removal-grid {
    grid-template-columns: 1fr;
  }

  .checker-form {
    grid-template-columns: 1fr;
  }

  .signal-card {
    grid-template-columns: 1fr;
  }

  .panel-inner {
    padding: var(--space-3) 16px;
  }

  .checker-page button,
  .checker-page .button-link {
    min-height: 44px;
    padding: 0 16px;
  }

  .checker-form .button-row {
    width: 100%;
  }

  .checker-form .button-row > * {
    flex: 1 1 100%;
  }

  .item-hit-table {
    min-width: 0;
  }

  .item-hit-table th,
  .item-hit-table td {
    padding: 12px;
  }

  .item-hit-table--ip {
    min-width: 0;
    border-collapse: separate;
    border-spacing: 0;
  }

  .item-hit-table--ip thead tr:not(.item-hit-table-title) {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    white-space: nowrap;
  }

  .item-hit-table--ip tbody,
  .item-hit-table--ip tr,
  .item-hit-table--ip td {
    display: block;
    width: 100%;
  }

  .item-hit-table--ip tbody tr {
    margin: 0 0 var(--space-2);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
  }

  .item-hit-table--ip tbody tr:last-child {
    margin-bottom: 0;
  }

  .item-hit-table--ip td {
    display: grid;
    grid-template-columns: minmax(110px, 36%) 1fr;
    gap: var(--space-2);
    padding: 10px 12px;
    border-bottom: 1px solid var(--line);
  }

  .item-hit-table--ip td::before {
    content: attr(data-label);
    font-size: 11px;
    font-weight: 750;
    color: var(--text-faint);
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .item-hit-table--ip td:last-child {
    border-bottom: 0;
  }

  .item-hit-table td {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}
