/* 作者卡片整体 */
.author-card {
  background: #fbfbfb;
  text-align: center;
/*   border: 0.2px solid #90c3eb; */
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  gap: 20px;
  padding: 30px 28px;
}

/* 头像 */
.author-card .card-author-avatar img {
  width: 151px;
  height: 151px;
  border-radius: 50%;
}
.author-card p {
	margin:0;
}

/* 简介文字 */
.author-card .author-bio {
  font-family: inherit;
  font-size: 14px;
  line-height: 1.75;
  color: #242424;
  font-family: inherit;
}

/* 分区标题 */
.author-card .title {
  font-size: 16px;
  font-style: italic;
  color: #2196F3;
	font-family: Libre Baskerville !important;
}

/* 标签 */
.author-card .author-tags a {
  display: inline-block;
  margin: 3px 4px;
  font-size: 14px;
  color: #242424;
  text-decoration-line: underline;
  text-decoration-color:#2196F3;
}

/* 文章列表 */
.author-card .author-posts ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.author-card .author-posts a {
  font-size: 14px;
  color: #242424;
  text-decoration-line: underline;
  text-decoration-color:#2196F3;
}
