.footer {
  background: var(--blue-dark);
  color: var(--white);
  padding-top: 64px;
}

.footer__top {
  display: grid;
  grid-template-columns: .9fr 1.3fr .8fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 42px;
}

.footer__logo img {
  width: 150px;
  filter: brightness(0) invert(1);
}

.footer h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 14px;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.footer a,
.footer span {
  display: block;
  color: rgba(255,255,255,.76);
  margin-bottom: 9px;
  transition: .25s ease;
}

.footer a:hover {
  color: var(--blue-cta);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.14);
  text-align: center;
  padding: 22px 16px;
  color: rgba(255,255,255,.74);
  font-size: .92rem;
}

.footer__social {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__social h3 {
  margin-bottom: 6px;
}

.footer__social-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  color: rgba(255,255,255,0.76);

  transition: 0.25s ease;
}

.footer__social-link:hover {
  color: #38BDF8;

  transform: translateX(4px);
}

.footer__social-link img {
  width: 20px;
  height: 20px;

  object-fit: contain;
}

.footer__social-link span {
  font-size: 0.95rem;
  font-weight: 500;
}

@media (max-width: 860px) {
  .footer__top,
  .footer__links {
    grid-template-columns: 1fr;
  }
}
