        /**
         * #####################################
         *      Custom Web News Stylesheet
         * #####################################
         */
/* ===================== main news block ===================== */
    .news--container {
        display: flex;
        flex-direction: column;
    }
    .partial { display: none; }
    .news--img {
        width: 100%;
        height: 400px;
        margin-bottom: 20px;
        object-fit: cover;
    }
    .social-media {
        margin-top: 50px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    /**
     * ####################
     *     Media Query
     * ####################
     */
    /* tablet screen to laptop screen [ 768 <=> 1440px ]*/
        @media (min-width: 992px) {
            .partial { display: block; }
            .news--container {
                flex-direction: row-reverse;
                justify-content: space-between;
            }
            .news--date--container { width: 20%; }
            .news--content--container { width: 70%; }
        }
