/* ============================
   CONTENT AREA - emza
   איזור תצוגה נגלל
   ============================ */

main {
  flex: 1;
  overflow: hidden; /* main לא גולל - רק הקנבס */
  background-color: transparent; /* שקוף כדי לראות כחול נייבי מהצדדים */
  display: flex;
  flex-direction: column;
}

.emza {
  max-width: 1000px;
  width: 100%;
  height: 100%; /* גובה מלא */
  overflow-y: auto; /* הקנבס גולל */
  margin: 0 auto;
  padding: 8px;
  color: #000;
  font-size: 16px;
  line-height: 1.6;
  background-color: #e8f2f7; /* רקע בהיר מאוד כמו קנבס */
  box-sizing: border-box;
}

/* גלילה דקה וסמויה */
.emza::-webkit-scrollbar {
  width: 4px;
}

.emza::-webkit-scrollbar-track {
  background: transparent;
}

.emza::-webkit-scrollbar-thumb {
  background: #003366;
  border-radius: 2px;
}

.emza h1 {
  font-family: 'Yiddishkeit', serif;
  font-size: 24px;
  margin-bottom: 8px;
}

.emza h2 {
  font-family: 'SBL Hebrew', serif;
  font-size: 20px;
  margin-top: 16px;
  margin-bottom: 8px;
}

.emza p {
  margin-bottom: 8px;
}
