.news-card {
            transition: transform 0.3s;
            border: none;
            border-radius: 10px;
            overflow: hidden;
            height: 100%;
        }
        
        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .section-title {
            position: relative;
            margin-bottom: 30px;
            font-weight: 700;
            color: var(--primary);
        }
        
        .section-title::after {
            content: '';
            display: block;
            width: 50px;
            height: 3px;
            background: var(--primary);
            margin-top: 10px;
        }
        
        .filter-section {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 30px;
        }
        
        .tag-badge {
            display: inline-block;
            padding: 5px 12px;
            margin: 0 5px 8px 0;
            border-radius: 20px;
            background-color: var(--light-blue);
            color: var(--primary);
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .tag-badge:hover, .tag-badge.active {
            background-color: var(--primary);
            color: white;
        }
        
        .year-filter {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .year-btn {
            padding: 5px 15px;
            border: 1px solid #ddd;
            border-radius: 20px;
            background: white;
            color: var(--dark-text);
            transition: all 0.3s;
        }
        
        .year-btn:hover, .year-btn.active {
            background-color: var(--primary);
            color: white;
            border-color: var(--primary);
        }
        
        .news-date {
            color: var(--light-text);
            font-size: 0.9rem;
        }
        
        .news-excerpt {
            color: var(--light-text);
            margin-bottom: 15px;
        }
        
        .read-more {
            font-weight: 500;
            color: var(--primary);
        }
        
        .pagination {
            margin-top: 40px;
        }
        
        .page-link {
            color: var(--primary);
        }
        
        .page-item.active .page-link {
            background-color: var(--primary);
            border-color: var(--primary);
        }
        
        .no-results {
            text-align: center;
            padding: 40px 0;
        }
        
        .sidebar-widget {
            background: white;
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .sidebar-title {
            font-size: 1.2rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--light-blue);
            color: var(--primary);
        }
        
        .recent-post {
            display: flex;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }
        
        .recent-post:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .recent-post-img {
            width: 80px;
            height: 60px;
            object-fit: cover;
            border-radius: 5px;
            margin-right: 15px;
        }
        
        .recent-post-title {
            font-size: 0.95rem;
            margin-bottom: 5px;
            font-weight: 500;
        }
        
        .recent-post-date {
            font-size: 0.8rem;
            color: var(--light-text);
        }
        
        @media (max-width: 768px) {
          
            
            .recent-post {
                flex-direction: column;
            }

            .recent-post-img {
                width: 100%;
                height: auto;
                margin-right: 0;
                margin-bottom: 10px;
            }
        }