#blog .page-content{
    flex-wrap: wrap;
    justify-content: center;
    margin: -0.66rem 0;
    margin-bottom: 2rem;
}

#blog .box{
    background-color: white;
    margin: 0.66rem;
    min-width: 16.66rem;
    flex: 0 0 16.66rem;
    flex-direction: column;
    cursor: pointer;
}

#blog .box>.img{
    min-width: 9.33rem;
    height: 9.33rem;
    background-size: cover;
    background-position: center;
}

#blog .box>.content{
    flex: 1;
    flex-direction: column;
    max-height: 9.33rem;
    min-height: 9.33rem;
    padding: 0.66rem 1rem 0 1rem;
    overflow: hidden;
}

#blog .box>.content>.article{
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

#blog .box>.content .title{
    font-weight: 600;
}

@media (max-width: 599.9px){
    #blog .box{
        flex: 1;
        flex-direction: row;
    }

    #blog .box>.img {
        flex: 1;
    }
}

@media (max-width: 425px){
    #blog .img{
        height: 13.33rem;
    }

    #blog .box{
        height: 22.66rem;
        flex-direction: column;
    }

    #blog .box>.content{
        font-size: 1.15rem;
        max-height: 11rem;
    }
}