.site-footer {
  padding: 72px 0 28px;
  background: #041f31;
  color: rgba(255,255,255,0.66);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr 1fr;
  gap: 50px;
}

.brand-footer {
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 310px;
  font-size: 0.9rem;
}

.site-footer h4 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 0.92rem;
}

.site-footer a,
.site-footer span {
  display: block;
  margin-bottom: 10px;
  font-size: 0.86rem;
}

.site-footer a:hover {
  color: var(--cyan);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 58px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.77rem;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
