/* =========================================================
   TOE BEANS DESIGN SYSTEM
   SHARED SITE FOOTER
   ========================================================= */

.ds-footer {
  margin-top:
    var(--ds-space-8);

  border-top:
    1px solid var(--ds-border);

  background:
    var(--ds-surface);
}


.ds-footer-inner {
  width:
    min(
      var(--ds-content-width),
      calc(100% - 40px)
    );

  margin:
    0 auto;

  padding:
    var(--ds-space-4) 0;

  display:
    flex;

  align-items:
    center;

  justify-content:
    center;

  flex-wrap:
    wrap;

  gap:
    var(--ds-space-2);

  color:
    var(--ds-muted);

  font-size:
    14px;
}


.ds-footer-inner p {
  margin:
    0;
}


.ds-footer-inner a {
  color:
    var(--ds-primary);

  font-weight:
    700;

  text-decoration:
    none;
}


.ds-footer-inner a:hover {
  text-decoration:
    underline;
}


.ds-footer-inner a:focus-visible {
  outline:
    2px solid var(--ds-primary);

  outline-offset:
    3px;

  border-radius:
    var(--ds-radius-sm);
}

/* =========================================================
   GUEST THEME CONTROL
   ========================================================= */

[data-tb-footer-theme-toggle] {
  display:
    none;
}


html[data-tb-navbar-session="signed-out"]
[data-tb-footer-theme-toggle] {
  display:
    inline-flex;
  margin-left:
    8px;
}
