/* --- vs block --- */
.vs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}
.vs-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem;
}
.vs-card h3 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
  color: var(--fg);
}
.vs-card p {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--fg-muted);
  margin-bottom: 0;
}

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