

/* Estilo do container principal */
.container {
  max-width: 980px;
  margin: 0 auto;
  padding: 20px;
  /* Removido o fundo e bordas */
}

/* Estilo do título */
h1 {
  font-size: 20px;
  font-weight: normal; /* Título mais clean */
  color: #338E6A; /* Cor mais suave */
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

/* Estilo das postagens */
.posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Estilo individual de cada post */
.post {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 2px solid #eee;
}

.post h2 {
  font-size: 1.0em; /* Título mais discreto */
  font-weight: bold;
  padding: 15px;
  margin-bottom: 10px;
  color: #333; /* Cor mais suave */
}

.post p {
  padding: 0 15px;
  margin-bottom: 0px;
  font-size:13px;
}

.post a {
  display: inline-block;
  text-decoration: none;
  color: #338E6A;
  padding: 6px 12px; /* Botão menor e mais clean */
  margin: 0 15px 15px;
  border: 2px solid #338E6A;
  border-radius: 5px;
  font-weight: bold;
  font-size: 0.7em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.post a:hover {
  background-color: #338E6A;
  color: white;
}

/* Efeito de hover nos posts */
.post:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
  .posts {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .posts {
    grid-template-columns: 1fr;
  }

  .post h2 {
    font-size: 1.3em;
  }
}

hr.style-six {
    border: 0;
    height: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
