@import url(../template-parts/blog/card-post.css);

.banner_post {
  height: 25rem;
}

.post_main {
  margin-top: 4.375rem;
  margin-bottom: 5rem;
}

.badge_cat {
  gap: 8px;
  border-radius: 12px;
  padding: 4px 12px;
  background-color: #006d371a;
  color: #006d37;
  max-width: max-content;
  margin: 0 auto 1.5rem;
}

.badge_cat > span {
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.4;
}

.badge_cat > span::first-letter {
  text-transform: uppercase;
}

.post_title {
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1;
  letter-spacing: -1.2px;
  color: var(--primary);
  text-align: center;
  margin-bottom: 3.75rem;
}

.post_content {
  gap: 2rem;
  color: var(--primary-hover);
}

.post_content > p {
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.6;
}

.post_content > h2 {
  font-size: 1.875rem;
  line-height: 1.2;
}

.post_content > h3 {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.3;
}

.post_content > h2,
.post_content > h3 {
  color: var(--primary);
}

.post_content > blockquote {
  background-color: #f5f3f3;
  border-left: 4px solid #006d37;
  border-radius: 8px;
  padding: 2rem 36px;
}

.post_content > blockquote > p {
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.5;
  color: #00743a;
}

.post_content > ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.post_content > ul > li {
  font-size: 1.125rem;
  line-height: 1.6;
}

.banner_logistica {
  background: #273c97;
  color: var(--white);
  padding: 2.5rem;

  text-align: center;
}

.banner_logistica > h3 {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.3;
  margin-bottom: 12px;
}

.banner_logistica > p {
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.banner_logistica > a {
  background: #89ad2e;
  border-radius: 8px;
  padding: 12px 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.6;

  width: 100%;

  color: currentColor;

  transition: all 0.5s ease;
}

.banner_logistica > a:hover {
  background-color: #00743a;
}

#produtos_relacionados {
  margin-bottom: 10.25rem;
}

.title_chamada {
  gap: 8px;
  margin-bottom: 4rem;
}

.title_chamada > span {
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--primary-hover);
}

.title_chamada > h2 {
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--primary);
}

.grid_products {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 1.5rem;
}

@media (min-width: 1200px) {
  .banner_post {
    height: 33.5rem;
  }

  .post_title {
    font-size: 3.75rem;
  }

  .post_main > .container {
    padding-inline: 6.875rem;
  }

  .banner_logistica {
    padding: 2.5rem 18rem;
  }

  .banner_logistica > a {
    width: fit-content;
    margin: 0 auto;
  }

  .title_chamada > h2 {
    font-size: 3rem;
  }

  .grid_products {
    grid-template-columns: repeat(3, 1fr);
  }
}
