.post-images {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  overflow-x: auto;
}

.post-images img {
  width: 92px;
  height: 68px;
  flex: 0 0 auto;
  border-radius: 8px;
  object-fit: cover;
}

.dialog-post .post-images img {
  width: min(180px, 45vw);
  height: 120px;
}

#postUploadStatus.error {
  background: #f3e9e5;
  color: #885d50;
}

#postImages {
  padding: 8px;
}

.field small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 11px;
}

.profile-avatar-link {
  text-decoration: none;
}

.profile-avatar-link:hover {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.profile-avatar-link img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.reply-with-profile {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

#replyList > .reply-thread > .reply-thread {
  margin-left: 36px;
  padding-left: 10px;
  border-left: 1px solid var(--border);
}

.reply-content {
  min-width: 0;
  flex: 1;
}

.reply-addressed {
  color: var(--blue-dark);
  font-weight: 500;
}

.reply-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}

.reply-action {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 0;
  font-size: 11px;
}

.reply-with-icon { display: inline-flex; align-items: center; gap: 4px; }
.reply-with-icon svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.expand-replies { display: block; margin: 5px 0 8px 36px; border: 0; background: transparent; color: var(--blue-dark); padding: 2px 0; font-size: 11px; font-weight: 600; }
.expand-replies::before { content: ''; display: inline-block; width: 22px; margin-right: 7px; border-top: 1px solid currentColor; vertical-align: middle; opacity: .55; }

.reply-action:hover {
  color: var(--blue-dark);
}

.reply-delete-action {
  margin-left: auto;
}

.reply-target-indicator {
  grid-column: 1 / -1;
  color: var(--blue-dark);
  font-size: 11px;
}

.reply-target-indicator button {
  margin-left: 7px;
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 0;
}

.post-reply-count {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 24px;
}

.stats {
  align-items: center;
}

.post-reply-count svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reply-avatar {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 9px;
  font-size: 11px;
}

.reply-profile-name {
  color: inherit;
  text-decoration: none;
}

.reply-profile-name:hover {
  color: var(--blue-dark);
  text-decoration: underline;
}

@media (max-width: 520px) {
  #replyList > .reply-thread > .reply-thread {
    margin-left: 20px;
    padding-left: 7px;
  }
}
