/* Avatar */
.avatar-container {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  margin-bottom: 2rem;
}
.avatar-img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.avatar-info h1 {
  margin-top: 0;
  font-size: 2rem;
}
.avatar-info .subtitle {
  color: #6c757d;
  font-size: 1rem;
  margin-bottom: 0.8rem;
}
.social-links a {
  margin-right: 0.8rem;
  font-size: 0.9rem;
}

/* Research cards */
.research-card {
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 1.2rem 1.5rem;
  margin-bottom: 1.2rem;
}
.research-card h3 { margin-top: 0; }
.badge-status {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 600;
}
.badge-active { background:#d4edda; color:#155724; }
.badge-planned { background:#fff3cd; color:#856404; }

/* Publication entry */
.pub-entry {
  border-left: 3px solid #0d6efd;
  padding-left: 1rem;
  margin-bottom: 1.5rem;
}
.pub-award {
  border-left-color: #ffc107;
}
.pub-title { font-weight: 600; margin-bottom: 0.2rem; }
.pub-meta { color: #6c757d; font-size: 0.88rem; }

@media (max-width: 600px) {
  .avatar-container { flex-direction: column; align-items: center; text-align: center; }
}

.name-heading {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0.3rem;
  line-height: 1.2;
}
