/*  ═══════════════════════════════════════════════════════════════
    Review Author — profile links + Following badge
    Shared by home feed, dish feed, and post view modal.
    ═══════════════════════════════════════════════════════════════ */

.review-author__avatar-link {
  display: inline-flex;
  border-radius: var(--radius-full);
  flex-shrink: 0;
}

.review-author__name {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  min-width: 0;
}

.review-author__name-link {
  color: inherit;
  text-decoration: none;
}

.review-author__name-link:hover,
.review-author__name-link:focus-visible {
  color: var(--color-accent);
  text-decoration: underline;
}

.review-author__badge {
  display: inline-block;
  padding: 1px var(--space-2);
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  background: var(--color-soft-fill);
  color: var(--color-text-muted);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  letter-spacing: normal;
  text-transform: none;
  line-height: 1.4;
  flex-shrink: 0;
}
