.site-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  text-decoration: none;
}

.site-brand .site-logo {
  flex: 0 0 auto;
}

.site-brand .site-logo .site-logo-mark {
  display: block;
  max-height: 42px;
  width: auto;
}

.site-brand .site-name {
  color: var(--primary-color-2);
  font-size: clamp(0.76rem, 1vw, 1.18rem);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  max-width: 300px;
  text-wrap: balance;
}

.sticky .site-brand .site-logo .site-logo-mark {
  max-height: 36px;
}

.sticky .site-brand .site-name {
  font-size: clamp(0.68rem, 0.82vw, 0.92rem);
}

@media only screen and (min-width: 480px) {
  .site-brand .site-logo .site-logo-mark {
    max-height: 48px;
  }
}

@media only screen and (max-width: 720px) {
  .site-brand {
    gap: 0.6rem;
  }

  .site-brand .site-name {
    font-size: clamp(0.68rem, 2vw, 0.86rem);
    max-width: 250px;
  }

  .site-brand .site-logo .site-logo-mark {
    max-height: 34px;
  }
}

@media only screen and (max-width: 560px) {
  .site-brand .site-name {
    max-width: 200px;
  }
}
