/* ============================================================
   monaboulsi.com — Editorial Polish layer
   Loaded AFTER style.css + monaboulsi-overrides.css.
   Adds: typography refinements, pull-quotes, ornaments,
   spacing scale, reading progress bar, author bio,
   mid-essay capture, scroll-triggered CTA, sources block,
   wordmark-aware nav, brand utility classes.
   ============================================================ */

/* ----- Modular spacing scale (Fibonacci-adjacent) ----- */
:root {
  --ed-space-2xs: 4px;
  --ed-space-xs: 8px;
  --ed-space-sm: 16px;
  --ed-space-md: 24px;
  --ed-space-lg: 40px;
  --ed-space-xl: 64px;
  --ed-space-2xl: 104px;
  --ed-space-3xl: 168px;

  --ed-rule-color: rgba(201, 169, 110, 0.35);
  --ed-rule-color-strong: #C9A96E;
  --ed-text-bright: #F5F0E8;
  --ed-text-warm: #E5DDD0;
  --ed-text-quiet: #C8C2B6;

  /* supporting accents — use sparingly */
  --ed-oxblood: #6E1F2E;
  --ed-ink: #26344A;
  --ed-bone: #E5DDD0;
}

/* ----- Universal typographic refinements ----- */
html {
  font-feature-settings: "kern" 1, "liga" 1, "clig" 1, "calt" 1;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  hanging-punctuation: first allow-end last;
}

/* old-style numerals look more editorial in body prose */
.about-prose,
.essay-body,
.mn-essay-body,
.about-prose p,
.essay-body p,
.mn-essay-body p {
  font-feature-settings: "kern" 1, "liga" 1, "onum" 1;
}

/* tabular numerals for metadata */
.essay-meta,
.essay-meta-strip,
.mn-essay-meta {
  font-feature-settings: "kern" 1, "tnum" 1;
}

/* ----- Section labels: tighter tracking on small caps ----- */
.mn-section-label,
.about-credentials-label,
.about-clients-label,
.mn-page-hero-label,
.essay-meta-label {
  font-variant-caps: all-small-caps;
  letter-spacing: 0.22em;
}

/* ----- Drop cap on first paragraph of essays ----- */
.essay-body > p:first-of-type::first-letter,
.mn-essay-body > p:first-of-type::first-letter {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 5.4em;
  line-height: 0.85;
  float: left;
  padding: 4px 12px 0 0;
  margin: 4px 4px 0 -2px;
  color: var(--ed-rule-color-strong);
  font-feature-settings: "lnum" 1;
}

/* ----- Lede paragraph (first paragraph) styling ----- */
.essay-body > p:first-of-type,
.mn-essay-body > p:first-of-type {
  font-size: 1.18em;
  line-height: 1.65;
  color: var(--ed-text-bright);
  font-weight: 400;
}

/* ----- Pull-quote component ----- */
.essay-pullquote,
.mn-essay-pullquote {
  margin: var(--ed-space-xl) auto;
  padding: var(--ed-space-md) 0 var(--ed-space-md) var(--ed-space-lg);
  border-left: 2px solid var(--ed-rule-color-strong);
  max-width: 90%;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.65em;
  line-height: 1.45;
  color: var(--ed-text-bright);
  position: relative;
}
.essay-pullquote::before,
.mn-essay-pullquote::before {
  content: "\201C";
  position: absolute;
  left: -8px;
  top: -10px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 4em;
  line-height: 1;
  color: var(--ed-rule-color);
  pointer-events: none;
}
.essay-pullquote cite,
.mn-essay-pullquote cite {
  display: block;
  margin-top: var(--ed-space-sm);
  font-style: normal;
  font-size: 0.55em;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ed-text-quiet);
}
@media (max-width: 640px) {
  .essay-pullquote,
  .mn-essay-pullquote {
    padding-left: var(--ed-space-md);
    font-size: 1.32em;
    margin: var(--ed-space-lg) 0;
  }
}

/* ----- Custom section divider (replaces "* * *") ----- */
.essay-divider,
.mn-essay-divider,
.about-divider {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: var(--ed-space-md);
  margin: var(--ed-space-xl) auto !important;
  letter-spacing: 0;
  text-indent: 0;
  color: var(--ed-rule-color-strong) !important;
  font-size: 18px !important;
}
.essay-divider::before,
.essay-divider::after,
.mn-essay-divider::before,
.mn-essay-divider::after,
.about-divider::before,
.about-divider::after {
  content: "";
  flex: 0 0 56px;
  height: 1px;
  background: var(--ed-rule-color);
}
.essay-divider span,
.mn-essay-divider span,
.about-divider span {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  letter-spacing: 0.4em;
}

