.posts .large .author {
    display: table;
    width: 100%;
    margin-bottom: 15px;
}

.posts .large .author .cell {
    display: table-cell;
    vertical-align: middle;
}

.posts .large .author .initials {
    background-color: rgba(var(--mainColor), 1);
    border-radius: 3px;
    font-size: 14px;
    cursor: pointer;
    transition: all .2s;
    text-align: center;
    color: white;
    width: 38px;
    height: 38px;
}

.posts .large .author .authorInfo {
    padding-left: 7px;
    font-weight: 600;
}

.posts .large .author .authorInfo span {
    display: block;
    font-weight: 400;
    font-size: 14px;
    opacity: .8;
}

.posts .large p {
    margin: 0px;
    font-size: 14px;
    line-height: 22px;
}

.posts .post {
    color: #333;
}

.posts .post .image,
.posts .post .video {
    width: calc(100% + 30px);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    margin-bottom: 10px;
    margin-left: -15px;
    position: relative;
    background-color: rgba(var(--mainColor), 1);
}

.posts .post .image:after,
.posts .post .video:after {
    content: "";
    display: block;
    padding-bottom: 53%;
}

.posts .post .video:before {
    content: "\f04b";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    font-size: 46px;
    color: white;
    font-weight: 600;
    top: calc(50% - 23px);
    left: calc(50% - 23px);
    line-height: 46px;
}

.widget .posts .post .video:before {
    font-size: 32px;
    top: calc(50% - 16px);
    left: calc(50% - 16px);
    line-height: 32px;
}

.posts .post .title {
    font-size: 16px;
    text-transform: uppercase;    
    font-weight: 600;
}

.posts .post .date {
    font-size: 13px;
    color: rgba(var(--mainColor), .8);
}

.posts .post .text,
.widget p {
    font-size: 14px;
    line-height: 18px;
    margin-top: 10px;
}

.posts .post .icons {
    margin-top: 5px;
    display: table;
}

.posts .post .icons div {
    height: 30px;
    display: table-cell;
    position: relative;
    vertical-align: middle;
    font-size: 13px;
    padding-right: 12px;
    color: #666;
}

.posts .post .icons .likes {
    padding-left: 21px;
    cursor: pointer;
}

.posts .post .icons .likes:hover {
    opacity: .7;
}

.posts .post .icons .comments {
    padding-left: 21px;
}

.posts .post .icons .likes:before {
    content: "\f164";
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    position: absolute;
    font-size: 16px;
    top: calc(50% - 8px);
    left: 0px;
    transition: all .3s;
}

.posts .post .icons .likes.liked:before {
    content: "\f164";
    font-family: "Font Awesome 5 Pro";
    font-weight: 600;
    position: absolute;
    font-size: 16px;
    top: calc(50% - 8px);
    left: 0px;
    color: rgba(var(--mainColor), 1);
    transition: all .3s;
}

.posts .post .icons .comments:before {
    content: "\f075";
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    position: absolute;
    font-size: 16px;
    top: calc(50% - 7px);
    left: 0px;
}