.code-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px;
  border-radius: 4px;
  border: 1px solid transparent;
  background: rgba(92, 192, 219, 0.2);
  color: #009FCD;
  font-family: var(--font-mono, 'Share Tech Mono', monospace);
  font-size: 16px;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.15s ease;
}

.code-chip::before {
  content: "";
  display: block;
  width: 11px;
  height: 10px;
  flex-shrink: 0;
  background: url("../../assets/icons/external-link.svg") center / contain no-repeat;
}

.code-chip:hover {
  border-color: #009FCD;
}

.code-chip:focus-visible {
  outline: 2px solid #009FCD;
  outline-offset: 2px;
}
