/* 报告中心 */

.report-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
  padding: 4px 0;
}

.report-sheet {
  padding: 28px 32px 36px;
  margin-bottom: 24px;
  background: var(--canvas);
}

.report-sheet__head {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding-bottom: 18px;
  margin-bottom: 8px;
  border-bottom: 2px solid var(--navy-900);
}

.report-sheet__seal {
  /* uses .brand-seal--lg from style.css when SVG is injected */
  flex-shrink: 0;
}

.report-sheet__kicker {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--ink-faint);
  margin-bottom: 4px;
}

.report-sheet__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
}

.report-sheet__sub {
  font-size: 13px;
  color: var(--ink-faint);
  margin-top: 4px;
}

.report-block { margin-top: 24px; }

.report-block__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}

.report-kv {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.report-kv th,
.report-kv td {
  padding: 8px 12px;
  border: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.report-kv th {
  width: 160px;
  background: var(--surface-2);
  font-weight: 600;
  color: var(--ink-soft);
}

.report-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.report-stat {
  min-width: 88px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  text-align: center;
}

.report-stat__n {
  font-size: 22px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.report-stat__l {
  font-size: 12px;
  color: var(--ink-faint);
}

.report-issue {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  background: var(--canvas);
}

.report-issue__t { font-weight: 600; margin: 4px 0 6px; font-size: 14px; }
.report-issue__d { font-size: 13px; color: var(--ink-soft); line-height: 1.6; }
.report-issue__meta { font-size: 12px; color: var(--ink-faint); margin-top: 6px; }

.report-note {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.65;
}

.report-disclaimer {
  margin-top: 10px;
  font-size: 12px;
  color: var(--ink-faint);
}

.report-factors {
  margin: 0;
  padding-left: 1.2em;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.75;
}

.report-factors li b { color: var(--ink); }

@media (max-width: 900px) {
  .report-sheet {
    padding: 18px 14px 24px;
  }

  .report-sheet__head {
    flex-direction: column;
    gap: 10px;
  }

  .report-sheet__title {
    font-size: 20px;
  }

  .report-kv th {
    width: 110px;
    font-size: 12px;
  }

  .report-stats {
    gap: 8px;
  }

  .report-tabs {
    overflow-x: visible;
    flex-wrap: wrap;
    gap: 6px;
  }

  .report-tabs .pill-tab {
    flex: 0 0 auto;
    min-height: 40px;
  }

  .table-wrap .table th,
  .table-wrap .table td {
    white-space: nowrap;
  }
}
