/* Compact NOMAD Edge meter. UI-only summary of the rendered comparison metrics. */
.nomad-edge{
  margin:10px 0 0;
  padding:8px 10px 7px;
  border-top:1px solid var(--content-divider,rgba(150,158,151,.20));
  border-radius:6px;
  background:linear-gradient(180deg,rgba(255,255,255,.018),rgba(7,12,9,.10));
}
.nomad-edge-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
  margin-bottom:6px;
}
.nomad-edge-title{
  display:flex;
  align-items:baseline;
  gap:7px;
  min-width:0;
}
.nomad-edge-title strong{
  color:#dfe5df;
  font-size:7.5px;
  line-height:1;
  letter-spacing:.08em;
}
.nomad-edge-title span{
  color:#6f786f;
  font-size:5.5px;
  font-weight:900;
  letter-spacing:.055em;
}
.nomad-edge-score{
  flex:0 0 auto;
  display:flex;
  align-items:baseline;
  gap:5px;
}
.nomad-edge-score strong{
  color:var(--selected-green);
  font-size:12px;
  line-height:1;
  font-weight:900;
}
.nomad-edge-score span{
  color:#758077;
  font-size:5.5px;
  font-weight:900;
  letter-spacing:.04em;
}
.nomad-edge-track{
  position:relative;
  display:flex;
  width:100%;
  height:8px;
  overflow:hidden;
  border-radius:999px;
  background:#0d120e;
  box-shadow:inset 0 0 0 1px rgba(150,158,151,.08);
}
.nomad-edge-opponent,
.nomad-edge-selected{
  display:block;
  height:100%;
  transition:width .46s cubic-bezier(.2,.72,.2,1);
}
.nomad-edge-opponent{
  width:50%;
  background:linear-gradient(90deg,#474c48,#626763);
}
.nomad-edge-selected{
  width:50%;
  background:linear-gradient(90deg,#5ca86d,var(--selected-green));
}
.nomad-edge-mid{
  position:absolute;
  top:-2px;
  bottom:-2px;
  left:50%;
  width:1px;
  background:rgba(235,240,235,.48);
  box-shadow:0 0 3px rgba(235,240,235,.18);
  pointer-events:none;
}
.nomad-edge-labels{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  gap:8px;
  margin-top:4px;
  color:#687169;
  font-size:5.5px;
  font-weight:800;
}
.nomad-edge-labels span:nth-child(2){text-align:center;color:#737c74}
.nomad-edge-labels span:last-child{text-align:right;color:#829487}
.nomad-edge + .analysis{margin-top:8px}
@media(max-width:680px){
  .nomad-edge{padding:7px 8px 6px;margin-top:8px}
  .nomad-edge-title span,.nomad-edge-score span{display:none}
  .nomad-edge-track{height:7px}
  .nomad-edge-labels{font-size:5px}
}
