.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 24px clamp(22px, 5vw, 72px);
  background: #101511;
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
}
.site-footer::before {
  content: "";
  grid-column: 1 / -1;
  grid-row: 2;
  width: auto;
  margin: 0 -5vw;
  border-top: 1px solid rgba(255, 255, 255, .12);
}
.site-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 800;
  letter-spacing: -.02em;
}
 .site-footer-mark img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: inherit;
}
.site-footer-mark {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #d9f43d;
  color: #111;
  font-size: 13px;
  font-weight: 900;
}
.site-footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
}
.site-footer a {
  color: inherit;
  text-decoration: none;
}
.site-footer a:hover {
  color: #d9f43d;
}
.site-footer-copy {
  grid-column: 1 / -1;
  grid-row: 3;
  width: 100%;
  justify-self: center;
  margin: 0;
  padding-top: 16px;
  text-align: center;
}
@media (max-width: 600px) {
  .site-footer {
    align-items: center;
    gap: 14px;
    padding: 22px clamp(16px, 4vw, 28px);
  }
  .site-footer::before {
    margin: 0 -4vw;
  }
  .site-footer-links {
    gap: 14px;
  }
}
