/* Logo with site name stacked beneath */
.site-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: var(--logo-size);
  gap: 1.2mm;
}

.site-brand #logo-link {
  display: block;
  line-height: 0;
  width: 100%;
  flex-shrink: 0;
}

.site-brand #logo-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  max-width: var(--logo-size);
  max-height: var(--logo-size);
  display: block;
}

/* Size set by js/fit-site-name.js to match logo width */
.site-brand .site-name {
  display: inline-block;
  width: auto;
  max-width: none;
  margin: 0;
  padding: 0;
  text-align: center;
  letter-spacing: 0.06em;
  line-height: 1.1;
  white-space: nowrap;
  color: var(--text-color, #0606f2);
  font-size: 22px;
}
