.ogm-website-banner {
  position: relative;
  z-index: 1000;
  background: #1c1917;
  color: #fff;
  border-bottom: 1px solid rgba(196, 160, 90, .45);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
  font-family: "DM Sans", Arial, sans-serif;
}

.ogm-website-banner__inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 44px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 10px 0;
  text-align: center;
}

.ogm-website-banner__message {
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: .02em;
}

.ogm-website-banner__cta {
  flex: 0 0 auto;
  color: #f7d68b;
  border: 1px solid rgba(247, 214, 139, .48);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
}

.ogm-website-banner__cta:hover,
.ogm-website-banner__cta:focus-visible {
  background: rgba(247, 214, 139, .12);
  color: #fff;
}

@media (max-width: 640px) {
  .ogm-website-banner__inner {
    flex-direction: column;
    gap: 8px;
    padding: 12px 0;
  }
}

