.metablog {
	font-size: 13px;
	color: gray;
	margin-top: 10px;
}


.sidebar-section {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
}

.sidebar-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #222;
    border-bottom: 2px solid #0077cc;
    display: inline-block;
    padding-bottom: 4px;
}

.recent-post-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-post-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.recent-post-list li:last-child {
    margin-bottom: 0;
}

.recent-thumb img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 10px;
}

.recent-title {
    flex: 1;
    font-size: 0.95rem;
    color: #333;
    line-height: 1.2;
    transition: color 0.2s ease;
}

.recent-title:hover {
    color: #0077cc;
}

@media (max-width: 768px) {
    .sidebar-section {
        padding: 15px;
    }

    .recent-thumb img {
        width: 50px;
        height: 50px;
    }
}












.blogmeta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    font-size: 0.9rem;
    color: #555;
    margin-top: 10px;
}

.blogmeta .meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 6px 12px;
    transition: all 0.3s ease;
}

.blogmeta .meta-item svg {
    stroke: #888;
    width: 16px;
    height: 16px;
}

.blogmeta .meta-item span {
    color: #333;
    font-weight: 500;
}

.blogmeta .meta-item:hover {
    background: #e9f5ff;
    border-color: #007bff;
    color: #007bff;
}

.blogmeta .meta-item:hover svg {
    stroke: #007bff;
}






.blogimagenew img {
	width: 100%;
	margin-bottom: 10px;
}
.blogtitlenew {
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
    margin-bottom:10px;
}


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

.blogclass {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.blogclass:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.blogimage img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blogtitle {
    padding: 18px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
}

.blogtitle:hover {
    color: #0077cc;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
    flex-wrap: wrap;
    gap: 8px;
}

.pagination a {
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
    transition: all 0.2s ease;
}

.pagination a:hover {
    background: #0077cc;
    color: #fff;
    border-color: #0077cc;
}

.pagination a.active {
    background: #0077cc;
    color: #fff;
    border-color: #0077cc;
}
.blogmeta {
    padding: 0px 0px 20px 20px;
    color: gray;
    vertical-align: middle;
}
.blogmeta span {
    vertical-align: middle;
    color: gray;
}