/* Feed list — follows style-base index-list pattern */
.feed-list {
  list-style: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.feed-item {
  display: flex;
  align-items: center;
  padding: var(--s2);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
  gap: var(--s2);
  cursor: pointer;
}

.feed-item:last-child { border-bottom: none; }
.feed-item:hover { background: var(--bg-hover); }

/* Currently playing */
.feed-item.playing {
  background: var(--primary-dim);
  border-left: 2px solid var(--primary);
}

/* Generating state */
.feed-item.generating {
  opacity: 0.7;
}

.feed-item-body {
  flex: 1;
  min-width: 0;
}

.feed-item-title {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.feed-item-meta {
  display: flex;
  align-items: center;
  gap: var(--s1);
  margin-top: 0.35rem;
  flex-wrap: wrap;
}

.feed-item-duration {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
}

.feed-item-status {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.feed-item-play {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: all var(--transition);
  flex-shrink: 0;
}

.feed-item-play:hover {
  background: var(--bg-hover);
  border-color: var(--text-muted);
}

.feed-item-play svg { width: 14px; height: 14px; }

/* Load more */
.feed-load-more {
  padding: var(--s3) 0;
  text-align: center;
}

/* Empty state */
.feed-empty {
  padding: var(--s8) var(--s2);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Category selector */
.category-selector {
  display: flex;
  gap: var(--s1);
  margin-bottom: var(--s2);
  flex-wrap: wrap;
}

/* Channel filter section */
.feed-filters {
  margin-bottom: var(--s3);
}

@media (max-width: 600px) {
  .feed-item { padding: 0.75rem; gap: 0.75rem; }
  .feed-item-title { font-size: 0.88rem; }
  .feed-item-play { width: 32px; height: 32px; }
}
