.bc-footer {
  width: 100%;
  border-top: 1px solid #302c20;
  background: #000;
  color: #fff;
  font-family: FuturaLocal, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.bc-footer *,
.bc-footer *::before,
.bc-footer *::after {
  box-sizing: border-box;
}

.bc-footer-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 210px;
  margin: 0 auto;
  padding: 44px 0 38px;
  display: grid;
  grid-template-columns: minmax(250px, 1fr) auto;
  gap: 56px;
  align-items: start;
}

.bc-footer-brand {
  display: inline-flex;
  width: min(360px, 100%);
  height: 84px;
  align-items: center;
}

.bc-footer-brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.bc-footer-connect {
  min-width: 340px;
}

.bc-footer-connect > p {
  margin: 0 0 12px;
  color: #f0c34d;
  font-size: 16px;
  font-weight: 900;
}

.bc-social-links {
  display: flex;
  gap: 14px;
}

.bc-social-links a {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid #fff;
  border-radius: 50%;
  background: #fff;
  color: #050505;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.bc-social-links a:hover,
.bc-social-links a:focus-visible {
  border-color: #f0c34d;
  background: #f0c34d;
  color: #14100a;
}

.bc-social-links svg {
  width: 23px;
  height: 23px;
  display: block;
  fill: currentColor;
}

.bc-legal-links {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
}

.bc-legal-links a {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.bc-legal-links a:hover,
.bc-legal-links a:focus-visible {
  color: #f0c34d;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 720px) {
  .bc-footer-inner {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 34px 0;
  }

  .bc-footer-brand {
    width: min(280px, 100%);
    height: 66px;
  }

  .bc-footer-connect {
    min-width: 0;
  }

  .bc-legal-links {
    align-items: flex-start;
    flex-direction: column;
  }
}
