.home-section-intro {
  max-width: var(--reading-width);
  margin-bottom: 32px;
}
.home-section-intro > p:last-child {
  color: var(--muted);
  margin-bottom: 0;
}
.home-region-index {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow-x: auto;
  max-width: 100%;
  margin-bottom: 20px;
  padding-bottom: 8px;
}
.home-region-index > span {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 9px;
  min-height: var(--touch);
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: var(--pill);
  background: var(--panel);
  color: var(--muted);
  font-size: var(--text-nav);
}
.home-reading-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin-top: 32px;
  margin-bottom: 20px;
}
.home-reading-pair p {
  color: var(--muted);
}
.home-reading-pair h3 {
  margin-top: 0;
}
.home-section-tail {
  margin-top: 28px;
}
#clients > .home-section-intro,
#clients > .platform-grid {
  position: relative;
}
.server-status {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}
.server-status:empty {
  margin-top: 0;
}
.srv-row {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px 10px;
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--round-sm);
  background: var(--panel);
  box-shadow: var(--highlight);
  font-size: var(--text-note);
}
.srv-dot {
  display: block;
  width: 7px;
  height: 7px;
  flex-shrink: 0;
  border-radius: var(--circle);
  background: var(--green);
  box-shadow: 0 0 0 4px var(--layer);
}
.srv-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  min-height: 17px;
  border-radius: var(--round-xs);
  overflow: hidden;
}
.srv-flag svg,
.srv-flag img {
  max-width: 100%;
  height: auto;
}
.srv-name {
  min-width: 0;
  color: var(--ink);
  font-weight: var(--semibold);
  overflow-wrap: anywhere;
}
.srv-type {
  max-width: 100%;
  padding: 3px 8px;
  border: 1px solid var(--tint-edge);
  border-radius: var(--pill);
  color: var(--accent-dark);
  background: var(--tint);
  font-size: var(--text-xs);
  overflow-wrap: anywhere;
}
.srv-ms,
.srv-bw {
  min-width: 0;
  font-family: var(--mono);
  font-size: var(--text-note);
  font-variant-numeric: tabular-nums;
  overflow-wrap: anywhere;
}
.srv-ms {
  grid-column: 3;
  color: var(--green);
}
.srv-bw {
  grid-column: 4;
  color: var(--muted);
}
@media (max-width: 780px) {
  .home-reading-pair,
  .server-status {
    grid-template-columns: minmax(0, 1fr);
  }
  .home-reading-pair {
    gap: 16px;
  }
}