/* homepage hero */
.home-hero { min-height: 60vh; }

/* 2:3 portrait, max height 180px */
.wb-portrait-box {
  height: 180px;          /* max height constraint */
  width: 120px;           /* 2:3 aspect => 180 * 2/3 */
}
.wb-portrait-box > img {
  height: 100%;
  width: 100%;
  object-fit: cover;      /* fill the 2:3 box nicely */
  object-position: center;
  border-radius: .25rem;  /* optional, matches Bootstrap look */
  border: 1px solid rgba(0,0,0,.1);
}
