/* Author details directly below the single-post title. */
.article-header .post-authors {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin: 0 0 23px;
  color: var(--muted);
  font-size: .875rem;
}

.post-authors .post-author {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  max-width: 100%;
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
}

.post-author .post-author-avatar {
  display: grid;
  place-items: center;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  overflow: hidden;
  border-radius: 50%;
  background: #2475e8;
  color: #fff;
}

.post-author-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.post-author-initial {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.post-author-name {
  overflow-wrap: anywhere;
}

.post-author:hover .post-author-name,
.post-author:focus-visible .post-author-name {
  text-decoration: underline;
  text-underline-offset: 3px;
}

html[data-theme='light'] .post-authors .post-author {
  color: #102038;
}

.post-author-details {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 2px;
  line-height: 1.4;
}

.post-author-label {
  font-size: .7rem;
  font-weight: 300;
  color: var(--muted);
}

html[data-theme="light"] .post-author-label {
  color: #60738b;
}
