

        .hb-main-news-container {
            display: grid;
            max-width: 1200px;
            grid-template-columns: 3.8fr 1.2fr;
            margin: 0 auto;
            z-index: 1;
            position: relative;
        }

        .hb-main-news-main-content {
            padding: 10px;
        }

        .hb-main-news-sidebar {
			align-self: start;
			position: sticky;
			top: 10px;
            padding: 10px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
		
		.hb-main-news-sidebar h6{
			display:none;
		}

        .hb-main-news-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }

        .hb-main-news-header-title {
            padding: 8px 16px;
            background-color: #222;
            color: white;
            width: fit-content;
        }
        .hb-main-news-header-title h2 {
            margin-top: -8px;
            font-size: clamp(25px, 2vw, 35px);
        }

        .hb-main-news-arrow-icon {
            width: clamp(30px, 3vw, 40px);
            height: clamp(30px, 3vw, 40px);
            margin-right: 15px;
            margin-top: 10px;
        }

        .hb-main-news-featured-news {
            position: relative;
            margin-bottom: 15px;
            height: 400px;
            width: 100%;
        }

        .hb-main-news-featured-image {
            width: 100%;
            height: 100%;
            display: block;

        }

        .hb-main-news-featured-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hb-main-news-featured-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: #000000b5;
            color: white;
            padding: 20px;
        }

        .hb-main-news-featured-title {
            font-size: clamp(20px, 2vw, 22px);
            margin-bottom: 10px;
            line-height: 1.1;
        }

        .hb-main-news-meta-info {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: clamp(12px, 1.8vw, 14px);
            font-weight: 600;
        }

        .hb-main-news-meta-item {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .hb-main-news-meta-item img {
            width:clamp(25px, 2vw, 30px);
            height:clamp(25px, 2vw, 30px);
        }

        .hb-main-news-meta-icon {
            width: clamp(30px, 2vw, 40px);
            height: clamp(30px, 2vw, 40px);
            background-color: white;
            border-radius: 50%;
            border: 2px solid red;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #333;
            font-size: 10px;
        }

        .hb-main-news-meta-icon img {
            width: 100%;
            height: 100%;
           
        }
        

        .hb-main-news-news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
        }

        .hb-main-news-news-grid a {
            text-decoration: none;
        }


        .hb-main-news-news-image {
            width: 100%;
            height: 190px;
            object-fit: cover;
            display: block;
        }

        .hb-main-news-news-title {
            padding: 5px 2px;
            font-size: clamp(14px, 1.8vw, 16px);
            color: #333;
            font-weight: 600;
        }

        .hb-main-news-ad-banner {
            width: 100%;
            height: 100%;
            background-color: #d9e6f2;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: #4a90e2;
            text-align: center;
        }

        .hb-main-news-ad-banner img {
            width: 100%;
            height: 100%;
            object-fit: fill;

        }

        @media (min-width: 768px) and (max-width: 1024px) {
            .hb-main-news-container {
                grid-template-columns: 3.5fr 1.5fr;
            }
        }

        @media screen and (max-width: 768px) {
            .hb-main-news-container {
                grid-template-columns: 1fr;
            }

            .hb-main-news-sidebar {
                display: none;
            }
            .hb-main-news-arrow-icon { 
                margin-right: 0px;
            }

        }

        @media screen and (max-width: 568px) {
            .hb-main-news-news-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media screen and (max-width: 468px) {
            .hb-main-news-news-grid {
                grid-template-columns: 1fr;
            }
            .hb-main-news-news-item{
                display: flex;
                gap: 15px;
                padding-bottom: 14px;
                border-bottom: 1px solid #767575;
                
            }
            .hb-main-news-news-item img{
                width: 130px;
                height: 90px;
                border-radius: 5px;
            }
            .hb-main-news-news-title {
            padding: 0 2px;
            line-height: 1.2;
            font-size:  18px;
            color: #333;
            font-weight: 800;
        }
        }
