:root{--page-title-display:none;}/* Start custom CSS *//* Doctor portraits — show full head + shoulders, no torso crop */
.doctors .doctor img,
.doctors .doctor picture img {
  aspect-ratio: 3 / 4;          /* taller box matches portrait photos */
  object-fit: cover;
  object-position: 50% 20%;     /* center face nicely instead of clipping it */
  width: 100%;
  height: auto;
}

/* Optional: on phones make it a touch shorter so card isn't massive */
@media (max-width: 600px) {
  .doctors .doctor img,
  .doctors .doctor picture img {
    aspect-ratio: 4 / 5;
  }
}/* End custom CSS */