.cg-example {
  padding: 20px;
  background: var(--bg, #f5f6fa);
  border: 1px solid var(--border, #e4e7ee);
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted, #656d80);
}
.cg-connections {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}
.cg-connection {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border, #e4e7ee);
  font-size: 13px;
  line-height: 1.8;
}
.cg-connection .muted {
  font-size: 12px;
}
.cg-connection:last-child {
  border-bottom: 0;
}
@media (max-width: 600px) {
  .cg-connection {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}
