.growth-consent {
  box-sizing: border-box;
  color: #111827;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

.growth-consent *,
.growth-consent *::before,
.growth-consent *::after {
  box-sizing: border-box;
}

.growth-consent--banner {
  position: fixed;
  z-index: 10000;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: flex;
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 20px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid #dce2ea;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(11, 18, 32, .18);
}

.growth-consent__copy {
  max-width: 650px;
}

.growth-consent__copy strong,
.growth-consent__dialog h2 {
  color: #0b1220;
}

.growth-consent__copy p,
.growth-consent__dialog > p {
  margin: 4px 0;
  color: #5b6472;
  font-size: 14px;
  line-height: 1.55;
}

.growth-consent a {
  color: #1d4ed8;
  font-size: 13px;
  font-weight: 700;
}

.growth-consent__actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.growth-consent button {
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid #0b1220;
  border-radius: 8px;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.growth-consent button:focus-visible,
.growth-consent a:focus-visible {
  outline: 3px solid rgba(37, 99, 235, .35);
  outline-offset: 3px;
}

.growth-consent__primary {
  background: #ffc400;
  color: #0b1220;
}

.growth-consent__primary:hover {
  background: #e0ad00;
}

.growth-consent__secondary {
  background: #ffffff;
  color: #0b1220;
}

.growth-consent__secondary:hover {
  background: #f7f9fc;
}

.growth-consent--modal[hidden] {
  display: none;
}

.growth-consent--modal {
  position: fixed;
  z-index: 10020;
  inset: 0;
  display: grid;
  padding: 20px;
  place-items: center;
}

.growth-consent__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 18, 32, .64);
}

.growth-consent__dialog {
  position: relative;
  width: min(620px, 100%);
  max-height: min(760px, calc(100vh - 40px));
  overflow: auto;
  padding: 30px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 80px rgba(11, 18, 32, .3);
}

.growth-consent__dialog h2 {
  margin: 4px 42px 10px 0;
  font-size: 28px;
  line-height: 1.2;
}

.growth-consent__eyebrow {
  margin: 0;
  color: #1d4ed8;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.growth-consent__close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 44px;
  padding: 0;
  place-items: center;
  border-color: #dce2ea !important;
  background: #ffffff;
  color: #0b1220;
  font-size: 26px !important;
  line-height: 1;
}

.growth-consent__option {
  display: flex;
  margin-top: 14px;
  padding: 16px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid #dce2ea;
  border-radius: 8px;
  background: #f7f9fc;
}

.growth-consent__option strong,
.growth-consent__option span {
  display: block;
}

.growth-consent__option div span {
  margin-top: 3px;
  color: #5b6472;
  font-size: 13px;
  line-height: 1.45;
}

.growth-consent__status {
  flex: 0 0 auto;
  color: #15803d;
  font-size: 12px;
  font-weight: 800;
}

.growth-consent__legal {
  display: inline-block;
  margin: 18px 0 22px;
}

.growth-consent-open {
  overflow: hidden;
}

@media (max-width: 720px) {
  .growth-consent--banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: grid;
    width: calc(100% - 24px);
    padding: 16px;
    gap: 14px;
  }

  .growth-consent__actions {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }

  .growth-consent__dialog {
    padding: 24px 18px;
  }

  .growth-consent__dialog h2 {
    font-size: 24px;
  }

  .growth-consent__option {
    display: grid;
    gap: 8px;
  }
}

@media (max-width: 430px) {
  .growth-consent__actions {
    grid-template-columns: 1fr;
  }
}

