.page-post {
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-post .post-meta {
  display: flex;
  gap: 8px;
}

.page-post .post-image {
  width: 4.5rem;
  height: 4.5rem;

  border: 1px solid black;
}

.page-post .post-image.post-image-skeleton {
  background: var(--skeleton-background);
  animation: var(--skeleton-animation);
  border: none;
}

.page-post .post-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.page-post .post-description {
  display: flex;
  gap: 2px;
  flex-direction: column;
  justify-content: flex-end;
  flex: 1;
}

.page-post .post-category-skeleton,
.page-post .post-author-skeleton,
.page-post .post-date-skeleton,
.page-post .post-title-skeleton,
.page-post .post-body-line-skeleton {
  height: 1rem;

  background: var(--skeleton-background);
  animation: var(--skeleton-animation);
}

.page-post .post-category-skeleton {
  width: 5rem;
}

.page-post .post-author-skeleton {
  width: 12rem;
}

.page-post .post-date-skeleton {
  width: 8rem;
}

.page-post .post-title-skeleton {
  height: 2.5rem;
}

.page-post .post-body-skeleton {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-post .post-title {
  font-family: var(--font-family-header);
  font-size: 24px;
}

.page-post .post-category,
.page-post .post-date {
  font-size: 14px;
}

.page-post .post-author {
  text-decoration: underline;
}

.page-post .post-info.post-loaded > * {
  width: fit-content;
}

.page-post .post-comment-form {
  margin-top: 64px;
  border: 1px solid black;
  border-radius: 16px;
  gap: 4px;

  box-shadow:
    1px 1px 0px 0px black,
    2px 2px 0px 0px black,
    3px 3px 0px 0px black;
}

.page-post .post-comment-input {
  border-radius: 16px;
  padding: 8px 16px;
  font-size: 14px;
  box-shadow: none;
  outline: none;
  border: none;
  resize: none;
}

.page-post .post-comment-form.expanded .post-comment-input {
  resize: vertical;
}

.page-post .comment-form-buttons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 8px;
  gap: 8px;
}

.page-post .comment-form-cancel,
.page-post .comment-form-send {
  border-radius: 16px;
  padding: 4px 16px;
}

.page-post .post-comment-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-post .post-comment-header {
  display: flex;
  gap: 8px;
}

.page-post .post-comment-author-image {
  width: 2.5rem;
  height: 2.5rem;
}

.page-post .post-comment-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0px;
}

.page-post .post-comment-author {
  text-decoration: underline;
}

.page-post .post-comment-date {
  font-size: 14px;
}

.page-post .post-comment-body {
  margin-top: 8px;
}

.page-post .post-comment {
  border: 1px solid black;
  padding: 8px;

  box-shadow:
    1px 1px 0px 0px black,
    2px 2px 0px 0px black,
    3px 3px 0px 0px black;
}

.page-post .post-comment-empty {
  margin: 64px auto;
  color: var(--color-muted);
  text-align: center;
}

.page-post .post-comment-empty-header {
  line-height: 1;
  font-size: 22px;
  font-family: var(--font-family-header);
  margin-bottom: 8px;
}
