/* AMMOR official brand logo system */
:root {
  --ammor-logo-url: url("/assets/branding/favicon-192x192.png");
}

.brand-nav-logo,
.brand-logo-mark,
.brand-mobile-logo,
.brand-sidebar-logo,
.brand-auth-logo {
  display: block;
  object-fit: cover;
  background: #05080f;
  border: 1px solid rgba(212, 169, 86, 0.28);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04), 0 10px 28px rgba(0,0,0,0.24);
}

.brand-nav-logo {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  margin-right: 12px;
  flex: 0 0 auto;
}

.brand-logo-mark,
.brand-sidebar-logo {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  margin-bottom: 8px;
}

.brand-mobile-logo {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  flex: 0 0 auto;
}

.brand-auth-logo {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  margin: 0 auto 14px;
}

.nav-logo:has(.brand-nav-logo),
.mobile-logo:has(.brand-mobile-logo) {
  gap: 0;
}

.sidebar-logo .brand-logo-mark,
.sidebar-logo .brand-sidebar-logo {
  margin-bottom: 10px;
}

@media (max-width: 640px) {
  .brand-nav-logo {
    width: 34px;
    height: 34px;
    margin-right: 10px;
  }

  .brand-auth-logo {
    width: 64px;
    height: 64px;
  }
}
