/* Custom Blog Styles for Equal Height */
.blog-item {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-item .top {
    flex-shrink: 0;
}

.blog-item .top img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.blog-item .bottom {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.blog-item .bottom h3 {
    margin-bottom: 15px;
    min-height: 60px;
    /* Ensure 2 lines of title align */
}

.blog-item .bottom p {
    flex-grow: 1;
    margin-bottom: 20px;
}

.blog-item .bottom .blog-btn {
    margin-top: auto;
    align-self: flex-start;
}