.author-box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}
.author-box__link {
  display: flex;
  justify-content: inherit;
  align-items: inherit;
  gap: inherit;
  text-decoration: none !important;
}
.author-box__link:hover {
  color: inherit !important;
  text-decoration: none !important;
}

.author-txt {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}
.author-txt__name {
  border-bottom: 1px solid currentColor;
}
.author-txt__position {
  text-decoration: none !important;
}

.author-image {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
}
.author-image_real {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
}
.author-image_fallback {
  width: 100%;
  height: 100%;
}
.author-image__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.author-image__icon svg {
  display: block;
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  fill: currentColor;
}