.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;
}
.communityPreviewPost .postTags {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 0 1 auto;
  min-width: 0;
  margin-left: 12px;
  overflow: hidden;
}
.communityPreviewPost .postTagsPlaceholder .postTag {
  visibility: hidden;
}
.communityPreviewPostWrapper .postTagsOverlay {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  overflow: hidden;
  z-index: 2;
}
.communityPreviewPostWrapper .postTagsOverlay a.postTag {
  text-decoration: none;
}
.communityPreviewPostWrapper .postTagsOverlay a.postTag:hover {
  background: var(--hover-color);
}
.communityPreviewPostWrapper .postTagMore {
  display: none;
}
.communityPreviewPost .postTag,
.communityPreviewPostWrapper .postTagsOverlay .postTag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 1px 8px;
  border: 1px solid var(--border-lighter-color);
  border-radius: 10px;
  font-size: 12px;
  color: var(--text-color);
  white-space: nowrap;
}
.darkMode .communityPreviewPost .postTag,
.darkMode .communityPreviewPostWrapper .postTagsOverlay .postTag {
  border-color: #555;
  color: #bbb;
}