﻿    /* News Section Styles */
    #homeNewsGrid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
    
    @media (max-width: 1024px) {
      #homeNewsGrid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    
    @media (max-width: 768px) {
      #homeNewsGrid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
      }
      
      .news-section {
        padding: 2rem 0;
      }
      
      .news-card-content {
        padding: 1.25rem;
      }
      
      .news-card-title {
        font-size: 1.125rem;
      }
      
      .news-card-excerpt {
        font-size: 0.875rem;
        margin-bottom: 1.25rem;
      }
    }
    
    @media (max-width: 480px) {
      .news-card-image {
        height: 160px;
      }
      
      .news-card-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
      }
      
      .news-date,
      .news-category {
        display: inline-block;
        white-space: nowrap;
      }
      
      .news-card-content {
        padding: 1rem;
      }
      
      .news-card-title {
        font-size: 1rem;
      }
      
      .news-card-excerpt {
        font-size: 0.8125rem;
      }
    }
    
    .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-image {
      position: relative;
      height: 200px;
      overflow: hidden;
    }
    
    .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);
    }