.blog-card {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: transform .2s ease;
}

.blog-card:hover {
    transform: translateY(-3px);
}

.blog-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.blog-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.blog-title {
    margin: 0;
    font-weight: 600;
}

.blog-date {
    color: #888;
    font-size: 13px;
}

.blog-excerpt {
    color: #444;
    margin: 15px 0;
    text-align:left;
}

.blog-readmore {
    font-weight: 600;
    color: #0d6efd;
    text-decoration: none;
}

.blog-readmore:hover {
    text-decoration: underline;
}

.blog-single .blog-content {
    margin-top: 25px;
    line-height: 1.7;
}
.blog-stats {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.stat-bubble {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #f1f1f1;
    border-radius: 20px;
    font-size: 14px;
    color: #333;
}

.stat-bubble i {
    color: #555;
}
