.communityPreviewPostLink {
  color: inherit !important;
  text-decoration: none !important;
}
.communityPreviewPost {
  background-color: var(--background-color);
  padding: 20px;
  border-bottom: 1px solid var(--border-divider-color);
  transition: background-color 0.2s ease;
  cursor: pointer;
  user-select: none;
}
.communityPreviewPostWrapper:last-child .communityPreviewPost {
  border-bottom: none;
}
.communityPreviewPost:hover {
  background-color: var(--hover-color)
}
.communityPreviewPost .postActionBtn {
  padding-right: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
  border: none;
  background: none;
  color: #666;
  font-size: 14px;
  cursor: pointer;
}
.postUserPlaceholder {
  display: inline-block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
}
.postUserOverlay {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1;
  pointer-events: auto;
}
.postUserOverlayLink {
  text-decoration: none;
  border-radius: 50%;
  display: flex;
}
.postChannelPlaceholder {
  visibility: hidden;
}
.postChannelOverlay {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1;
  display: flex;
  text-decoration: none;
}