            
        .news-filters {
            display: flex;
            align-items: center;
            gap: 40px;
            padding: 30px 40px;
            background: #fff;
            max-width: 1600px;
            margin: 80px auto 0;
        }
        .news-filters a {
            color: #666;
            font-size: 18px;
            padding: 8px 0;
            position: relative;
            font-weight: 500;
        }
        .news-filters a.active {
            color: #1f2937;
            font-weight: 600;
        }
        .news-filters a.active::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 100%;
            height: 4px;
            background: #f1c41c;
        }
        .news-filters a:hover {
            color: #1f2937;
        }
        .news-content-section {
            padding: 0;
            background: #fff;
        }
        .section-title {
            font-size: 36px;
            color: #f1c41c;
            font-weight: 600;
            margin-bottom: 30px;
        }
        .news-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 60px;
        }
        .news-article {
            display: flex;
            flex-direction: column;
        }
        .news-article-image {
            width: 100%;
            height: 465px;
            background: #fff;
            margin-bottom: 20px;
            overflow: hidden;
            display: flex;
            justify-content: center;
        }
        .news-article-image img {
            width: auto;
            height: 100%;
            object-fit: cover;
        }
        .news-article-title {
            font-size: 18px;
            color: #f1c41c;
            font-weight: 500;
            margin-bottom: 16px;
            line-height: 1.4;
        }
        .news-article-snippet {
            font-size: 16px;
            color: #666;
            line-height: 1.5;
            margin-bottom: 20px;
        }

        .product-showcase-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 60px;
        }
        .showcase-item {
            display: flex;
            flex-direction: column;
        }
        .showcase-image {
            width: 100%;
            height: 300px;
            background: #f3f4f6;
            border-radius: 8px;
            margin-bottom: 20px;
            overflow: hidden;
        }
        .showcase-item .news-article-title {
            font-size: 20px;
        }
        .showcase-item .news-article-snippet {
            font-size: 14px;
        }
        
        @media (max-width: 992px) {
            .news-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .product-showcase-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .news-filters {
                padding: 20px;
                overflow-x: auto;
                gap: 20px;
            }
            
            .news-filters a {
                white-space: nowrap;
                font-size: 14px;
            }
            
            .news-content-section {
                padding: 20px 0px;
            }
            
            .section-title {
                font-size: 28px;
            }
            
            .news-grid {
                gap: 30px;
            }
            
            .news-article-image {
                height: 250px;
            }
            
            .news-article-title {
                font-size: 22px;
            }
            
            .showcase-image {
                height: 200px;
            }
        }