/* === THERMObug standalone footer component === */
.thermobug-legal-footer {
  width: 100%;
  margin-top: 24px;
  border-top: 1px solid #e3e8f2;
  background: #ffffff;
}

.thermobug-legal-footer__inner {
  width: min(1180px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  align-items: left;
  justify-content: space-between;
  gap: 10px;
}

.thermobug-legal-footer__brand {
  display: flex;
  flex-wrap: wrap;
  align-items: left;
  gap: 6px;
  color: #5f6063;
  font-family: "spaehn-text", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 12px;
  line-height: 1.5;
}

.thermobug-legal-footer__nav {
  display: flex;
  flex-wrap: wrap;


  gap: 8px 18px;
  text-align: left;
}

.thermobug-legal-footer__link {
  color: #5f6063;
  font-family: "spaehn-text", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.thermobug-legal-footer__link:hover,
.thermobug-legal-footer__link:focus {
  color: #e30613;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.thermobug-legal-footer__link:focus-visible {
  outline: 2px solid #e30613;
  outline-offset: 4px;
  border-radius: 4px;
}

.thermobug-legal-footer__separator {
  color: #c0c5cf;
}

@media (max-width: 900px) {
  .thermobug-legal-footer__inner {
    width: min(100% - 32px, 1180px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 22px 0;
    text-align: center;
  }

  .thermobug-legal-footer__brand {
    justify-content: center;
  }

  .thermobug-legal-footer__nav {
    justify-content: center;
    text-align: center;
    gap: 8px 14px;
  }
}

@media (max-width: 520px) {
  .thermobug-legal-footer {
    margin-top: 18px;
  }

  .thermobug-legal-footer__inner {
    width: min(100% - 28px, 1180px);
    padding: 20px 0;
  }

  .thermobug-legal-footer__brand {
    flex-direction: column;
    gap: 2px;
    font-size: 12px;
  }

  .thermobug-legal-footer__separator {
    display: none;
  }

  .thermobug-legal-footer__nav {
    flex-direction: column;
    gap: 7px;
  }

  .thermobug-legal-footer__link {
    font-size: 12px;
  }
}
