.uiMeta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  max-width: 100%;
}

.uiMeta__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: currentColor;
}

.uiMeta__text {
  min-width: 0;
}

/* Favorite icon button — shared across cards and detail pages */
.favIconBtn {
  appearance: none;
  background: transparent;
  border: none;
  padding: 6px;
  cursor: pointer;
  color: var(--text-muted, #aaa);
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
  transition: color 0.15s;
  position: relative;
  z-index: 1;
}

.favIconBtn:hover {
  color: #e53e3e;
}

.favIconBtn:focus-visible {
  outline: 2px solid rgba(21, 88, 239, 0.5);
  outline-offset: 2px;
}

.favIconBtn__icon {
  width: 18px;
  height: 18px;
  display: block;
  pointer-events: none;
}

.favIconBtn--active {
  color: #e53e3e;
}

.favIconBtn--active .favIconBtn__icon {
  fill: currentColor;
}