/*body {
/*  font-family: 'Montserrat', sans-serif;*/
  /*margin: 0;
  background-color: #f9f9f9;
  /*padding: 20px;*/
/*}*/

.noticias-container {
  font-family: 'Montserrat', sans-serif;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Estilo base para cada item */
.noticia-item {
  background-color: white;
  border: 1px solid #ddd;
  padding: 10px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.noticia-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 5px;
}
.linknews{
  text-decoration: none;
}

.data-hora {
  font-size: 0.9rem;
  color: #777;
  margin-top: 8px;
}

.titulo-noticia {
  font-size: 1.1rem;
  color: #111;
  margin-top: 5px;
}

/* Tablets maiores (2 colunas) */
@media (min-width: 469px) {
  .noticias-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .noticia-item {
    width: 48%;
  }
}

/* Desktops (3 colunas) */
@media (min-width: 680px) {
  .noticia-item {
    width: 30%;
  }

  .titulo-noticia {
    font-size: 1.2rem;
  }

  .data-hora {
    font-size: 1rem;
  }
}
