.consent-overlay {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  overflow-y: auto;
  background: rgba(8, 8, 11, 0.78);
  -webkit-backdrop-filter: grayscale(1) brightness(0.48) blur(3px);
  backdrop-filter: grayscale(1) brightness(0.48) blur(3px);
}

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

html.consent-open,
html.consent-open body {
  overflow: hidden;
}

.consent-dialog {
  width: min(540px, 100%);
  padding: 38px 40px 32px;
  border: 2px solid #f1efe9;
  border-radius: 4px;
  background: #0c0c11;
  box-shadow: 10px 10px 0 #ed168c;
  color: #f1efe9;
  text-align: center;
}

.consent-mark {
  width: 76px;
  height: 76px;
  margin: 0 auto 20px;
  object-fit: cover;
  border-radius: 4px;
}

.consent-kicker {
  margin: 0 0 12px;
  color: #f1cf45;
  font: 800 11px/1.2 Montserrat, 'Montserrat Variable', Arial, sans-serif;
  text-transform: uppercase;
}

.consent-dialog h2 {
  margin: 0;
  color: #f1efe9;
  font: 850 38px/1 Montserrat, 'Montserrat Variable', Arial, sans-serif;
  text-transform: uppercase;
}

.consent-dialog > p:not(.consent-kicker) {
  max-width: 430px;
  margin: 20px auto 0;
  color: #c8c4bb;
  font: 400 15px/1.55 'Space Grotesk', 'Space Grotesk Variable', Arial, sans-serif;
}

.consent-actions {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 10px;
  margin-top: 28px;
}

.consent-actions button {
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid #f1efe9;
  border-radius: 2px;
  background: transparent;
  color: #f1efe9;
  cursor: pointer;
  font: 800 11px/1 Montserrat, 'Montserrat Variable', Arial, sans-serif;
  text-transform: uppercase;
}

.consent-actions button:hover,
.consent-actions button:focus-visible {
  outline: 2px solid #00c8a5;
  outline-offset: 3px;
}

.consent-actions .consent-accept {
  border-color: #f1cf45;
  background: #f1cf45;
  color: #0c0c11;
}

.consent-privacy {
  display: inline-block;
  margin-top: 20px;
  color: #c8c4bb;
  font: 600 12px/1.3 'Space Grotesk', 'Space Grotesk Variable', Arial, sans-serif;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consent-privacy:focus-visible {
  outline: 2px solid #00c8a5;
  outline-offset: 3px;
}

@media (max-width: 560px) {
  .consent-overlay {
    align-items: center;
    padding: 16px;
  }

  .consent-dialog {
    padding: 30px 22px 24px;
    box-shadow: 7px 7px 0 #ed168c;
  }

  .consent-mark {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
  }

  .consent-dialog h2 {
    font-size: 30px;
  }

  .consent-dialog > p:not(.consent-kicker) {
    margin-top: 16px;
    font-size: 14px;
  }

  .consent-actions {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .consent-actions .consent-accept {
    grid-row: 1;
  }
}
