.site-author-image {
  display: block;
  margin: 0 auto;
  padding: 2px;
  max-width: 120px;
  height: auto;
  border: 1px solid var(--border-color);
}

if hexo-config('author.avatar.rounded') {
  .site-author-image {
    border-radius: 100%;
  }
}

if hexo-config('author.avatar.rotated') {
  .site-author-image {
    transition: transform 1.0s ease-out;
  }

  .site-author-image:hover {
    transform: rotateZ(360deg);
  }
}

.site-author-name {
  margin: 0;
  text-align: center;
  color: var(--color);
  font-weight: bold;
}

.site-description {
  text-align: center;
  font-size: 0.9em;
  color: var(--description-color);
}
