/* Client editable logo sizing (header + footer) */
:root {
  --header-logo-max-height: 60px;
  --header-logo-max-width: 240px;
  --footer-logo-max-height: 70px;
  --footer-logo-max-width: 240px;
}

.header-logo img {
  max-height: var(--header-logo-max-height) !important;
  max-width: var(--header-logo-max-width) !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
}

.footer-logo img {
  max-height: var(--footer-logo-max-height) !important;
  max-width: var(--footer-logo-max-width) !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
}

