/* ══ 首页专属 ═══════════════════════════════════════════════
   只有 / 和 /page/2/ 用得到。
   卡片里的标题·日期·分类·标签在 card.styl，
   空状态和分页器在 list.styl。
   ──────────────────────────────────────────────────────────── */
.postList {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.postItem {
  padding: 24px;
  border-radius: 12px;
  background-color: #faf7f5;
  border-left: 4px solid #b3123f /* 主强调：领带的酒红 */;
  box-shadow: 0 6px 20px rgba(30,23,21,0.08);
  transition: transform 0.25s, box-shadow 0.25s;
}
.postItem:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(179,18,63,0.18);
}
.postExcerpt {
  font-size: 15px;
  line-height: 1.8;
  color: #4a423e;
  margin-bottom: 14px;
}
.readMore {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #b3123f /* 主强调：领带的酒红 */;
  text-decoration: none;
}
.readMore:hover {
  text-decoration: underline;
}
