/* Author archive header */
.td-author{
  width:min(1050px, 100%);
  margin:18px auto 22px;
  padding:18px;
  background:var(--td-bg-soft);
  border-radius:16px;
}
.td-author__wrap{
  display:grid;
  grid-template-columns:120px 1fr;
  gap:18px;
  align-items:start;
}
.td-author__avatar-img{
  width:120px;
  height:120px;
  border-radius:14px;
  display:block;
}
.td-author__kicker{
  margin:0 0 6px;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.02em;
  opacity:.75;
}
.td-author__name{
  margin:0 0 10px;
  font-size:clamp(26px, 3vw, 34px);
  line-height:1.1;
}
.td-author__tagline{
  margin:0 0 14px;
  font-size:16px;
  line-height:1.6;
  opacity:.95;
  max-width:72ch;
}
.td-author__cta{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin:10px 0 16px;
}
.td-author__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:10px;
  text-decoration:none;
  font-weight:800;
  background:var(--td-accent);
  color:#fff;
}
.td-author__btn:hover{ filter:brightness(.95); }
.td-author__btn--ghost{
  background:transparent;
  color:#111;
  border:1px solid rgba(0,0,0,.18);
}
.td-author__btn--ghost:hover{ background:rgba(0,0,0,.04); filter:none; }

.td-author__quick{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-top:10px;
}
.td-author__card{
  background:#fff;
  border-radius:14px;
  padding:14px;
  box-shadow:0 10px 22px rgba(0,0,0,.05);
}
.td-author__card-title{ margin:0 0 10px; font-size:16px; }
.td-author__list{ margin:0; padding-left:18px; line-height:1.6; }

.td-author__topics{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:6px 0 10px;
}
.td-author__topics a{
  display:inline-flex;
  padding:8px 10px;
  border-radius:999px;
  text-decoration:none;
  font-weight:800;
  background:rgba(152,57,57,.10);
  color:var(--td-accent);
}
.td-author__topics a:hover{ background:rgba(152,57,57,.16); }
.td-author__note{ margin:0; font-size:14px; opacity:.8; }

@media (max-width:720px){
  .td-author__wrap{ grid-template-columns:1fr; }
  .td-author__quick{ grid-template-columns:1fr; }
  .td-author__avatar-img{ width:88px; height:88px; }
}

/* Author archive post list spacing */
.author .site-main article{
  padding:14px 0;
  border-bottom:1px solid rgba(0,0,0,.12);
}
.author .site-main .entry-title{ margin-bottom:6px; }
.author .site-main .entry-summary{ max-width:75ch; }
