/* ===== Phase 5: trust signals (updated date, author bio) ===== */

/* "Updated" timestamp next to the published date */
.gh-article-meta-updated {
  font-family: var(--bs-sans);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bs-ink-soft);
  margin-left: 0.5rem;
}
.gh-article-meta-updated::before {
  content: "·";
  margin-right: 0.5rem;
  color: var(--bs-rule-strong);
}

/* Author bio block at end of post */
.bs-author-bio {
  display: flex;
  gap: 1.6rem;
  padding: 2.5rem 0;
  margin: 3.5rem auto 1rem;
  border-top: 1px solid var(--bs-rule);
  border-bottom: 1px solid var(--bs-rule);
  max-width: 720px;
  align-items: center;
}
.bs-author-img {
  width: 88px; height: 88px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bs-rule);
  flex-shrink: 0;
}
.bs-author-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--bs-serif);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--bs-ink-soft);
  background: var(--bs-rule);
  text-transform: uppercase;
}
.bs-author-body { flex: 1; }
.bs-author-label {
  font-family: var(--bs-sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bs-ink-soft);
  margin-bottom: 0.3rem;
  display: block;
}
.bs-author-name {
  font-family: var(--bs-serif) !important;
  font-size: 1.55rem !important;
  font-weight: 500;
  margin: 0 0 0.5rem;
}
.bs-author-name a { color: var(--bs-ink); text-decoration: none; }
.bs-author-name a:hover { color: var(--bs-accent); }
.bs-author-bio-text {
  font-family: var(--bs-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--bs-ink);
  margin: 0 0 0.6rem;
}
.bs-author-links {
  font-family: var(--bs-sans);
  font-size: 0.78rem;
}
.bs-author-links a {
  margin-right: 1rem;
  color: var(--bs-accent);
  text-decoration: none;
}
.bs-author-links a:hover { text-decoration: underline; }
@media (max-width: 600px) {
  .bs-author-bio { flex-direction: column; align-items: flex-start; }
  .bs-author-img { width: 72px; height: 72px; }
}
@media print {
  .bs-author-bio, .gh-article-meta-updated { display: none !important; }
}
