.blog-layout {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    gap: 20px;
}

/* Sidebar */
.blog-sidebar {
    width: 25%;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #eee;
}

.blog-sidebar h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.category-filter label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    color: #444;
    cursor: pointer;
}

.category-filter input[type="checkbox"] {
    margin-right: 8px;
}

.category-filter button {
    margin-top: 10px;
    padding: 8px 14px;
    background: #115730;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.category-filter button:hover {
    background: #115730;
}

/* Blog Content */
.blog-content-area {
    width: 75%;
    flex: 1;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.blog-card {
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    transition: 0.3s;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.blog-thumb img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-content {
    padding: 15px;
}

.blog-title {
    font-size: 18px;
    margin: 10px 0;
    font-weight: 500;
    font-family: 'Poppins';
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 22px;
}

.blog-title a {
    color: #222;
    text-decoration: none;
}

.blog-title a:hover {
    color: #ff6600;
}

.blog-meta {
    font-size: 13px;
    color: #777;
    margin-bottom: 10px;
}

.blog-excerpt {
    margin-bottom: 15px;
}

.blog-excerpt p {
    color: #000;
    line-height: 25px;
    font-size: 16px;
    margin-bottom: 10px;
}

.read-more {
    color: #115730;
    font-weight: 600;
    text-decoration: none;
}

.read-more:hover {
    text-decoration: underline;
}

/* Pagination */
.pagination {
    margin-top: 25px;
    text-align: center;
}

.pagination a {
    margin: 0 5px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
}

.pagination .current {
    background: #ff6600;
    color: #fff;
    border-color: #ff6600;
}