/* Shared SBE footer */
.sbe-shared-footer,
.sbe-shared-footer * {
  box-sizing: border-box;
}

.sbe-shared-footer {
  background: #0a1628;
  color: #d4cfc2;
  padding: 28px 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.sbe-shared-footer .footer-inner {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.sbe-shared-footer .brand--footer {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
  flex-shrink: 0;
}

.sbe-shared-footer .brand-crest {
  width: 44px;
  height: 52px;
  object-fit: contain;
  flex: 0 0 44px;
}

.sbe-shared-footer .brand-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
  color: #c8a04a;
  letter-spacing: 1px;
}

.sbe-shared-footer .brand-sub {
  font-size: 9px;
  letter-spacing: 1.4px;
  color: #d4cfc2;
  text-transform: uppercase;
  line-height: 1.2;
}

.sbe-shared-footer .footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sbe-shared-footer .footer-nav span {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #d4cfc2;
  white-space: nowrap;
}

.sbe-shared-footer .copy {
  margin: 0;
  font-size: 11px;
  color: #8a93a5;
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .sbe-shared-footer .footer-inner {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .sbe-shared-footer .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .sbe-shared-footer .footer-nav {
    flex-wrap: wrap;
    gap: 18px;
  }
}

@media (max-width: 560px) {
  .sbe-shared-footer .footer-inner {
    padding: 0 20px;
  }

  .sbe-shared-footer .brand--footer {
    flex-wrap: wrap;
    justify-content: center;
  }

  .sbe-shared-footer .footer-nav {
    gap: 12px 18px;
  }

  .sbe-shared-footer .copy {
    white-space: normal;
  }
}
