.sectionBlog
{
    border-top: 1px solid #cecece;
}

.sectionBlog .card
{
    height: 100%;
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.2);
    border-radius: 0;
    padding: 15px;
    z-index: 1;
    transition: 0.3s all;
}

.sectionBlog .card .card-img-top
{
    border-radius: 0;
    overflow: hidden;
    position: relative;
}

.sectionBlog .card .card-img-top .cardImgInner img
{
    display: block;
    width: 100%;
    height: 212px;
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    object-fit: cover;
}

.sectionBlog .card .card-img-top .cardImgInner:before
{
    background: rgba(255, 255, 255, 0.3) repeat center center;
    border-radius: 0;
    content: "";
    display: block;
    height: 0;
    left: -50%;
    margin: 0;
    overflow: hidden;
    position: absolute;
    top: 48%;
    transform: rotate(45deg);
    transition: all 0.65s ease 0s;
    width: 200%;
    z-index: 1;
}

.sectionBlog .card .card-body
{
    margin-top: 15px;
    padding: 15px;
    position: relative;
}

.sectionBlog .card .card-body:before
{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px dashed var(--hover-main);
}

.sectionBlog .card .card-body .card-title
{
    font-size: 1rem;
    font-weight: 900;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    color: var(--hover-color);
    margin-bottom: 15px;
    transition: 0.5s all;
}

.sectionBlog .card .card-body .cardSeeMore
{
    position: relative;
    top: -22px;
    margin-bottom: -10px;
    display: flex;
    overflow-y: hidden;
    z-index: 1;
    justify-content: center;
    transition: 0.3s all;
}

.sectionBlog .card .card-body .cardSeeMore .seeMore
{
    padding: 5px;
    background: var(--hover-color);
    display: inline-flex;
    position: relative;
    color: #fff;
    z-index: -1;
    transition: 0.3s all;
}

.sectionBlog .card .card-body .cardSeeMore .seeMore:hover
{
    background-color: var(--main-color);
}

.sectionBlog .card .card-body .cardSeeMore .seeMore:hover:before, .sectionBlog .card .card-body .cardSeeMore .seeMore:hover:after
{
    background-color: var(--main-color);
}

.sectionBlog .card .card-body .cardSeeMore .seeMore:before, .sectionBlog .card .card-body .cardSeeMore .seeMore:after
{
    position: absolute;
    content: "";
    top: 0;
    right: 90%;
    width: 20px;
    height: 110%;
    transform: rotate(15deg);
    background-color: var(--hover-color);
    z-index: -2;
    transition: 0.3s all;
}

.sectionBlog .card .card-body .cardSeeMore .seeMore:after
{
    left: 90%;
    right: unset;
    transform: rotate(-16deg);
}

.sectionBlog .card .card-body .cardDay
{
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text-sub);
    margin-bottom: 0.5rem;
    transition: 0.5s all;
}

.sectionBlog .card .card-body .cardDay span
{
    width: 49%;
    display: inline-flex;
    align-items: center;
    line-height: 1.1;
}

.sectionBlog .card .card-body .cardDay span i
{
    margin-right: 5px;
    vertical-align: 1px;
}

.sectionBlog .card .card-body .cardDay span:last-of-type
{
    justify-content: flex-end;
    border-left: 1px solid var(--color-text-sub);
}

.sectionBlog .card .card-body .cardDesc
{
    font-size: 0.9rem;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    color: var(--color-text-sub);
    transition: 0.5s all;
}

.sectionBlog .card:hover
{
    background-color: var(--href-hover-color);
}

.sectionBlog .card:hover .card-img-top .cardImgInner:before
{
    height: 400%;
    left: -60%;
    top: -100%;
    transform: rotate(45deg);
    transition: all 0.65s ease 0s;
    width: 200%;
}

.sectionBlog .card:hover .card-img-top .cardImgInner img
{
    transform: scale(1.15) rotate(5deg);
}

.sectionBlog .card:hover .card-body
{
    color: #fff;
}

.sectionBlog .card:hover .card-body .card-title
{
    color: var(--main-color);
}

.sectionBlog .card:hover .card-body .cardDay, .sectionBlog .card:hover .card-body .cardDesc
{
    color: #fff;
}

.sectionBlog .card:hover .card-body:before
{
    border-color: #fff;
}

@media screen and (max-width: 991px)
{
    .sectionBlog .card
    {
        height: auto;
        margin-bottom: 15px;
    }

    .sectionBlog .card .card-body .cardSeeMore
    {
        top: -42px;
    }

    .sectionBlog .card .card-body .card-title
    {
        font-size: 0.95rem;
    }

    .sectionBlog .card .card-body .cardDesc
    {
        font-size: 0.875rem;
    }

    .sectionBlog .card:hover .card-body .cardSeeMore
    {
        transform: unset;
    }
}