/* ----- Reading progress bar ----- */
.ed-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--ed-rule-color-strong);
  z-index: 9000;
  transition: width 80ms linear, opacity 200ms ease;
  pointer-events: none;
  opacity: 0;
}
.ed-progress.is-active { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .ed-progress { transition: none; }
}

/* ----- Essay meta strip (date + reading time) ----- */
.essay-meta-strip {
  display: flex;
  gap: var(--ed-space-md);
  align-items: center;
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ed-text-quiet);
  margin: var(--ed-space-md) 0 var(--ed-space-lg);
  padding-bottom: var(--ed-space-md);
  border-bottom: 1px solid var(--ed-rule-color);
}
.essay-meta-strip .meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ed-rule-color);
  display: inline-block;
}
.essay-meta-strip .meta-pillar {
  color: var(--ed-rule-color-strong);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
}

/* ----- Author bio block ----- */
.essay-author-bio {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: var(--ed-space-md);
  align-items: start;
  margin: var(--ed-space-2xl) auto var(--ed-space-lg);
  padding: var(--ed-space-lg) 0;
  border-top: 1px solid var(--ed-rule-color);
  border-bottom: 1px solid var(--ed-rule-color);
  max-width: 720px;
}
.essay-author-bio img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--ed-rule-color);
  filter: grayscale(100%);
}
.essay-author-bio .bio-text {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ed-text-warm);
}
.essay-author-bio .bio-name {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--ed-text-bright);
  margin-bottom: var(--ed-space-2xs);
}
.essay-author-bio .bio-links {
  margin-top: var(--ed-space-xs);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.essay-author-bio .bio-links a {
  color: var(--ed-rule-color-strong);
  text-decoration: none;
  margin-right: var(--ed-space-md);
}
.essay-author-bio .bio-links a:hover {
  color: var(--ed-text-bright);
}
@media (max-width: 640px) {
  .essay-author-bio {
    grid-template-columns: 56px 1fr;
    gap: var(--ed-space-sm);
  }
  .essay-author-bio img { width: 56px; height: 56px; }
}

/* ----- Inline mid-essay newsletter capture ----- */
.essay-inline-cta {
  margin: var(--ed-space-2xl) auto;
  padding: var(--ed-space-lg);
  max-width: 640px;
  background: linear-gradient(180deg, rgba(201,169,110,0.05), transparent);
  border-top: 1px solid var(--ed-rule-color);
  border-bottom: 1px solid var(--ed-rule-color);
  text-align: center;
}
.essay-inline-cta .cta-eyebrow {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ed-rule-color-strong);
  margin-bottom: var(--ed-space-sm);
  display: block;
}
.essay-inline-cta .cta-line {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--ed-text-bright);
  margin: 0 0 var(--ed-space-md);
}
.essay-inline-cta a {
  display: inline-block;
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ed-rule-color-strong);
  text-decoration: none;
  border: 1px solid var(--ed-rule-color-strong);
  padding: 14px 28px;
  transition: all 200ms ease;
}
.essay-inline-cta a:hover {
  background: var(--ed-rule-color-strong);
  color: #09080A;
}

/* ----- Sources / Further Reading block ----- */
.essay-sources {
  margin: var(--ed-space-2xl) auto var(--ed-space-xl);
  max-width: 720px;
  padding: var(--ed-space-lg) 0;
  border-top: 1px solid var(--ed-rule-color);
}
.essay-sources h2 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ed-rule-color-strong);
  margin: 0 0 var(--ed-space-md);
}
.essay-sources ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: src;
}
.essay-sources li {
  counter-increment: src;
  padding: var(--ed-space-sm) 0 var(--ed-space-sm) var(--ed-space-lg);
  position: relative;
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ed-text-warm);
  border-bottom: 1px dashed var(--ed-rule-color);
}
.essay-sources li:last-child { border-bottom: none; }
.essay-sources li::before {
  content: counter(src);
  position: absolute;
  left: 0;
  top: 18px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 14px;
  font-style: italic;
  color: var(--ed-rule-color-strong);
}
.essay-sources cite {
  font-style: italic;
  color: var(--ed-text-bright);
}
.essay-sources a {
  color: var(--ed-rule-color-strong);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: var(--ed-rule-color);
}
.essay-sources a:hover {
  text-decoration-color: var(--ed-rule-color-strong);
  color: var(--ed-text-bright);
}

/* ----- Scroll-triggered floating CTA ----- */
.ed-floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  max-width: 320px;
  background: #111;
  border: 1px solid var(--ed-rule-color-strong);
  padding: 18px 22px 16px;
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ed-text-warm);
  z-index: 8000;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 280ms ease, transform 280ms ease;
  pointer-events: none;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
.ed-floating-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.ed-floating-cta .floating-line {
  font-style: italic;
  margin: 0 0 12px;
}
.ed-floating-cta a {
  display: inline-block;
  color: var(--ed-rule-color-strong);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}
