/* Subtitle (under your name) */
.content h2.subtitle{
  font-weight: 600;
  font-size: clamp(0.98rem, 0.9vw + 0.55rem, 1.15rem);
  line-height: 1.1;
  margin: 0 0 .6rem;
}
/* Keep it on one line on wide screens */
@media (min-width: 1100px){
  .content h2.subtitle{ white-space: nowrap; }
}

/* Baseline image style (centered when not floating) */
.content img.hero-headshot{
  display:block;
  margin:1rem auto 1.5rem;      /* center */
  width: clamp(220px, 32vw, 220px) !important;  /* <= key line */
  height:auto;                  /* preserve aspect ratio */
  border-radius:10px;           /* 0 if you want square corners */
  object-fit:cover;
  box-shadow:0 4px 16px rgba(0,0,0,.15);
}

