/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Body readability */
section p {
  line-height: 1.7;
}

/* Major section spacing + divider */
section h1 {
  margin-top: 2.5em;
  padding-top: 0.8em;
  border-top: 2px solid #ccc;
}

/* Person cards */
.person-card {
  display: flex;
  align-items: flex-start;
  gap: 1.4em;
  margin: 1.4em 0;
}

.headshot {
  width: 110px;
  height: 110px;
  border-radius: 50% !important;
  object-fit: cover;
  flex-shrink: 0;
}

.person-info {
  line-height: 1.6;
}

/* Subsection spacing */
section h3 {
  margin-top: 1.8em;
}

/* Image polish */
section img {
  border-radius: 4px;
  max-width: 100%;
}

/* Figure captions (bold-only paragraph lines below images) */
section p > strong:only-child {
  color: #555;
  font-size: 0.9em;
}

/* Sidebar nav */
ul.site-nav {
  list-style: none;
  padding: 0;
  margin: 0.8em 0 1em 0;
}

ul.site-nav li {
  margin: 0.3em 0;
}

ul.site-nav li a {
  color: #555;
  text-decoration: none;
  font-size: 0.9em;
}

ul.site-nav li a:hover {
  color: rgb(237, 117, 52);
}
