/* ══ 列表页外壳 ═════════════════════════════════════════════
   归档 / 分类 / 标签 / 标签汇总 四个页面共用。
   卡片里的标题·日期·分类·标签在 card.styl，
   年→月树在 archive.styl，首页卡片在 index.styl。
   ──────────────────────────────────────────────────────────── */
/* 列表内容统一坐在一张浅色卡片上 ——
   不铺这层底，树里那些深色文字会直接压在背景图上，读不清。 */
.pageCard {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 36px;
  border-radius: 16px;
  background-color: rgba(250,247,245,0.92);
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 10px 40px rgba(30,23,21,0.12);
}
.listHeader {
  margin-bottom: 28px;
  padding-left: 16px;
  border-left: 5px solid #b3123f /* 主强调：领带的酒红 */;
}
.listTitle {
  font-size: 26px;
  color: #241d1b;
}
.emptyState {
  padding: 80px 20px;
  text-align: center;
  color: #8a817c;
  font-size: 15px;
  line-height: 2;
}
.pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
}
.pager a {
  padding: 8px 18px;
  border-radius: 8px;
  background-color: #b3123f /* 主强调：领带的酒红 */;
  color: #f5f1ee /* 主文字：衬衫的暖白 */;
  font-size: 14px;
  text-decoration: none;
  transition: opacity 0.25s;
}
.pager a:hover {
  opacity: 0.82;
}
.pager span {
  font-size: 14px;
  color: #8a817c;
}
