.footer {
  background: var(--black);
  color: var(--body-text-1);
  padding: 64px 0;
}

.footer__inner {
  margin: 0 auto;
  display: flex;
  gap: 40px;
  justify-content: space-between;
}

.footer a {
  color: inherit;
  text-decoration: none;
}

.footer__brand-column {
  max-width: 360px;
  width: 100%;
}

.brand-logo {
  display: inline-block;
  width: 185px;
}

.brand-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.footer__description {
  padding: 16px 0 24px;
  color: var(--body-text-1);
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0px;
  line-height: 1.625;
}

.footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__socials a {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid var(--border-2);
  color: var(--border-1);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  transition: border-color 180ms ease, color 180ms ease;
}

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

.footer__links ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__links h2 {
  color: var(--body-text-1);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.1px;
  line-height: 1.5;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer__links a {
  color: var(--body-text-1);
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0px;
  line-height: 1.42;
  transition: color 180ms ease;
}

.footer__bottom {
  margin-top: 64px;
  color: var(--border-1);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
}

.footer__copyright-text {
  padding-top: 33px;
  border-top: 1px solid var(--border-2);
  margin: 0;
}

.footer__privacy-links {
  padding-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}


@media (min-width: 750px) {

  .footer__socials a:hover {
    border-color: var(--body-text-1);
    color: var(--body-text-3);
  }
  .footer__links a:hover,
  .footer__bottom a:hover {
    color: var(--body-text-3);
  }

}

@media (max-width: 989px) {

  .footer {
    padding: 40px 0;
  }
  .footer__brand-column { 
    max-width: 185px;
  }
  .footer__description { 
    font-size: 14px;
  }
  .footer__socials a { 
    width: 32px;
    height: 32px;
    font-size: 10px;
  }
  .footer__links {
    gap: 40px;
  }
  .footer__links h2 { 
    font-size: 11px;
  }
  .footer__links a {
    font-size: 14px;
  }
  .footer__bottom {
    font-size: 12px;
  }

}

@media (max-width: 749px) {
  .footer {
    padding: 40px 0;
  }
  .footer__inner {
    flex-direction: column;
  }
  .footer__brand-column {  
    max-width: 100%;
  }
  .footer__links { 
    grid-template-columns: repeat(2,1fr);
  }
  .footer__links ul {
    gap: 4px;
  }
  .footer__bottom {
    margin-top: 40px;
  }
  .footer__copyright-text { 
    padding-top: 24px;
  }
}
