/* ── Live Feed Column ── */
.feed-col {
  position: fixed;
  top: 60px;
  left: 0;
  width: 220px;
  bottom: 0;
  background: var(--surface);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  z-index: 50;
  overflow: hidden;
}

.feed-header {
  padding: 14px 16px 10px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.feed-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 7px;
}

.feed-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: feedPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes feedPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.feed-list {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.feed-item {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(42,42,58,0.5);
  animation: feedSlideIn 0.35s ease;
  transition: background 0.15s;
  cursor: default;
}

.feed-item:hover {
  background: var(--surface2);
}

@keyframes feedSlideIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.feed-item-top {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 4px;
}

.feed-swatch {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  flex-shrink: 0;
}

.feed-owner {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 11px;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0;
}

.feed-tier {
  font-size: 9px;
  color: var(--text-dim);
  white-space: nowrap;
  flex-shrink: 0;
}

.feed-message {
  font-size: 10px;
  color: var(--text-dim);
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.feed-coords {
  font-size: 9px;
  color: var(--text-dim);
  opacity: 0.5;
  font-family: 'Space Mono', monospace;
  letter-spacing: 0.3px;
}

.feed-empty {
  padding: 20px 14px;
  font-size: 11px;
  color: var(--text-dim);
  opacity: 0.5;
  text-align: center;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .feed-col { display: none; }
}
