/* POST PAGE — Kindle-like Reading Experience */

/* === ARTICLE LAYOUT === */
.post {
  max-width: 640px;
  margin: 0 auto;
  padding: 40px 24px 120px;
}

/* === POST HEADER === */
.post-header {
  text-align: center;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.post-num {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.post-header h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.6rem, 5vw, 2rem);
  font-weight: 800;
  line-height: 1.3;
  margin: 16px 0 20px;
  letter-spacing: -0.02em;
  color: var(--text);
}

.post-sub {
  font-family: 'Literata', Georgia, serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* === BODY TEXT — Kindle Style === */
.post-body {
  font-family: 'Literata', Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text);
  letter-spacing: 0.01em;
}

.post-body p {
  margin-bottom: 1.6em;
  text-align: left;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.post-body .lead {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2em;
}

.post-body em {
  font-style: italic;
  color: var(--text);
}

.post-body strong {
  font-weight: 600;
  color: var(--text);
}

/* Big Hindi word */
.big-word {
  font-size: clamp(2.5rem, 10vw, 3.5rem);
  text-align: center;
  margin: 1.5em 0;
  opacity: 0.9;
  line-height: 1;
}

/* === SCENE BLOCKS === */
.scene {
  background: var(--bg-surface);
  border-left: 3px solid var(--accent);
  padding: 24px 28px;
  margin: 2em 0;
  border-radius: 0 10px 10px 0;
}

.scene h3 {
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.scene p {
  margin-bottom: 1em;
  font-size: 1rem;
  line-height: 1.75;
}

.scene p:last-child { margin-bottom: 0; }

.scene strong {
  display: block;
  margin-top: 12px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.6;
}

/* === BLOCKQUOTE === */
blockquote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.1rem, 3.5vw, 1.35rem);
  font-weight: 700;
  text-align: center;
  padding: 2em 1em;
  margin: 2.5em 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  color: var(--text);
  line-height: 1.5;
  letter-spacing: -0.01em;
}

/* === PUNCHLINE === */
.punchline {
  text-align: center;
  margin-top: 3em;
  padding-top: 2.5em;
  border-top: 1px solid var(--border);
}

.punchline p {
  font-size: 1rem;
  margin-bottom: 0.6em;
  color: var(--text-secondary);
}

.punchline strong {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  display: block;
  margin: 1em 0;
  color: var(--text);
}

.punchline .final {
  font-family: 'Syne', sans-serif;
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 1.2em;
}

/* === RESPONSIVE === */
@media (min-width: 640px) {
  .post {
    padding: 56px 40px 140px;
  }
  
  .post-body {
    font-size: 1.1rem;
  }
  
  .scene {
    padding: 28px 32px;
    margin-left: -16px;
    margin-right: -16px;
  }
}

/* === SELECTION === */
::selection {
  background: var(--accent-dim);
  color: var(--text);
}
