* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: #242424;
  background: #fff;
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 19px;
  line-height: 1.55;
}

a { color: #1772d0; text-decoration: none; }
a:hover { color: #f09228; }

.page-shell {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 64px;
}

.intro {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  padding-bottom: 32px;
  border-bottom: 1px solid #dedede;
}

.profile-column { width: 230px; }

.profile-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid #ddd;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin-bottom: 10px;
  font-size: 2rem;
  line-height: 1.15;
  font-weight: 600;
}

.intro-copy p { margin-bottom: 13px; }

.profile-role {
  margin: 12px 0 2px;
  color: #555;
  text-align: center;
  font-size: 0.98rem;
}

.profile-email {
  margin: 0;
  color: #555;
  text-align: center;
  font-size: 0.8rem;
  white-space: nowrap;
}

.photo-links {
  margin: 10px 0 0;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.photo-links a {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: #fff;
  background: #1772d0;
  font-size: 1.02rem;
  line-height: 1.45;
}

.photo-links a:hover { color: #fff; background: #f09228; }

.profile-interests {
  margin: 10px 0 0;
  text-align: center;
  font-size: 1.05rem;
  letter-spacing: 2px;
  line-height: 1.2;
}

.content-section {
  padding: 32px 0;
  border-bottom: 1px solid #dedede;
}

.content-section:last-child { border-bottom: 0; }

h2 {
  margin-bottom: 20px;
  font-size: 1.55rem;
  line-height: 1.2;
  font-weight: 600;
}

h3 {
  margin-bottom: 5px;
  font-size: 1.17rem;
  line-height: 1.3;
  font-weight: 600;
}

.news-entry {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 14px;
  padding: 0 0 14px;
}

.news-entry:last-child { padding-bottom: 0; }
.news-entry time { color: #555; font-weight: 600; }
.news-entry p, .publication-entry p, .project-copy p { margin-bottom: 8px; }

.project-block {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.project-video {
  display: block;
  width: 100%;
  background: #111;
  border: 1px solid #ddd;
  object-fit: contain;
}

.authors { color: #444; }
.project-meta-links { margin-bottom: 0 !important; }
.oral-note {
  display: inline-block;
  margin-left: 8px;
  color: #b33d2e;
  font-weight: 600;
}
.project-meta-links > a:first-of-type { margin-left: 14px; }
.section-note { color: #555; margin-bottom: 22px; }
.publication-entry { margin-bottom: 28px; }
.publication-entry:last-child { margin-bottom: 0; }
.link-row a + a::before,
.project-meta-links a + a::before {
  content: "|";
  margin: 0 8px;
  color: #777;
}
.coming-soon { color: #666; }

@media (max-width: 700px) {
  body { font-size: 18px; }
  .page-shell { width: min(100% - 28px, 980px); padding-top: 30px; }
  .intro { grid-template-columns: 1fr; gap: 20px; }
  .profile-column { width: min(260px, 100%); }
  .news-entry { grid-template-columns: 1fr; gap: 2px; }
  .project-block { grid-template-columns: 1fr; gap: 18px; }
}
