@layer components;

@layer components {
  .site-footer {
    padding-block: 4rem 2.5rem;
    background: var(--fc-indigo-deep);
    color: var(--fc-paper);
  }
  .site-footer__grid {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: 1fr;
  }
  .site-footer__brand .wordmark__name { color: var(--fc-paper); }
  .site-footer__lede {
    margin-top: 1rem;
    max-width: 24rem;
    font-family: var(--fc-font-body);
    font-size: .9375rem;
    line-height: 1.6;
    color: var(--fc-teal-light);
  }
  .site-footer__col h2 {
    font-family: var(--fc-font-head);
    font-size: .8125rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--fc-brass-light);
  }
  .site-footer__col ul {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: .7rem;
  }
  .site-footer__col a {
    color: var(--fc-paper);
    text-decoration: none;
    font-size: .9375rem;
  }
  .site-footer__col a:hover, .site-footer__col a:focus-visible {
    color: var(--fc-teal-light);
  }
  .site-footer__legal {
    margin-top: .75rem;
    font-size: .8125rem;
    line-height: 1.6;
    color: var(--fc-teal-light);
  }
  .site-footer__bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--fc-line-dark);
    font-size: .8125rem;
    color: var(--fc-teal-light);
  }
  .site-footer__bottom a { color: inherit; }

  @media (min-width: 48rem) {
    .site-footer__grid { grid-template-columns: 1.4fr .8fr .8fr .9fr; }
  }
}
