.section.blog_posts {
  padding: 80px 0;
  background-color: #fff;
  text-align: center;
}

.section.blog_posts .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section.blog_posts h2 {
  font-size: 36px;
  color: #4b3b11;
  font-weight: 700;
  margin-bottom: 20px;
}

.section.blog_posts .descricao {
  font-size: 16px;
  color: #666;
  max-width: 720px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

.section.blog_posts .posts-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.section.blog_posts .post-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  width: 100%;
  max-width: 360px;
  background: #fff;
  border: 1px solid #e5e5e5;
  transition: all 0.3s ease;
}

.section.blog_posts .post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}


.section.blog_posts .post-thumb {
  width: 100%;
  aspect-ratio: 352 / 222 !important;
  overflow: hidden;
  display: block;
}

.section.blog_posts .post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.section.blog_posts .post-info {
  padding: 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: nowrap;
  align-items: flex-end;
  height: 48%;
}

.section.blog_posts .post-info h3 {
  font-size: 18px;
  font-weight: 700;
  color: #4b3b11;
  margin-bottom: 20px;
  line-height: 1.4;
}

.section.blog_posts .leia-mais {
  font-size: 14px;
  font-weight: 600;
  color: #867040;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: underline;
}
