.site-notice-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1090;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(3, 6, 11, .78);
  backdrop-filter: blur(7px);
}

.site-notice-dialog {
  width: min(100%, 36rem);
  max-height: min(80vh, 44rem);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 1.25rem;
  padding: clamp(1.25rem, 4vw, 2rem);
  background: linear-gradient(145deg, #151a24, #0c1017);
  color: #eef2f8;
  box-shadow: 0 1.5rem 5rem rgba(0, 0, 0, .55);
}

.site-notice-eyebrow {
  margin-bottom: .65rem;
  color: #7dd3fc;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.site-notice-title {
  margin: 0 0 1rem;
  color: #fff;
  font-size: clamp(1.45rem, 4vw, 2rem);
}

.site-notice-content {
  margin: 0;
  color: #c4ccd8;
  line-height: 1.7;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.site-notice-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.5rem;
}

body.site-notice-open {
  overflow: hidden;
}
