/* Banner image */
.hero-banner {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 0;
  margin-bottom: 1.5rem;
}

/* Profile photo */
.profile-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem auto;
  display: block;
  border: 3px solid #2c3e50;
}

/* Homepage layout */
.home-intro {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.home-intro .intro-text {
  flex: 1;
}

@media (max-width: 768px) {
  .home-intro {
    flex-direction: column;
    text-align: center;
  }
}

/* Publication list */
.pub-entry {
  margin-bottom: 1.2rem;
  padding-left: 1rem;
  border-left: 3px solid #2c3e50;
}

.pub-entry .pub-title {
  font-weight: 600;
}

.pub-entry .pub-journal {
  font-style: italic;
  color: #666;
}

/* Quick links on homepage */
.quick-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.quick-links a {
  padding: 0.5rem 1rem;
  background: #2c3e50;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.9rem;
}

.quick-links a:hover {
  background: #34495e;
}
