/**
 * Official DongThuan brand logo sizing (TASK-1009).
 * Source: Canva DAHTj-I4v8U — use gold on dark, ink on light. No CSS color filters.
 */
.brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.brand-logo__img {
  display: block;
  width: auto;
  height: var(--brand-logo-h, 2.5rem);
  max-width: 100%;
  object-fit: contain;
  object-position: center;
}

.brand-logo--header {
  --brand-logo-h: 2.25rem; /* ~36px mobile */
  justify-self: center;
}

.brand-logo--footer {
  --brand-logo-h: 1.85rem;
}

.brand-logo--login {
  --brand-logo-h: 3rem;
  margin: 0 auto 0.15rem;
}

.brand-logo--admin {
  --brand-logo-h: 1.85rem;
  justify-content: flex-start;
}

.brand-logo--document {
  --brand-logo-h: 1.75rem;
}

.brand-logo--price-page {
  --brand-logo-h: 1.65rem;
  justify-content: flex-start;
}

.brand-logo--success {
  --brand-logo-h: 2.35rem;
  margin: 0 auto 0.85rem;
}

.brand-logo--bill {
  --brand-logo-h: 2.1rem;
  margin: 0 auto;
}

@media (min-width: 960px) {
  .brand-logo--header {
    --brand-logo-h: 2.55rem; /* ~41px desktop */
    justify-self: start;
  }

  .brand-logo--footer {
    --brand-logo-h: 2.1rem;
  }
}
