.arz-posts{
    background-color: #fff;
    border-radius: 1rem;
    box-shadow: 0 0 2px rgba(0,0,0,.1);
    padding: 0 1.2rem;
}
.arz-last-post {
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
}
.arz-last-post:not(:last-child) {
    border-bottom: 1px #e5e7eb solid;
}
.arz-last-post__link {
    display: inline-block;
    height: 100%;
    width: 100%;
}
.arz-last-post__link .arz-image-loading {
    height: 30px;
    width: 30px;
}
.arz-last-post__image-box {
    border-radius: 5px;
    height: 140px;    
    overflow: hidden;
    max-width: 200px;
    width: 100%;
}
.arz-last-post__image {
    background-color: #F8F8F8;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition-duration: .4s;
    transition-property: transform;
    transition-timing-function: ease;
}
.arz-last-post__title {
    font-size: 18px;
    text-align: justify;
    color: #333;
    transition: color .2s linear;
    font-weight: bold;
}
.arz-last-post__text{
    color: #666;
    font-size: 14px;
    text-align: justify;
}
.arz-last-post__info {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    margin: .35em 0;
}
.arz-last-post__author,
.arz-last-post__publish-time {
    font-size: 14px;
}
.arz-last-post__author {
    align-items: center;
    color: #30505C;
    display: flex;
    margin-left: .5rem;
}
.arz-last-post__author .arz-avatar{
    margin-left: 5px;
}
.arz-last-post__publish-time {
    color: #666;
}
.arz-last-post:hover .arz-last-post__image {
    transform: scale(1.1);
}
.arz-last-post:hover .arz-last-post__title {
    color: #000;
}
.arz-last-posts__get-more {
    text-align: center;
    width: 100%;
    padding: 1rem 0;
}
.arz-last-posts__get-more .arz-btn {
    font-size: 14px;
    padding: .5em 1.5em;
    height: 30px;
    line-height: 16px;
}
.arz-last-posts__get-more .arz-icon {
    float: right;
    height: 17px;
    width: 17px;
    margin-left: 5px;
    fill: #FFF;
}
.arz-last-posts__get-more-waiting {
    animation: get-more-waiting-blink 2s linear forwards infinite;
}
.arz-last-posts__get-more-waiting .arz-icon {
    animation: get-more-waiting-rotate 1s linear forwards infinite;
}

.arz-post__views,
.arz-post__info-likes,
.arz-post__info-comment{
    font-size: 11px;
    display: flex;
    align-items: center;
    color: #666;
    fill: #666;
    margin-right: 15px;
}
.arz-post__views .arz-icon,
.arz-post__info-likes .arz-icon,
.arz-post__info-comment .arz-icon{
    margin-left: 2px;
    height: 15px;
    width: 15px;
    font-size: 14px;
}

.arz-search-post__content {
    background-color: #FFF;
    border-radius: 1rem;
    box-shadow: 0 0 2px rgba(0, 0, 0, .1);
    padding: 1rem;
}

.arz-search-post__title {
    text-align: center;
    color: #30505C;
    font-weight: normal;
}

@media (min-width: 768px) {
    .arz-last-post__image-box {
        width: 200px!important;
    }
    .arz-last-post__link-box {
        height: 140px;
        padding: 0 1.2rem 0 3rem;
        width: calc(100% - 200px)!important;
    }
}