.blog-product-box {
display: flex;
    align-items: center;
}
        .blog-product-link {
width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    padding: 10px;
    box-sizing: border-box;
border: solid 1px #e9e9e9;
    border-radius: 15px;
    margin: 10px;
        }
        .blog-product-link img {
            height: 180px;
            width: auto;
        }
        .blog-product-info {
            display: flex;
            flex-direction: column;
            justify-content: center;
            height: 100%;
            padding: 0 20px;
            box-sizing: border-box;
            text-align: center;
        }
        .blog-product-title {
            font-size: 24px;
            margin: 0;
            margin-bottom: 20px;
        }
        .blog-product-button {
            text-align: center;
        }
        .blog-product-button a {
            display: inline-block;
            padding: 10px 20px;
            background-color: #007BFF;
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
        }
 @media (max-width: 991px) {
.blog-product-box {
display: flex;
        align-items: center;
        flex-direction: column;
}
.blog-product-title {
    font-size: 16px;
}
    }
