/* Homepage two-column layout */
.home-grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 4rem;
  max-width: 1100px;
  margin: 3rem auto;
  padding: 0 2rem;
}


/* Left profile column */
.profile-column {
  text-align: center;
  padding-top: 0.25rem;
}


/* Profile image */
.profile-photo {
  display: block;
  width: 190px;
  height: 190px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 1.4rem auto;
}


/* Name */
.profile-column h1 {
  text-align: center !important;
  font-size: 2rem;
  margin: 0 0 0.6rem 0;
}


/* Position / university */
.profile-column p {
  text-align: center;
  line-height: 1.5;
}


/* Icons */
.profile-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.profile-links a {
  color: #111;
  font-size: 1.45rem;
  text-decoration: none;
  line-height: 1;
}

.profile-links a:hover {
  color: #666;
}


/* Main homepage text */
.home-content {
  max-width: 720px;
}

.home-content h2:first-child {
  margin-top: 0;
}


/* Mobile layout */
@media (max-width: 768px) {
  .home-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .profile-column {
    max-width: 400px;
    margin: 0 auto;
  }
}

/* Publications */
.publications-list li {
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.publications-list li > p {
  margin-bottom: 0;
}