.vk-blog-grid {
    display: grid;
    width: 100%;
}

.vk-blog-card {
    background: #fff;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.vk-blog-img img {
    width: 100%;
    height: 200px; /* Fixed height for symmetry */
    object-fit: cover;
    display: block;
}

.vk-blog-content {
    display: flex;
    flex-direction: column;
}

.vk-blog-card h3 {
    margin: 10px 0;
}

.vk-blog-meta span {
    margin-right: 10px;
}

.vk-view-more {
    display: inline-block;
    text-decoration: none;
    width: fit-content;
}

/* Fix for Button Alignment when centered */
.vk-blog-card[style*="text-align: center"] .vk-view-more {
    margin-left: auto;
    margin-right: auto;
}