.post {
  margin: 30px auto;
  width: 740px;
}
.post-header {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  width: fit-content;
  justify-content: center;
  border-left: 10px solid var(--primary-400);
  padding: 2px 20px;
}
.post-header .link-panel {
  font-size: 13px;
  padding: 0px 0px;
  background: none;
}
.post-header .link-panel svg {
  width: 12px;
  height: 12px;
}
.post-content {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  width: 95%;
  margin: 20px auto;

}
.post-content a {
    color: inherit;
}
.post-content > *{
  padding-bottom: 1rem;
}
.post-content  li {
  margin-left: 2rem;
}
.comments {
  background-color: var(--primary-200);
  border-radius: 10px;
  margin-top: 80px;
}

.comments header {
  display: flex;
  cursor: pointer;
  padding: 14px;
  font-weight: 600;
}
.comments header:hover {
  text-decoration: underline;
}

.comments header svg {
  width: 16px;
  transition: transform ease-in-out 250ms;
}

.commenter {
  display: flex;
  align-items: center;
  column-gap: 8px;
}
.comment {
  padding: 30px 30px;
  padding-top: 0px;
}
.commenter p,
.comment-reply-btn,
.comment-date {
  font-weight: 600;
}
.comment-date {
  font-size: 13px;
  margin-top: 4px;
  margin-bottom: 8px;
  color: var(--primary-400);
  opacity: 0.6;
}
.comment-content {
  line-height: 21px;
}
.rot-90 {
  transform: rotate(90deg);
}
.comment-reply-btn {
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid var(--primary-400);
  color: var(--primary-400);
  margin-top: 8px;
  background: var(--primary-200);
}
.comment-reply-btn:hover {
  background-color: var(--primary-400);
  color: var(--primary-200);
}
