
/* Blog Content Layout */
.blogs-content {
    padding: 60px 0;
    background: #f8f9fa;
}

/* Sidebar Styles */
.blog-sidebar {
    margin-bottom: 30px;
}

.sidebar-widget {
    background: #fff;
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.sidebar-widget h3 {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #007bff;
}

.category-list, .year-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li, .year-list li {
    margin-bottom: 12px;
}

.category-list a, .year-list a {
    color: #666;
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.category-list a:hover, .year-list a:hover {
    color: #007bff;
}

/* Blog Posts */
.blog-post {
    background: #fff;
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.post-meta {
    margin-bottom: 15px;
}

.post-meta span {
    margin-right: 20px;
    color: #666;
    font-size: 14px;
}

.post-meta .category {
    color: #007bff;
}

.blog-post h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.blog-post .post-content {
    color: #666;
    margin-bottom: 20px;
}

.read-more {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.read-more:hover {
    text-decoration: underline;
}

/* Pagination */
.pagination {
    margin-top: 40px;
    text-align: center;
}

.pagination ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pagination li {
    display: inline-block;
}

.pagination a {
    display: block;
    padding: 8px 15px;
    border: 1px solid #ddd;
    color: #666;
    text-decoration: none;
    border-radius: 4px;
}

.pagination li.active a {
    background: #007bff;
    color: #fff;
    border-color: #007bff;
}

/* Responsive Design */
@media (max-width: 991px) {
    .blog-sidebar {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .blogs-hero {
        padding: 60px 0;
    }
    
    .blogs-hero h1 {
        font-size: 32px;
    }
    
    .blog-post h2 {
        font-size: 20px;
    }
}