 <style>
        .latest-news {
            padding: 50px 0;
            background: #f8f9fa;
        }
        
        .section-title {
            text-align: center;
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 30px;
        }
        
        .latest-news__carousel {
            display: flex;
            gap: 20px;
        }
        
        .latest-news__item {
            display: block;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease-in-out;
        }
        
        .latest-news__item:hover {
            transform: translateY(-5px);
        }
        
        .inner-block {
            padding: 15px;
        }
        
        .img {
            position: relative;
        }
        
        .news-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-top-left-radius: 8px;
            border-top-right-radius: 8px;
        }
        
        .date {
            position: absolute;
            bottom: 10px;
            left: 10px;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 5px 10px;
            font-size: 12px;
            border-radius: 5px;
        }
        
        
        .read-more-2 {
            display: inline-block;
            font-size: 14px;
            color: #007bff;
            font-weight: bold;
            margin-top: 5px;
            text-decoration: none;
        }
        
        .read-more-2:hover {
            text-decoration: underline;
        }
        
        


    </style>