.scopes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 700px) {
  .scopes {
    grid-template-columns: 1fr;
  }
}

.scope {
  padding: 12px;
}

.scope h2 {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.scope h2 small {
  font-weight: 400;
  color: var(--text-dim);
  font-size: 12px;
}

.scope canvas {
  width: 100%;
  height: 190px;
  display: block;
  border-radius: 6px;
  background: var(--bg);
}

.legend {
  display: flex;
  gap: 14px;
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 8px;
}

.legend i {
  display: inline-block;
  width: 14px;
  height: 3px;
  border-radius: 2px;
  vertical-align: middle;
  margin-right: 5px;
}
