.news-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.go-to-details {
  width: 100%;
}

.news-card {
  background: #00006a0a;
  border-radius: 10px;
  border: 3px solid #00006a14;
  padding: 10px;
  width: 100%;
  height: 550px;
  transition: 0.25s ease-in-out;
}

.news-card:hover {
  border: 3px solid #00006a92;
}

.news-img {
  position: relative;
  height: 250px;
}

.news-img>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
}

.news-date {
  position: absolute;
  left: 0.5rem;
  top: 0.5rem;
  background: var(--darkBlue);
  padding: 0.3rem 1rem;
  padding-top: 0.5rem;
  border-radius: 20rem;
}

.news-date>p {
  font-size: 14px;
  color: #FFFF;
}

.news-title {
  font-size: 20px;
  margin-top: 1rem;
  color: var(--darkBlue);
  font-weight: 700;
}

.news-summery {
  margin-top: 1rem;
  color: black;
}

/* media  */

@media screen and (min-width: 576px) {
  .news-img {
    height: 350px;
  }
}

@media screen and (min-width: 768px) {
  .go-to-details {
    width: 48%;
  }

  .news-img {
    height: 250px;
  }
}

@media screen and (min-width: 992px) {}

@media screen and (min-width: 1200px) {
  .go-to-details {
    width: 32%;
  }
}

@media screen and (min-width: 1400px) {}