/* HD Catalog B public footer — compact, data-driven site-information layer. */
.pub-theme .pub-site-footer {
  position: relative;
  z-index: 1;
  min-width: 0;
  margin-left: var(--pub-sidebar-width);
  border-top: 1px solid var(--pub-border-subtle);
  background: var(--pub-bg-canvas);
  color: var(--pub-text-secondary);
  transition: margin-left 220ms ease;
}
html.pub-sidebar-collapsed .pub-theme .pub-site-footer {
  margin-left: 0;
}
.pub-theme .pub-site-footer__inner {
  width: min(100%, 1680px);
  margin: 0 auto;
  padding: 18px clamp(16px, 3.1vw, 28px) 20px;
}
.pub-theme .pub-site-footer__row {
  margin: 0;
  color: var(--pub-text-secondary);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.65;
}
.pub-theme .pub-site-footer__row + .pub-site-footer__row {
  margin-top: 8px;
}
.pub-theme .pub-site-footer__row strong {
  color: var(--pub-text-primary);
  font-weight: 600;
}
.pub-theme .pub-site-footer__disclaimer {
  max-width: 1280px;
}
.pub-theme .pub-site-footer__links {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0 7px;
}
.pub-theme .pub-site-footer__label {
  flex: 0 0 auto;
}
.pub-theme .pub-site-footer__link-list {
  display: inline-flex;
  min-width: 0;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0 7px;
}
.pub-theme .pub-site-footer a {
  color: var(--pub-text-secondary);
  text-decoration: none;
  text-underline-offset: 3px;
}
.pub-theme .pub-site-footer a:hover {
  color: var(--pub-accent-green);
  text-decoration: underline;
}
.pub-theme .pub-site-footer a:focus-visible {
  outline: 2px solid var(--pub-focus);
  outline-offset: 3px;
  border-radius: 2px;
}
.pub-theme .pub-site-footer__separator {
  color: var(--pub-text-muted);
  user-select: none;
}
@media (max-width: 760px) {
  .pub-theme .pub-site-footer,
  html.pub-sidebar-collapsed .pub-theme .pub-site-footer {
    margin-left: 0;
  }
  .pub-theme .pub-site-footer__inner {
    padding: 16px 16px 18px;
  }
  .pub-theme .pub-site-footer__row {
    font-size: 12px;
    line-height: 1.7;
  }
  .pub-theme .pub-site-footer__row + .pub-site-footer__row {
    margin-top: 7px;
  }
}
