.news-feed-wrapper {
    max-width: 815px;
    margin: 20px auto;
    color: #333;
    background-color: #fff;
    padding: 15px;

}

.news-card {
    display: flex;
    /* border-bottom: 1px solid #eee; */
    padding: 15px 0;
}

.news-card:last-child {
    border-bottom: none;
}

.news-time {
    width: 100px;
    color: #f11111;
    font-weight: bold;
    border-right: 1px solid;
    font-size: 14px;
    margin-right: 15px;
    flex-shrink: 0;
    border-image-slice: 1 !important;
    border-image: linear-gradient(to top, #ffdede4a, #ff1d1d);
}

.sub_desc {
    font-size: 19px;
    color: #333333;
    padding-right: 0;
    line-height: 30px;
    font-weight: 400;
    margin-bottom: 6px;
}

.news-time .ago {
    display: block;
    font-size: 12px;
    color: #666;
    font-weight: normal;
    margin-top: 3px;
}

.news-content {
    flex: 1;
}

.news-title {
    margin: 0 0 8px 0;
    font-size: 18px;
    color: #222;
    font-weight: bold;
    line-height: 1.4;
}

.news-title-hindi {
    display: block;
    margin-top: 5px;
    color: #222;
}

.news-meta {
    margin: 5px 0 10px 0;
    font-size: 13px;
    color: #555;
}

.news-body {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 10px;
    color: #333;
}

.news-italic {
    font-size: 13px;
    color: #666;
    font-style: italic;
    margin-top: 10px;
}

@media (max-width: 600px) {
    .news-feed-wrapper {
        max-width: 100%;
        padding: 0px;
    }

    .news-card {
        display: flex;
        flex-direction: column;
        padding: 15px 0;
    }

    .news-time {
        width: 100px;
        margin-bottom: 12px;
        border-image: linear-gradient(to top, #ffdede4a, #ffffff);
    }
    .time {
        position: relative;
    }
    .time::before {
        content: "•";
        margin-right: 6px;
        color: #ff1414;
        /* adjust color */
        font-size: 14px;
    }

}