.ac_post_widget {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: start;
}

.ac_post_widget .image {
    width: 200px;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.ac_post_widget .desc {
    padding-left: 30px;
    width: calc(100% - 200px);
}

.ac_post_widget .desc .post-title {
    padding: 5px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 5px;
}

.ac_post_widget .desc .post-desc {
    color: #555;
    font-size: 13px;
    line-height:30px
}

@media (max-width: 960px) {
    .ac_post_widget {
        display: block;
    }

    .ac_post_widget .image {
        width: 100%;
    }

    .ac_post_widget .desc {
        width: 100%;
        padding-left: 0;
        padding-top: 30px;
    }

    .ac_post_widget .desc .post-title {
        font-size: 18px;
    }
    .ac_post_widget .desc .post-desc {
        color: #555;
        font-size: 13px;
        line-height:20px
    }

}