
.feed-end-message {
  padding: 32px 16px;
  color: var(--text-color-muted);
  font-size: 14px;
  text-align: center;
}

.feed-feedback-message {
  font-size: 13px;
  color: var(--text-color-muted);
  padding: 8px;
  background: light-dark(var(--lightest-gray), var(--mid-gray));
}

.feed-feedback-message-inner {
  padding: 12px 16px;
  background: var(--background-color);
  border-radius: var(--feed-feedback-inner-border-radius);
  border: var(--hair) solid var(--post-border-color);
}

.feed-loading-indicator {
  padding-bottom: 5em;
  padding-top: 1em;
  display: flex;
  justify-content: center;
}

container-link {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.post {
  padding-top: 12px;
  padding-left: 16px;
  padding-right: 16px;
  padding-bottom: 10px;
  display: flex;
  gap: 12px;
  transition: background-color 0.2s;
}

.post.clickable {
  cursor: pointer;
}

@media (hover: hover) {
  .post.clickable:hover {
    background-color: var(--post-hover-color);
  }
}

.post:has(.post-actions) {
  /* action bar will take up this space */
  padding-bottom: 0;
}

.post .top-bar {
  margin-bottom: 4px;
}

/* .large-post moderation-warning .top-bar {
  margin-bottom: 0;
} */

.post-content {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.post-content-with-space {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.post-content-top {
  display: flex;
  flex-direction: row;
  gap: 8px;
  min-width: 0;
}

.post-content-bottom {
  margin-top: 8px;
}

.post-content-left {
  display: flex;
  flex-direction: column;
  width: 45px;
}

.post-content-right {
  flex: 1;
  min-width: 0;
}

.post-content-right .post-body > .post-text {
  margin-top: 5px;
}

.post-header-text {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 1px 4px;
  overflow: hidden;
}

@media (hover: hover) {
  .post-header-text a:hover {
    text-decoration: underline;
  }
}

.post-name {
  display: inline-block;
  flex-shrink: 0;
  max-width: 70%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: bold;
  line-height: 1.2em;
}

.post-username {
  flex-shrink: 10;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--text-color-muted);
}

.post-separator {
  color: var(--text-color-muted);
}

.post-time {
  color: var(--text-color-muted);
}

.post-full-timestamp {
  color: var(--text-color-muted);
  padding-top: 11px;
  padding-bottom: 5px;
  font-size: 13px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

