/* Keep every portfolio image complete at its original proportions. */
.site-header .brand img {
  width: auto;
  height: 62px;
  max-width: 200px;
  object-fit: contain;
}
.footer-brand img {
  width: 230px;
  height: auto;
  object-fit: contain;
}
@media (max-width: 760px) {
  .site-header .brand img { height: 52px; }
}
.hero-project,
.portfolio,
.portfolio > .project {
  min-width: 0;
}
.hero-project > img,
.portfolio .project > img,
.portfolio .project-wide > img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 0;
  max-height: none;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
}
