 /* News Page Specific Styles */
        .page-hero {
            padding: 120px 0 80px;
            background: var(--gradient-primary);
            position: relative;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: var(--white-8);
            border-radius: 50%;
            top: -300px;
            left: -300px;
            animation: rotate 25s linear infinite;
        }

        .page-hero-content {
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .page-title {
            font-size: 56px;
            font-weight: 900;
            color: white;
            margin-bottom: 16px;
            letter-spacing: -1px;
        }

        .page-subtitle {
            font-size: 20px;
            color: var(--white-92);
            font-weight: 500;
        }

        .news-grid-section {
            padding: 100px 0;
            background: var(--gradient-light);
        }

        .filter-tabs {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-bottom: 60px;
            flex-wrap: wrap;
        }

        .filter-tab {
            padding: 12px 32px;
            border: 2px solid var(--primary-10);
            background: white;
            border-radius: var(--radius-full);
            font-size: 16px;
            font-weight: 700;
            color: var(--slate-700);
            cursor: pointer;
            transition: all var(--transition-fast);
        }

        .filter-tab:hover,
        .filter-tab.active {
            background: var(--gradient-primary);
            color: white;
            border-color: transparent;
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 32px;
        }

        .news-item {
            background: white;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-xl);
            transition: all var(--transition-smooth);
            border: 1px solid var(--primary-8);
            cursor: pointer;
        }

        .news-item:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-2xl);
        }

        .news-item-image {
            position: relative;
            height: 320px;
            overflow: hidden;
        }

        .news-item-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .news-item:hover .news-item-image img {
            transform: scale(1.1);
        }

        .news-date {
            position: absolute;
            bottom: 16px;
            left: 16px;
            background: var(--gradient-primary);
            color: white;
            padding: 8px 20px;
            border-radius: var(--radius-full);
            font-size: 12px;
            font-weight: 700;
            box-shadow: var(--shadow-md);
        }

        .news-category {
            position: absolute;
            bottom: 16px;
            right: 16px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(8px);
            color: var(--primary-indigo);
            padding: 6px 16px;
            border-radius: var(--radius-full);
            font-size: 13px;
            font-weight: 700;
        }

        .news-item-content {
            padding: 24px;
        }

        .news-item-title {
            font-size: 20px;
            color: var(--slate-800);
            font-weight: 800;
            margin-bottom: 12px;
            line-height: 1.4;
            letter-spacing: -0.3px;
        }

        .news-item-description {
            font-size: 16px;
            color: var(--slate-600);
            line-height: 1.7;
            margin-bottom: 20px;
            font-weight: 500;
        }

        .read-more {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--primary-indigo);
            font-weight: 700;
            font-size: 15px;
            transition: all var(--transition-fast);
        }

        .read-more:hover {
            gap: 12px;
        }

        .read-more::after {
            content: '←';
            font-size: 18px;
        }

        .load-more {
            text-align: center;
            margin-top: 60px;
        }

        .load-more-btn {
            background: var(--gradient-primary);
            color: white;
            border: none;
            padding: 16px 48px;
            border-radius: var(--radius-full);
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all var(--transition-base);
            box-shadow: var(--shadow-md);
        }

        .load-more-btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        @media (max-width: 768px) {
            .page-title {
                font-size: 38px;
            }

            .news-grid {
                grid-template-columns: 1fr;
            }

            .filter-tabs {
                padding: 0 16px;
            }
        }



/*New More
/* news-dynamic.css - Additional styles for dynamic news loading */

/* Loading Placeholder */
.loading-placeholder {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    font-size: 1.2rem;
    color: var(--text-secondary, #666);
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

/* No News Message */
.no-news-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    font-size: 1.3rem;
    color: var(--text-secondary, #666);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(240, 240, 240, 0.9));
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 2px dashed rgba(0, 0, 0, 0.1);
}

.no-news-message::before {
    content: "📰";
    display: block;
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* Error Message */
.error-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(220, 53, 69, 0.1);
    border-radius: 12px;
    color: #dc3545;
    font-size: 1.1rem;
    border: 2px solid rgba(220, 53, 69, 0.3);
}

.error-message::before {
    content: "⚠️";
    display: block;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Load More Button States */
.load-more-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: linear-gradient(135deg, #ccc, #999);
}

.load-more-btn:disabled:hover {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* News Item Loading State */
.news-item.loading {
    pointer-events: none;
    opacity: 0.6;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Image Loading State */
.news-item-image img[src=""] {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 1100px 100%;
    animation: shimmer 1.5s infinite;
}

/* Fade-in Animation for News Items */
.news-item {
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger animation for multiple items */
.news-item:nth-child(1) { animation-delay: 0.1s; }
.news-item:nth-child(2) { animation-delay: 0.2s; }
.news-item:nth-child(3) { animation-delay: 0.3s; }
.news-item:nth-child(4) { animation-delay: 0.4s; }
.news-item:nth-child(5) { animation-delay: 0.5s; }
.news-item:nth-child(6) { animation-delay: 0.6s; }

/* Filter Tab Active State Enhancement */
.filter-tab.active {
    position: relative;
    overflow: visible;
}

.filter-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: var(--primary-color, #1a472a);
    border-radius: 2px 2px 0 0;
}

/* Read More Clickable Enhancement */
.read-more {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.read-more::after {
    content: ' ←';
    transition: transform 0.3s ease;
    display: inline-block;
}

.read-more:hover::after {
    transform: translateX(-5px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .no-news-message,
    .error-message,
    .loading-placeholder {
        padding: 2rem 1rem;
        font-size: 1rem;
    }
    
    .no-news-message::before,
    .error-message::before {
        font-size: 2rem;
    }
}

/* Hidden State for Load More */
.load-more[style*="display: none"] {
    display: none !important;
}
/* Add this to your CSS file */
.news-item-image {
    position: relative;
}

.news-date {
    transition: opacity 0.3s ease;
}

.news-item-image:hover .news-date {
    opacity: 0;
    pointer-events: none;
}