.noticias__noticia {
  padding: 1rem;
  border-radius: 15px;
  margin-bottom: 3rem;
  transition: 0.3s all;
}

.noticias__noticia--img img {
  max-width: 100%;
  margin-left: 50%;
  transform: translateX(-50%);
}

.noticias__noticia--titulo h2 {
  color: #353b46;
  font-weight: 600;
  margin-bottom: 0;
}

.noticias__noticia--data p {
  font-weight: 600;
  color: #353b46;
}

.noticias__noticia--texto p {
  font-size: 18px;
  text-align: justify;
}

.noticias__noticia--leia-mais a {
  background-color: #909090;
  color: white;
  outline: none;
  font-size: 16px;
  font-weight: 600;
}

.noticias__noticia--leia-mais a:hover {
  background-color: #707070;
  color: white;
}

.noticias__noticia:hover {
  background-color: #efefef;
}

