/* ============================================================
   article.css - shared styles for all Space & Universe article pages
   ============================================================ */

/* ---- Article Hero ---- */
.article-hero {
  padding: 96px 0 64px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.article-hero.teal {
  background: linear-gradient(135deg, #0d1b3e 0%, #0a2540 55%, #0f3460 100%);
}
.article-hero.teal::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(15,118,110,0.22) 0%, transparent 62%);
  pointer-events: none;
}
.article-hero-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.15s; }
.breadcrumb a:hover { color: #5eead4; }
.breadcrumb span { color: rgba(255,255,255,0.3); }
.article-hero h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(30px, 5vw, 54px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 18px;
  text-wrap: balance;
}
.article-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 22px;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.article-meta span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.1);
  padding: 4px 12px;
  border-radius: 99px;
}

/* ---- Article Layout ---- */
.article-layout {
  padding: 64px 0 96px;
  background: #fff;
}
.article-layout > * {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.article-layout {
  display: block;
}
/* Override: the inner flex layout */
.article-layout {
  max-width: 100%;
  padding: 0;
}
.article-layout-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 24px 96px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  align-items: start;
}

/* When the template uses direct children approach */
.article-layout {
  padding: 64px 0 96px;
}
.article-layout .article-toc,
.article-layout .article-body {
  max-width: none;
  padding: 0;
}

/* Make the article-layout itself act as the wrapper */
.article-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  max-width: 1100px;
  margin: 64px auto 96px;
  padding: 0 24px;
  align-items: start;
}

/* ---- Table of Contents Sidebar ---- */
.article-toc {
  position: sticky;
  top: 88px;
  background: #f8faff;
  border: 1px solid #e8edf5;
  border-radius: 12px;
  padding: 22px 20px;
}
.article-toc h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 14px;
  border: none;
  padding: 0;
}
.article-toc ol {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: toc-counter;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.article-toc li { counter-increment: toc-counter; }
.article-toc a {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: #475569;
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 7px;
  line-height: 1.4;
  transition: background 0.15s, color 0.15s;
}
.article-toc a::before {
  content: counter(toc-counter);
  font-size: 10px;
  font-weight: 700;
  color: #0f766e;
  background: #ccfbf1;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.article-toc a:hover {
  background: #f0fdfa;
  color: #0f766e;
}

/* ---- Article Body ---- */
.article-body {
  min-width: 0;
  max-width: 720px;
}
.article-body section {
  margin-bottom: 48px;
  scroll-margin-top: 100px;
}
.article-body h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 700;
  color: #0d1b3e;
  line-height: 1.2;
  margin-bottom: 16px;
  padding-top: 4px;
}
.article-body p {
  font-size: 16px;
  color: #374151;
  line-height: 1.85;
  margin-bottom: 16px;
}
.article-body p:last-child { margin-bottom: 0; }

/* ---- Content List ---- */
.content-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.content-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15.5px;
  color: #374151;
  line-height: 1.75;
}
.content-list li::before {
  content: '';
  width: 7px;
  height: 7px;
  background: #0f766e;
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}
.content-list li strong { color: #0d1b3e; }

/* ---- Callout ---- */
.callout {
  border-radius: 10px;
  padding: 18px 22px;
  margin: 24px 0;
  font-size: 15px;
  line-height: 1.75;
  color: #374151;
}
.callout.teal {
  background: #f0fdfa;
  border-left: 4px solid #0f766e;
}
.callout strong {
  display: block;
  color: #0f766e;
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 13px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* ---- Highlight Box ---- */
.highlight-box {
  background: #f8faff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 22px 24px;
  margin: 24px 0;
}
.highlight-box h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  color: #0d1b3e;
  margin-bottom: 16px;
}
.three-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.three-cols > div {
  font-size: 14px;
  color: #374151;
  line-height: 1.65;
}
.three-cols strong {
  display: block;
  font-size: 13px;
  color: #0d1b3e;
  margin-bottom: 4px;
}

/* ---- Fact Grid ---- */
.fact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 20px 0;
}
.fact-card {
  background: #f0fdfa;
  border: 1px solid #99f6e4;
  border-radius: 10px;
  padding: 16px 18px;
}
.fact-year {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: #0f766e;
  margin-bottom: 6px;
}
.fact-text {
  font-size: 14px;
  color: #374151;
  line-height: 1.65;
}
.fact-text strong { color: #0d1b3e; }

/* ---- Key Facts ---- */
.key-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 20px 0;
}
.kf-item {
  background: #0d1b3e;
  border-radius: 12px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.kf-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  color: #5eead4;
}
.kf-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

