    
    .news-section {
        display: flex;
        flex-wrap: wrap;
    }
    

    

    .news-date, .news-title, .news-description, .read-more {
        margin-bottom: 10px;
    }
    
    .news-date {
        font-size: 14px;
        color: gray;
    }
    
    .news-title {
        font-size: 16px;
    }
    
    .news-description {
        font-size: 12px;
    }
    
    .read-more {
        background-color: #448ee2;
        color: white;
        border: none;
        font-size: 10px;
        cursor: pointer;
        transition: background-color 0.3s ease;
        border-radius: 5px;

    }
    
    .read-more:hover {
        background-color: #0056b3;
    }
    
    
    .main-news {
        padding: 2px 4px;
        width: 67%;
        display: flex;
        flex-direction: column;
        border-right: 1px solid black;

    }
    
    .news-item {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }
    
    .news-media {
        transition: transform .3s;
        max-width: 150px;
        margin-right: 20px;
        cursor: pointer;
    }
    
    .news-details {
        display: flex;
        align-items: center;
    }
    
    .news-date, .news-title, .news-description, .read-more {
        margin-right: 10px;
    }
    
    .news-date {
        font-size: 14px;
        color: rgb(62, 25, 194);
    }
    
    .news-title {
        font-size: 16px;
    }
    
    .news-description {
        font-size: 16px;
    }
    

    
    .news-archives {
        padding-left: 5px;
        width: 30%;
    }
    
    .news-archives ul {
        list-style: none;
        padding: 0;
    }
    .news-archives ul li a{
        text-decoration: none;
    }
    
    .news-archives li {
        margin: 10px 0;
        padding: 5px;
        border-bottom: 1px dotted black;
    }
    .news-archives li:hover{
        background-color: rgb(196, 197, 197);
      }
    
    .news-archives a {
        text-decoration: none;
        color: #007BFF;
        transition: color 0.3s ease;
    }
    
    .news-archives a:hover {
        color: #0056b3;
    }

    @media (max-width: 1300px) {
        .news-media {
            max-width: 90px;
            margin-right: 20px;
        }

    }
    
    @media (max-width: 760px) {
        .featured-news {
            flex-direction: column;
        }

        .featured-image {
            max-width: 100%;
        }
    
        .news-media {
            max-width: 350px;
        }

        .main-news, .news-archives {
            width: 100%;
        }
        .news-item{
            flex-direction: column;
        }
    
        .news-title {
            font-size: 14px;
        }
    
        .news-description {
            font-size: 14px;
        }
        .main-news{
            border: none;
        }
        .hide{
            display: none;
        }
    }

    @media (max-width: 500px) {
        .news-description{
            display: none;
        }


        .featured-details {
            padding-left: 5px;
        }

    }


    @media (min-width: 1800px) {
        .main-news{
            width: 50%;
            padding-left : 150px;
        }
        .news-archives{
            width: 35%;
        }
        .news-media {
            max-width: 400px;
        }
        /* .iframe {
            width: 900px;
            height: 600px;
        } */
        .featured-details {
            padding-left: 80px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
    }

    @media (max-width:1800px) and (min-width:1300px) { 
        /* .iframe {
            width: 500px;
            height: 300px;
        } */
        .news-media {
            max-width: 90px;
        }
        
    }

    @media (max-width:1300px) and (min-width:1000px) { 
        /* .iframe {
            width: 400px;
            height: 200px;
        } */
    }
    
    


    .news-media:hover{
    -ms-transform: scale(1.08); /* IE 9 */
    -webkit-transform: scale(1.08); /* Safari 3-8 */
    transform: scale(1.08); 
}

