#noticias-listagem {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.noticia-card {
  background: #ecf3e4;
  border-radius: 20px;
  padding: 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.noticia-card img {
  width: 100%;
  border-radius: 10px;
}
.noticia-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  margin: 0.5rem 0;
  color: #444;
}
.tag {
  background-color: #4CAF50;
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: bold;
}
#carregar-mais {
  display: block;
  margin: 2rem auto;
  padding: 1rem 2rem;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1.2rem;
  cursor: pointer;
}

@media only screen and (max-width: 600px) {
  .noticia-card{
     width: 100% !important;
  }
}

@media only screen and (min-width: 601px) {
  .noticia-card{
     width: 30% !important;
  }
}
