.banner-blog-single {
  height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: var(--branco);
}
.banner-blog-single h1,
.banner-blog-single p {
  text-align: center;
}
.post-info {
  display: flex;
  margin-top: 40px;
  gap: 30px;
  font-weight: 700;
}
.post-info div {
  gap: 10px;
  display: inline-grid;
  grid-template-columns: auto auto;
  place-items: center;
}
.post-content {
  background: var(--branco);
  border-radius: 80px;
  padding: 100px 200px;
  margin-top: -100px;
  overflow: hidden;
}
.post-content img {
  max-width: 100%;
  height: auto;
}
.share-buttons {
  margin-block: 70px 60px;
}
.share-buttons span {
  font-weight: 800;
  font-size: 20px;
  line-height: 27px;
  color: var(--cinza-escuro);
}
.share-buttons a {
  padding: 19px 25px;
  background: #f1f0f1;
  border-radius: 22px;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  color: var(--cinza-escuro);
  text-decoration: none;
  margin-inline: 5px;
}
.divisor {
  position: relative;
  height: 1px;
  background: var(--cinza-claro-2);
}
.divisor::before {
  content: "";
  height: 1px;
  background: var(--cinza-claro-2);
  width: 50%;
  display: block;
  left: -50%;
  position: absolute;
}
.divisor::after {
  content: "";
  height: 1px;
  background: var(--cinza-claro-2);
  width: 50%;
  display: block;
  right: -50%;
  position: absolute;
}
.comment {
  padding-top: 88px;
}
#reply-title {
  font-weight: 800;
  font-size: 20px;
  line-height: 27px;
  margin-bottom: 30px;
}
#author,
#email {
  border: 1px solid var(--cinza-claro-3);
  border-radius: 22px;
  height: 60px;
  width: 100%;
  padding-left: 40px;
}
#author::placeholder,
#email::placeholder {
  color: var(--cinza-escuro);
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
}
#comment {
  border: 1px solid var(--cinza-claro-3);
  border-radius: 22px;
  width: 100%;
  min-height: 125px;
  padding: 30px 40px;
}
#comment::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: var(--cinza-escuro);
}
.form-submit {
  margin-top: 30px;
}
.form-submit .submit {
  background: var(--cinza-claro-3);
  border-radius: 22px;
  border: none;
  font-weight: 800;
  font-size: 20px;
  line-height: 27px;
  color: var(--branco);
  padding: 22px 32px;
}
.comment-form-cookies-consent {
  display: none;
}
@media (max-width: 1400px) {
  .post-content {
    padding: 100px;
  }
}
@media (max-width: 991px) {
  .share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .share-buttons span {
    width: 100%;
  }
  .post-content {
    padding: 30px;
    border-radius: 30px;
  }
}