.ed-floating-cta a:hover { color: var(--ed-text-bright); }
.ed-floating-cta .floating-dismiss {
  position: absolute;
  top: 6px;
  right: 8px;
  background: none;
  border: none;
  color: var(--ed-text-quiet);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  padding: 4px 6px;
}
.ed-floating-cta .floating-dismiss:hover { color: var(--ed-text-bright); }
@media (max-width: 640px) {
  .ed-floating-cta {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .ed-floating-cta { transition: opacity 0.01ms; }
}

/* ----- Wordmark-aware nav logo ----- */
.mn-nav-logo svg.nav-wordmark {
  height: 28px;
  width: auto;
  display: block;
  color: var(--ed-text-bright);
}
.mn-nav-logo svg.nav-wordmark text { fill: currentColor; }
.mn-nav-logo:hover svg.nav-wordmark { color: var(--ed-rule-color-strong); }
@media (max-width: 640px) {
  .mn-nav-logo svg.nav-wordmark { height: 22px; }
}

/* ----- Brand utility classes (replaces inline gold styles) ----- */
.ed-gold { color: #C9A96E; }
.ed-gold-italic { color: #C9A96E; font-style: italic; }
.ed-text-bright { color: #F5F0E8; }
.ed-text-quiet { color: #C8C2B6; }

/* ----- Underline-draw link animation for body prose ----- */
.essay-body a:not(.essay-inline-cta a),
.mn-essay-body a:not(.essay-inline-cta a),
.about-prose a {
  color: var(--ed-rule-color-strong);
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0% 1px;
  transition: background-size 280ms ease;
  padding-bottom: 2px;
}
.essay-body a:not(.essay-inline-cta a):hover,
.mn-essay-body a:not(.essay-inline-cta a):hover,
.about-prose a:hover {
  background-size: 100% 1px;
  color: var(--ed-text-bright);
}

/* ----- Marquee logos: pause + reveal context on hover ----- */
.mn-credibility-marquee:hover .mn-credibility-track {
  animation-play-state: paused;
}
.mn-marquee-item {
  position: relative;
  cursor: default;
  transition: color 200ms ease;
}
.mn-credibility-marquee:hover .mn-marquee-item:hover {
  color: var(--ed-rule-color-strong);
}

/* ----- About page: client list with attribution context ----- */
.about-clients-detail {
  list-style: none;
  margin: 0 auto var(--ed-space-md);
  padding: 0;
  max-width: 720px;
  border-top: 1px solid var(--ed-rule-color);
}
.about-clients-detail li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--ed-space-md);
  padding: var(--ed-space-md) 0;
  border-bottom: 1px solid var(--ed-rule-color);
}
.about-clients-detail .client-name {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ed-text-bright);
  font-weight: 500;
  flex: 0 0 auto;
}
.about-clients-detail .client-context {
  font-family: 'Source Serif 4', Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: var(--ed-text-quiet);
  text-align: right;
  font-weight: 300;
}
.about-clients-note {
  text-align: center;
  margin-top: var(--ed-space-md);
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 13px;
  font-style: italic;
  color: var(--ed-text-quiet);
}
.about-clients-note a {
  color: var(--ed-rule-color-strong);
  text-decoration: none;
  border-bottom: 1px solid var(--ed-rule-color);
}
.about-clients-note a:hover {
  color: var(--ed-text-bright);
  border-bottom-color: var(--ed-rule-color-strong);
}
@media (max-width: 640px) {
  .about-clients-detail li {
    flex-direction: column;
    gap: var(--ed-space-2xs);
    align-items: flex-start;
  }
  .about-clients-detail .client-context { text-align: left; }
}

/* ----- Work page: testimonials + case studies ----- */
.work-trust-section {
  padding: var(--ed-space-3xl) 6%;
  background: #0E0D0F;
  border-top: 1px solid var(--ed-rule-color);
  border-bottom: 1px solid var(--ed-rule-color);
}
.work-trust-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.work-trust-label {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ed-rule-color-strong);
  font-weight: 500;
  display: block;
  margin-bottom: var(--ed-space-sm);
}
.work-trust-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ed-text-bright);
  margin: 0 0 var(--ed-space-2xl);
  max-width: 720px;
}
.work-cases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--ed-space-lg);
  margin-bottom: var(--ed-space-2xl);
}
.work-case {
  border: 1px solid var(--ed-rule-color);
  padding: var(--ed-space-lg);
  background: #111;
  position: relative;
}
.work-case::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 32px;
  height: 2px;
  background: var(--ed-rule-color-strong);
}
.work-case-tag {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ed-rule-color-strong);
  margin: 0 0 var(--ed-space-sm);
  display: block;
}
.work-case-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--ed-text-bright);
  line-height: 1.35;
  margin: 0 0 var(--ed-space-sm);
}
.work-case-body {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ed-text-warm);
  margin: 0 0 var(--ed-space-md);
}
.work-case-attribution {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 12px;
  font-style: italic;
  color: var(--ed-text-quiet);
  letter-spacing: 0.04em;
  margin: 0;
}
.work-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--ed-space-lg);
}
.work-testimonial {
  padding: var(--ed-space-lg) var(--ed-space-md);
  border-left: 2px solid var(--ed-rule-color-strong);
}
.work-testimonial blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.55;
  color: var(--ed-text-bright);
  margin: 0 0 var(--ed-space-sm);
}
.work-testimonial cite {
  display: block;
  font-style: normal;
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ed-text-quiet);
}
.work-trust-placeholder-note {
  text-align: center;
  font-style: italic;
  color: var(--ed-text-quiet);
  font-size: 13px;
  margin: var(--ed-space-2xl) 0 0;
  padding: var(--ed-space-md);
  border: 1px dashed var(--ed-rule-color);
}

