/* Masonry瀑布流样式 */
.post-list-wrapper {
    width: 100%;
    margin-bottom: 30px;
}

#blog-posts-container {
    margin: 0 auto;
    max-width: 1200px;
}
.blog-index-index .columns .column.main,
.blog-post-view .columns .column.main {
    width: 100% !important ;
    padding-left: 15px !important;
}

.blog-post-item {
    width: calc(25% - 20px);
    margin-bottom: 20px;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.blog-post-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.post-image {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-image:hover img {
    transform: scale(1.05);
}

.post-content {
    padding: 20px;
}

.post-title {
    margin: 0 0 10px 0;
    font-size: 18px;
    line-height: 1.4;
}

.post-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-title a:hover {
    color: #1cb4eb;
}

.post-meta {
    margin-bottom: 0;
    color: #666;
    font-size: 14px;
}

.post-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 14px;
}

.post-actions {
    text-align: left;
}

.read-more {
    display: inline-block;
    padding: 8px 16px;
    background: none;
    color: #b3a487 !important;
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
    transition: background 0.3s ease;
    text-transform: uppercase;
    font-family: TeXGyreAdventorRegular, sans-serif;
}

.read-more:hover {
    text-decoration: underline;
    color: #fff;
}

/* 加载状态样式 */
.blog-load-more-wrapper {
    text-align: center;
    padding: 30px 0;
    clear: both;
}

.blog-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    color: #666;
}

.blog-loading img {
    width: 24px;
    height: 24px;
}

.blog-finished {
    font-size: 16px;
    color: #999;
    font-style: italic;
}

.post-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}


/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 响应式设计 */
@media (max-width: 992px) {
    .blog-post-item {
        width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .blog-post-item {
        width: 100%;
    }
    
    #blog-posts-container {
        padding: 0 15px;
    }
    
    .post-content {
        padding: 15px;
    }
} 