/* F:\myblog\source\css\card_fix.css */

/* 1. 限制卡片高度，防止太高 */
#recent-posts > .recent-post-item {
    height: 240px !important; /* 强制降低高度 */
}

/* 2. 调整图片显示方式 (填满但不拉伸) */
#recent-posts > .recent-post-item .post_cover img {
    object-fit: cover !important; 
    width: 100% !important;
    height: 100% !important;
}

/* 3. 手机端适配 (手机上高度自动，不然会压扁) */
@media screen and (max-width: 768px) {
    #recent-posts > .recent-post-item {
        height: auto !important;
    }
}