/* 文章页标题和元信息的入场动画 */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 文章页标题动画类 - 减慢速度 */
.post-title-animation {
    animation: fadeInUp 1.5s ease-out 0.3s both;
}

/* 文章页元信息动画类 - 减慢速度 */
.post-meta-animation {
    animation: fadeInUp 1.5s ease-out 0.6s both;
}