.article {}
.article > .thumbnail { margin-bottom: 25px; }
.article > .thumbnail > img {}
.loaded .article > .thumbnail > img { transition: transform .2s ease-out; }
.article:hover > .thumbnail > img { transform: scale(1.1); }
.article > .thumbnail > .tag {
    position: absolute; bottom: 25px; left: 25px;
    padding: 0 15px;
    
    background-color: rgba(0,0,0,.4);
    border-radius: 20px;
    
    line-height: 40px;
    font-size: 14px;
    color: var(--main-color);
}
.article > .thumbnail > .tag:before { content: '#'; }
.article > .title {
    line-height: 170%;
    font-size: 18px;
}