html.age-gate-pending {
  min-height: 100%;
  background: #081a15;
}

html.age-gate-pending body {
  overflow: hidden;
}

html.age-gate-pending .page-shell {
  visibility: hidden;
}

body.editorial-age-gate-open {
  overflow: hidden;
}

.editorial-age-gate[hidden] {
  display: none !important;
}

.editorial-age-gate {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  padding: 18px;
  place-items: center;
  overflow: auto;
  color: #24180f;
  background: rgba(3, 12, 10, 0.88);
  font-family: "Archivo", Arial, sans-serif;
}

.editorial-age-gate,
.editorial-age-gate * {
  box-sizing: border-box;
}

.editorial-age-gate-card {
  width: min(100%, 480px);
  padding: clamp(24px, 6vw, 38px);
  border: 1px solid rgba(201, 160, 80, 0.72);
  border-radius: 22px;
  background: #f3ead7;
  box-shadow:
    inset 0 0 0 6px #f3ead7,
    inset 0 0 0 7px rgba(35, 24, 14, 0.18),
    0 28px 80px rgba(0, 0, 0, 0.45);
}

.editorial-age-gate-eyebrow {
  margin: 0;
  color: #a33d2d;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.editorial-age-gate-card h2 {
  margin: 9px 0 12px;
  color: #23180e;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 7vw, 3.1rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.editorial-age-gate-copy {
  margin: 0;
  color: #6b5b43;
  line-height: 1.55;
}

.editorial-age-gate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.35fr;
  gap: 10px;
  margin: 22px 0 8px;
}

.editorial-age-gate-grid label {
  display: block;
  margin-bottom: 5px;
  color: #6b5b43;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.editorial-age-gate-grid input {
  width: 100%;
  min-height: 48px;
  padding: 0 8px;
  border: 1px solid rgba(163, 61, 45, 0.42);
  border-radius: 10px;
  color: #23180e;
  background: #fff9ef;
  font: inherit;
  text-align: center;
}

.editorial-age-gate-grid input:focus-visible,
.editorial-age-gate button:focus-visible,
.editorial-age-gate a:focus-visible {
  outline: 3px solid #c9a050;
  outline-offset: 3px;
}

.editorial-age-gate-error {
  min-height: 24px;
  margin: 8px 0;
  color: #a33d2d;
  font-size: 0.86rem;
  font-weight: 800;
}

.editorial-age-gate-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.editorial-age-gate-actions a {
  color: #6b5b43;
  font-size: 0.78rem;
}

.editorial-age-gate-actions button {
  min-width: 112px;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  color: #23180e;
  cursor: pointer;
  background: #c9a050;
  font: inherit;
  font-weight: 900;
}

.editorial-age-gate-actions button:disabled {
  cursor: wait;
  opacity: 0.65;
}

@media (max-width: 440px) {
  .editorial-age-gate-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .editorial-age-gate-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .editorial-age-gate-actions button {
    width: 100%;
  }

  .editorial-age-gate-actions a {
    text-align: center;
  }
}

@media print {
  .editorial-age-gate {
    display: none !important;
  }
}
