.blog-card {
    transition: all 0.3s ease;
}
.blog-card:hover {
    transform: translateY(-5px);
}
.blog-category {
    position: relative;
    padding-left: 12px;
}
.blog-category::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #a976fe;
}
.thumbnail {
    height: 240px;
    object-fit: cover;
    width: 100%;
}