
        body {
            font-family: 'Inter', sans-serif;
        }
        .filter-chip.active {
            background-color: #20c5c5;
            color: #0f172a;
            font-weight: 700;
        }
        .article-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .article-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 30px -10px rgba(32, 197, 197, 0.15);
        }
        /* Custom scrollbar for chips container if needed */
        .no-scrollbar::-webkit-scrollbar {
            display: none;
        }
        .no-scrollbar {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }
    