/**
 * Link preview popup styling
 */

#link-preview {
  position: fixed;
  max-width: 50ch;
  background: var(--background-color);
  border: var(--border-thickness) solid var(--border-color);
  padding: var(--line-height) 2ch;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  pointer-events: none;
  transition: opacity 0.2s ease;
  line-height: var(--line-height);
}

.preview-header {
  margin-bottom: var(--line-height);
  padding-bottom: calc(var(--line-height) / 2);
  border-bottom: 1px solid var(--border-color);
}

.preview-type {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-color-alt);
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.05em;
}

.preview-title {
  display: block;
  font-weight: var(--font-weight-bold);
  color: var(--text-color);
  margin-top: calc(var(--line-height) / 2);
}

.preview-content {
  color: var(--text-color);
  font-size: 0.9rem;
  line-height: var(--line-height);
}

/* Mobile: don't show previews */
@media (max-width: 768px) {
  #link-preview {
    display: none !important;
  }
}
