/* Shared H&H branding for the showcase, content pages and error page. */
a.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-decoration: none;
  text-transform: none;
  letter-spacing: normal;
  white-space: nowrap;
}
.brand .brand-mark {
  display: block;
  width: 48px;
  height: 48px;
  max-width: none;
  object-fit: contain;
  flex: 0 0 auto;
}
.brand .brand-wordmark {
  display: flex;
  flex-direction: column;
  color: inherit;
  font-family: Georgia, 'Times New Roman', serif;
  line-height: .9;
}
.brand .brand-top { font-size: 18px; letter-spacing: .055em; }
.brand .brand-bottom { margin-top: 4px; font-size: 14px; letter-spacing: .095em; }
a.brand:focus-visible { outline: 2px solid currentColor; outline-offset: 5px; }
@media (max-width: 620px) {
  a.brand { gap: 8px; }
  .brand .brand-mark { width: 40px; height: 40px; }
  .brand .brand-top { font-size: 15px; }
  .brand .brand-bottom { font-size: 12px; }
}
