
  * {
    box-sizing: border-box;
  }

  body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #fff;
    color: #333;
  }

  .section {
    padding: 20px;
    max-width: 1200px;
    margin: auto;
  }

  .section h2 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
  }

  .top-featured {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
  }

  .featured-main,
  .featured-side {
    background-color: #f2f2f2;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }

  .featured-main {
    display: flex;
    flex-direction: row;
    flex-grow: 1;
  }

  .featured-main .text-side {
    flex: 1;
    padding: 20px;
  }

  .featured-main .text-side .news-title {
    font-size: 1.6rem;
    font-weight: bold;
    color: #b32024;
    margin-bottom: 10px;
  }

  .featured-main .text-side .news-snippet {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #333;
  }

  .featured-main .text-side .author {
    font-weight: bold;
    font-size: 0.85rem;
    color: #b32024;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .featured-main .text-side .author span {
    background: #e5f7f6;
    color: #333;
    border-radius: 12px;
    padding: 2px 8px;
    font-size: 0.75rem;
  }

  .featured-main .text-side .news-meta {
    font-size: 0.8rem;
    color: #777;
    margin-top: 5px;
  }

  .featured-main .image-side {
    flex: 1;
    min-height: 250px;
  }

  .featured-main .image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .featured-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    
  }

  .featured-side .news-content {
    padding: 15px;
  }

  .news-title {
    font-size: 1rem;
    font-weight: bold;
    color: #b32024;
    margin-bottom: 10px;
  }
  h4 .feat-title {
    font-size: 3rem;
    font-weight: bold;
    color: #b32024;
    margin-bottom: 10px;
  }
  .news-meta {
    font-size: 0.8rem;
    color: #777;
  }

  .author {
    font-weight: bold;
    font-size: 0.8rem;
    color: #b32024;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 5px;
  }

  .author span {
    background: #e5f7f6;
    color: #333;
    border-radius: 12px;
    padding: 2px 8px;
    font-size: 0.7rem;
  }

  .four-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .news-card {
    background: white;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-radius: 0;
   
  }
  
.news-snippet {
  font-family:'Open Sans', sans-serif; ;
  font-size: 14px;
  font-weight: 400;
  color: #374151 !important; /* Soft gray */
  line-height: 1.6;
  letter-spacing: 0.2px;
}

  .news-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
    border-radius: 0;
  }

  .news-content {
    padding: 15px;
  }

  /* Responsive layout */
  @media (max-width: 992px) {
    .four-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .top-featured {
      grid-template-columns: 1fr;
    }

    .featured-main {
      flex-direction: column;
    }
  }

  @media (max-width: 600px) {
    .four-grid {
      grid-template-columns: 1fr;
    }

    .section h2 {
      font-size: 1.5rem;
    }

    .featured-main .text-side .news-title {
      font-size: 1.3rem;
    }

    .news-card img {
      height: 160px;
    }
  }

