@media only screen and (max-width: 760px), (min-device-width: 768px) and (max-device-width: 1024px) {

    .news_article table {
        width: 100% !important;
    }

    /* Force table to not be like tables anymore */
    .news_article table, .news_article thead, .news_article tbody, .news_article th, .news_article td, .news_article tr {
        display: block;
    }

        /* Hide table headers (but not display: none;, for accessibility) */
        .news_article thead tr {
            position: absolute;
            top: -9999px;
            left: -9999px;
        }

    .news_article tr {
        margin: 0 0 1rem 0;
        height: auto !important;
    }

        .news_article tr:nth-child(odd) {
            background: #fff;
        }

    .news_article td {
        /* Behave  like a "row" */
        border: none;
        /* border-bottom: 1px solid #eee; */
        position: relative;
        /* padding-left: 50%; */
        width: 100% !important;
        height: 2em !important;
        text-align: left !important;
    }

        .news_article td:before {
            /* Now like a table header */
            position: absolute;
            /* Top/left values mimic padding */
            top: 0;
            left: 6px;
            width: 45%;
            padding-right: 10px;
            white-space: nowrap;
        }
}
