/* page.css — A4 page styling, page shadows, page breaks, heading styles */

/* ── Page ─────────────────────────────────────────────── */

.page {
  width: 794px;
  min-height: 1123px;
  margin: 0 auto 32px;
  background: #ffffff;
  padding: 96px 96px;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  outline: none;
  font-family: Calibri, sans-serif;
  font-size: 11pt;
  line-height: 1.15;
  color: #1a1a1a;
  word-wrap: break-word;
  overflow-wrap: break-word;
  position: relative;
  flex-shrink: 0;
}

.page:focus {
  box-shadow: 0 2px 12px rgba(37, 99, 235, 0.15);
}

/* ── Page break indicator ─────────────────────────────── */

.page-break-indicator {
  width: 794px;
  margin: 0 auto;
  height: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}

.page-break-indicator::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 48px;
  right: 48px;
  border-top: 2px dashed #333;
}

.page-break-indicator::after {
  content: 'Page Break';
  position: relative;
  background: #141414;
  padding: 0 12px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── Heading styles inside pages ──────────────────────── */

.page h1 {
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 0.5em;
  line-height: 1.3;
}

.page h2 {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 0.4em;
  line-height: 1.35;
}

.page h3 {
  font-size: 1.2em;
  font-weight: 600;
  margin-bottom: 0.3em;
  line-height: 1.4;
}

/* ── Paragraph & inline styles ────────────────────────── */

.page p {
  margin-bottom: 0.5em;
}

.page blockquote {
  border-left: 3px solid #2563eb;
  padding-left: 16px;
  margin: 0.5em 0;
  color: #555;
  font-style: italic;
}

.page hr {
  border: none;
  border-top: 1px solid #d0d0d0;
  margin: 1em 0;
}

.page ul, .page ol {
  margin: 0.5em 0;
  padding-left: 1.5em;
}

.page li {
  margin-bottom: 0.2em;
}

/* Selection inside pages */
.page ::selection {
  background: #dbeafe;
  color: #1a1a1a;
}
