/* buttons.css — .btn component (contact links, any future buttons) */

.btn {
  display: inline-block;
  border: 1px solid #444;
  color: #888;
  text-decoration: none;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  padding: 0.3rem 0.85rem;
  transition: border-color 0.15s, color 0.15s;
  background: none;
  cursor: pointer;
}

.btn:hover {
  border-color: #e0e0e0;
  color: #e0e0e0;
}
