/* ═══════════════════════════════════════════════════════════════════
   Hamaseh Sorooshian, Esq. — Blog Post Page Styles
   ═══════════════════════════════════════════════════════════════════ */

/* ─── Post Header ────────────────────────────────────────────────── */
.post-header {
  padding: 5rem 2.5rem 4rem;
  border-bottom: 1px solid var(--hairline);
}

.post-header__inner {
  max-width: 760px;
  margin: 0 auto;
}

.post-header__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--reactor-ink);
}

.post-header__back {
  color: var(--cherenkov);
  transition: color 0.2s;
}
.post-header__back:hover { color: var(--reactor-ink); }

.post-header__divider { color: var(--hairline); }

.post-header__title {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 700;
  color: var(--reactor-ink);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  -webkit-text-stroke: 0.5px var(--reactor-ink);
}

.post-header__sub {
  font-size: 1.1rem;
  color: var(--reactor-ink);
  line-height: 1.7;
  max-width: 56ch;
  margin-bottom: 2rem;
}

.post-header__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--cherenkov);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
}

/* ─── Post Body ──────────────────────────────────────────────────── */
.post-body {
  padding: 5rem 2.5rem 6rem;
}

.post-body__inner {
  max-width: 680px;
  margin: 0 auto;
}

.post-body__inner p {
  font-size: 1.15rem;
  color: var(--reactor-ink);
  line-height: 1.9;
  margin-bottom: 1.75rem;
  max-width: 100%;
}

.post-lead {
  font-size: 1.2rem !important;
  color: var(--ink) !important;
  font-family: var(--font-display);
  font-style: italic;
  border-left: 2px solid var(--cherenkov);
  padding-left: 1.5rem;
  margin-bottom: 2rem !important;
}

.post-body__inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--reactor-ink);
  line-height: 1.2;
  margin-top: 3rem;
  margin-bottom: 1rem;
  -webkit-text-stroke: 0.4px var(--reactor-ink);
}

.post-divider {
  text-align: center;
  color: var(--cherenkov);
  font-size: 1rem;
  opacity: 0.4;
  margin: 3rem 0;
  letter-spacing: 0.3em;
}

.post-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0 2rem;
  padding: 0;
}

.post-list li {
  font-size: 1rem;
  color: var(--reactor-ink);
  line-height: 1.7;
  padding-left: 1.5rem;
  position: relative;
  max-width: 100%;
}

.post-list li::before {
  content: '◇';
  position: absolute;
  left: 0;
  color: var(--cherenkov);
  font-size: 0.55rem;
  top: 0.45em;
}

/* ─── Post CTA ───────────────────────────────────────────────────── */
.post-cta {
  margin-top: 3.5rem;
  padding: 3rem;
  background: var(--reactor-ink);
  background-image: radial-gradient(ellipse at 80% 20%, rgba(30,111,136,0.2) 0%, transparent 60%);
  border-radius: calc(var(--radius) + 2px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.post-cta__text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--pearl);
  line-height: 1.4;
  max-width: 100%;
  margin-bottom: 0 !important;
  color: var(--pearl) !important;
}

/* ─── Post Footer Nav ────────────────────────────────────────────── */
.post-footer-nav {
  padding: 2.5rem 2.5rem 4rem;
  border-top: 1px solid var(--hairline);
}

.post-footer-nav__inner {
  max-width: 760px;
  margin: 0 auto;
}

.post-footer-nav__back {
  color: var(--cherenkov);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  transition: color 0.2s;
}
.post-footer-nav__back:hover { color: var(--reactor-ink); }

/* ─── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .post-header,
  .post-body { padding: 3.5rem 1.5rem; }

  .post-header__title { font-size: clamp(1.8rem, 7vw, 2.8rem); }
  .post-cta { padding: 2rem; }
  .post-lead { font-size: 1.05rem !important; }
}
