.obh-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  background: var(--light-grey, #ebe9e9);
  border-top: 1px solid #000;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
  padding: 20px 24px;
}

.obh-consent-banner__box {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.obh-consent-banner__text {
  flex: 1 1 480px;
  margin: 0;
  font-size: 13pt;
  line-height: 1.5;
  color: #191919;
}

.obh-consent-banner__link {
  color: #191919;
  text-decoration: underline;
}

.obh-consent-banner__actions {
  flex: 0 0 auto;
  display: flex;
  gap: 12px;
}

.obh-consent-banner__btn {
  font-size: 12pt;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid #000;
  background: #fff;
  cursor: pointer;
  white-space: nowrap;
}

.obh-consent-banner__btn--accept {
  background: var(--sage, #8f9c8a);
  color: #fff;
  border-color: var(--sage, #8f9c8a);
}

.obh-consent-banner__btn:hover {
  opacity: 0.85;
}

@media (max-width: 767px) {
  .obh-consent-banner {
    padding: 16px;
  }
  .obh-consent-banner__box {
    flex-direction: column;
    align-items: stretch;
  }
  .obh-consent-banner__actions {
    justify-content: stretch;
  }
  .obh-consent-banner__btn {
    flex: 1 1 0;
  }
}
