.authorHero {
  display: grid;
  gap: 18px;
  align-items: start;
}
@media (min-width: 720px) {
  .authorHero {
    grid-template-columns: 140px 1fr;
  }
}
.authorAvatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--ink-200);
  background: var(--paper-0);
}
.authorLead {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-700);
  margin-top: 8px;
}
.authorPanel {
  margin-top: 18px;
}
.authorPanelTitle {
  font-size: 13px;
  font-weight: 800;
  color: var(--ink-900);
  margin-bottom: 10px;
}
.authorList {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.authorList li {
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink-700);
}
.authorList a {
  color: var(--hover-blue);
  font-weight: 650;
  text-decoration: none;
}
.authorList a:hover {
  text-decoration: underline;
}
.authorOfficials {
  display: grid;
  gap: 10px;
}
.authorOfficial {
  padding: 12px 14px;
  border: 1px solid var(--ink-200);
  border-radius: var(--r-card);
  background: var(--surface-cool);
}
.authorOfficialRole {
  font-size: 12px;
  color: var(--ink-700);
  margin-bottom: 4px;
}
.authorOfficialName {
  font-weight: 800;
  font-size: 14px;
  color: var(--ink-900);
}
