/* Add the live connection metric between upload and address. */
.network-numbers {
  grid-template-columns: 1fr 1fr 0.8fr 1.2fr;
}

/* Match the address column's three text rows to the upload column. */
.network-numbers > div:last-child > span {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}

/* .mono sets 17px !important; remove only that address-specific difference. */
.network-numbers > div:last-child > strong.mono {
  font-size: clamp(24px, 2vw, 31px) !important;
}

/* Same marker geometry as traffic, with green denoting active connections. */
.network-numbers .connection-mark {
  background: var(--ok);
  border-radius: 50%;
  display: inline-block;
  height: 7px;
  margin-right: 7px;
  width: 7px;
}

.network-numbers .connection-detail {
  color: var(--ink-faint);
  font-size: 12px;
  line-height: 1.45;
  margin-top: 3px;
}

@media (max-width: 640px) {
  .network-numbers {
    grid-template-columns: 1fr 1fr;
  }

  .network-numbers > div:nth-child(3) {
    grid-column: auto;
  }

  .network-numbers > div:nth-child(4) {
    border-top: 1px solid var(--line);
    padding-top: 16px;
  }
}
