/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Oct 05 2022 | 14:09:58 */
.lista_galeria {
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto auto auto;
  grid-gap: 10px;
}

.item {
  font-family: "Panton";
  width: 100%;
  display: none;
  
  color: #141414;
}

.lista_galeria .item:nth-child(1),
.lista_galeria .item:nth-child(2),
.lista_galeria .item:nth-child(3), 
.lista_galeria .item:nth-child(4), 
.lista_galeria .item:nth-child(5), 
.lista_galeria .item:nth-child(6) {
  display: block;
}

.conteudo_post {
  background-color: #fff;
  margin-top: 0;
  padding: 20px;
  border-radius: 8px;
  height: 100%;
}

.data_post {
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 17px;
}

.title_post {
  font-weight: 800;
  font-size: 20px;
} .title_post a {
  font-weight: 800;
  font-size: 20px;
  color: #141414;
} .title_post a:hover {
  font-weight: 800;
  font-size: 20px;
  color: #141414;
}

.text_desc {
  font-size: 14px;
  margin-bottom: 10px;
}

.load-more {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
  width: 100%;
}
.load-more a {
  background-color: #FD613C;
  border-radius: 5px;
  padding: 10px 40px;
  font-size: 20px;
  color: #141414;
  text-decoration: none;
  font-family: "Panton";
}

.thumb_post {
  margin-bottom: 10px;
}

@media (max-width: 999px) {
  .lista_galeria {
    width: 90%;
    margin: 0 auto;
    display: flex;
    grid-gap: 10px;
    flex-direction: column;
  }

  .conteudo_post {
    height: auto;
  }
  .item {
    margin-bottom: 10px;
  }
}