.news-header {
    padding-top: 4rem;
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .news-header h1 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
  }
  
  .news-header p {
    color: #555;
    font-size: 1rem;
  }
  
  /* GRID VIEW */
  .news-container {
    padding: 4rem 0;
  }
  .news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 2rem;
  }
  
  .news-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
  }
  .news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.12);
  }
  .news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  .news-card .news-content {
    padding: 1.5rem;
  }
  .news-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.6rem;
  }
  .news-card p {
    color: var(--text-dark);
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
  }
  .news-date,
  .news-meta {
    color: #777;
    font-size: 0.85rem;
  }
  
  /* SINGLE NEWS */
  .single-news {
    background: #fff;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  }
  .single-news-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 0.8rem;
    margin-bottom: 1.5rem;
  }
  .single-news h1 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
  }
  .single-news-body {
    margin-top: 1rem;
    line-height: 1.7;
    color: #333;
  }
  .news-author {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #777;
  }
  .back-btn {
    display: inline-block;
    margin-top: 1.5rem;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 0.7rem 1.3rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  .back-btn:hover {
    background: #0f36b5;
  }

  /* NEWS CONTAINER */
.news-container {
    padding: 4rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }
  
  /* FEATURED NEWS LAYOUT */
  .news-featured {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: stretch;
  }
  
  /* COVER ARTICLE */
  .featured-left .news-card {
    position: relative;
    height: 100%;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  
  .featured-left img {
    width: 100%;
    height: 420px;
    object-fit: cover;
  }
  
  .featured-left .news-content {
    padding: 1.8rem;
  }
  
  .featured-left h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
  }
  
  /* SIDE ARTICLES */
  .featured-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .featured-right .news-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,0.05);
    padding: 0.8rem;
  }
  
  .featured-right img {
    width: 100%;
    border-radius: 0.6rem;
    object-fit: cover;
  }
  
  .featured-right .news-content {
    flex: 1;
    padding: 0.2rem 0;
  }
  
  .featured-right h3 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
  }
  
  .featured-right p {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 0.3rem;
  }
  
  .featured-right .read-more {
    font-size: 0.85rem;
  }
  
  /* NEWS GRID BELOW FEATURED */
  .news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
  }
  
  /* RESPONSIVE */
  @media (max-width: 992px) {
    .news-featured {
      grid-template-columns: 1fr;
    }
  
    .featured-left img {
      height: 300px;
    }
  
    .featured-right {
      flex-direction: row;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
    }
  
    .featured-right .news-card {
      flex: 0 0 250px;
      scroll-snap-align: start;
    }
  }
  
  
  /* RESPONSIVE */
  @media (max-width: 768px) {
    .single-news {
      padding: 1.5rem;
    }
  }
  