.site-footer {
  padding-top: 80px;
  background: #020d17;
  color: #fff;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 7vw;
  padding-bottom: 70px;
}

.footer-brand img {
  width: 210px;
  height: 102px;
  object-fit: cover;
  border-radius: 8px;
  filter: saturate(.85);
}

.footer-brand p {
  max-width: 320px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .48);
  font-size: 12px;
  line-height: 1.7;
}

.footer-column {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 12px;
}

.footer-column h2 {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, .4);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column p {
  margin: 0;
  color: rgba(255, 255, 255, .7);
  font-size: 12px;
  line-height: 1.7;
  transition: color .2s;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: #4be0eb;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .35);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.footer-bottom a {
  color: rgba(255, 255, 255, .66);
  transition: color .2s;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: #4be0eb;
}

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .site-footer {
    padding-top: 58px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 38px 24px;
    padding-bottom: 48px;
  }

  .footer-brand img {
    width: 170px;
    height: 83px;
  }

  .footer-bottom {
    align-items: flex-start;
    min-height: auto;
    padding-block: 20px;
    flex-direction: column;
    gap: 8px;
    line-height: 1.5;
  }
}
