/* ── HEADER ── */
.header { margin-bottom: 32px; }

.header-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  display: block;
}

.header-tagline {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 2px;
  height: 20px;
  overflow: hidden;
}

.tagline-inner span {
  display: none;
  line-height: 20px;
}

.tagline-inner span.active {
  display: block;
  animation: taglineFade 0.4s ease both;
}

@keyframes taglineFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── BIO ── */
.bio-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.bio-text strong {
  color: var(--text-primary);
  font-weight: 500;
}

.publications {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

/* ── MAGNETIC LINKS ── */
.magnetic-link {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  border-radius: 980px;
  background: var(--surface);
  padding: 5px 12px;
  font-size: 13px;
  color: var(--text-primary);
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}

.magnetic-link:hover {
  background: var(--text-primary);
  color: var(--bg);
}

.magnetic-link svg { flex-shrink: 0; }
