/* The issue only occurs on phones: the old mobile width overrode the image
   width but left its HTML height intact, stretching this square logo. */
@media (max-width: 750px) {
  .fpk-brand {
    align-items: center;
    display: flex;
    flex-basis: 70px;
    height: 70px;
    justify-content: center;
    width: 70px;
  }

  .fpk-header .fpk-brand > img {
    display: block;
    height: 70px !important;
    max-height: 70px;
    max-width: 70px;
    object-fit: contain;
    object-position: center;
    width: 70px !important;
  }
}
