.site-footer.bh-footer {
  width: min(calc(100% - 32px), 1180px);
  margin: 54px auto 0;
  padding: 24px clamp(18px, 3vw, 30px) 18px;
  border: 1px solid rgba(115, 205, 255, .2);
  border-radius: 18px 18px 0 0;
  color: #b6c8df;
  background: linear-gradient(120deg, rgba(7, 28, 57, .9), rgba(15, 13, 43, .92));
  box-shadow: 0 -12px 42px rgba(0, 0, 0, .12);
}

.bh-footer-main,
.bh-footer-bottom,
.bh-footer-nav {
  display: flex;
  gap: 16px;
  align-items: center;
}

.bh-footer-main {
  justify-content: space-between;
}

.bh-footer-brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: #f6fbff;
  font-weight: 900;
  letter-spacing: .01em;
}

.bh-footer-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 7px 13px rgba(0, 0, 0, .32));
}

.bh-footer-nav {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.bh-footer a {
  color: #a9ddff;
  text-decoration: none;
}

.bh-footer-nav a {
  padding: 7px 9px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: .84rem;
  font-weight: 750;
}

.bh-footer a:hover,
.bh-footer a:focus-visible {
  color: #fff;
  border-color: rgba(101, 210, 255, .42);
  background: rgba(81, 176, 255, .12);
  outline: none;
}

.bh-footer-bottom {
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: #8fa7c5;
  font-size: .79rem;
}

.bh-footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

@media (max-width: 720px) {
  .site-footer.bh-footer {
    width: min(calc(100% - 20px), 1180px);
    margin-top: 34px;
    border-radius: 14px 14px 0 0;
  }

  .bh-footer-main,
  .bh-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .bh-footer-nav {
    justify-content: flex-start;
  }
}
