/* ===== Author Bio Widget ===== */

.author-bio-widget {
  padding: 20px 16px;
}

/* 整體內容置中 */
.author-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

/* ===== Avatar ===== */

.author-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;

  display: block;
}

/* ===== Name ===== */

.author-name {
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 2px;
}

/* ===== Description ===== */

.author-description {
  font-size: 0.92rem;
  line-height: 1.5;
  color: #555;
  max-width: 220px;
}

/* ===== Social Links ===== */

.author-links {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}

.author-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 32px;
  height: 32px;
  border-radius: 8px;

  color: #666;
  transition: all 0.18s ease;
}

/* icon size */
.author-links svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* hover */
.author-links a:hover {
  color: #000;
  background: #f3f3f3;
  transform: translateY(-1px);
}