/* Startup Costs identity. Desk layout and interface typography are preserved. */
:root {
  --brand-navy: #172d42;
  --brand-blue: #255eb1;
  --brand-sky: #8ebbff;
}
a.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  max-width: 100%;
  gap: 0;
  line-height: 1;
}
.brand .brand-logo {
  display: block;
  width: 238px;
  height: auto;
  max-width: 100%;
}
.site-footer .brand .brand-logo,
.footer .brand .brand-logo {
  width: 224px;
}
.brand:focus-visible {
  outline: 3px solid var(--brand-sky);
  outline-offset: 7px;
  border-radius: 2px;
}
@media (max-width: 800px) {
  .site-header .header-inner { height: auto; min-height: 0; padding-top: 18px; padding-bottom: 18px; }
  .site-header .brand .brand-logo { width: 220px; }
}
@media (max-width: 600px) {
  .site-footer .footer-grid > div:first-child { grid-column: 1 / -1; }
}
@media print {
  .brand .brand-logo { content: url('/assets/brand/startup-costs-primary.svg'); }
}
