.site-footer {
  padding: 0 20px 40px;
}

.site-footer-inner {
  width: min(100%, 1220px);
  margin: 0 auto;
  padding: 24px 0 0;
  border-top: 1px solid rgba(17, 24, 36, 0.12);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto auto;
  gap: 24px;
  align-items: start;
}

.site-footer-brand,
.site-footer-nav,
.site-footer-contact {
  display: grid;
  gap: 10px;
}

.site-footer-logo {
  color: inherit;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.site-footer-note,
.site-footer-contact a,
.site-footer-nav a,
.site-footer-nav button {
  margin: 0;
  color: rgba(17, 24, 36, 0.72);
  text-decoration: none;
  line-height: 1.6;
}

.site-footer-nav button {
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.site-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  align-items: center;
  justify-items: start;
}

.site-footer-contact {
  padding-left: 24px;
  border-left: 1px solid rgba(17, 24, 36, 0.1);
  justify-items: end;
  text-align: right;
}

.site-footer-nav a,
.site-footer-nav button,
.site-footer-contact a,
.site-footer-logo {
  transition: opacity 160ms ease;
}

.site-footer-nav a:hover,
.site-footer-nav button:hover,
.site-footer-contact a:hover,
.site-footer-logo:hover,
.site-footer-nav button:focus-visible {
  opacity: 0.68;
}

@media (max-width: 820px) {
  .site-footer-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .site-footer-nav {
    gap: 10px 16px;
  }

  .site-footer-contact {
    padding-left: 0;
    padding-top: 18px;
    border-left: none;
    border-top: 1px solid rgba(17, 24, 36, 0.1);
    justify-items: start;
    text-align: left;
  }
}
