/**
 * WeReTrade App Branding Widget
 * Shared branding component for internal apps
 * Shows company name + app name with logo
 */

.wt-app-branding {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: opacity 0.2s ease;
  user-select: none;
}

.wt-app-branding:hover {
  opacity: 0.9;
}

.wt-app-branding__logo {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: contain;
  flex-shrink: 0;
}

.wt-app-branding__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.wt-app-branding__company {
  font-size: 12px;
  color: var(--muted, #9db1c9);
  font-weight: 400;
}

.wt-app-branding__name {
  font-size: 16px;
  color: var(--text, #e9f2ff);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Mobile responsive */
@media (max-width: 600px) {
  .wt-app-branding__company {
    display: none;
  }

  .wt-app-branding__name {
    font-size: 14px;
  }
}
