#news-cards-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.news__card {
  background-color: #1A2533;
  color: #DFE5EE;
  height: 460px;
  width: 300px;
  border-radius:24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 21px
}

.news__title {
  margin: 50px 7%;
  text-transform: uppercase;
  color: #1A2533;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}

.news__title__title {
  margin: 0;
  width: 242px;
  font-weight: 500;
  font-size: 46px;
  line-height: 18px;
  border-bottom: 12px solid #CBD42F;
}

.news__title__subtitle {
  margin: 0;
  font-size: 58px;
  line-height: 50px;
  color: #1A2533;
}

.news__paragraph {
  margin: 0px 7% 40px 7%;
  text-align: flex-start;
}

.news__paragraph__title {
  margin: 0;
  font-weight: 500;
  font-size: 32px;
  line-height: 40px;
  color: #1A2533;
  width: fit-content;
}

.news__paragraph__content {
  margin: 10px 0 0 0;
  font-size: 18px;
  line-height: 28px;
  color: #1A2533;
}

.news__search-container {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 20px;
  margin: 0px 7% 60px 7%;
}

.news__search-input {
  width: 300px;
  padding: 10px 15px;
  border-radius: 10px;
  border: 1px solid #1A2533;
  font-size: 12px;
  padding: 12px;
}


@media(max-width: 991px) {
  .news__title {
    margin: 7%;
    text-transform: uppercase;
    color: #1A2533;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .news__title__title {
    margin: 0;
    width: 139px;
    font-weight: 500;
    font-size: 26px;
    line-height: 8px;
    border-bottom: 12px solid #CBD42F;
  }
  
  .news__title__subtitle {
    margin: 0;
    font-size: 38px;
    line-height: 38px;
    color: #1A2533;
  }

  .news__search-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    margin: 0px 7% 80px 7%;
  }
}

