html {
  scroll-behavior: smooth;
}

.inner {
  max-width: 920px;
}

header .title {
  line-height: 1.1;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 2rem;
  align-items: center;
  margin-top: 1.5rem;
}

.home-hero h1 {
  margin: 0 0 0.2rem;
  text-align: left;
  font-size: 2rem;
  line-height: 1.1;
}

.home-hero h1 span {
  color: rgba(34, 34, 34, 0.62);
  font-size: 1.4rem;
}

.home-hero p {
  margin: 0.65rem 0;
}

.eyebrow {
  color: #0066cc;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.role {
  color: rgba(34, 34, 34, 0.68);
  font-size: 0.95rem;
  font-weight: 700;
}

.home-portrait {
  width: 100%;
  margin: 0;
}

.home-portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(34, 34, 34, 0.12);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.16);
}

.topic-pills,
.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.topic-pills {
  margin-top: 0.9rem;
}

.topic-pills span,
.inline-links a {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(0, 102, 204, 0.22);
  border-radius: 999px;
  color: #0066cc;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.1;
  padding: 0.34rem 0.62rem;
  text-decoration: none;
}

.inline-links {
  margin-top: 0.65rem;
}

.inline-links a:hover {
  background: rgba(0, 102, 204, 0.08);
  text-decoration: none;
}

.section-block {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(34, 34, 34, 0.16);
}

.section-block h2 {
  margin: 0 0 1.1rem;
  text-align: left;
  font-size: 1.35rem;
}

.section-block h3 {
  margin: 0 0 0.25rem;
  text-align: left;
  font-size: 1rem;
}

.section-note {
  margin-top: -0.4rem;
  color: rgba(34, 34, 34, 0.62);
  font-size: 0.9rem;
}

.focus-grid,
.news-list,
.publication-list,
.timeline-list {
  display: grid;
  gap: 1rem;
}

#news .news-list {
  gap: 0.5rem;
  max-height: 15.5rem;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 0.65rem;
  border: 1px solid rgba(34, 34, 34, 0.06);
  border-radius: 14px;
  background: transparent;
  scrollbar-gutter: stable;
}

.focus-item,
.timeline-list article,
.compact-list,
.contact-grid {
  border: 1px solid rgba(34, 34, 34, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.42);
  padding: 1rem;
}

#news .news-list article {
  display: grid;
  grid-template-columns: 1.5rem minmax(0, 1fr);
  gap: 0.5rem;
  align-items: center;
  min-height: 2.4rem;
  border: 1px solid rgba(34, 34, 34, 0.06);
  border-radius: 8px;
  background: #ffffff;
  padding: 0.55rem 0.75rem;
}

.news-heading-icon {
  font-size: 1.1rem;
}

.news-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
}

.focus-item {
  display: grid;
  grid-template-columns: 2.3rem 1fr;
  gap: 0.85rem;
}

.focus-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(0, 102, 204, 0.08);
  color: #0066cc;
}

.focus-item p,
.news-list p,
.timeline-list p,
.compact-list p,
.contact-grid p {
  margin: 0.25rem 0 0;
}

#news .news-list p {
  margin: 0;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.news-list time,
.venue {
  color: rgba(34, 34, 34, 0.62);
  font-size: 0.86rem;
  font-weight: 700;
}

#news .news-list time {
  color: #222222;
  font-size: inherit;
}

#news .news-list a {
  font-weight: 700;
}

.publication {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  border-bottom: 1px solid rgba(34, 34, 34, 0.12);
  padding-bottom: 1rem;
}

.publication:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.publication img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(34, 34, 34, 0.12);
}

.publication h3 {
  font-size: 1.12rem;
  line-height: 1.3;
}

.publication p {
  margin: 0.35rem 0;
}

.publication h3 + p {
  font-size: 0.92rem;
  line-height: 1.38;
}

.contact-grid {
  display: grid;
  gap: 0.35rem;
}

@media only screen and (max-width: 720px) {
  .inner {
    max-width: 430px;
  }

  .home-hero {
    grid-template-columns: 1fr;
  }

  .home-portrait {
    max-width: 210px;
    grid-row: 1;
    justify-self: center;
  }

  .home-hero h1 {
    text-align: center;
  }

  .eyebrow,
  .role {
    text-align: center;
  }

  .topic-pills {
    justify-content: center;
  }

  .publication {
    grid-template-columns: 1fr;
  }
}
