/**
 * @file
 * Footer regions.
 */

/*
 * Media query breakpoints.
 * Processed by postcss/postcss-custom-media.
 */

/* Navigation related breakpoints */

/* Grid related breakpoints */

/* Grid shifts from 6 to 14 columns. */

/* Width of the entire grid maxes out. */

.site-footer {
  position: relative; /* stack above left social bar */
  color: var(--color--gray-65);
  background: linear-gradient(180deg, var(--color--gray-5) 0%, var(--color--gray-10) 100%);
}

.site-footer .menu {
    margin-inline-start: 0;
    list-style: none;
  }

.site-footer .menu ul {
      margin-inline-start: var(--sp);
    }

.site-footer .menu li {
      margin-block-end: var(--sp0-5);
    }

.site-footer a {
    color: inherit;
  }

.site-footer a:hover {
      text-decoration: none;
    }

