/* Hero Section */
    .hero-section {
      position: relative;
      background: url('https://picsum.photos/1920/800?news,charity') center/cover no-repeat;
      height: 55vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }
    .hero-section::before {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.6);
    }
    .hero-section h1 {
      position: relative;
      color: #ffc107;
      font-size: 3rem;
      font-weight: bold;
      z-index: 1;
    }

    /* Horizontal News Card */
    .news-card {
      display: flex;
      flex-direction: row;
      background: #fff;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 8px 25px rgba(0,0,0,0.15);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .news-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    }
    .news-img {
      flex: 1;
    }
    .news-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      min-height: 220px;
    }
    .news-content {
      flex: 2;
      padding: 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .news-title {
      font-size: 1.4rem;
      font-weight: bold;
      margin-bottom: 8px;
    }
    .news-meta {
      font-size: 0.9rem;
      color: #555;
      margin-bottom: 12px;
    }
    .btn-news {
      margin-top: auto;
      background: #ffc107;
      color: #000;
      font-weight: 600;
      padding: 8px 18px;
      border-radius: 30px;
      text-decoration: none;
      display: inline-block;
      transition: 0.3s;
    }
    .btn-news:hover {
      background: #e0a800;
      color: #fff;
    }

    /* Responsive Fix */
    @media(max-width: 768px) {
      .news-card {
        flex-direction: column;
      }
      .news-img img {
        height: 200px;
      }
    }
