﻿    /* News page specific styles */
    .news-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 2rem 1rem;
    }
    

    
    .news-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
      gap: 2rem;
      margin-bottom: 3rem;
    }
    
    .news-card {
      background: white;
      border-radius: 1rem;
      overflow: hidden;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
    }
    
    .news-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }
    
    .news-card-link-wrapper {
      display: block;
      text-decoration: none;
      color: inherit;
    }
    
    .news-card-link-wrapper:hover .news-card-title {
      color: #3b82f6;
      transition: color 0.3s ease;
    }
    
    .news-card-image {
      height: 200px;
      overflow: hidden;
      background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .news-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }
    
    .news-card:hover .news-card-image img {
      transform: scale(1.05);
    }
    
    .news-card-content {
      padding: 1.5rem;
    }
    
    .news-card-meta {
      display: flex;
      gap: 1rem;
      margin-bottom: 1rem;
      font-size: 0.875rem;
      color: #64748b;
    }
    
    .news-date {
      display: inline-block;
      padding: 0.25rem 0.75rem;
      background: #f1f5f9;
      color: #64748b;
      border-radius: 1rem;
      font-weight: 500;
    }
    
    .news-category {
      display: inline-block;
      padding: 0.25rem 0.75rem;
      background: #dbeafe;
      color: #1d4ed8;
      border-radius: 1rem;
      font-weight: 500;
    }
    
    .news-card-title {
      font-size: 1.25rem;
      font-weight: 600;
      color: #1e40af;
      margin-bottom: 1rem;
      line-height: 1.4;
    }
    
    .news-card-excerpt {
      font-size: 0.95rem;
      color: #64748b;
      line-height: 1.6;
      margin-bottom: 1.5rem;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    
    .news-card-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: #3b82f6;
      font-weight: 500;
      text-decoration: none;
      transition: all 0.3s ease;
    }
    
    .news-card-link:hover {
      color: #1d4ed8;
      transform: translateX(5px);
    }
    

    
    .category-filter {
      display: flex;
      gap: 1rem;
      margin-bottom: 2rem;
      flex-wrap: wrap;
    }
    
    .filter-btn {
      padding: 0.5rem 1.5rem;
      border: 2px solid #e2e8f0;
      background: white;
      border-radius: 2rem;
      font-weight: 500;
      color: #64748b;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .filter-btn.active {
      background: #3b82f6;
      color: white;
      border-color: #3b82f6;
    }
    
    .filter-btn:hover {
      border-color: #3b82f6;
      color: #3b82f6;
    }
    
    @media (max-width: 768px) {
      .news-header h1 {
        font-size: 2rem;
      }
      
      .news-grid {
        grid-template-columns: 1fr;
      }
      

    }