.news-section-home-page{
  margin:0px  70px;
}
@media screen and (max-width: 768px) {
  .news-section-home-page{
    margin:0px;
  }
}
.news-section-home-page img{
  border-radius: 5px;
}
.news-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 10px;
  gap: 20px;
}
.news-heading {
  font-weight: bold;
  font-size: 50px;
  margin-top: 20px;
  text-align: center;
}
.news-subheading{
  text-align: center;
  padding: 10px;
  width: 50%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .news-subheading{
    font-size: 12px;
    width: 100%;
  }
}
.news-wrapper img:hover {
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  transform: scale(0.9);
}
.news-left {
  width: 65%;
}
.news-wrapper p {
  text-align: justify;
}
.news-featured, .news-secondary-card {
  width: 100%;
  /* border: 2px solid green; */
  background-color:#F4F5FC;
  padding: 10px;
  border-radius: 4px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.news-featured img{
  width: 100%;
  height: 200px;
  /* border-radius: 12px; */
}
.news-secondary-group {
  display: flex;
  gap: 24px;
  padding: 10px 0px;
  border-radius: 4px;
}
.news-secondary-card img {
  width: 300px;
  height: 150px;
}
.news-featured p:hover,
.news-secondary-card p:hover,
.news-card p:hover {
  text-decoration: underline;
  cursor: pointer;
}
.news-cta {
  display: flex;
  flex-direction: row;
}
.news-cta a {
  margin-top: 15px;
  font-size: 20px;
  margin-left: -29px;
  font-weight: 600;
  text-decoration: none;
}
.news-cta-icon {
  font-weight: 900;
  background-image: linear-gradient(314deg, #d7ffcd 0%, #0ac80a 74%);
  height: 50px;
  width: 50px;
  border-radius: 50%;
  margin: 10px;
  padding: 10px;
}
.news-card {
  background-color: #F4F5FC;
  /* border: 2px solid green; */
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  margin: 10px;
  padding: 25px;
  border-radius: 4px;
  color: black;
}
.news-card-body {
  display: flex;
  gap: 23px;
}
.news-card-body img {
  height: 80px;
  width: 200px;
}
.news-card-body i {
  color: green;
}
.news-card-meta {
  display: flex;
  gap: 23px;
}
.news-card-meta h5 {
  color: rgb(11, 94, 11);
  font-weight: 600;
  font-size: 14px;
}
.news-card-meta i,
.news-card-meta h6 {
  color: gray;
  font-weight: 600;
  font-size: 14px;
}
.news-card-list {
  display: flex;
  flex-direction: column;
  margin: -9px 0px;
}
.news-right {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .news-wrapper {
    flex-direction: column;
    margin: 0;
    padding: 15px;
    gap: 10px;
  }
  .news-left {
    width: 100%;
  }
  .news-secondary-group {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .news-wrapper img {
    height: 100%;
    width: 100%;
  }

  .news-card-body{
    flex-direction: row;
    /* margin: none; */
  }
  .news-card-body img{
    width: 100px;
    height: 100px;
  }

}
