/* 站内导航（SEO 爬虫可跟随的链接条）——独立 CSS 文件，预渲染时由 callback 注入 <link> 引用 */
.site-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 20px 24px 28px;
  border-top: 1px solid #e8e0d4;
  margin: 0;
}
.site-nav-links a {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #e0d8cc;
  font-size: 13px;
  color: #666;
  text-decoration: none;
  white-space: nowrap;
  transition: all .2s ease;
}
.site-nav-links a:hover {
  background: #8368ab;
  color: #fff;
  border-color: #8368ab;
  transform: translateY(-1px);
}
