/* Clean Blog List Style */
.blog-container {
    width: 100% !important;
    margin: 0 auto;
    padding: 0 15px;
}

.blog-posts-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.blog-section-title {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: #333;
}

.blog-post-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.blog-post-item:last-child {
    margin-bottom: 20px;
}

.post-thumbnail {
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 5px;
}

.post-thumbnail img {
    width: 100%;
    transition: transform 0.3s ease;
}

.post-thumbnail:hover img {
    transform: scale(1.05);
}

.post-title {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 24px;
    line-height: 1.3;
}

.post-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
}

.post-title a:hover {
    color: #337ab7;
    text-decoration: none;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    color: #777;
    font-size: 14px;
    margin-bottom: 15px;
}

.post-meta span {
    display: inline-flex;
    align-items: center;
}

.post-meta i {
    margin-right: 5px;
}

.post-status {
    color: #f0ad4e;
    font-weight: 600;
}

.post-excerpt {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.post-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-read-more {
    padding-right: 15px;
}

.blog-empty-state {
    background: #f9f9f9;
    border-radius: 5px;
    padding: 50px 20px;
    text-align: center;
    margin: 30px 0;
}

.empty-icon {
    font-size: 48px;
    color: #ddd;
    margin-bottom: 20px;
}

.blog-pagination {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .blog-posts-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .post-title {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .blog-section-title {
        font-size: 24px;
    }
    
    .post-title {
        font-size: 20px;
    }
    
    .post-excerpt {
        font-size: 15px;
    }
}