.brand {
  display: flex;
  align-items: center;
  height: 42px;
  gap: 12px;
}

.brand-logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.brand-logo img {
  display: block;
  width: 180px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0);
}

.product-switch {
  color: var(--green);
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
}

@media (max-width: 520px) {
  .brand {
    gap: 8px;
    height: 38px;
  }

  .brand-logo img { width: 135px; }
  .product-switch { font-size: 15px; }
}
