/**
 * 文章列表组件样式
 * 复用主题 widget 类名
 */

/* 组件容器 - 确保有背景样式 */
.wifilu-com-post-list {
  margin-bottom: 16px;
  padding: 16px 20px;
  background: var(--bg-card);
  border-radius: var(--border-radius);
}

.wifilu-com-post-list:last-child {
  margin-bottom: 0;
}

/* 跟随页面滚动 */
.wifilu-com-post-list.wifilu-com-post-list--follow {
  position: sticky;
  top: 76px;
  z-index: 10;
}

/* 组件标题 - 参考 tag_cloud */
.wifilu-com-post-list__title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border-primary);
  position: relative;
}

.wifilu-com-post-list__title-icon {
  display: inline-flex;
  align-items: center;
  width: 20px;
  height: 20px;
  color: var(--theme-color, #4f46e5);
}
