/* Findings Evidence Register */

.article-header {
  padding: var(--space-8) 0 var(--space-12);
  border-bottom: 1px solid var(--color-border);
}

.breadcrumb {
  margin-bottom: var(--space-4);
}

.breadcrumb a {
  color: var(--color-text-muted);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--color-primary);
}

.breadcrumb span {
  margin: 0 var(--space-2);
  color: var(--color-text-muted);
}

.article-title {
  margin-bottom: var(--space-4);
  font-size: var(--text-4xl);
  line-height: 1.15;
}

.hub-content {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: var(--space-8) 0;
}

.hub-content h2 {
  margin-top: var(--space-12);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid var(--color-border);
}

.hub-content p {
  margin-bottom: var(--space-4);
  font-size: var(--text-lg);
  line-height: 1.7;
}

.findings-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin: var(--space-8) 0;
}

.insight {
  display: grid;
  grid-template-columns: minmax(6.5rem, 8rem) minmax(0, 1fr);
  gap: var(--space-6);
  align-items: start;
  padding: var(--space-6);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-surface);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
}

.insight .metric {
  color: var(--color-status-info-text);
  font-size: var(--font-h2);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  line-height: 1.05;
}

.insight-article-only {
  border-left-color: var(--color-status-info-text);
}

.insight-article-only .metric {
  color: var(--color-status-info-text);
}

.insight-not-reproduced {
  border-left-color: var(--color-status-unverified-text);
}

.insight-not-reproduced .metric {
  color: var(--color-status-unverified-text);
}

.insight-reconciliation {
  border-left-color: var(--color-action);
}

.insight-reconciliation .metric {
  color: var(--color-action-hover);
}

.insight-verified {
  border-left-color: var(--color-status-verified-text);
}

.insight-verified .metric {
  color: var(--color-status-verified-text);
}

.insight h3 {
  margin: 0 0 var(--space-2);
  font-size: var(--text-xl);
}

.insight .finding {
  margin-bottom: var(--space-3);
  font-size: var(--text-base);
  line-height: 1.6;
}

.insight .provenance {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-3);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

.insight .provenance span strong {
  color: var(--color-text);
  font-weight: 600;
}

.evidence-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3) var(--space-6);
  margin: var(--space-4) 0;
  padding: var(--space-4) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.evidence-details p {
  margin: 0;
  font-size: var(--text-sm);
  line-height: 1.55;
}

.evidence-details a {
  font-weight: 700;
  text-underline-offset: 2px;
}

.record-status {
  display: inline-block;
  margin-left: var(--space-1);
  padding: 0.15rem 0.45rem;
  border: 1px solid currentColor;
  border-radius: 3px;
  font-size: var(--text-xs);
  font-weight: 800;
  line-height: 1.35;
}

.status-reconciliation {
  background: var(--color-status-review-bg);
  color: var(--color-status-review-text);
}

.status-article {
  background: var(--color-status-info-bg);
  color: var(--color-status-info-text);
}

.status-not-reproduced {
  background: var(--color-status-unverified-bg);
  color: var(--color-status-unverified-text);
}

.insight .evidence-limit {
  margin: 0 0 var(--space-3);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.6;
}

.insight a.source-link {
  display: inline-block;
  padding: var(--space-2) 0;
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.insight a.source-link:hover {
  color: var(--color-action-hover);
}

.manifest-note {
  padding: var(--space-5);
  border-left: 4px solid var(--color-status-info-text);
  background: var(--color-status-note-bg);
  font-size: var(--text-base) !important;
}

.manifest-note a {
  font-weight: 700;
  text-underline-offset: 3px;
}

@media (max-width: 768px) {
  .insight {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }

  .evidence-details {
    grid-template-columns: 1fr;
  }

  .article-title {
    font-size: var(--text-3xl);
  }
}
