/* Author header */
.author-header { display: flex; gap: var(--space-md); align-items: flex-start; }
.author-header .author-avatar img { border-radius: var(--radius-full); }

/* Author Box */
.author-box {
  display: flex;
  gap: var(--space-md);
  background: #f9f9f9;
  padding: var(--space-md);
  border-radius: var(--radius-md);
}
.author-avatar img { border-radius: var(--radius-full); }
.author-name { font-size: 1rem; font-weight: 600; margin-bottom: var(--space-xs); }
.author-description { font-size: var(--font-size-sm); color: var(--color-text-muted); }
