.lab-footer {
  width: min(1120px, calc(100% - 32px));
  margin: clamp(28px, 6vw, 72px) auto 24px;
  padding: 22px 0 0;
  border-top: 1px solid rgba(128, 128, 128, 0.28);
  color: inherit;
  font: inherit;
}

.lab-footer__copyright {
  margin: 0;
  color: currentColor;
  font-size: 12px;
  line-height: 1.7;
  opacity: 0.68;
}

.lab-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 12px;
}

.lab-footer__links a {
  color: currentColor;
  font-size: 12px;
  line-height: 1.5;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  opacity: 0.78;
  transition: opacity 160ms ease;
}

.lab-footer__links a:hover,
.lab-footer__links a:focus-visible {
  opacity: 1;
}

.lab-footer--floating {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 4;
  width: min(520px, calc(100vw - 32px));
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(8, 10, 16, 0.68);
  color: #fff;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.lab-footer--floating .lab-footer__links {
  gap: 6px 12px;
}

@media (max-width: 720px) {
  .lab-footer {
    width: min(100% - 24px, 1120px);
    margin-bottom: 18px;
  }

  .lab-footer--floating {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    max-height: 34vh;
    overflow: auto;
  }
}
