/* =========================================================
   Page-specific styles for authors/show.html.twig
   Shared primitives live in app.css.
   ========================================================= */

.hero--author {
  grid-template-columns: 1fr auto;
  align-items: center;
}
.hero__col--github {
  display: flex;
  justify-content: flex-end;
}

.gh-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-sm);
  color: var(--ink);
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s, color 0.15s;
}
.gh-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
  color: var(--primary);
}
.gh-badge__icon {
  width: 36px;
  height: 36px;
  fill: currentColor;
}
.gh-badge__login {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  font-weight: 600;
  color: inherit;
}
