
.news-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 2rem 1rem;
        }
        
        .news-card {
            display: flex;
            margin-bottom: 1.5rem;
            border: 1px solid #eee;
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        
        .news-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        
        .news-image {
            width: 200px;
            height: 150px;
            object-fit: cover;
        }
        
        .news-content {
            padding: 1rem;
            flex-grow: 1;
        }
        
        .news-title {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
            color: #FFFFFF;
            text-decoration: none;
            border-radius: 15px;
            width: 550px;

        }
        
        .news-timestamp {
            font-size: 0.875rem;
            color: #666;
            margin-bottom: 0.5rem;
        }
        
        .read-more {
            color: #007bff;
            text-decoration: none;
            font-size: 0.9rem;
        }
        
        .read-more:hover {
            text-decoration: underline;
        }
        
        .section-title {
            margin-bottom: 2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #dc3545;
        }
        
        .sidebar-section {
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 8px;
        }
        
        .clip-card {
            display: flex;
            margin-bottom: 1rem;
            background: white;
            border-radius: 6px;
            overflow: hidden;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }
        
        .clip-thumbnail {
            width: 120px;
            height: 80px;
            object-fit: cover;
        }
        
        .clip-content {
            padding: 0.75rem;
            flex-grow: 1;
        }
        
        .clip-title {
            font-size: 1.0rem;
            margin-bottom: 0.25rem;
        }
        
        .clip-date {
            font-size: 0.8rem;
            color: #666;
        }
        
        .search-box {
            margin-bottom: 2rem;
        }