/* ----- Reading list page ----- */
.rl-page {
  background: var(--mn-bg, #09080A);
  padding: var(--ed-space-2xl) 6% var(--ed-space-3xl);
}
.rl-inner {
  max-width: 820px;
  margin: 0 auto;
}
.rl-header {
  text-align: center;
  margin-bottom: var(--ed-space-2xl);
  padding-bottom: var(--ed-space-lg);
  border-bottom: 1px solid var(--ed-rule-color);
}
.rl-eyebrow {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ed-rule-color-strong);
  display: block;
  margin-bottom: var(--ed-space-sm);
}
.rl-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 52px;
  line-height: 1.15;
  color: var(--ed-text-bright);
  margin: 0 0 var(--ed-space-md);
}
.rl-intro {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 20px;
  line-height: 1.6;
  color: var(--ed-text-warm);
  max-width: 640px;
  margin: 0 auto;
}
.rl-section {
  margin: var(--ed-space-2xl) 0;
}
.rl-section-label {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ed-rule-color-strong);
  display: block;
  margin-bottom: var(--ed-space-md);
}
.rl-section-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--ed-text-bright);
  margin: 0 0 var(--ed-space-lg);
  border-bottom: 1px solid var(--ed-rule-color);
  padding-bottom: var(--ed-space-sm);
}
.rl-book {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--ed-space-md);
  padding: var(--ed-space-md) 0;
  border-bottom: 1px solid var(--ed-rule-color);
}
.rl-book:last-child { border-bottom: none; }
.rl-book-cover {
  width: 80px;
  height: 110px;
  background: #1A1A1A;
  border: 1px solid var(--ed-rule-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  color: var(--ed-rule-color-strong);
  font-size: 14px;
  text-align: center;
  padding: 8px;
}
.rl-book-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--ed-text-bright);
  margin: 0 0 var(--ed-space-2xs);
  line-height: 1.3;
}
.rl-book-author {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ed-rule-color-strong);
  margin: 0 0 var(--ed-space-xs);
}
.rl-book-note {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 14.5px;
  line-height: 1.65;
  font-style: italic;
  color: var(--ed-text-warm);
  margin: 0;
}
@media (max-width: 640px) {
  .rl-title { font-size: 36px; }
  .rl-section-heading { font-size: 22px; }
  .rl-book { grid-template-columns: 60px 1fr; gap: var(--ed-space-sm); }
  .rl-book-cover { width: 60px; height: 84px; font-size: 11px; }
}

/* ----- Essay TL;DR summary block ----- */
.essay-tldr {
  margin: var(--ed-space-lg) auto var(--ed-space-xl);
  max-width: 720px;
  padding: var(--ed-space-md) var(--ed-space-lg);
  border-left: 2px solid var(--ed-rule-color-strong);
  background: linear-gradient(90deg, rgba(201,169,110,0.04), transparent);
}
.essay-tldr-label {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ed-rule-color-strong);
  margin: 0 0 var(--ed-space-xs);
  display: block;
  font-weight: 500;
}
.essay-tldr p {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--ed-text-warm);
  margin: 0;
}
.essay-tldr p + p { margin-top: var(--ed-space-xs); }

/* ----- Print stylesheet for essays ----- */
@media print {
  .mn-nav, .mn-footer, .ed-progress, .ed-floating-cta,
  .essay-inline-cta, .essay-author-bio .bio-links {
    display: none !important;
  }
  body { background: #fff !important; color: #111 !important; }
  .essay-body, .mn-essay-body { max-width: none; }
  a { color: #111 !important; text-decoration: underline; }
  .essay-pullquote, .mn-essay-pullquote {
    border-left-color: #999 !important;
    color: #111 !important;
  }
  .essay-sources { color: #111 !important; }
  .essay-sources li { border-color: #ccc !important; }
}
