.news-heading {
  background: rgb(253, 23, 119) !important;/* Warm orange to green */
  color: white;
  text-align: center;
  padding: 12px 24px;
  margin-left:10px;
  border-radius: 8px;
  text-transform: capitalize;
  font-weight: 600;
  font-size: 1.75rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}



.news-section {
  padding-left: 30px;
    padding: 40px 0;
  }

  
  .news-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .news-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    flex: 1 1 100%;
    max-width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
  }

  .news-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  }

  .news-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #111;
  }

  .news-desc {
    flex-grow: 1;
    font-size: 0.95rem;
    color: #444;
  }

  .news-link {
    margin-top: 15px;
    font-size: 0.95rem;
    font-weight: bold;
    color: #007BFF;
    text-decoration: none;
  }

  .news-link:hover {
    text-decoration: underline;
  }




  /* Mobile - square hero slider */
@media (max-width: 767px) {
  .news-card {
      flex: 1 1 calc(50% - 20px);
      max-width: calc(50% - 20px);
    }
    .news-heading {
      padding: 5px 8px;
      font-size: 1.6rem;
    }
}

/* Tablet - square hero slider */
@media (min-width: 768px) and (max-width: 1024px) {
  .news-card {
      flex: 1 1 calc(33.333% - 20px);
      max-width: calc(33.333% - 20px);
    }
}


