html {
  background: #0f0c09;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body > main {
  flex: 1 0 auto;
}

.buyer-footer {
  position: relative;
  z-index: 20;
  flex: 0 0 auto;
  margin-top: auto;
  border-top: 0;
  border-bottom: 0;
  background: #292324;
  box-shadow: 0 -1px 0 #292324;
  color: rgba(255, 255, 255, 0.7);
}

.buyer-footer :where(p, a, span, dt, dd) {
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.7);
  transition: color 180ms ease;
}

.buyer-footer :where(p, a, span, dt, dd):hover {
  color: #fff;
}

.buyer-footer__inner {
  width: min(1360px, calc(100% - 80px));
  min-height: 133px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.buyer-footer__content {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.buyer-footer__side {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.buyer-footer__info {
  display: grid;
  gap: 4px;
  margin: 0;
}

.buyer-footer__row {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: start;
  gap: 0;
}

.buyer-footer__row--right {
  justify-content: flex-end;
}

.buyer-footer__item {
  display: inline-flex;
  align-items: flex-start;
  min-width: 0;
}

.buyer-footer__item--right {
  justify-self: end;
}

.buyer-footer__row--right .buyer-footer__item--right::before {
  display: none;
}

.buyer-footer__item + .buyer-footer__item::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1em;
  margin: 0.22em 12px 0;
  background: rgba(255, 255, 255, 0.5);
}

.buyer-footer__item dt,
.buyer-footer__item dd {
  display: inline-flex;
  align-items: flex-start;
  margin: 0;
  font-family: "Segoe UI", "Apple SD Gothic Neo", sans-serif;
  font-size: 13px;
  line-height: 1.45;
  letter-spacing: 0.04em;
}

.buyer-footer__item dt {
  margin-right: 4px;
  color: rgba(191, 175, 136, 0.88);
  font-weight: 700;
}

.buyer-footer__item dd {
  color: rgba(243, 237, 227, 0.8);
}

.buyer-footer__copyright {
  margin: 0;
  padding-top: 0;
  font-family: "Segoe UI", "Apple SD Gothic Neo", sans-serif;
  font-size: 15px;
  line-height: 1.45;
  letter-spacing: 0;
  text-align: left;
  color: rgba(255, 255, 255, 0.7);
  transition: none;
}

.buyer-footer__copyright:hover {
  color: rgba(255, 255, 255, 0.7);
}

.buyer-footer__policy-links {
  margin-top: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0;
  align-items: center;
}

.buyer-footer__policy-links--side {
  justify-content: flex-end;
}

.buyer-footer__policy-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-family: "Segoe UI", "Apple SD Gothic Neo", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.7);
  transition: opacity 180ms ease, color 180ms ease;
}

.buyer-footer__policy-links a + a::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1em;
  margin: 0 12px;
  background: rgba(255, 255, 255, 0.5);
}

.buyer-footer__policy-links a:hover,
.buyer-footer__policy-links a:focus-visible {
  opacity: 1;
  color: #fff;
}

@media (max-width: 1100px) {
  .buyer-footer__inner {
    width: min(100%, calc(100% - 48px));
    gap: 32px;
  }
}

@media (max-width: 760px) {
  .buyer-footer__inner {
    width: min(100%, calc(100% - 32px));
    min-height: 231px;
    padding: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
  }

  .buyer-footer__content {
    flex: 0 0 auto;
    width: 100%;
    align-items: center;
    text-align: center;
    gap: 0;
  }

  .buyer-footer__side {
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .buyer-footer__copyright {
    text-align: center;
  }

  .buyer-footer__policy-links {
    justify-content: center;
    text-align: center;
  }

  .buyer-footer__row,
  .buyer-footer__policy-links {
    justify-content: center;
    overflow-x: visible;
  }

  .buyer-footer__row--right {
    justify-content: center;
  }

  .buyer-footer__item--right {
    justify-self: auto;
  }

  .buyer-footer__row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .buyer-footer__item dt,
  .buyer-footer__item dd,
  .buyer-footer__policy-links a,
  .buyer-footer__copyright {
    white-space: nowrap;
    font-size: 15px;
  }

  .buyer-footer__policy-links a {
    min-height: 0;
    padding: 0;
  }

  .buyer-footer__policy-links a + a::before {
    margin: 0 9px;
  }

  .buyer-footer__item + .buyer-footer__item::before {
    margin: 0.22em 9px 0;
  }
}
