/* =========================================
   CATALOG CREATIONS — Shared Brand Assets
   Logo (header) and footer sizing for every
   page. Edit sizes here once; it applies
   everywhere that links this file.
   ========================================= */

.brand-bar {
  display: inline-flex;
  align-items: center;
}

/* Default logo size — used on privacy policy, which has a wide,
   roomy container. (The sign-in page pins its own size locally.) */
.brand-logo {
  width: 480px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* App topbar logo (dashboard, admin, account, editor, upload, analytics) —
   sized to fit inside the slim 72px header bar. */
.topbar-brand-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}

/* Shared site footer */
.site-footer {
  margin-top: 48px;
  padding: 32px 24px;
  border-top: 1px solid var(--pale-line);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.site-footer-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.site-footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.site-footer-nav a {
  color: var(--quiet-text);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.site-footer-nav a:hover {
  text-decoration: underline;
}

.site-footer-copy {
  color: var(--warm-gray);
  font-size: 11px;
  letter-spacing: 0.04em;
}

@media (max-width: 820px) {
  .topbar-brand {
    align-self: flex-start;
  }

  .topbar-brand-logo {
    width: 300px;
    height: auto;
  }
}

@media (max-width: 640px) {
  .brand-logo {
    width: 320px;
    height: auto;
  }
}
