.brand {
  display: inline-flex;
  flex: none;
  align-items: center;
  background: #fff;
  color: #222;
  font-family: var(--brand-font);
  text-decoration: none;
  vertical-align: middle;
}
.brand-logo {
  display: block;
  box-sizing: content-box;
  width: 120px;
  height: auto;
  /* The letter н is 308/2001 of the source width: 18.47px at 120px. */
  padding: 20px;
}
.brand-label {
  padding-inline: 12px;
  border-left: 1px solid #dedfd7;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 2px;
}
.brand:focus-visible {
  outline: 3px solid #e5472b;
  outline-offset: 3px;
}
