.all_newsletter_header_conteinar{
    width: 100%;
    height: auto;
    /* padding-top: 110px; */
    background-image: url(../../image/news-background.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    
}
.all_newsletter_header_conteinar{
    height: auto;
    height: 28vh;
    margin: auto;
    text-align: center
}
.all_newsletter_header_conteinar_header{
  position: absolute;
  right: 50px;
}
.all_newsletter_header_conteinar_header h1{
   color: #fff;
    font-size: 35px;
    padding-top: 55px;
}
.all_newsletter_header_conteinar_header p{
    color: #fff;
    font-size: 15px;
}
.all_newsletter_header_conteinar_header p a{
  text-decoration: none;
  color: #fff;
}

  /* --- MAIN CONTAINER --- */
  .news_page_container {
      max-width: 95%;
      margin: 0 auto;
      padding: 10px;
  }

  /* --- CONTROL BAR (Search & Title) --- */
  .news_page_controls {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      padding-bottom: 15px;
      border-bottom: 2px solid #1e2a78;
      margin-bottom: 30px;
      gap: 15px;
  }

  .news_page_title_wrapper {
      display: flex;
      align-items: center;
      gap: 10px;
      color: #1e2a78;
      font-weight: 700;
      font-size: 1.2rem;
  }

  .news_page_total_count {
      font-weight: 400;
      color: #666;
      font-size: 0.9rem;
  }

  .news_page_search_box {
      position: relative;
      width: 300px;
  }

  .news_page_search_input {
      width: 100%;
      padding: 10px 15px;
      border: 1px solid #ccc;
      border-radius: 4px;
      font-size: 0.9rem;
      font-family: inherit;
  }

  /* --- GRID LAYOUT --- */
  .news_page_grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr); /* 2 Columns */
      gap: 20px;
  }

  /* --- CARD DESIGN --- */
  .news_page_card {
      background: white;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
      display: flex;
      align-items: center;
      padding: 5px;
      border: 1px solid #f0f0f0;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .news_page_card:hover {
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.12);
  }

  /* Date Box (Left) */
  .news_page_date_box {
      background-color: #1e2a78;
      color: white;
      width: 80px;
      height: 80px;
      border-radius: 8px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-right: 20px;
      line-height: 1.2;
  }

  .news_page_date_day { font-size: 1.4rem; font-weight: 700; }
  .news_page_date_month { font-size: 0.75rem; }
  .news_page_date_year { font-size: 0.75rem; }

  /* Content (Middle) */
  .news_page_content {
      flex-grow: 1;
      padding-right: 15px;
  }

  .news_page_title {
      font-size: 1rem;
      font-weight: 500;
      color: #333;
      line-height: 1.5;
  }

  /* Download Btn (Right) */
  .news_page_download_btn {
      width: 45px;
      height: 45px;
      border: 1px solid #1e2a78;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--news-red);
      flex-shrink: 0;
      text-decoration: none;
      transition: all 0.2s;
      position: relative;
  }

  .news_page_download_btn i { 
    font-size: 1.2rem; 
    color: red;
  }
  
  

  .news_page_download_btn:hover {
      background-color: #f5f5f5;
  }

  /* --- RESPONSIVE --- */
  @media (max-width: 768px) {
      .news_page_grid {
          grid-template-columns: 1fr;
      }
      .news_page_header_section {
          padding: 30px 20px;
      }
      .news_page_controls {
          flex-direction: column;
          align-items: stretch;
      }
      .news_page_search_box { width: 100%; }
  }