.AuthorCard {
  display: flex;
  gap: 24px;
  padding: 32px;
  border-radius: 12px;
  background-color: #f5f7fa;
}
@media screen and (max-width: 980px) {
  .AuthorCard {
    flex-direction: column;
    align-items: center;
    padding: 24px;
    text-align: center;
  }
}
.AuthorCard__Photo {
  overflow: hidden;
  flex: 0 0 auto;
  border-radius: 50%;
  width: 96px;
  height: 96px;
}
.AuthorCard__Photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.AuthorCard__Body {
  flex: 1 1 auto;
  min-width: 0;
}
.AuthorCard__Label {
  color: #0d366d;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.AuthorCard__Name {
  margin-top: 6px;
  color: #131313;
  font-size: 18px;
  font-weight: 700;
}
.AuthorCard__Bio {
  margin-top: 10px;
  color: #555;
  font-size: 14px;
  line-height: 1.8;
}

