/* Admin-uploaded site logo — consistent sizing across the site */
.site-logo {
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

/* Header: clearly visible beside the menu */
.site-logo--header {
  max-height: 32px;
  min-height: 24px;
}

/* Footer: brand mark */
.site-logo--footer {
  max-height: 40px;
  min-height: 24px;
  margin-bottom: var(--space-4);
}

/* Login / register cards */
.site-logo--auth {
  max-height: 80px;
  min-height: 52px;
  margin-inline: auto;
}

/* Admin login */
.site-logo--admin {
  max-height: 72px;
  min-height: 48px;
  margin-inline: auto;
}

@media (max-width: 640px) {
  .site-logo--header {
    max-height: 28px;
    min-height: 20px;
  }
  .site-logo--footer {
    max-height: 32px;
  }
}
