.item_container {
    position: relative;
    height: 220px;
    margin: 40px 0;
    background: none;
    border: none;
    /* color: #fff; */
    color: #000;
    text-align: left;
    cursor: pointer;
}
.item {
    display: flex;
    height: 200px;
    justify-content: space-between;
    /* mask-image: linear-gradient(to bottom, black 45%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 45%, transparent 100%); */
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}

.item_image {
    height: 200px;
    width: 250px;
}

.article {
    width: calc(100% - 270px);
    /* border: 1px solid #333; */
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.title {
    font-size: 20px;
    color: #000;
    font-weight: 500;
}
.title:hover {
    text-decoration: underline;
}

.meta_info {
    display: flex;
    margin: 10px 0;
    font-size: 12px;
    font-weight: 500;
    /* color: #ccc; */
    color: #333;
}
.author:hover {
    text-decoration: underline;
}
.seperator {
    margin: 0 10px;
}
.content {
    font-size: 14px;
    margin-top: 15px;
    line-height: 1.2rem;
    font-weight: 500;
    color: #000;
}

.read_more {
    position: absolute;
    right: 10px;
    bottom: 0px;
    color: #fff;
    z-index: 10;
}
.read_more a {
    opacity: 1;
    font-size: 14px;
    text-decoration: none;
    /* color: #fff; */
    color: #000;
    font-weight: 400;
}

.read_more a:hover {
    text-decoration: underline;
}

.time_published {
    text-transform: uppercase;
}

@media screen and (max-width: 650px) {
    .item_container {
        /* height: auto; */
        height: 330px;
    }
    .item {
        /* height: auto; */
        height: 300px;
    }
    .item_image {
        width: 250px;
    }
    .article {
        width: calc(100% - 250px);
        padding: 0 10px;
    }
}

@media screen and (max-width: 550px) {
    .item_container {
        height: 540px;
        /* height: auto; */
    }
    .item {
        height: 500px;
        /* height: auto; */
        flex-direction: column;
        mask-image: none;
        -webkit-mask-image: none;
    }
    .item_image {
        height: 280px;
        /* width: 150px; */
        width: 100%;
        border-radius: 5px;
    }
    .article {
        width: calc(100% - 150px);
        /* padding: 0 10px; */
        padding: 10px 0;
        width: 100%;
    }
    .content {
        mask-image: linear-gradient(to bottom, black 45%, transparent 100%);
        -webkit-mask-image: linear-gradient(
            to bottom,
            black 45%,
            transparent 100%
        );
    }
}
