[v-cloak] { display:none; }
.article-container{
    
}
.article-list{
    display: flex;
    flex-wrap: wrap;
}
.article-item{
    width: 30%;
    margin: 0.5em;
    background: #323030;
    border-radius: 0.5em;
    height: fit-content;
}
.article-footer{
    height: 48px;
    overflow: hidden;
}
.article-title{
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    position: relative;
    font-size: 1em;
    text-indent: 0.5em;
    height: 33px;
}
.article-link{
    background: #323030;
    position: absolute;
    bottom: 6px;
    right: 6px;
    padding: 2px;
    padding-left: 6px;
}
.article-link:hover{
    filter: brightness(1);
}
a.article-item-link:hover {
    filter: brightness(1);
}
a.article-item-link:hover .article-item--cover{
    filter: brightness(1.3);
}
@media only screen and (max-width: 768px) {
    .article-item{
        width: 45%;
    }
}