.network {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 8vw;
  border-bottom: 1px solid #ddd;
}

.network > div:last-child {
  font-size: 18px;
}

.network-note {
  background: #f2f2ef;
  border-left: 5px solid #f2b600;
  padding: 16px;
  font-size: 15px !important;
  color: #4d4d4d;
}

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