.footer ul,
.footer li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer li::before {
  content: none;
}

.footer {
  width: 100%;
  background-color: var(--color-primary);
  color: #ffffff;
}

.footer__container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.footer__container {
  padding-left: var(--spacing-gutter, 1rem);
  padding-right: var(--spacing-gutter, 1rem);
}

.footer p {
  font-size: 0.875rem
  margin-bottom: 0;
}

.footer__resource-links {
  padding: 80px 0 60px 0 ;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: flex-start;
  border-bottom: 1px solid rgba(221, 221, 221, 0.2);
}

.footer__main {
  padding: 60px 0 80px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.resource-links-column,
.footer__main-col {
  flex: 0 0 calc(25% - 1.5rem);
  min-width: 0;
}

@media (max-width: 1280px) {
  .resource-links-column,
  .footer__main-col {
    flex: 0 0 calc(50% - 1rem);
  }
}

@media (max-width: 767px) {
  .resource-links-column,
  .footer__main-col {
    flex: 0 0 100%;
  }

  .footer__resource-links,
  .footer__main {
    gap: 1.5rem;
  }
}

.footer-link-list p {
  margin: 0;
}

.footer-link-list p:last-child {
  margin-bottom: 0;
}

.footer-link-list a {
  font-family: var(--font-primary-family);
  font-size: 0.875rem;
  color: inherit;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease;
}

.footer-link-list a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-link-list a span[style*="color"] {
  color: inherit !important;
}

.resource-links-heading {
  font-family: var(--font-primary-family);
  font-size: 1rem;
  font-weight: 550;
  color: var(--color-secondary);
  margin: 0 0 0.25rem 0;
  line-height: 1.3;
}

.resource-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.resource-links-list-item {
  margin-bottom: 0.5rem;
}

.resource-links-link {
  font-family: var(--font-primary-family);
  font-size: 0.875rem;
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease;
}

.resource-links-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer__bottom {
  background-color: white;
  padding: 1rem 0;
  border-top: 1px solid #ddd;
}

.footer__bottom-content {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
    padding-left: var(--spacing-gutter, 1rem);
    padding-right: var(--spacing-gutter, 1rem);
  }

.footer__bottom-content p,
.footer__bottom-content h2,
.footer__bottom-content span {
  color: #999999;
  font-size: 0.875rem;
  font-family: var(--font-primary-family);
  margin: 0;
  line-height: 1.5;
  font-weight: 400;
}

.footer__bottom-content ul {
  display: none;
}