.dashboard-recent-header {
  margin-top: 36px;
}

.recent-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.recent-item {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: background var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}

.recent-item:hover {
  background: var(--bg-card-hover);
  transform: translateY(-1px);
}

.recent-message {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--text-secondary);
}

.recent-meta {
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
}

@media (max-width: 700px) {
  .recent-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
