@media screen and (max-width: 767px) {
    .footer_link-list {
      display: grid;
      grid-template-rows: 0fr !important;
      overflow: hidden;
      transition: grid-template-rows 0.6s ease;
    }

    .footer_link-list.cc-active {
      grid-template-rows: 1fr !important;
    }
    
    /* List items have added padding to prevent focus states being cut off. Re-aligns the list to the left */
    .footer_link-list.is-social {
      transform: translateX(-.25rem);
    }
  }

  @media screen and (max-width: 767px) and (prefers-reduced-motion: reduce) {
    .footer_link-list {
      transition: none;
    }
  }