* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: #222;
  background: #fff;
  max-width: 860px;
  margin: 0 auto;
  padding: 3rem 2rem 6rem;
}
a { color: #2563b0; text-decoration: none; }
a:hover { text-decoration: underline; }
.header {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.header img.profile {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}
.header-info h1 {
  font-family: 'Lora', serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: #111;
  line-height: 1.15;
  margin-bottom: 0.2rem;
}
.header-info .role {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 0.6rem;
}
.header-links { font-size: 0.95rem; }
.header-links a + a::before { content: ' / '; color: #999; }
.bio {
  font-size: 0.97rem;
  color: #333;
  text-align: justify;
  border-top: 1px solid #e5e7eb;
  padding-top: 1.5rem;
  margin-bottom: 1.75rem;
}
.affiliations {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid #e5e7eb;
}
.affiliations img {
  height: 200px;
  width: 220px;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.affiliations img:hover { opacity: 1; }
h2 {
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 1rem;
}
section { margin-bottom: 2.5rem; }
.news-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.news-list li {
  display: flex;
  gap: 1.25rem;
  font-size: 0.94rem;
  align-items: baseline;
}
.news-date {
  font-family: 'Lora', serif;
  font-style: italic;
  color: #888;
  white-space: nowrap;
  min-width: 72px;
  flex-shrink: 0;
}
.edu-list { display: flex; flex-direction: column; gap: 0.75rem; }
.edu-item { font-size: 0.94rem; }
.edu-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.edu-school { font-weight: 600; color: #111; }
.edu-date { color: #888; font-size: 0.88rem; white-space: nowrap; }
.edu-degree { color: #555; }
@media (max-width: 560px) {
  .header { flex-direction: column; }
  .header img.profile { width: 120px; height: 120px; }
  .affiliations img { height: 60px; width: 160px; }
}
