.home-section-intro {
  max-width: var(--reading-width);
  margin-bottom: var(--space-4);
}
.home-section-intro h2 {
  margin-top: var(--space-2);
}
.home-section-intro > p:last-child,
.home-copy {
  font-size: var(--body-size);
}
.home-section-intro > p:last-child {
  color: var(--muted);
}
.home-copy p {
  overflow-wrap: anywhere;
}
.home-network-notes,
.home-billing-notes {
  margin-top: var(--space-4);
  margin-bottom: var(--space-4);
}
.home-network-notes > div,
.home-billing-notes > div {
  min-width: 0;
}
.home-plan-description {
  color: var(--muted);
  font-size: var(--small-size);
}
.home-status-intro {
  border-top: 1px solid var(--border);
  padding-top: var(--space-3);
}
.home-reading-next {
  max-width: var(--reading-width);
  margin-top: var(--space-4);
  margin-bottom: var(--space-3);
}
.server-status {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.srv-row {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--space-1) var(--space-2);
  min-width: 0;
  padding: var(--space-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel-gradient);
  box-shadow: var(--shadow-inset);
  font-size: var(--small-size);
}
.srv-row > * {
  min-width: 0;
  max-width: 100%;
}
.srv-dot {
  display: block;
  width: var(--space-1);
  height: var(--space-1);
  border-radius: var(--round);
  background: var(--success);
  box-shadow: 0 0 0 4px var(--hairline);
}
.srv-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--space-3);
  border-radius: var(--flag-radius);
  overflow: hidden;
}
.srv-flag svg,
.srv-flag img {
  width: 100%;
  height: auto;
}
.srv-name {
  color: var(--text);
  overflow-wrap: anywhere;
}
.srv-type {
  padding: 0 var(--space-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--accent-dark);
  background: var(--recess);
  font-size: var(--tiny-size);
  overflow-wrap: anywhere;
}
.srv-ms,
.srv-bw {
  font-family: var(--mono);
  font-size: var(--small-size);
  font-variant-numeric: tabular-nums;
  overflow-wrap: anywhere;
}
.srv-ms {
  grid-column: 3;
  color: var(--success);
}
.srv-bw {
  grid-column: 4;
  color: var(--muted);
  text-align: right;
}
@media (max-width: 640px) {
  .server-status {
    grid-template-columns: minmax(0, 1fr);
  }
  .srv-row {
    column-gap: var(--space-1);
  }
}