.bs-blog-home{
    background:var(--blog-home-bg);
    padding: var(--blog-home-padding, 20px 0);
    margin-bottom:16px;
}

.bs-blog-article{
    height:100%;
    display:flex;
    flex-direction:column;
    overflow:hidden;
    border-radius:var(--default-border-radius);
    background: var(--blog-article-bg,var(--element-bg));
    border: solid 1px #00000017;
}
.bs-blog-article .btn:hover{
    text-decoration:var(--btn-hover-decoration);
}
.bs-blog-article__info{
    padding:1rem;
    text-align:center;
    display:flex;
    flex-direction:column;
    height:100%;
}
.bs-blog-article__title{
    font-size:var(--title-font-size, 1.2rem);
    font-weight: var(--title-font-weight, var(--font-bold));
}
.bs-blog-article__content{
    height:100%;
}
