#blog-posts {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 50px;
}

/* HERO DO BLOG */
.blog-hero {
  max-width: 1100px;
  margin: 80px auto 50px;
  padding: 0 20px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.titulo-com-barra {
  position: relative;
  display: inline-block;

  padding-left: 18px;
  margin: 0;

  font-family: "Cormorant SC", serif;
  font-size: 32px;
  font-weight: 500;

  color: #4f6348;
}

.titulo-com-barra::before {
  content: "";
  position: absolute;

  left: 0;
  top: 50%;

  transform: translateY(-50%);

  width: 5px;
  height: 38px;

  background: #4f6348;
}

.blog-hero p {
  align-self: center;

  margin-top: 16px;
  max-width: 700px;

  text-align: center;

  font-size: 18px;
  line-height: 1.8;

  color: #6a665f;
}

/* LISTA */
.blog-lista {
  width: 100%;
  max-width: 1200px;

  margin: 0 auto;
  padding: 0 20px;
}

#blog-posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
  margin-top: 50px;
}

.blog-card {
  display: flex;
  flex-direction: column;

  background: #fcfaf7;
  border-radius: 28px;

  overflow: hidden;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: 0.4s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 320px;

  object-fit: contain;

  background: #f8f6f2;
}

.blog-info {
  padding: 30px 28px;

  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;
}

.blog-card h2 {
  font-size: 36px;
  line-height: 1.1;
}

.blog-card .content {
  max-width: 100%;
}


/* CONTEÚDO COMPLETO */
.full-content {
  margin-top: 20px;

  text-align: left;
  line-height: 2;
}

.full-content p {
  margin-bottom: 18px;
}

.full-content strong {
  font-weight: 700;
  color: #4f6348;
}

.full-content em {
  font-style: italic;
}

.full-content ul,
.full-content ol {
  margin: 18px 0;
  padding-left: 25px;
}

.full-content li {
  margin-bottom: 10px;
}

/* BOTÃO */
.blog-card button,
.read-more {
  margin-top: 25px;

  background: #a8be87;
  color: white;

  border: none;
  border-radius: 40px;

  padding: 14px 34px;

  font-size: 16px;

  cursor: pointer;

  transition: 0.3s ease;
}

.blog-card button:hover,
.read-more:hover {
  background: #90a66f;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .blog-hero {
    margin: 50px auto 35px;
  }

  .blog-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .blog-card img {
    height: 280px;
  }

  .blog-card h2 {
    font-size: 38px;
  }

  .full-content {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .titulo-com-barra {
    font-size: 30px;
  }

  .blog-hero p {
    font-size: 17px;
  }

  .blog-card {
    border-radius: 22px;
    padding: 20px;
  }

  .blog-card img {
    height: 230px;
  }

  .blog-card h2 {
    font-size: 32px;
  }

  .blog-card .content {
    font-size: 17px;
  }
}