
        #news_detail {
            width: 100%;
            max-width: 792px;
            margin: 0 auto;
        }

        #news_detail .news-detail-card h1 {
            font-family: 'Clash ', sans-serif !important;
            font-weight: 700 !important;
            font-size: 20px;
            color: #000000;
        }

        #news_detail .news_about-title_header .news_about_title {
            display: flex;
            gap: 20px;

        }

        #news_detail .news_about-title_header .news_about_title small {
            font-family: 'Inter', sans-serif;
            font-weight: 500;
            font-size: 14px;
            color: #979797;

        }

        #news_detail .news_about-title_header .share_icons {
            display: flex;
            gap: 10px;
            margin-left: auto;
        }

        #news_detail .news_about-title_header .share_icons .icon i {
            width: 22px;
            height: 22px;
            background-color: #898989;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            cursor: pointer;
            transition: background-color 0.3s ease;

        }

        #news_detail .news_about-title_header .share_icons .icon i:hover {
            background-color: #1347F5;

        }

        .news_about-title_header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .news_about_image {
            width: 100%;
            max-width: 792px;
            
            margin-bottom: 20px;
        }

        .news_about_image img {
            width: 100%;

        }


        .news_about .news_paragraph {
            font-family: 'Inter', sans-serif;
            font-weight: 500;
            font-size: 16px;
            color: #000000;
            line-height: 34px;
        }

        .content_titles .content_title {
            display: inline-block;
            padding: 8px 16px;
            background-color: #F3F4F6;
            border-radius: 8px;
            font-family: 'Inter', sans-serif;
            font-weight: 500;
            font-size: 14px;
            color: #000000;
            margin-right: 10px;
            margin-top: 10px;
            text-decoration: none;
        }

        #share_icons_mobile {
            display: none;
        }

        .news-detail-card h2 {
            font-family: 'Clash', sans-serif;
            font-weight: 700;

            font-size: 20px;

            line-height: 140%;
            letter-spacing: 0px;

        }

        @media (max-width: 940px) {
            #news_detail .news_about-title_header .share_icons {
                display: none
            }
           

            #news_detail .news-detail-card h2 {
                font-family: 'Inter', sans-serif;
                font-weight: 500;
                font-size: 18px;
                color: #161130;

            }

            #share_icons_mobile {
                display: flex;
                align-items: center;
                justify-content: space-around;
                gap: 10px;
                margin: 20px;
            }

            .share_icons .icon i {
                width: 40px;
                height: 40px;
                font-size: 20px;
                background-color: #898989;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #fff;
                cursor: pointer;
                transition: background-color 0.3s ease;

            }

            .share_icons .icon i:hover {
                background-color: #F41735;
                ;

            }

        }
    