body {
  margin: 0;
  font-family: "Gilroy", sans-serif;
  background-color: #FEFFF0;
}
.post-details-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 56px;
}
.post-details-container .post-cover {
  width: 100%;
  height: 272px;
  object-fit: cover;
  border-radius: 12px;
}
.post-details-container .post-details {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  margin-top: 64px;
}
.post-details-container .post-details .post-title {
  font-family: "Gilroy", sans-serif;
  color: #3A3731;
  font-weight: 600;
  font-size: 32px;
}
.post-details-container .post-details .post-category {
  min-width: fit-content;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  color: #626C38;
  border: 1px solid #626C38;
  height: fit-content;
}
.post-details-container .post-details .post-date {
  min-width: fit-content;
  font-size: 24px;
  font-weight: 600;
  color: #3A3731;
  margin: 0;
}
.post-details-container .post-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 60%;
}
.post-details-container .post-content h2 {
  margin-top: 48px;
  margin-bottom: 18px;
}
.post-details-container .post-content p {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  text-align: left;
  word-break: break-word;
  font-size: 18px;
}
.post-details-container .post-content img {
  width: 300px;
  height: auto;
}
.comment-form-container {
  margin-left: 168px;
}
.comment-form-container #comment-form {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.comment-form-container #comment-form .comment-field {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 876px;
}
.comment-form-container #comment-form .comment-field .textarea {
  padding: 10px 16px;
  border: none;
  background-color: #E8F4CB;
  width: 100%;
  height: 112px;
  border-radius: 12px;
  font-family: "Gilroy", sans-serif;
  font-size: 20px;
  color: #626C38;
}
.comment-form-container #comment-form .comment-field button {
  width: 208px;
  height: 48px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 50px;
  background-color: #A6BB7E;
  font-size: 24px;
  font-weight: 600;
  font-family: "Gilroy", sans-serif;
  text-decoration: none;
  color: #3A3731;
  border: none;
}
.comment-form-container .user-avatar {
  width: 97px;
  height: 97px;
  border-radius: 100px;
  object-fit: cover;
}
.comments-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-left: 168px;
  margin-top: 64px;
}
.comments-container .comment {
  display: flex;
  flex-direction: row;
  gap: 32px;
  width: 100%;
}
.comments-container .comment .comment-avatar {
  width: 97px;
  height: 97px;
  border-radius: 100px;
  object-fit: cover;
}
.comments-container .comment .comment-info {
  width: max-content;
}
.comments-container .comment .comment-info .comment-username {
  font-size: 20px;
  font-weight: 600;
  color: #3A3731;
  margin: 0;
}
.comments-container .comment .comment-info .comment-text {
  font-size: 20px;
}
.comments-container .comment .comment-date {
  margin-left: auto;
  font-size: 24px;
  font-weight: 600;
  color: #3A3731;
}
@media screen and (max-width: 1200px) {
  .post-details-container {
    padding: 16px 32px;
  }
  .post-details-container .post-title {
    margin-bottom: 0px;
  }
  .post-details-container .post-details {
    flex-direction: column;
    gap: 16px;
  }
  .post-details-container .post-content {
    width: 100%;
  }
  .comment-form-container {
    margin-left: 0px;
    margin-top: 32px;
  }
  .comment-form-container #comment-form {
    width: 100%;
  }
  .comment-form-container #comment-form .comment-field .textarea {
    width: auto;
  }
  .comments-container {
    margin-top: 32px;
    margin-left: 0px;
  }
  .comments-container .comment .comment-date {
    font-size: 1.25rem;
  }
}
/*# sourceMappingURL=post_details_styles.css.map */