:root {
  --primary: #61a745;
  --secondary: #252c32;
  --white: #fff;
  --base-transition: all 0.3s ease-in-out;
}

.blog-details-title {
  color: var(--secondary);
  font-family: "Kumbh Sans";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 132%;
  letter-spacing: -0.48px;
  margin-top: 20px;
}
.blog-details-img {
  height: 363px;
  margin-top: 20px;
}
.blog-details-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.related-posts {
  margin-top: 71px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.related-posts .item {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.related-posts .item-left {
  width: 100%;
}
.related-posts .img-content {
  width: 100%;
  height: 280px;
}
.related-posts .img-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.related-posts .post-title {
  color: #111;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 27px;
}
.related-posts .post-text {
  margin-top: 12px;
  color: #666;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}

/* form */
.leave-a-reply {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}
.leave-a-reply .form-title {
  color: var(--secondary);
  font-family: "Kumbh Sans";
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 132%;
  letter-spacing: -0.64px;
}
.leave-a-reply .form-sub-title {
  color: #111;
  font-family: "Kumbh Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 132%;
  letter-spacing: -0.32px;
  margin-top: 31px;
}
.leave-a-reply button {
  border: none;
  outline: none;
}
.leave-a-reply form {
  width: 100%;
}
.leave-a-reply form input,
.leave-a-reply form textarea {
  width: 100%;
  border: 1px solid #ddd;
  color: var(--secondary);
  font-family: "Kumbh Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 164%; 
  padding: 8px 12px;
  outline: none;

}
.leave-a-reply form textarea {
    height: 128px;
}
.leave-a-reply .img-content {
  width: 45%;
  display: none;
}
.leave-a-reply .img-content img {
  width: 100%;
}
.leave-a-reply .form-items {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media screen and (min-width: 769px){
  .related-posts .item {
    display: flex;
    flex-direction: row;
    gap: 34px;
  }
  .related-posts .item-left {
    width: 75%;
  }
  .related-posts .img-content {
    width: 25%;
    height: 340px;
  }
}

@media screen and (min-width: 1300px){
  .related-posts .item {
    display: flex;
    flex-direction: row;
    gap: 64px;
  }
  .leave-a-reply .form-sub-title {
    color: #111;
    font-family: "Kumbh Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 132%;
    letter-spacing: -0.32px;
    margin-top: 51px;
  }
  .leave-a-reply .form-title {
    color: var(--secondary);
    font-family: "Kumbh Sans";
    font-size: 32px;
  }
  .leave-a-reply form input,
.leave-a-reply form textarea {
  width: 100%;
  border: 1px solid #ddd;
  color: var(--secondary);
  font-family: "Kumbh Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 164%; 
  padding: 16px 22px;
  outline: none;

}
  .leave-a-reply form textarea {
    height: 238px;
}
  .leave-a-reply form {
    width: 55%;
  }
  .leave-a-reply .img-content {
    display: block;
  }
  .leave-a-reply {
    display: flex;
    gap: 142px;
    margin-top: 200px;
  }
  .related-posts .post-text {
    margin-top: 40px;
    color: #666;
    font-size: 16px;
  }
  .related-posts .post-title {
    color: #111;
    font-size: 18px;
  }
  .blog-details-img {
    height: 763px;
    margin-top: 86px;
  }
  .blog-details-title {
    color: var(--secondary);
    font-family: "Kumbh Sans";
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 132%;
    letter-spacing: -0.48px;
    margin-top: 130px;
  }
}
