.post {
  display: flex;
  border: 1px solid black;
  padding: 16px;
  cursor: pointer;
  user-select: none;
  gap: 8px;

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

.post-skeleton {
  border: none;
  cursor: default;
  box-shadow: none;
}

.post .post-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.post .post-header {
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 4.5rem;
  gap: 8px;
}

.post .post-skeleton-title,
.post .post-skeleton-subtitle {
  background: var(--skeleton-background);
  animation: var(--skeleton-animation);
}

.post .post-skeleton-title {
  width: 8rem;
  height: 2rem;
}

.post .post-skeleton-subtitle {
  width: 12rem;
  height: 1rem;
}

.post .post-skeleton-avatar,
.post .post-avatar {
  width: 5rem;
  height: 4.5rem;
}

.post .post-avatar {
  border: 1px solid black;
}

.post .post-skeleton-avatar {
  background: var(--skeleton-background);
  animation: var(--skeleton-animation);
}

.post .post-body {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 8px;
}

.post .post-skeleton-line {
  width: 100%;
  height: 1rem;

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

.post .post-title {
  font-family: var(--font-family-header);
}

.post .post-author,
.post .post-date {
  font-weight: bold;
}
