@charset "UTF-8";
/* Hallmark · genre: atmospheric · component: dashboard-footer · design-system: design.md · designed-as-app
 * Dashboard legal footer strip. Forge voice: warm muted text, hairline top rule matching the
 * chrome, amber links (underline-on-hover), amber "made with" heart. Self-contained --fo-*
 * tokens themed via Bootstrap's data-bs-theme. Layout unchanged. */
[data-bs-theme=light] .legal-footer {
  --fo-ink: #6f6c62;
  --fo-rule: rgba(20, 20, 19, .12);
  --fo-accent: var(--main-orange-darker); /* amber on light — contrast */
  --fo-focus: rgba(245, 164, 44, .55);
}

[data-bs-theme=dark] .legal-footer {
  --fo-ink: #b3a892;
  --fo-rule: rgba(245, 164, 44, .16);
  --fo-accent: var(--main-orange);
  --fo-focus: rgba(245, 164, 44, .60);
}

.legal-footer {
  /* Sticky footer: the shell body is `d-flex flex-column min-vh-100` and this footer
     is its last flex child, so auto top-margin pins it to the viewport bottom on short
     pages and is absorbed (pushed down) when content overflows — stays responsive. */
  margin-top: auto;
  width: calc(100% - 264px);
  position: relative;
  padding: 20px 10%;
  border-top: 1px solid var(--fo-rule);
  color: var(--fo-ink);
  font-family: var(--font-body), sans-serif;
  letter-spacing: -0.2px;
  font-size: 0.875rem;
  line-height: 1.6;
}
.legal-footer a {
  text-decoration: none;
  color: var(--fo-ink);
  border-bottom: 1px solid transparent;
  transition: color 0.16s ease, border-color 0.16s ease;
  /* Amber focus ring, shown instantly (never animated). */
}
.legal-footer a:hover {
  color: var(--fo-accent);
  border-bottom-color: currentColor;
}
.legal-footer a:focus-visible {
  outline: 3px solid var(--fo-focus);
  outline-offset: 2px;
  border-radius: 4px;
}
.legal-footer__heart {
  color: var(--fo-accent);
}

/* Full-width variant for sidebar-less pages (the request funnel: create + success
   use the public navbar with no 264px rail, so the footer spans the whole page). */
.legal-footer--full {
  width: 100%;
}

/* < 992px the sidebar is off-canvas (see dashboard-sidebar.scss): the footer
   spans the full width like the rest of the shell. */
@media (max-width: 991.98px) {
  .legal-footer {
    width: 100%;
    padding: 20px 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .legal-footer a {
    transition-duration: 0ms;
  }
}

/*# sourceMappingURL=dashboard-footer.output.css.map */
