.site-footer {
  background: radial-gradient(at bottom left, #142A2BE6 0%, #142A2B 75%);
  color: var(--color-white);
  padding-top: 3em;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 2em;
}

.footer-col {
  flex: 1 1 200px;
  padding: 1em;
}

.footer-col-brand {
  flex: 1 1 280px;
}

.footer-logo {
  height: 49px;
  margin-bottom: 15px;
}

.footer-col-brand p {
  font-size: 14px;
  margin-bottom: 15px;
}

.footer-col h5 {
  color: var(--color-white);
  font-size: 20px;
  margin-bottom: 15px;
}

.footer-list {
  list-style: none;
}

.footer-list li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-list a {
  color: var(--color-white);
  transition: color 0.3s;
}

.footer-list a:hover {
  color: var(--color-teal);
}

.footer-contact li {
  color: var(--color-white);
}

.footer-copy {
  font-size: 13px;
  white-space: nowrap;
  color: var(--color-gray-text);
}

.footer-copy a {
  color: var(--color-gray-text);
  transition: color 0.3s;
}

.footer-copy a:hover {
  color: var(--color-teal);
}

.footer-bottom {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 20px;
  border-top: 1px solid #FFFFFF2B;
}

.footer-social {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}

.footer-social a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--color-teal-light);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 600;
  transition: background-color 0.3s;
}

.footer-social a:hover {
  background-color: transparent;
  color: var(--color-teal);
}

@media (max-width: 767px) {
  .footer-col {
    flex: 1 1 100%;
  }
  .footer-bottom {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 15px;
  }
  .footer-copy {
    white-space: normal;
  }
}
