/* Orbis Legatus — Global Reports UI helpers */
.orbis-global-report-card{
  margin:14px 0;
  padding:14px 16px;
  border:1px solid var(--border, #252a36);
  border-radius:12px;
  background:rgba(201,168,76,.045);
}
.orbis-global-report-title{
  font-family:'Space Mono',monospace;
  font-size:9px;
  letter-spacing:.15em;
  color:var(--gold, #c9a84c);
  text-transform:uppercase;
  margin-bottom:8px;
}
.orbis-global-report-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:8px;
}
.orbis-global-report-chip{
  border:1px solid var(--border, #252a36);
  border-radius:8px;
  padding:8px 10px;
  color:var(--text-muted, #6b7590);
  font-family:'Space Mono',monospace;
  font-size:9px;
  line-height:1.45;
}
.orbis-global-report-chip strong{
  color:var(--text, #dde4f0);
  font-weight:400;
}
@media(max-width:680px){
  .orbis-global-report-grid{grid-template-columns:1fr;}
}
