/* 1823 Disclaimers - Entry Modal */

/* ── Overlay ── */
.disc-entry-overlay {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: #fff;
  overflow-y: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 80px 20px 60px;
}

/* ── Content box ── */
.disc-entry-box {
  max-width: 680px;
  width: 100%;
}

/* ── Heading ── */
.disc-entry-heading {
  font-family: RecklessNeue, 'RecklessNeue Fallback', serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
  color: #000;
  margin: 0 0 40px;
  letter-spacing: -0.01em;
}

/* ── Body text ── */
.disc-entry-body {
  font-family: ABCDiatype, 'ABCDiatype Fallback', Arial, sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: #000;
}

.disc-entry-body p {
  margin: 0 0 22px;
}

.disc-entry-body p:last-child {
  margin-bottom: 0;
}

/* ── Actions ── */
.disc-entry-actions {
  margin-top: 48px;
}

/* ── Button (shared with interstitial via theme inheritance) ── */
.disc-btn {
  display: inline-block;
  font-family: ABCDiatype, 'ABCDiatype Fallback', Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #000;
  background: transparent;
  border: 1px solid #000;
  padding: 14px 36px;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
  appearance: none;
  -webkit-appearance: none;
}

.disc-btn:hover {
  background: #000;
  color: #fff;
}

.disc-btn:focus-visible {
  outline: 2px solid #000;
  outline-offset: 2px;
}

/* ── Mobile ── */
@media (max-width: 600px) {
  .disc-entry-overlay {
    padding: 48px 20px 40px;
  }

  .disc-entry-heading {
    font-size: 34px;
    margin-bottom: 28px;
  }

  .disc-entry-body {
    font-size: 14px;
  }

  .disc-entry-actions {
    margin-top: 36px;
  }

  .disc-btn {
    width: 100%;
    text-align: center;
    padding: 16px 24px;
  }
}