/* ---- Planet Cards ---- */
.planet-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px 22px;
  margin: 16px 0;
  transition: box-shadow 0.2s;
}
.planet-card:hover { box-shadow: 0 4px 20px rgba(15,118,110,0.1); }
.planet-card.earth { border-color: #99f6e4; background: #f0fdfa; }
.planet-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.planet-header h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 19px;
  font-weight: 700;
  color: #0d1b3e;
  margin: 0;
  flex: 1;
}
.planet-order {
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  background: #f1f5f9;
  padding: 3px 9px;
  border-radius: 99px;
  white-space: nowrap;
}
.planet-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
}
.planet-dot.mercury  { background: #9ca3af; }
.planet-dot.venus    { background: #f59e0b; }
.planet-dot.earth-dot { background: #3b82f6; }
.planet-dot.mars     { background: #ef4444; }
.planet-dot.jupiter  { background: #d97706; }
.planet-dot.saturn   { background: #ca8a04; box-shadow: 0 0 0 3px #fef3c7, 0 0 0 5px #ca8a04; }
.planet-dot.uranus   { background: #06b6d4; }
.planet-dot.neptune  { background: #4f46e5; }
.planet-card p {
  font-size: 14.5px;
  color: #374151;
  line-height: 1.75;
  margin-bottom: 8px;
}
.planet-card p:last-child { margin-bottom: 0; }

/* ---- Comparison Table ---- */
.comparison-table-wrap {
  overflow-x: auto;
  margin: 20px 0;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.comparison-table th {
  background: #0d1b3e;
  color: #fff;
  font-weight: 600;
  text-align: left;
  padding: 12px 16px;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.comparison-table td {
  padding: 10px 16px;
  color: #374151;
  border-bottom: 1px solid #f1f5f9;
  white-space: nowrap;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) td { background: #f8faff; }
.comparison-table tr:hover td { background: #f0fdfa; color: #0d1b3e; }

/* ---- Space Cards Grid (for overview page) ---- */
.space-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin: 32px 0;
}
.space-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.18s;
}
.space-card:hover {
  box-shadow: 0 8px 32px rgba(15,118,110,0.12);
  border-color: #5eead4;
  transform: translateY(-3px);
}
.space-card-icon {
  width: 44px;
  height: 44px;
  background: #f0fdfa;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f766e;
  flex-shrink: 0;
}
.space-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: #0d1b3e;
  line-height: 1.2;
}
.space-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.65;
  flex: 1;
}
.space-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #94a3b8;
  padding-top: 10px;
  border-top: 1px solid #f1f5f9;
  margin-top: auto;
}
.space-card-foot span { font-weight: 600; color: #0f766e; }

/* ---- Chapter Navigation ---- */
.chapter-nav {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid #e2e8f0;
  padding-top: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.chapter-prev,
.chapter-next {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-decoration: none;
  padding: 14px 20px;
  border: 1.5px solid #0f766e;
  border-radius: 10px;
  min-width: 160px;
  flex: 1;
  transition: background 0.18s, color 0.18s;
  max-width: 48%;
}
.chapter-prev:hover,
.chapter-next:hover { background: #0f766e; }
.chapter-prev:hover .ch-dir,
.chapter-next:hover .ch-dir { color: rgba(255,255,255,0.65); }
.chapter-prev:hover .ch-title,
.chapter-next:hover .ch-title { color: #fff; }
.chapter-next { text-align: right; }
.ch-dir {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #94a3b8;
}
.ch-title {
  font-size: 14px;
  font-weight: 700;
  color: #0f766e;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .article-layout {
    grid-template-columns: 1fr;
  }
  .article-toc {
    position: static;
  }
  .three-cols {
    grid-template-columns: 1fr 1fr;
  }
  .key-facts {
    grid-template-columns: repeat(2, 1fr);
  }
  .fact-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .article-hero { padding: 80px 0 48px; }
  .article-layout { padding: 40px 16px 64px; margin: 0; }
  .three-cols { grid-template-columns: 1fr; }
  .key-facts { grid-template-columns: 1fr 1fr; }
  .chapter-nav { flex-direction: column; }
  .chapter-prev, .chapter-next { max-width: 100%; }
  .chapter-next { text-align: left; }
}

.blog-deep-read{background:#fff;border:1px solid rgba(26,58,107,.12);border-radius:20px;padding:28px;margin:32px 0;box-shadow:0 2px 12px rgba(26,58,107,.06)}.blog-deep-read p{line-height:1.9;color:#374151}.blog-deep-read li{margin:8px 0;line-height:1.75}

/* ============================================================
   ExplainItSimply - Deeper Understanding final readable style
   Applies globally to all article pages using .eits-deep-dive
   ============================================================ */

.eits-deep-dive,
section.eits-deep-dive {
  max-width: 1120px !important;
  margin: 64px auto !important;
  padding: clamp(28px, 4vw, 52px) !important;
  border: 1px solid rgba(26, 58, 107, 0.12) !important;
  border-radius: 26px !important;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%) !important;
  box-shadow: 0 18px 50px rgba(15, 35, 72, 0.08) !important;
  color: #102a56 !important;
  font-family: var(--font-body, 'Plus Jakarta Sans', system-ui, sans-serif) !important;
  line-height: 1.85 !important;
  overflow: hidden !important;
}

.eits-deep-dive *,
section.eits-deep-dive * {
  box-sizing: border-box !important;
}

.eits-deep-dive .section-label,
section.eits-deep-dive .section-label {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  width: auto !important;
  margin: 0 0 18px 0 !important;
  padding: 8px 13px !important;
  border-radius: 999px !important;
  background: rgba(249, 115, 22, 0.10) !important;
  color: #f97316 !important;
  font-family: var(--font-body, 'Plus Jakarta Sans', system-ui, sans-serif) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: 0.16em !important;
  line-height: 1.2 !important;
  text-transform: uppercase !important;
}

.eits-deep-dive .section-label::before,
section.eits-deep-dive .section-label::before {
  content: "" !important;
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: #f97316 !important;
  display: inline-block !important;
}

.eits-deep-dive h2,
section.eits-deep-dive h2 {
  max-width: 920px !important;
  margin: 0 0 34px 0 !important;
  color: #061b45 !important;
  font-family: var(--font-display, 'Fraunces', Georgia, serif) !important;
  font-size: clamp(30px, 3.6vw, 48px) !important;
  font-weight: 800 !important;
  line-height: 1.18 !important;
  letter-spacing: -0.03em !important;
}

.eits-deep-dive h3,
section.eits-deep-dive h3 {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin: 36px 0 13px 0 !important;
  color: #102a56 !important;
  font-family: var(--font-body, 'Plus Jakarta Sans', system-ui, sans-serif) !important;
  font-size: clamp(20px, 2vw, 26px) !important;
  font-weight: 800 !important;
  line-height: 1.32 !important;
  letter-spacing: -0.015em !important;
}

.eits-deep-dive h3::before,
section.eits-deep-dive h3::before {
  content: "" !important;
  width: 10px !important;
  height: 10px !important;
  flex: 0 0 10px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #f97316, #1a3a6b) !important;
  box-shadow: 0 0 0 6px rgba(249,115,22,0.09) !important;
}

.eits-deep-dive h4,
section.eits-deep-dive h4 {
  margin: 0 0 12px 0 !important;
  color: #0f2348 !important;
  font-family: var(--font-body, 'Plus Jakarta Sans', system-ui, sans-serif) !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  line-height: 1.35 !important;
}

.eits-deep-dive p,
section.eits-deep-dive p {
  max-width: 980px !important;
  margin: 0 0 22px 0 !important;
  color: #34415d !important;
  font-family: var(--font-body, 'Plus Jakarta Sans', system-ui, sans-serif) !important;
  font-size: clamp(16px, 1.18vw, 18px) !important;
  font-weight: 400 !important;
  line-height: 1.95 !important;
}

.eits-deep-dive p:last-child,
section.eits-deep-dive p:last-child {
  margin-bottom: 0 !important;
}

.eits-question-card,
.eits-deep-dive .eits-question-card,
section.eits-deep-dive .eits-question-card {
  margin: 28px 0 34px 0 !important;
  padding: clamp(22px, 3vw, 32px) !important;
  border: 1px solid rgba(249, 115, 22, 0.22) !important;
  border-left: 6px solid #f97316 !important;
  border-radius: 22px !important;
  background: linear-gradient(135deg, #fff7ed 0%, #ffffff 70%) !important;
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.08) !important;
}

.eits-question-card h3,
.eits-deep-dive .eits-question-card h3,
section.eits-deep-dive .eits-question-card h3 {
  margin-top: 0 !important;
  color: #0f2348 !important;
}

.eits-question-card p,
.eits-deep-dive .eits-question-card p,
section.eits-deep-dive .eits-question-card p {
  margin-bottom: 0 !important;
  color: #334155 !important;
}

.eits-flow-diagram,
.eits-deep-dive .eits-flow-diagram,
section.eits-deep-dive .eits-flow-diagram {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 14px !important;
  margin: 30px 0 38px 0 !important;
  padding: 26px !important;
  border-radius: 24px !important;
  background: linear-gradient(135deg, #0f2348 0%, #1a3a6b 100%) !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06), 0 16px 32px rgba(15,35,72,0.12) !important;
  overflow-x: auto !important;
}

.eits-flow-diagram span,
.eits-deep-dive .eits-flow-diagram span,
section.eits-deep-dive .eits-flow-diagram span {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 44px !important;
  padding: 10px 17px !important;
  border: 1px solid rgba(255,255,255,0.16) !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,0.12) !important;
  color: #ffffff !important;
  font-family: var(--font-body, 'Plus Jakarta Sans', system-ui, sans-serif) !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
  white-space: nowrap !important;
}

.eits-flow-diagram span:not(:last-child)::after,
.eits-deep-dive .eits-flow-diagram span:not(:last-child)::after,
section.eits-deep-dive .eits-flow-diagram span:not(:last-child)::after {
  content: "→" !important;
  margin-left: 14px !important;
  color: #f97316 !important;
  font-weight: 900 !important;
}

.eits-deep-grid,
.eits-deep-dive .eits-deep-grid,
section.eits-deep-dive .eits-deep-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 22px !important;
  margin: 34px 0 38px 0 !important;
}

.eits-mini-card,
.eits-deep-dive .eits-mini-card,
section.eits-deep-dive .eits-mini-card {
  min-width: 0 !important;
  padding: 26px !important;
  border: 1px solid rgba(26, 58, 107, 0.12) !important;
  border-radius: 22px !important;
  background: #ffffff !important;
  box-shadow: 0 12px 30px rgba(15, 35, 72, 0.07) !important;
}

.eits-mini-card p,
.eits-deep-dive .eits-mini-card p,
section.eits-deep-dive .eits-mini-card p {
  font-size: 16px !important;
  line-height: 1.85 !important;
  margin-bottom: 0 !important;
}

.eits-summary-card,
.eits-deep-dive .eits-summary-card,
section.eits-deep-dive .eits-summary-card {
  margin: 42px 0 0 0 !important;
  padding: clamp(24px, 3vw, 34px) !important;
  border: 1px solid rgba(26, 58, 107, 0.14) !important;
  border-radius: 24px !important;
  background: linear-gradient(135deg, #eef6ff 0%, #ffffff 78%) !important;
  box-shadow: 0 14px 34px rgba(15, 35, 72, 0.08) !important;
}

.eits-summary-card h3,
.eits-deep-dive .eits-summary-card h3,
section.eits-deep-dive .eits-summary-card h3 {
  margin-top: 0 !important;
}

.eits-summary-card p,
.eits-deep-dive .eits-summary-card p,
section.eits-deep-dive .eits-summary-card p {
  margin-bottom: 0 !important;
}

.eits-deep-dive a,
section.eits-deep-dive a {
  color: #1d4ed8 !important;
  font-weight: 800 !important;
  text-decoration: underline !important;
  text-underline-offset: 4px !important;
}

@media (max-width: 768px) {
  .eits-deep-dive,
  section.eits-deep-dive {
    margin: 42px 14px !important;
    padding: 24px 18px !important;
    border-radius: 20px !important;
  }

  .eits-deep-dive h2,
  section.eits-deep-dive h2 {
    font-size: 30px !important;
    line-height: 1.25 !important;
    margin-bottom: 26px !important;
  }

  .eits-deep-dive h3,
  section.eits-deep-dive h3 {
    font-size: 21px !important;
    line-height: 1.35 !important;
    margin-top: 30px !important;
  }

  .eits-deep-dive p,
  section.eits-deep-dive p {
    font-size: 16px !important;
    line-height: 1.85 !important;
    margin-bottom: 20px !important;
  }

  .eits-deep-grid,
  .eits-deep-dive .eits-deep-grid,
  section.eits-deep-dive .eits-deep-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .eits-flow-diagram,
  .eits-deep-dive .eits-flow-diagram,
  section.eits-deep-dive .eits-flow-diagram {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    padding: 20px !important;
  }

  .eits-flow-diagram span,
  .eits-deep-dive .eits-flow-diagram span,
  section.eits-deep-dive .eits-flow-diagram span {
    width: 100% !important;
  }

  .eits-flow-diagram span:not(:last-child)::after,
  .eits-deep-dive .eits-flow-diagram span:not(:last-child)::after,
  section.eits-deep-dive .eits-flow-diagram span:not(:last-child)::after {
    content: "↓" !important;
    position: static !important;
    margin-left: 12px !important;
  }
}
