.container {
  max-width: 900px;
  margin: 20px auto;
  padding: 0 15px;
}


.container h1 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 4rem;        /* Maior */
  background: #0073aa;      /* Azul WP */
  color: #fff;
  padding: 20px 0;          /* Espaço acima/abaixo */
  border-radius: 40px; 
	text-shadow: 0 1px 4px rgba(0,0,0,0.9);	
	box-shadow: 0 3px 10px rgba(0,0,0,0.5);

}

/* Destaques */
.highlight-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.highlight {
  flex: 1 1 400px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  padding: 20px;
  transition: transform .2s;
}
.highlight:hover {
  transform: translateY(-4px);
}

.highlight h2 {
  margin-top: 0;
  font-size: 1.5rem;
  color: #0073aa;
  border-bottom: 2px solid #0073aa;
  padding-bottom: 8px;
}

/* Search e Sort */
.search-sort {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 10px;
}

.search-sort input[type="text"],
.search-sort select {
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-size: 1rem;
  width: 100%;
  max-width: 300px;
}

/* Lista de posts */
.posts-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Botões de post */
.post-button {
  display: block;
  background: #fff;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  text-decoration: none;
  color: #333;
  transition: background .2s, transform .2s;
}
.post-button:hover {
  background: #e5f3ff;
  transform: translateY(-2px);
}

.post-button h3 {
  margin: 0 0 8px;
  font-size: 1.6rem;       /* Título maior */
  color: #0073aa;
}
.post-button p {
  margin: 0;
  color: #555;
  line-height: 1.5;
}