.has-age-prompt {
  overflow: hidden;
}

.age-prompt {
  inset: 0;
  position: fixed;
  z-index: 99999;
}

.age-prompt__backdrop {
  background: rgb(9 27 23 / 82%);
  inset: 0;
  position: absolute;
}

.age-prompt__dialog {
  background: #fffdf8;
  border: 1px solid #dce9e1;
  border-radius: 1.5rem;
  box-shadow: 0 30px 100px rgb(0 0 0 / 35%);
  color: #19302a;
  left: 50%;
  max-height: calc(100vh - 2rem);
  max-width: 560px;
  overflow-y: auto;
  padding: clamp(1.5rem, 6vw, 3rem);
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 2rem);
}

.age-prompt__badge {
  align-items: center;
  background: #102c26;
  border-radius: 999px;
  color: white;
  display: inline-flex;
  font-size: 1.25rem;
  font-weight: 850;
  height: 64px;
  justify-content: center;
  margin: 0;
  width: 64px;
}

.age-prompt__eyebrow {
  color: #45645b;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  margin: 1rem 0 0;
  text-transform: uppercase;
}

.age-prompt__dialog h2 {
  color: #102c26;
  font-size: clamp(1.7rem, 5vw, 2.5rem);
  margin: 0.4rem 0 1rem;
}

.age-prompt__actions {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.age-prompt__confirm,
.age-prompt__decline {
  align-items: center;
  border: 1px solid #194b3f;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 50px;
  padding: 0.7rem 1.2rem;
  text-decoration: none;
}

.age-prompt__confirm {
  background: #194b3f;
  color: white;
}

.age-prompt__decline {
  background: transparent;
  color: #194b3f;
}

.age-prompt__privacy {
  font-size: 0.82rem;
  margin: 1rem 0 0;
}

@media (min-width: 520px) {
  .age-prompt__actions {
    grid-template-columns: 1fr 0.55fr;
  }
}
