/* ─── AV Sidebar Author Card Widget Stylesheet ─── */

.av-sidebar-author-card {
  background: var(--av-bg, #faf7f2);
  border-radius: var(--av-r-lg, 14px);
  padding: 24px;
  border: 1px solid var(--av-line, #e7e1d6);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

.av-sidebar-author-avatar {
  width: 52px;
  height: 52px;
  background: var(--av-navy, #1a1a1f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--av-paper, #ffffff);
  font-family: var(--av-font-display, inherit);
  font-size: 20px;
  font-weight: 800;
  margin: 0 auto 12px;
  overflow: hidden;
  box-sizing: border-box;
}

.av-sidebar-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.av-sidebar-author-name {
  font-family: var(--av-font-display, inherit);
  font-size: 14px;
  font-weight: 700;
  color: var(--av-navy, #1a1a1f);
  margin: 0 0 6px 0;
  line-height: 1.3;
}

.av-sidebar-author-bio {
  font-family: var(--av-font, inherit);
  font-size: 12px;
  color: var(--av-ink-3, #6b6b73);
  line-height: 1.55;
  margin: 0;
}
