/* Shared homepage footer. Explicit styles isolate it from legacy article CSS. */
.vbt-footer {
  box-sizing: border-box;
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 0 70px;
  border: 0;
  background: #070d19;
  color: #a0afbf;
  font: 400 11px/1.55 "VBTech Nav Sans", sans-serif;
  text-align: left;
}
.vbt-footer *, .vbt-footer *::before, .vbt-footer *::after { box-sizing: border-box; }
.vbt-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  width: calc(100% - 112px);
  max-width: 1500px;
  margin: 0 auto;
  padding: 32px 0;
  border-top: 1px solid rgba(168, 197, 222, .2);
}
.vbt-footer a { color: #a0afbf; font: inherit; text-decoration: none; border: 0; background: none; }
.vbt-footer a:hover { color: #f0b13f; }
.vbt-footer a:focus-visible { outline: 2px solid #f0b13f; outline-offset: 6px; }
.vbt-footer__brand { display: block; flex-shrink: 0; }
.vbt-footer .vbt-footer__brand img { display: block; width: 88px; height: auto; max-width: none; margin: 0; opacity: 1; }
.vbt-footer__company { margin: 0; padding: 0; font: 400 11px/1.55 "VBTech Nav Mono", monospace; letter-spacing: .09em; text-transform: uppercase; }
.vbt-footer__links { display: flex; flex-wrap: wrap; gap: 24px; margin: 0; padding: 0; }
.vbt-footer__links a { white-space: nowrap; }
.vbt-footer--home { margin-top: 75px; padding: 0; background: transparent; }
.vbt-footer--home .vbt-footer__inner { width: 100%; }
@media (max-width: 1100px) {
  .vbt-footer__inner { width: calc(100% - 64px); flex-wrap: wrap; }
}
@media (max-width: 760px) {
  .vbt-footer { padding-bottom: 10px; }
  .vbt-footer__inner { width: calc(100% - 40px); row-gap: 25px; }
  .vbt-footer__company { font-size: 10px; }
  .vbt-footer .vbt-footer__brand img { width: 80px; }
  .vbt-footer__links { gap: 20px; }
  .vbt-footer--home { margin-top: 55px; padding: 0; }
}
