/* v33: brand mark uses the あ-book app icon; brand acts as a "back to home" link */
.brand-mark {
  background: #fff url("assets/icon.svg") center / cover no-repeat !important;
  border: 1px solid rgba(15, 23, 42, .10) !important;
  box-shadow: 0 4px 14px rgba(31, 107, 255, .14) !important;
}
.brand-mark::before,
.brand-mark::after {
  content: none !important;
  display: none !important;
}
.brand-mark .brand-icon-text { display: none !important; }

/* brand = home link */
.brand {
  cursor: pointer;
  border-radius: 14px;
  transition: background .15s ease;
  -webkit-user-select: none;
  user-select: none;
}
.brand:hover {
  background: rgba(31, 107, 255, .06);
}
.brand:hover h1 {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.brand:focus-visible {
  outline: 2px solid #1f6bff;
  outline-offset: 2px;
}
