.site-footer {
  position: relative;
  color: white;
  background-color: var(--blue-dark);
  display: flex;
  justify-content: center;
  margin-top: 15rem;
  padding-bottom: 5rem;
}

.site-footer .wave {
  position: absolute;
  top: 0;
  transform: translateY(-99%);
}

.site-footer .site-branding {
  position: absolute;
  left: 2rem;
  bottom: 98.5%;
  width: 100%;
  max-width: 50%;
}

.site-footer .footer-columns {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1168px;
  padding: 2rem 2rem 0;
}

@media screen and (max-width: 782px) {
  .site-footer .footer-columns {
    grid-template-columns: 1fr;
    padding: 2rem 0.8rem 0;
  }
}

.site-footer .footer-content {
  margin-bottom: 2rem;
}

.site-footer h4 {
  font-size: 2rem;
  color: var(--color-gold);
}

.site-footer .footer-list-item {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 1rem;
}

.site-footer .footer-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  aspect-ratio: 1;
  object-fit: cover;
  background-color: white;
  border-radius: 100%;
}

.site-footer .footer-icon {
  width: 1.5rem;
  height: auto;
}

.site-footer .footer-item-text p {
  margin: 0;
}

.site-footer a {
  color: var(--color-gold);
  text-decoration: none;
  font-weight: 700;
}

.site-footer a:hover {
  color: white;
}
