/* 调整主页面块的透明度与模糊 */
#recent-posts > .recent-post-item,
.layout > div:first-child:not(.recent-posts),
#aside-content .card-widget {
  background: rgba(255, 255, 255, 0.8) !important; /* 0.8 是透明度，可调 */
  backdrop-filter: blur(10px); /* 毛玻璃模糊程度 */
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5); /* 增加一点亮边框提升立体感 */
}

/* 深色模式下的适配 */
[data-theme="dark"] #recent-posts > .recent-post-item,
[data-theme="dark"] .layout > div:first-child:not(.recent-posts),
[data-theme="dark"] #aside-content .card-widget {
  background: rgba(30, 30, 30, 0.7) !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
#recent-posts > .recent-post-item:hover {
  transform: translateY(-5px); /* 向上浮动 5px */
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1); /* 增加阴影 */
  transition: all 0.3s ease; /* 动画平滑过渡 */
}