 .news-list {
            list-style: none;
            padding: 0;
        }

        .news-item {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #e0e0e0;
        }

        .news-thumbnail {
            width: 200px;
            height: 150px;
            object-fit: cover;
            border-radius: 5px;
        }

        .news-details h3 {
            font-size: 1.3rem;
            margin-bottom: 5px;
            color: #007BFF;
        }

        .news-meta {
            font-size: 0.9rem;
            color: #777;
            margin-bottom: 10px;
        }

        .news-details p {
            margin-bottom: 10px;
            color: #333;
            line-height: 1.6;
        }

        .news-details a {
            color: #007BFF;
            text-decoration: none;
        }

        .news-details a:hover {
            text-decoration: underline;
        }

      