@charset "utf-8";
/* CSS Document */
 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .pf-news-container {
            width: 100%;
            background: white;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            padding: 24px;
            max-width: 100%;
        }

        .pf-news-header {
            font-size: 24px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 24px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border-bottom: 3px solid #2563eb;
            padding-bottom: 12px;
        }

        .pf-news-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .pf-news-item {
            display: flex;
            gap: 16px;
            padding: 16px;
            border-radius: 8px;
            transition: all 0.2s ease;
            cursor: pointer;
            border: 1px solid #e5e7eb;
            text-decoration: none;
            color: inherit;
        }

        .pf-news-item:hover {
            background-color: #f8fafc;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transform: translateY(-2px);
            text-decoration: none;
        }

        .pf-news-item:visited {
            color: inherit;
        }

        .pf-news-item:focus {
            outline: 2px solid #2563eb;
            outline-offset: 2px;
        }

        .pf-news-thumbnail {
            width: 80px;
            height: 80px;
            border-radius: 6px;
            object-fit: cover;
            flex-shrink: 0;
        }

        .pf-news-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .pf-news-meta {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 12px;
        }

        .pf-news-title {
            font-size: 16px;
            font-weight: 600;
            color: #1a1a1a;
            line-height: 1.4;
            margin: 0;
            flex: 1;
        }

        .pf-news-timestamp {
            font-size: 12px;
            color: #6b7280;
            font-weight: 500;
            white-space: nowrap;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .pf-news-byline {
            font-size: 13px;
            color: #2563eb;
            font-weight: 500;
            margin-bottom: 4px;
        }

        .pf-news-excerpt {
            font-size: 14px;
            color: #4b5563;
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .pf-news-container {
                padding: 16px;
            }
            
            .pf-news-header {
                font-size: 20px;
                margin-bottom: 20px;
            }
            
            .pf-news-item {
                padding: 12px;
                gap: 12px;
            }
            
            .pf-news-thumbnail {
                width: 60px;
                height: 60px;
            }
            
            .pf-news-title {
                font-size: 15px;
            }
            
            .pf-news-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
            
            .pf-news-timestamp {
                font-size: 11px;
            }
        }

        @media (max-width: 480px) {
            .pf-news-container {
                padding: 12px;
            }
            
            .pf-news-item {
                flex-direction: column;
                gap: 12px;
            }
            
            .pf-news-thumbnail {
                width: 100%;
                height: 140px;
                object-fit: cover;
                object-position: center top;
                border-radius: 6px;
                align-self: stretch;
            }
            
            .pf-news-meta {
                flex-direction: row;
                justify-content: space-between;
            }
        }