.brand-mark {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 30px;
  height: 28px;
  border-radius: 11px 13px 11px 12px;
  background: var(--ink);
}

.brand-mark,
.brand-mark::before,
.brand-mark::after {
  box-sizing: border-box;
}

.brand-mark::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: white;
  box-shadow: 11px 0 0 white;
}

.brand-mark::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 12px;
  width: 7px;
  height: 7px;
  border-bottom: 2px solid white;
  border-radius: 0 0 8px 8px;
}
