/* Copied from Flower SiteFooter.astro; Astro :global wrappers removed. */

  .site-footer {
    margin-block-start: var(--site-inset);
  }

  .site-footer-nav {
    display: flex;
    justify-content: flex-end;
  }

  .site-footer-nav-list {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: var(--site-inset);
    justify-content: flex-end;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .site-footer-nav-list li {
    margin: 0;
  }

  .site-footer-nav-list a {
    color: color-mix(in lab, var(--site-foreground) 33%, var(--site-background));
    text-decoration: none;
    white-space: nowrap;
  }

  .site-footer-nav-list a:focus-visible {
    outline: 1px solid currentColor;
    outline-offset: 3px;
  }

  @media screen and (max-width: 768px) {
    .agents-link {
      clip: rect(0 0 0 0);
      clip-path: inset(50%);
      height: 1px;
      overflow: hidden;
      position: absolute;
      white-space: nowrap;
      width: 1px;
    }
  }
