﻿.post-news.card,
.post-news.card .card-header,
.post-news.card .card-footer {
    border: 0;
    border-radius: 0;
    background-color: transparent;
}
.post-container {
    position: relative;
    border-top: 1px solid #d6d6d6;
}
.post-container::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: #d6d6d6;
    z-index: 0;
}
.post-container::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #d6d6d6;
    z-index: 0;
}
.post-container .card {
    padding: 30px;
    height: 100%;
    border-radius: 0;
}
.post-news .card-header {
    padding: 0;
}
.post-news .card-body,
.post-news .card-footer {
    padding: 10px 0;
}
.post-news .img-container {
    position: relative;
    display: flex;
    align-items: center;
}
.post-news img {
    max-width: 100%;
}
.blogpost-page .post-news img, .news-item-page .post-news img {
    max-width: 500px;
}
.post-news .category {
    position: absolute;
    bottom: 5px;
    left: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    color: #fff;
    background-color: #ad783f;
    text-align: center;
}
.post-news .title {
    max-width: calc(100% - 115px);
    margin: 10px 0;
}
.post-news .title a {
    color: #000;
    font-size: 22px;
    font-weight: 700;
}
.post-news .date {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.post-news .date {
    color: #4faacd;
    font-size: 14px;
    font-weight: 500;
}
.post-news .date .part:not(:last-child) {
    margin: 0 3px 0 0;
}
.post-news .date .month {
    text-transform: capitalize;
}
.post-news .date .month::after {
    content: ",";
    position: relative;
}
.post-news .post-date {
    position: absolute;
    top: 0;
    right: 1px;
    display: flex;
    align-items: flex-end;
    padding: 10px;
    border-left: 1px solid #d6d6d6;
    border-bottom: 1px solid #d6d6d6;
    background-color: #fff;
    line-height: 1;
}
.post-news .post-date .day {
    color: #000;
    font-size: 42px;
    font-weight: 700;
}
.post-news .post-date .month {
    margin: 0 0 2px 5px;
    color: #4faacd;
    font-size: 24px;
    font-weight: 400;
}
.post-news .short {
    color: #777;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
}
.post-col {
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

@media (min-width: 1200px) {
    .generalLeftSide.show + .generalSideRight .post-col {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .blog-container .blog-main .content .title a {
        font-size: 38px;
    }
}
@media (max-width: 991px) {
    .blog-container .blog-main .content .title a {
        font-size: 32px;
    }
}
@media (max-width: 575px) {
    .post-news, .post-news .card-header, .post-news .card-footer {
        text-align: center;
    }
    .post-news .post-date {
        right: calc(50% - 48px);
        border-right: 1px solid #d6d6d6;
    }
    .post-news .post-date .day {
        font-size: 32px;
    }
    .post-news .post-date .month {
        font-size: 20px;
    }
    .post-news .title {
        max-width: 100%;
        margin: 40px 0 0 0;
    }
    .post-news .title a {
        font-size: 22px;
    }
}