.footer{
  background: var(--beige);
  padding: 56px 0 28px;
}

.footer__grid{
  display: grid;
  grid-template-columns: 1.4fr repeat(4,1fr);
  gap: 40px;
}

.footer__logo{
  width: 140px;
  height: auto;
}

.footer__h{
  margin: 0 0 14px;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

.footer a{
  display: block;
  margin-bottom: 10px;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 15px;
  color: #000;
  text-decoration: none;
  opacity: .85;
}

.footer a:hover{
  opacity: 1;
}

.footer__bottom{
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer__copy{
  font-size: 14px;
  opacity: .7;
}

.footer__payments{
  max-height: 26px;
  width: auto;
}


@media (max-width: 980px){
  .footer__grid{
    grid-template-columns: repeat(2,1fr);
    gap: 32px;
  }

  .footer__brand{
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px){
  .footer{
    padding: 40px 0 22px;
  }

  .footer__grid{
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer__bottom{
    flex-direction: column;
    align-items: flex-start;
  }
}