/* 松鸦小站 · 轻装饰
   不动主题默认背景与主体样式，只加克制的视觉细节 */

/* 卡片 hover 微动效 */
.card, .card-widget {
  transition: box-shadow .25s ease, transform .25s ease;
}
.card:hover, .card-widget:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, .07);
  transform: translateY(-2px);
}

/* 文章标题下的细装饰线 */
.post-content h1#seo-header {
  position: relative;
  padding-bottom: 14px;
}
.post-content h1#seo-header::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, #6bc30d, transparent);
}

/* 引用块微调 */
.markdown-body blockquote {
  border-left: 3px solid rgba(107, 195, 13, .55);
  background: rgba(107, 195, 13, .045);
  border-radius: 0 4px 4px 0;
}

/* 页脚分隔线 */
footer {
  border-top: 1px solid rgba(0, 0, 0, .05);
}
