.probe-report {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.probe-report-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.probe-report-head strong,
.probe-report-head small {
  display: block;
}

.probe-report-head strong {
  font-size: 11px;
}

.probe-report-head small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
}

.probe-progress {
  width: 100%;
  height: 4px;
  margin-top: 10px;
  overflow: hidden;
  background: var(--surface-raised);
  border-radius: 2px;
}

.probe-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--gold-strong);
  transition: width 180ms ease;
}

.probe-metrics {
  display: grid;
  margin-top: 11px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.probe-metrics div {
  min-width: 0;
  padding: 0 7px;
  border-right: 1px solid var(--border);
}

.probe-metrics div:first-child {
  padding-left: 0;
}

.probe-metrics div:last-child {
  padding-right: 0;
  border-right: 0;
}

.probe-metrics span,
.probe-metrics strong {
  display: block;
  overflow-wrap: anywhere;
}

.probe-metrics span {
  color: var(--muted);
  font-size: 8px;
}

.probe-metrics strong {
  margin-top: 5px;
  font-size: 12px;
}

.probe-report-note {
  display: block;
  min-height: 14px;
  margin-top: 9px;
  color: var(--muted-strong);
  font-size: 9px;
  line-height: 1.5;
}

@media (prefers-reduced-motion: reduce) {
  .probe-progress span {
    transition: none;
  }
}
