/* ExplainItSimply V2 PUBLIC CSS — canonical production bundle. */

/* ===== styles.css ===== */
/* ============================================================
   ExplainItSimply - styles.css
   AdSense-friendly, mobile-first, editorial design
   ============================================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand Colors */
  --primary:        #1a3a6b;
  --primary-dark:   #0d2650;
  --primary-light:  #eef2fa;
  --accent:         #f97316;
  --accent-hover:   #ea6800;

  /* Neutrals */
  --bg:             #ffffff;
  --bg-subtle:      #f0f4fb;
  --bg-card:        #f6f8fc;
  --fg:             #0d1b3e;
  --muted:          #5a6a85;
  --border:         rgba(26, 58, 107, 0.12);

  /* Typography */
  --font-display:   'Fraunces', Georgia, serif;
  --font-body:      'Plus Jakarta Sans', system-ui, sans-serif;

  /* Radii */
  --radius:         12px;
  --radius-lg:      20px;
  --radius-full:    999px;

  /* Shadows */
  --shadow-sm:      0 2px 8px rgba(26, 58, 107, 0.07);
  --shadow-md:      0 4px 20px rgba(26, 58, 107, 0.10);
  --shadow-lg:      0 8px 32px rgba(26, 58, 107, 0.14);

  /* Layout */
  --header-h:       82px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--fg);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }

/* ---- Utility ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0 96px; }

.section-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

.hidden { display: none !important; }

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.12s;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: transparent;
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius);
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.btn-outline:hover { background: var(--primary); color: #fff; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: rgba(255,255,255,0.10);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.22);
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
}
.btn-ghost:hover { background: rgba(255,255,255,0.18); }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.header.scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 20px;
}

.logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  flex-shrink: 0;
  line-height: 1;
}
.logo span { color: var(--accent); }

/* --- Desktop Nav --- */
.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 11px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(13, 27, 62, 0.75);
  border-radius: 8px;
  background: none;
  border: none;
  font-family: var(--font-body);
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.15s, background 0.15s;
}
.nav-link:hover { color: var(--primary); background: var(--primary-light); }

.nav-item { position: relative; }
.nav-item .nav-link svg { transition: transform 0.2s; flex-shrink: 0; }
.nav-item.open .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 230px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  z-index: 200;
}
.nav-item.open .dropdown { display: block; }

.dropdown a {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  color: rgba(13, 27, 62, 0.72);
  transition: color 0.1s, background 0.1s;
}
.dropdown a:first-child {
  font-weight: 700;
  color: var(--primary);
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
  padding-top: 14px;
  padding-bottom: 12px;
}
.dropdown a:first-child::before {
  content: 'Section overview';
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 3px;
}
.dropdown a:hover { color: var(--primary); background: var(--primary-light); }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.btn-contact {
  padding: 9px 18px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
}
.btn-contact:hover { background: var(--primary-dark); }

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--fg);
  border-radius: 8px;
  transition: background 0.15s;
}
.mobile-menu-btn:hover { background: var(--primary-light); }

/* ============================================================
   MOBILE DRAWER
   ============================================================ */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
}
.mobile-overlay.active { display: flex; }

.mobile-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 62, 0.45);
  backdrop-filter: blur(4px);
}

.mobile-drawer {
  position: relative;
  margin-left: auto;
  width: 300px;
  max-width: 90vw;
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(13, 27, 62, 0.15);
  overflow: hidden;
}

.mobile-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.close-btn {
  width: 34px;
  height: 34px;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background 0.15s;
}
.close-btn:hover { background: var(--bg-subtle); }

.mobile-nav { flex: 1; overflow-y: auto; padding: 8px 0; }

.mobile-nav-link {
  display: block;
  padding: 13px 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  border-bottom: 1px solid var(--border);
  transition: color 0.15s;
}
.mobile-nav-link:hover { color: var(--primary); }

.mobile-nav-item { border-bottom: 1px solid var(--border); }

.mobile-nav-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 22px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  background: none;
  border: none;
  cursor: pointer;
}
.mobile-nav-toggle svg { transition: transform 0.2s; flex-shrink: 0; }
.mobile-nav-toggle.open svg { transform: rotate(180deg); }

.mobile-subnav { display: none; background: var(--bg-subtle); padding: 4px 0 8px; }
.mobile-subnav.open { display: block; }
.mobile-subnav a {
  display: block;
  padding: 9px 30px;
  font-size: 13px;
  color: var(--muted);
  transition: color 0.1s;
}
.mobile-subnav a:hover { color: var(--primary); }

.mobile-drawer-foot {
  padding: 16px 22px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--primary);
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1513258496099-48168024aec0?w=1600&h=900&fit=crop&auto=format');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary) 50%, var(--primary-dark) 100%);
}

.hero-accent-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--accent);
}

.hero-container { position: relative; width: 100%; }

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0 100px;
  width: 100%;
}

/* ================================
   HOME PAGE HERO ONLY
================================ */

.hero-home{
    display:grid;
    grid-template-columns:1fr;
    align-items:center;
    width:100%;
}

.hero-home .hero-copy{
    width:100%;
    max-width:920px;
}

.hero-home .hero-ctas{
    margin-top:30px;
}



.hero-badge {
  display: inline-block;
  padding: 5px 14px;
  border: 1px solid rgba(249, 115, 22, 0.45);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 700;
  color: #fff;
  line-height: 1.07;
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--accent); }

.hero-copy p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.70);
  max-width: 460px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Stats grid */
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.stat-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
}
.stat-card .num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-card .label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
}

/* Wave */
.hero-wave { position: absolute; bottom: 0; left: 0; right: 0; }
.hero-wave svg { display: block; width: 100%; }

/* ============================================================
   AD SLOTS - AdSense-friendly placeholders
   ============================================================ */
.ad-leaderboard { min-height: 100px; }
.ad-rectangle  { min-height: 280px; }

/* ============================================================
   ABOUT PREVIEW
   ============================================================ */
.about-preview { background: var(--bg-subtle); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.2;
  margin-bottom: 18px;
}

.about-text p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 14px;
}

.about-image img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   TOPICS
   ============================================================ */
.topics { background: var(--bg); }

.topics-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
  gap: 24px;
}

.topics-head h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.15;
}

.topics-head > p {
  font-size: 15px;
  color: var(--muted);
  max-width: 300px;
  line-height: 1.65;
  flex-shrink: 0;
  text-align: right;
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.topic-card {
  display: flex;
  flex-direction: column;
  padding: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  color: var(--fg);
}
.topic-card:hover { border-color: rgba(26,58,107,0.28); box-shadow: var(--shadow-md); transform: translateY(-3px); }

.topic-card.blue   { background: #eff6ff; }
.topic-card.green  { background: #f0fdf4; }
.topic-card.purple { background: #faf5ff; }
.topic-card.orange { background: #fff7ed; }
.topic-card.teal   { background: #f0fdfa; }

.topic-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.topic-card.blue   .topic-icon { background: #dbeafe; color: #1d4ed8; }
.topic-card.green  .topic-icon { background: #dcfce7; color: #15803d; }
.topic-card.purple .topic-icon { background: #ede9fe; color: #7c3aed; }
.topic-card.orange .topic-icon { background: #ffedd5; color: #c2410c; }
.topic-card.teal   .topic-icon { background: #ccfbf1; color: #0f766e; }

.topic-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}

.topic-card > p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 18px;
}

.topic-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topic-count { font-size: 12px; font-weight: 600; color: var(--muted); }

.arrow-icon { width: 16px; height: 16px; transition: transform 0.15s; }
.topic-card:hover .arrow-icon { transform: translateX(4px); }

.topic-card.blue   .arrow-icon { color: #1d4ed8; }
.topic-card.green  .arrow-icon { color: #15803d; }
.topic-card.purple .arrow-icon { color: #7c3aed; }
.topic-card.orange .arrow-icon { color: #c2410c; }
.topic-card.teal   .arrow-icon { color: #0f766e; }

/* ============================================================
   ARTICLES
   ============================================================ */
.articles { background: var(--bg-subtle); }

.section-head { margin-bottom: 48px; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.15;
  margin-bottom: 10px;
}
.section-head p { font-size: 15px; color: var(--muted); line-height: 1.65; max-width: 560px; }
.section-head.centered { text-align: center; }
.section-head.centered p { margin: 0 auto; }

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 40px;
}

.article-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
  color: var(--fg);
}
.article-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.article-img-wrap { display: block; }
.article-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-subtle);
}
.article-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.article-card:hover .article-img img { transform: scale(1.04); }

.article-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 8px;
  flex-wrap: wrap;
}

.article-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}
.cat-ai     { color: #1d4ed8; background: #dbeafe; }
.cat-school { color: #15803d; background: #dcfce7; }
.cat-life   { color: #c2410c; background: #ffedd5; }

.article-time { font-size: 12px; color: var(--muted); }

.article-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.3;
  margin-bottom: 10px;
  flex: 1;
}
.article-card h3 a { color: inherit; transition: color 0.15s; }
.article-card:hover h3 a { color: var(--primary); }

.article-card > .article-body > p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 18px;
}

.read-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  transition: gap 0.15s;
  margin-top: auto;
}
.article-card:hover .read-link { gap: 10px; }

.articles-cta { text-align: center; }

/* ============================================================
   WHY EXPLAINITSIMPLY
   ============================================================ */
.why { background: var(--bg); overflow: hidden; }

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.why-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg-subtle);
  flex-shrink: 0;
}
.why-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.why-quote {
  position: absolute;
  bottom: 20px;
  left: 16px;
  right: 16px;
  background: #fff;
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.why-quote p { font-family: var(--font-display); font-size: 14px; font-weight: 600; color: var(--fg); margin-bottom: 4px; }
.why-quote small { font-size: 12px; color: var(--muted); }

.why-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.12;
  margin-bottom: 18px;
}
.why-copy h2 .accent { color: var(--accent); }

.why-copy > p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

.why-points { display: flex; flex-direction: column; gap: 22px; }

.why-point { display: flex; gap: 16px; align-items: flex-start; }

.why-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  margin-top: 2px;
}
.why-point h4 { font-size: 15px; font-weight: 700; color: var(--fg); margin-bottom: 4px; }
.why-point p  { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ============================================================
   WHAT YOU WILL LEARN
   ============================================================ */
.learn-section { background: var(--bg-subtle); }

.learn-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}

.learn-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.2;
  margin-bottom: 16px;
}
.learn-copy p { font-size: 15px; color: var(--muted); line-height: 1.7; }

.learn-list { display: flex; flex-direction: column; gap: 18px; }

.learn-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
}

.learn-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.blue-icon   { background: #dbeafe; color: #1d4ed8; }
.green-icon  { background: #dcfce7; color: #15803d; }
.purple-icon { background: #ede9fe; color: #7c3aed; }
.orange-icon { background: #ffedd5; color: #c2410c; }
.teal-icon   { background: #ccfbf1; color: #0f766e; }

.learn-list li strong { display: block; font-size: 14px; font-weight: 700; color: var(--fg); margin-bottom: 4px; }
.learn-list li p { font-size: 13px; color: var(--muted); line-height: 1.6; margin: 0; }

/* ============================================================
   AUDIENCE / WHO IT'S FOR
   ============================================================ */
.audience { background: var(--bg); }

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 40px 0;
}

.audience-card {
  padding: 26px 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: box-shadow 0.2s, transform 0.2s;
  text-align: center;
}
.audience-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.audience-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.audience-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}
.audience-card p { font-size: 13px; color: var(--muted); line-height: 1.65; }

.audience-note {
  text-align: center;
  font-size: 15px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  font-style: italic;
  line-height: 1.65;
}

/* ============================================================
   HOW WE EXPLAIN
   ============================================================ */
.how-section { background: var(--bg-subtle); }

.how-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}

.how-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.2;
  margin-bottom: 16px;
}
.how-copy p { font-size: 15px; color: var(--muted); line-height: 1.7; }

.how-steps { display: flex; flex-direction: column; gap: 16px; }

.how-steps li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.step-num {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-display);
  margin-top: 1px;
}

.how-steps strong { display: block; font-size: 14px; font-weight: 700; color: var(--fg); margin-bottom: 4px; }
.how-steps p { font-size: 13px; color: var(--muted); line-height: 1.6; margin: 0; }

/* ============================================================
   NEWSLETTER / CTA
   ============================================================ */
.newsletter {
  padding: 80px 0;
  background: var(--primary);
  text-align: center;
}

.nl-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  color: var(--accent);
}

.newsletter h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.2;
}

.newsletter > .container > p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.68);
  max-width: 460px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.nl-form {
  display: flex;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto;
}

.nl-input {
  flex: 1;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.15s;
  min-width: 0;
}
.nl-input::placeholder { color: rgba(255, 255, 255, 0.42); }
.nl-input:focus { border-color: var(--accent); }

.nl-submitted {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  background: rgba(249, 115, 22, 0.18);
  border: 1px solid rgba(249, 115, 22, 0.42);
  border-radius: var(--radius);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  margin: 0 auto;
}

.nl-footer-note {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.50);
}
.nl-footer-note a { color: rgba(255, 255, 255, 0.75); text-decoration: underline; text-underline-offset: 3px; }
.nl-footer-note a:hover { color: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0d1b3e;
  color: #fff;
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-brand .logo { font-size: 18px; margin-bottom: 14px; display: block; }
.footer-brand p { font-size: 13px; color: rgba(255, 255, 255, 0.46); line-height: 1.65; max-width: 220px; }

.footer-col h5 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.58);
  margin-bottom: 10px;
  transition: color 0.15s;
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 12px; color: rgba(255, 255, 255, 0.36); }

.footer-legal-links { display: flex; gap: 24px; }
.footer-legal-links a { font-size: 12px; color: rgba(255, 255, 255, 0.36); transition: color 0.15s; }
.footer-legal-links a:hover { color: rgba(255, 255, 255, 0.70); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: background 0.15s, transform 0.15s, opacity 0.2s;
  z-index: 99;
}
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-2px); }
.back-to-top.hidden { opacity: 0; pointer-events: none; }



/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ---- 1100px ---- */
@media (max-width: 1100px) {
  .topics-grid   { grid-template-columns: repeat(2, 1fr); }
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand  { grid-column: 1 / -1; }
  .footer-brand p { max-width: 100%; }
}

/* ---- 880px ---- */
@media (max-width: 880px) {
  :root { --header-h: 60px; }

  /* Header: hide desktop nav, show mobile toggle */
  .nav, .header-actions { display: none; }
  .mobile-menu-btn { display: flex; }

  /* Hero: single column */
  .hero-inner { grid-template-columns: 1fr; gap: 0; padding: 60px 0 80px; }
  .hero-stats { display: none; }
  .hero h1 { font-size: clamp(36px, 8vw, 52px); }

  /* About */
  .about-inner { grid-template-columns: 1fr; gap: 36px; }
  .about-image { order: -1; }
  .about-image img { max-height: 280px; }

  /* Topics head */
  .topics-head { flex-direction: column; align-items: flex-start; }
  .topics-head > p { text-align: left; max-width: 100%; }

  /* Why */
  .why-inner { grid-template-columns: 1fr; gap: 40px; }
  .why-img-wrap { max-height: 360px; }

  /* Learn / How */
  .learn-inner, .how-inner { grid-template-columns: 1fr; gap: 36px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ---- 600px ---- */
@media (max-width: 600px) {
  .section { padding: 56px 0 68px; }
  .container { padding: 0 16px; }

  .topics-grid   { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }

  .hero-copy p { font-size: 15px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; gap: 10px; }

  .nl-form { flex-direction: column; }
  .nl-form .btn-primary { width: 100%; justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }

  .back-to-top { bottom: 18px; right: 18px; }
}


/* ===== Card header icons and clean FAQ controls ===== */
.topic-card h3,
.about-feature-card h3,
.about-value-card h3,
.about-process-card h3,
.eits-card h2,
.eits-mini h3,
.real-life-card h3,
.value-card h3,
.promise-card h3,
.blog-card h3{
  display:flex;
  align-items:center;
  gap:10px;
}
.topic-card h3::before,
.about-feature-card h3::before,
.about-value-card h3::before,
.about-process-card h3::before,
.eits-card h2::before,
.eits-mini h3::before,
.real-life-card h3::before,
.value-card h3::before,
.promise-card h3::before,
.blog-card h3::before{
  content:"";
  width:22px;
  height:22px;
  flex:0 0 22px;
  border-radius:8px;
  background:linear-gradient(135deg,#f97316,#2563eb);
  box-shadow:0 6px 14px rgba(37,99,235,.16);
}
.topic-card.blue h3::before{background:linear-gradient(135deg,#2563eb,#93c5fd);}
.topic-card.green h3::before{background:linear-gradient(135deg,#16a34a,#86efac);}
.topic-card.purple h3::before{background:linear-gradient(135deg,#7c3aed,#c4b5fd);}
.topic-card.orange h3::before{background:linear-gradient(135deg,#f97316,#fdba74);}
.topic-card.teal h3::before{background:linear-gradient(135deg,#0d9488,#99f6e4);}
.faq-item summary::after,
.about-faq-card summary::after{
  content:"+" !important;
}
.faq-item[open] summary::after,
.about-faq-card[open] summary::after{
  content:"-" !important;
}



/* ============================================================
   EXPLAINITSIMPLY LOGO
   ============================================================ */
.logo-brand{
  display:flex;
  align-items:center;
  flex-shrink:0;
  text-decoration:none;
  line-height:1;
}

.site-logo{
  display:block;
  width:300px;
  max-width:30vw;
  height:auto;
  max-height:72px;
  object-fit:contain;
  object-position:left center;
  transition:transform .2s ease;
}

.logo-brand:hover .site-logo{
  transform:translateY(-1px);
}

.mobile-logo-brand{
  max-width:220px;
}

.mobile-site-logo{
  width:210px;
  max-width:68vw;
  max-height:58px;
}

@media (max-width:1200px){
  .site-logo{
    width:250px;
    max-height:66px;
  }

  .header-inner{
    gap:12px;
  }

  .nav-link{
    padding-left:8px;
    padding-right:8px;
    font-size:13px;
  }
}

@media (max-width:992px){
  :root{ --header-h:74px; }

  .site-logo{
    width:230px;
    max-width:58vw;
    max-height:64px;
  }
}

@media (max-width:768px){
  :root{ --header-h:70px; }

  .site-logo{
    width:205px;
    max-width:62vw;
    max-height:56px;
  }

  .mobile-site-logo{
    width:190px;
    max-width:62vw;
    max-height:52px;
  }

  .mobile-drawer-head{
    padding-top:14px;
    padding-bottom:14px;
  }
}

@media (max-width:420px){
  .site-logo{
    width:180px;
    max-width:60vw;
    max-height:50px;
  }

  .mobile-site-logo{
    width:175px;
    max-height:48px;
  }
}



/* ============================================================
   FINAL MOBILE READABILITY AND MENU FIXES
   ============================================================ */
html, body { max-width: 100%; overflow-x: hidden; }
a { overflow-wrap: anywhere; }
.article-content a,
.eits-article a:not(.btn-primary):not(.btn-outline):not(.btn-ghost):not(.topic-card):not(.article-card),
.eits-card a:not(.btn-primary):not(.btn-outline):not(.btn-ghost),
.deep-section a:not(.btn-primary):not(.btn-outline):not(.btn-ghost),
.sidebar-card a,
.learning-nav a {
  color: #1d4ed8;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 700;
}
.article-content a:hover,
.eits-article a:hover,
.eits-card a:hover,
.deep-section a:hover,
.sidebar-card a:hover,
.learning-nav a:hover {
  color: #0d2650;
}
.learning-nav a {
  text-decoration: none;
  border: 1px solid rgba(29,78,216,.22);
  background: #eff6ff;
}
.learning-nav a:hover {
  border-color: rgba(29,78,216,.45);
  background: #dbeafe;
}
.mobile-overlay {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.mobile-overlay.active {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  z-index: 9999 !important;
}
.mobile-drawer { z-index: 10000; }
.mobile-subnav { display: none; }
.mobile-subnav.open { display: block !important; }
.mobile-nav-toggle.open { color: var(--primary); background: var(--primary-light); }
.mobile-menu-open { overflow: hidden; }
img, svg, video, iframe { max-width: 100%; }
.eits-article, .article-content, .deep-section, .eits-card, .real-life-card, .learning-box, .sidebar-card {
  min-width: 0;
}
.responsive-table-wrap, .table-wrapper, .comparison-table-wrap {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
pre, code { white-space: pre-wrap; overflow-wrap: anywhere; }

.blog-deep-read {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 32px 0;
  box-shadow: var(--shadow-sm);
}
.blog-deep-read h2,
.blog-deep-read h3 { font-family: var(--font-display); color: var(--fg); margin: 0 0 14px; }
.blog-deep-read p { color: #374151; line-height: 1.9; margin: 0 0 16px; }
.blog-deep-read ul,
.blog-deep-read ol { margin: 14px 0 0; padding-left: 22px; }
.blog-deep-read li { margin: 8px 0; line-height: 1.75; color: #374151; }

@media (max-width: 880px) {
  .header { min-height: var(--header-h); }
  .eits-layout, .article-layout, .content-layout {
    display: block !important;
    grid-template-columns: 1fr !important;
  }
  .eits-sidebar { position: static !important; margin-top: 28px; }
}

@media (max-width: 768px) {
  :root { --header-h: 70px; }
  .container { padding-left: 16px; padding-right: 16px; }
  .hero,
  .hero.has-hero-slider {
    min-height: calc(100svh - var(--header-h)) !important;
    height: auto !important;
    padding-top: var(--header-h) !important;
    align-items: center !important;
  }
  .hero-inner {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    padding: 34px 0 54px !important;
  }
  .hero-stats { display: none !important; }
  .hero h1,
  .hero.has-hero-slider h1 {
    font-size: clamp(34px, 10vw, 46px) !important;
    line-height: 1.08 !important;
    margin-bottom: 14px !important;
    max-width: 100% !important;
  }
  .hero-copy p,
  .hero.has-hero-slider .hero-copy p {
    font-size: 16px !important;
    line-height: 1.65 !important;
    margin-bottom: 22px !important;
    max-width: 100% !important;
  }
  .hero-badge { margin-bottom: 14px !important; }
  .hero-ctas { gap: 10px !important; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-ghost,
  .hero-ctas .btn-outline {
    width: 100%;
    justify-content: center;
  }
  .eits-hero,
  .eits-hero.has-hero-slider,
  .page-hero,
  .page-hero.has-hero-slider {
    padding: calc(var(--header-h) + 38px) 0 58px !important;
    min-height: auto !important;
  }
  .eits-hero h1,
  .page-hero h1 {
    font-size: clamp(32px, 9vw, 44px) !important;
    line-height: 1.08 !important;
  }
  .eits-hero p,
  .page-hero p {
    font-size: 16px !important;
    line-height: 1.65 !important;
  }
  .hero-slider-arrow { width: 38px !important; height: 38px !important; }
  .hero-slider-prev { left: 8px !important; }
  .hero-slider-next { right: 8px !important; }
  .eits-card, .deep-section, .blog-deep-read, .real-life-section, .faq-section {
    padding: 22px !important;
    border-radius: 18px !important;
  }
  .real-life-grid,
  .learning-box-grid,
  .eits-two-cards,
  .layer-grid,
  .about-grid-2,
  .about-grid-3,
  .about-grid-4 {
    grid-template-columns: 1fr !important;
  }
  .learning-nav {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
}

@media (max-width: 420px) {
  .mobile-drawer { width: 92vw; }
  .site-logo { width: 172px; max-width: 58vw; }
  .mobile-site-logo { width: 170px; max-width: 62vw; }
  .hero h1, .hero.has-hero-slider h1 { font-size: 33px !important; }
}


/* Mobile hero refinement */
@media (max-width:768px){
.hero,.eits-hero,.hero-slider{min-height:calc(100vh - var(--header-h));height:auto;}
.hero-inner,.eits-hero-inner{padding:32px 20px 48px!important;display:block!important;}
.hero h1,.eits-hero h1{font-size:2rem!important;line-height:1.1!important;}
.hero-copy p,.eits-hero-copy p{font-size:1rem!important;max-width:100%!important;}
.hero-ctas,.eits-hero-actions{flex-direction:column;gap:10px;}
}


/* ==========================================
   MOBILE HERO FIX - NO SIDE SLIDER
   ========================================== */

@media (max-width: 768px) {

    .hero,
    .eits-hero,
    .hero-slider,
    .eits-hero-slider {
        min-height: auto !important;
        height: auto !important;
        overflow: hidden !important;
    }

    .hero-inner,
    .hero-inner.hero-home,
    .eits-hero-inner {
        display: block !important;
        grid-template-columns: 1fr !important;
        width: 100% !important;
        padding: 42px 20px 56px !important;
    }

    .hero-copy,
    .eits-hero-copy {
        width: 100% !important;
        max-width: 100% !important;
        position: relative !important;
        z-index: 3 !important;
    }

    .hero-stats,
    .eits-hero-image,
    .hero-image,
    .hero-media,
    .hero-slider-image,
    .eits-hero-media {
        display: none !important;
    }

    .hero-container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .hero h1,
    .eits-hero h1 {
        font-size: 40px !important;
        line-height: 1.08 !important;
        max-width: 100% !important;
    }

    .hero-copy p,
    .eits-hero-copy p {
        font-size: 16px !important;
        line-height: 1.65 !important;
        max-width: 100% !important;
    }

    .hero-ctas,
    .eits-hero-actions {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        width: 100% !important;
    }

    .hero-ctas a,
    .eits-hero-actions a {
        width: 100% !important;
        max-width: 260px !important;
        justify-content: center !important;
    }

    .hero-arrow,
    .eits-hero-arrow,
    .hero-slider-arrow,
    .eits-slider-arrow,
    .hero-dots,
    .eits-hero-dots {
        display: none !important;
    }
}

/* ============================================================
   ExplainItSimply Final Content Enrichment
   ============================================================ */
.eits-deep-dive {
  margin: 34px 0;
  padding: 30px;
  border: 1px solid rgba(26,58,107,0.12);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 14px 35px rgba(26,58,107,0.08);
}

.eits-deep-dive .section-label {
  color: var(--accent);
}

.eits-deep-dive h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
  margin-bottom: 14px;
  color: var(--fg);
}

.eits-deep-dive h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin: 24px 0 10px;
  color: var(--primary);
}

.eits-deep-dive p {
  color: var(--muted);
  line-height: 1.85;
  margin: 0 0 14px;
}

.eits-question-card,
.eits-summary-card {
  margin: 22px 0;
  padding: 22px;
  border-radius: 18px;
  background: #fff7ed;
  border: 1px solid rgba(249,115,22,0.20);
}

.eits-summary-card {
  background: #eef6ff;
  border-color: rgba(37,99,235,0.18);
}

.eits-flow-diagram {
  margin: 22px 0;
  padding: 22px;
  border-radius: 18px;
  background: #0d2650;
  color: #fff;
  font-weight: 700;
  line-height: 2;
  text-align: center;
  overflow-x: auto;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}

.eits-flow-diagram span {
  display: inline-block;
  padding: 8px 12px;
  margin: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  white-space: nowrap;
}

.eits-deep-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
  margin-top: 18px;
}

.eits-mini-card {
  padding: 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(26,58,107,0.10);
}

.eits-mini-card h4 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--fg);
}

.eits-article a:not(.btn-primary):not(.btn-outline):not(.btn-ghost):not(.read-link),
.eits-page a:not(.btn-primary):not(.btn-outline):not(.btn-ghost):not(.read-link) {
  color: #1d4ed8;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-slider-arrow {
  display: none !important;
}

.hero-slider-dots-only {
  pointer-events: auto;
}

@media (max-width: 768px) {
  .eits-deep-dive {
    padding: 22px;
    border-radius: 18px;
  }

  .eits-deep-grid {
    grid-template-columns: 1fr;
  }

  .eits-flow-diagram {
    text-align: left;
    font-size: 13px;
  }
}


/* ============================================================
   ExplainItSimply Planet Pages and Reading Polish
   ============================================================ */
.planet-media-card{display:grid;grid-template-columns:220px 1fr;gap:22px;align-items:start;margin:22px 0;padding:20px;border:1px solid rgba(26,58,107,.12);border-radius:22px;background:#fff;box-shadow:0 10px 28px rgba(26,58,107,.07)}
.planet-media-card img{width:100%;aspect-ratio:1/1;object-fit:cover;border-radius:18px;background:#eef2fa;box-shadow:0 8px 22px rgba(0,0,0,.08)}
.planet-media-card .planet-header{margin-bottom:10px}.planet-media-card p{margin-bottom:10px}.planet-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:14px}.planet-facts-mini{display:flex;gap:8px;flex-wrap:wrap;margin:10px 0}.planet-facts-mini span{font-size:12px;font-weight:700;padding:6px 10px;border-radius:999px;background:#eef2fa;color:#1a3a6b}
.planet-detail-hero-img{margin:24px 0;border-radius:26px;overflow:hidden;box-shadow:0 16px 40px rgba(12,30,65,.16)}.planet-detail-hero-img img{width:100%;max-height:480px;object-fit:cover}.planet-detail-hero-img figcaption{padding:14px 18px;background:#071a45;color:#dce8ff;font-size:13px;line-height:1.6}
.planet-fact-table{width:100%;border-collapse:separate;border-spacing:0;margin:18px 0;border:1px solid rgba(26,58,107,.12);border-radius:18px;overflow:hidden;background:#fff}.planet-fact-table th,.planet-fact-table td{padding:13px 16px;text-align:left;border-bottom:1px solid rgba(26,58,107,.1);font-size:14px}.planet-fact-table th{width:42%;background:#f4f7fc;color:#1a3a6b;font-weight:800}.planet-fact-table tr:last-child th,.planet-fact-table tr:last-child td{border-bottom:0}
.planet-scorecard{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;margin:18px 0}.planet-score-item{padding:14px 16px;border-radius:16px;background:#fff;border:1px solid rgba(26,58,107,.12);display:flex;justify-content:space-between;gap:12px;align-items:center}.planet-score-item strong{font-size:14px;color:#10254a}.planet-score-item span{color:#f97316;letter-spacing:2px;white-space:nowrap}
.solar-path{display:flex;align-items:center;gap:8px;flex-wrap:wrap;margin:18px 0;padding:16px;border-radius:20px;background:#071a45;color:#fff}.solar-path span{padding:7px 10px;border-radius:999px;background:rgba(255,255,255,.12);font-size:13px;font-weight:700}.solar-path .current{background:#f97316;color:#fff}.solar-path em{color:#ffb36b;font-style:normal;font-weight:900}
.planet-compare{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin:18px 0}.planet-compare-card{border:1px solid rgba(26,58,107,.12);border-radius:18px;padding:18px;background:#fff}.planet-compare-card h3{margin-top:0!important}.mission-timeline{display:grid;gap:12px;margin:18px 0}.mission-timeline li{list-style:none;padding:14px 16px;border-left:5px solid #f97316;background:#fff;border-radius:14px;border:1px solid rgba(26,58,107,.1);line-height:1.65}
.eits-deep-dive{line-height:1.82!important;padding:clamp(24px,4vw,38px)!important;margin:38px 0!important}.eits-deep-dive h2{margin-bottom:18px!important}.eits-deep-dive h3{margin-top:30px!important;margin-bottom:12px!important}.eits-deep-dive p{font-size:16px!important;line-height:1.9!important;margin-bottom:18px!important;color:#34415d!important}.eits-deep-dive .section-label{display:inline-flex;margin-bottom:12px}.eits-deep-dive ul,.eits-deep-dive ol{margin:14px 0 20px 24px}.eits-deep-dive li{margin-bottom:10px;line-height:1.75;color:#34415d}
@media(max-width:800px){.planet-media-card{grid-template-columns:1fr}.planet-media-card img{max-height:320px}.planet-scorecard,.planet-compare{grid-template-columns:1fr}.solar-path{align-items:flex-start}.planet-fact-table th,.planet-fact-table td{display:block;width:100%}.planet-fact-table th{border-bottom:0}.planet-fact-table td{padding-top:0}.eits-deep-dive{padding:22px 18px!important}.eits-deep-dive p{font-size:15px!important}}
/* Keep hero slider automatic and hide any legacy arrow controls. */
.hero-slider-arrow,.hero-slider-prev,.hero-slider-next,.hero-arrow,.eits-hero-arrow,.eits-slider-arrow{display:none!important;visibility:hidden!important;pointer-events:none!important}


/* ============================================================
   Final Header + Deeper Understanding Polish
   ============================================================ */

/* Give the new horizontal logo enough space so the slogan remains readable. */
:root{
  --header-h: 104px;
}

.logo-brand,
.mobile-logo-brand{
  display:flex !important;
  align-items:center !important;
  flex-shrink:0 !important;
  text-decoration:none !important;
  line-height:1 !important;
}

.site-logo{
  display:block !important;
  width:430px !important;
  max-width:42vw !important;
  height:auto !important;
  max-height:96px !important;
  object-fit:contain !important;
  object-position:left center !important;
}

.header-inner{
  min-height:var(--header-h) !important;
  height:var(--header-h) !important;
  align-items:center !important;
}

@media (max-width:1200px){
  :root{ --header-h:94px; }

  .site-logo{
    width:360px !important;
    max-width:36vw !important;
    max-height:86px !important;
  }

  .nav-link{
    padding-left:7px !important;
    padding-right:7px !important;
    font-size:13px !important;
  }
}

@media (max-width:992px){
  :root{ --header-h:84px; }

  .site-logo{
    width:285px !important;
    max-width:58vw !important;
    max-height:74px !important;
  }
}

@media (max-width:768px){
  :root{ --header-h:78px; }

  .header-inner{
    min-height:var(--header-h) !important;
    height:var(--header-h) !important;
  }

  .site-logo{
    width:240px !important;
    max-width:66vw !important;
    max-height:64px !important;
  }

  .mobile-site-logo{
    width:230px !important;
    max-width:68vw !important;
    max-height:60px !important;
  }
}

@media (max-width:420px){
  .site-logo{
    width:220px !important;
    max-width:68vw !important;
    max-height:58px !important;
  }

  .mobile-site-logo{
    width:210px !important;
    max-width:68vw !important;
    max-height:56px !important;
  }
}

/* Remove visible hero arrows everywhere; keep dots and automatic sliding */
.hero-slider-arrow,
.hero-slider-prev,
.hero-slider-next,
.eits-hero-arrow,
.eits-slider-arrow,
.hero-arrow{
  display:none !important;
  visibility:hidden !important;
  pointer-events:none !important;
}

/* ==========================================================
   ExplainItSimply Footer Banner
========================================================== */

imgS {

    border-radius: 12px;
    display: block;
}

.eits-footer-slogan{

    background:linear-gradient(135deg,#05152d,#082347);

    border-top:2px solid rgba(58,181,255,.35);

    padding:28px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:30px;

    margin-top:50px;
}

.eits-slogan-main{

    border:2px solid rgba(64,196,255,.5);

    border-radius:18px;

    padding:18px 28px;

    flex:1;
}

.eits-title-row{

    display:flex;

    align-items:center;

    flex-wrap:wrap;

    gap:12px;
}

.line{

    width:45px;

    height:3px;

    background:#40c4ff;

    border-radius:10px;
}

.small-text{

    text-transform:uppercase;

    color:#fff;

    font-weight:700;

    letter-spacing:1px;

    font-size:14px;
}

.brand{

    font-size:42px;

    font-weight:900;

    color:#ffffff;
}

.brand span{

    color:#ffbf00;
}

.idea{

    font-size:34px;
}

.slogan-row{

    margin-top:18px;

    display:flex;

    gap:28px;

    flex-wrap:wrap;

    font-weight:700;

    text-transform:uppercase;

    font-size:15px;
}

.green{

    color:#6ddf3a;
}

.blue{

    color:#4ecbff;
}

.pink{

    color:#ff6fb3;
}

.eits-slogan-side{

    display:flex;

    align-items:center;

    gap:18px;

    color:#fff;

    font-weight:700;

    border-left:1px solid rgba(255,255,255,.15);

    padding-left:25px;
}

.globe{

    font-size:52px;
}

.yellow{

    color:#ffd400;

    margin-top:6px;

    font-size:17px;
}

@media(max-width:900px){

.eits-footer-slogan{

flex-direction:column;

text-align:center;
}

.eits-slogan-side{

border-left:none;

padding-left:0;

justify-content:center;
}

.eits-title-row{

justify-content:center;
}

.slogan-row{

justify-content:center;
}

.brand{

font-size:32px;
}

.globe{

font-size:42px;
}

}


/* ============================================================
   GLOBAL FIXED HEADER SPACER
   Header is position:fixed, so it does not occupy document flow.
   HeaderMenu now renders .eits-header-spacer immediately after it.
   This gives every page the correct clearance automatically.
   ============================================================ */

.eits-header-spacer{
    display:block;
    width:100%;
    height:var(--header-h);
    min-height:var(--header-h);
    pointer-events:none;
}

/*
 * The standard .hero previously used padding-top:var(--header-h)
 * as its own fixed-header compensation. The spacer now owns that job,
 * so remove the duplicate offset only when the hero directly follows it.
 */
.eits-header-spacer + .hero{
    padding-top:0!important;
}

/* Register / ordinary public pages need no extra fixed-header workaround. */
.eits-header-spacer + .register-hero{
    margin-top:0!important;
}

/* Logged-in area starts after the spacer; retain only normal breathing room. */
.eits-header-spacer + .member-shell{
    margin-top:8px!important;
}

@media(max-width:900px){
    .eits-header-spacer + .member-shell{
        margin-top:6px!important;
    }
}


/* ============================================================
   EXPLAINITSIMPLY - ASYNC ACTION EXPERIENCE
   Shared by member controls and article member actions.
   Action buttons stay on the current page; UpdatePanel performs
   the server work and UpdateProgress shows this feedback layer.
   ============================================================ */

.eits-action-loading-overlay{
    position:fixed!important;
    inset:0!important;
    z-index:999999!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    padding:20px!important;
    box-sizing:border-box!important;
    background:rgba(8,35,61,.22)!important;
    backdrop-filter:blur(3px);
}

.eits-action-loading-card{
    display:grid!important;
    width:min(360px,calc(100vw - 34px))!important;
    box-sizing:border-box!important;
    place-items:center!important;
    gap:7px!important;
    padding:24px 25px!important;
    border:1px solid #e0e8ef!important;
    border-radius:18px!important;
    background:#fff!important;
    box-shadow:0 22px 60px rgba(8,35,61,.20)!important;
    text-align:center!important;
}

.eits-action-loading-spinner{
    display:block!important;
    width:38px!important;
    height:38px!important;
    margin-bottom:3px!important;
    box-sizing:border-box!important;
    border:4px solid #e5ebf2!important;
    border-top-color:#ff6f14!important;
    border-radius:50%!important;
    animation:eitsActionSpin .72s linear infinite!important;
}

.eits-action-loading-card strong{
    display:block!important;
    color:#0b315c!important;
    font-family:"Fraunces",Georgia,serif!important;
    font-size:1rem!important;
    line-height:1.35!important;
}

.eits-action-loading-card>span:last-child{
    display:block!important;
    max-width:290px!important;
    color:#718198!important;
    font-size:.8rem!important;
    line-height:1.5!important;
}

@keyframes eitsActionSpin{
    to{
        transform:rotate(360deg);
    }
}

@media(max-width:600px){
    .eits-action-loading-card{
        padding:21px 18px!important;
        border-radius:16px!important;
    }

    .eits-action-loading-card strong{
        font-size:.93rem!important;
    }

    .eits-action-loading-card>span:last-child{
        font-size:.76rem!important;
    }
}

@media(prefers-reduced-motion:reduce){
    .eits-action-loading-spinner{
        animation:none!important;
        border-top-color:#ff6f14!important;
    }
}


/* ===== legacy.css ===== */
/* ============================================================
   legacy.css - restyles the original ExplainItSimply content
   classes (.hero-small, .article-content, .info-box, .card,
   .comparison-table, etc.) to match the new editorial theme
   defined in styles.css. Loaded only on converted content pages.
   ============================================================ */

/* ---- Page hero (replaces old .hero-small) ---- */
.hero-small {
  position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: calc(var(--header-h) + 64px) 0 72px;
  overflow: hidden;
}
.hero-small::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: var(--accent);
}
.hero-small .container { position: relative; z-index: 1; }
.hero-small h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
  text-wrap: balance;
}
.hero-small > .container > p,
.hero-small p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 640px;
  line-height: 1.7;
}
.hero-image img,
.aboutus-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ---- Narrow content column ---- */
.container-narrow { max-width: 780px; }

/* ---- Section header ---- */
.section-header { margin-bottom: 36px; }
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.18;
  margin-bottom: 10px;
}
.section-header span { font-size: 15px; color: var(--muted); line-height: 1.65; }

/* ---- Breadcrumb (light) ---- */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 22px;
}
.breadcrumb a { color: var(--primary); font-weight: 600; transition: color 0.15s; }
.breadcrumb a:hover { color: var(--accent); }

/* ---- Article / editorial typography ---- */
.article { background: var(--bg); padding: 64px 0 88px; }
.article-content,
.section .container-narrow {
  color: var(--fg);
}
.article-content > .article-meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 28px;
  font-size: 13px;
  color: var(--muted);
}
.article-content > .article-meta span {
  background: none;
  padding: 0;
  border-radius: 0;
}

.article-content h1 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 46px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.12;
  margin-bottom: 18px;
  text-wrap: balance;
}
.article-content h2,
.section .container-narrow > h2 {
  font-family: var(--font-display);
  font-size: clamp(23px, 2.8vw, 30px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.25;
  margin: 40px 0 14px;
}
.article-content h3,
.section .container-narrow > h3 {
  font-family: var(--font-display);
  font-size: clamp(19px, 2.2vw, 23px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.3;
  margin: 28px 0 10px;
}
.article-content h4 { font-size: 17px; font-weight: 700; color: var(--fg); margin: 22px 0 8px; }

.article-content p,
.section .container-narrow > p {
  font-size: 16.5px;
  color: #374151;
  line-height: 1.85;
  margin-bottom: 18px;
}
.article-content a:not(.btn),
.section .container-narrow a:not(.btn) {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.article-content a:not(.btn):hover { color: var(--accent); }
.article-content strong,
.section .container-narrow strong { color: var(--fg); font-weight: 700; }

.article-content ul,
.article-content ol,
.section .container-narrow > ul,
.section .container-narrow > ol {
  margin: 0 0 20px 0;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.article-content li,
.section .container-narrow li {
  position: relative;
  padding-left: 26px;
  font-size: 16px;
  color: #374151;
  line-height: 1.7;
}
.article-content ul li::before,
.section .container-narrow > ul li::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 11px;
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
}
.article-content ol,
.section .container-narrow > ol { counter-reset: li; }
.article-content ol li::before,
.section .container-narrow > ol li::before {
  counter-increment: li;
  content: counter(li);
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  background: rgba(249, 115, 22, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-muted { color: var(--muted); }

/* ---- Info boxes / callouts ---- */
.info-box {
  background: var(--primary-light);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 28px 0;
}
.info-box.tip { background: #fff7ed; border-left-color: var(--accent); }
.info-box h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}
.info-box.tip h4 { color: var(--accent-hover); }
.info-box p { font-size: 15.5px; color: #374151; line-height: 1.75; margin: 0; }

/* ---- Cards & grids ---- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  color: var(--fg);
  text-decoration: none;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
a.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: rgba(26, 58, 107, 0.28); }
.card h3, .card h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
  line-height: 1.3;
}
.card p { font-size: 14px; color: var(--muted); line-height: 1.65; margin: 0; }
.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.card-icon svg { width: 22px; height: 22px; }

/* ---- Buttons (old .btn .btn-primary) ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, transform 0.12s;
}
.btn.btn-primary,
a.btn.btn-primary { background: var(--accent); color: #fff; }
.btn.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); color: #fff; }
.btn.btn-secondary { background: var(--primary); color: #fff; }
.btn.btn-secondary:hover { background: var(--primary-dark); color: #fff; }

/* ---- Comparison tables ---- */
.table-wrapper {
  overflow-x: auto;
  margin: 28px 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
  font-size: 15px;
  background: #fff;
}
.comparison-table thead th {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  text-align: left;
  padding: 13px 16px;
  font-size: 13px;
  letter-spacing: 0.03em;
}
.comparison-table th,
.comparison-table td {
  border-bottom: 1px solid var(--border);
  padding: 13px 16px;
  vertical-align: top;
  color: #374151;
}
.comparison-table tbody td:first-child { font-weight: 600; color: var(--fg); background: var(--bg-subtle); }
.comparison-table tbody tr:nth-child(even) td { background: #fafbfe; }
.comparison-table tbody tr:hover td { background: var(--primary-light); }

/* ---- Legacy back-to-top button from old pages ---- */
#backToTop {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
}
#backToTop:hover { background: var(--primary-dark); }

/* ---- Responsive ---- */
@media (max-width: 860px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .hero-small { padding: calc(var(--header-h) + 40px) 0 52px; }
}


/* ===== article.css ===== */
/* ============================================================
   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: "\2192" !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;
  }
}


/* ===== eits-page.css ===== */

/* ============================================================
   eits-page.css - page polish for ExplainItSimply
   ============================================================ */
html { scroll-padding-top: 94px; }
body { overflow-wrap: normal; word-break: normal; }
.nav-link.active, .nav-item.active > .nav-link, .mobile-nav-link.active, .mobile-nav-toggle.active { color: var(--primary) !important; background: var(--primary-light); font-weight: 800; }
.dropdown a.active, .mobile-subnav a.active { color: var(--accent-hover) !important; background: #fff7ed; font-weight: 800; }
.eits-hero { position: relative; overflow: hidden; padding: calc(var(--header-h) + 78px) 0 86px; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 62%, #0f766e 100%); color: #fff; }
.eits-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 18% 20%, rgba(255,255,255,.14), transparent 30%), radial-gradient(circle at 84% 20%, rgba(249,115,22,.24), transparent 28%); pointer-events: none; }
.eits-hero .container { position: relative; z-index: 1; }
.eits-breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; color: rgba(255,255,255,.72); font-size: 13px; margin-bottom: 22px; }
.eits-breadcrumb a { color: #fff; font-weight: 700; }
.eits-breadcrumb a:hover { color: var(--accent); }
.eits-hero h1 { font-family: var(--font-display); font-size: clamp(36px, 6vw, 64px); line-height: 1.06; margin: 0 0 18px; color: #fff; max-width: 980px; text-wrap: balance; }
.eits-hero p { max-width: 790px; color: rgba(255,255,255,.84); font-size: 18px; line-height: 1.8; margin: 0; }
.eits-hero-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.eits-hero-meta span { border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.10); color: #fff; border-radius: 999px; padding: 7px 13px; font-size: 12px; font-weight: 700; }
.eits-wave { position: absolute; left:0; right:0; bottom:-1px; height:56px; }
.eits-wave svg { width:100%; height:100%; display:block; }
.eits-page { background: #fff; padding: 72px 0 96px; }
.eits-layout { display: grid; grid-template-columns: minmax(0, 1fr) 312px; gap: 34px; align-items: start; }
.eits-article { min-width: 0; display: grid; gap: 28px; }
.eits-card { background: #fff; border: 1px solid var(--border); border-radius: 24px; padding: clamp(24px, 4vw, 42px); box-shadow: var(--shadow-sm); overflow-wrap: normal; word-break: normal; }
.eits-card.soft { background: linear-gradient(180deg,#fff,#f8fafc); }
.eits-card h2 { font-family: var(--font-display); font-size: clamp(25px, 3vw, 36px); line-height: 1.18; color: var(--fg); margin: 0 0 16px; scroll-margin-top: 96px; text-wrap: balance; }
.eits-card h3 { font-family: var(--font-display); font-size: clamp(20px, 2.2vw, 25px); line-height: 1.25; color: var(--fg); margin: 28px 0 10px; scroll-margin-top: 96px; }
.eits-card p { font-size: 16.5px; line-height: 1.95; color: #374151; margin: 0 0 18px; max-width: 76ch; }
.eits-card p:last-child { margin-bottom: 0; }
.eits-card ul, .eits-card ol { padding-left: 0; margin: 18px 0; display: grid; gap: 12px; }
.eits-card li { position: relative; padding-left: 28px; font-size: 16px; line-height: 1.85; color: #374151; }
.eits-card ul li::before { content: ''; position: absolute; left: 6px; top: 12px; width: 8px; height: 8px; background: var(--accent); border-radius: 50%; }
.eits-card ol { counter-reset: eits-list; }
.eits-card ol li::before { counter-increment: eits-list; content: counter(eits-list); position:absolute; left:0; top:4px; width:20px; height:20px; border-radius:50%; background:#fff7ed; color:var(--accent); display:flex; align-items:center; justify-content:center; font-size:11px; font-weight:800; }
.eits-two-cards { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
.eits-mini { background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; padding: 24px; }
.eits-mini h3 { margin-top:0; }
.eits-mini p { font-size: 15.5px; line-height: 1.85; }
.eits-figure { margin: 0; border-radius: 24px; overflow: hidden; border: 1px solid var(--border); background: var(--bg-subtle); box-shadow: var(--shadow-sm); }
.eits-figure img { width: 100%; max-height: 430px; object-fit: cover; }
.eits-figure figcaption { padding: 14px 18px; font-size: 13px; line-height: 1.65; color: var(--muted); background: #fff; }
.eits-callout { border-left: 5px solid var(--accent); background: #fff7ed; border-radius: 18px; padding: 22px 24px; margin: 22px 0; }
.eits-callout strong { display:block; color: var(--accent-hover); text-transform: uppercase; letter-spacing: .06em; font-size: 12px; margin-bottom: 6px; }
.eits-sidebar { position: sticky; top: 88px; display: grid; gap: 18px; }
.eits-side-card { background:#fff; border:1px solid var(--border); border-radius: 20px; padding: 22px; box-shadow: var(--shadow-sm); }
.eits-side-card h2, .eits-side-card h3, .eits-side-card h4 { font-family: var(--font-display); color: var(--fg); margin:0 0 14px; font-size: 19px; }
.eits-toc { display: grid; gap: 2px; }
.eits-toc a { display:block; padding: 9px 10px; color: var(--muted); border-radius: 10px; font-size: 13.5px; line-height:1.45; font-weight:700; }
.eits-toc a:hover { background: var(--primary-light); color: var(--primary); }
.eits-side-card p { font-size: 14px; line-height: 1.8; color: var(--muted); margin:0; }
.eits-related-grid { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; margin-top: 18px; }
.eits-related-card { display:block; padding: 18px; background: var(--bg-card); border:1px solid var(--border); border-radius: 18px; color: var(--fg); font-weight:800; line-height:1.35; }
.eits-related-card:hover { background: var(--primary-light); color: var(--primary); transform: translateY(-2px); }
.eits-cta { text-align:center; background: linear-gradient(135deg, var(--primary), #0f766e); color:#fff; }
.eits-cta h2 { color:#fff; }
.eits-cta p { color: rgba(255,255,255,.84); max-width: 720px; margin-left:auto; margin-right:auto; }
.eits-cta .btn-primary { margin-top: 6px; }
.eits-contact-grid { display:grid; grid-template-columns: 1fr 1.1fr; gap: 24px; align-items:start; }
.eits-contact-panel { background: var(--bg-card); border:1px solid var(--border); border-radius: 22px; padding: 26px; }
.eits-contact-form { display:grid; gap: 16px; }
.eits-field { display:grid; gap: 7px; }
.eits-field label { font-size: 13px; font-weight: 800; color: var(--fg); }
.eits-field input, .eits-field textarea, .eits-field select { width:100%; border:1px solid var(--border); border-radius: 12px; padding: 13px 14px; font-family: var(--font-body); font-size: 15px; color: var(--fg); background:#fff; outline:none; transition: border-color .15s, box-shadow .15s; }
.eits-field textarea { min-height: 150px; resize: vertical; line-height:1.65; }
.eits-field input:focus, .eits-field textarea:focus, .eits-field select:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(26,58,107,.10); }
.eits-help-card { display:flex; gap:14px; padding:16px; border-radius:16px; background:#fff; border:1px solid var(--border); margin-top:14px; }
.eits-help-card strong { display:block; color:var(--fg); margin-bottom:4px; }
.eits-help-card p { font-size:14px; line-height:1.7; color:var(--muted); margin:0; }
.eits-anchor-fix { position: relative; }
@media (max-width: 980px) { .eits-layout { grid-template-columns: 1fr; } .eits-sidebar { position: static; order: -1; } .eits-two-cards, .eits-related-grid, .eits-contact-grid { grid-template-columns: 1fr; } .eits-page { padding-top: 46px; } }
@media (max-width: 620px) { .eits-hero { padding-bottom: 68px; } .eits-card { border-radius: 18px; padding: 22px; } .eits-card p { font-size: 15.8px; line-height:1.9; } }


/* ============================================================
   Homepage and About page polish
   ============================================================ */
.eits-home-hero .hero-bg { background-image: url('../images/home-learning-journey.png'); background-position: right center; opacity: .08; }
.eits-split { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(300px,.95fr); gap: 56px; align-items: center; }
.eits-split.reverse { grid-template-columns: minmax(300px,.95fr) minmax(0,1.05fr); }
.eits-split h2, .eits-standout h2, .eits-promise-box h2 { font-family: var(--font-display); font-size: clamp(30px, 4vw, 46px); line-height: 1.15; margin-bottom: 18px; color: var(--fg); }
.eits-split p, .eits-standout p, .eits-promise-box p { font-size: 16.5px; line-height: 1.85; color: #374151; margin-bottom: 16px; }
.eits-image-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 18px; box-shadow: var(--shadow-md); }
.eits-image-card img { width: 100%; border-radius: 16px; }
.eits-feature-band { background: var(--bg-subtle); }
.eits-card-grid { display: grid; gap: 22px; }
.eits-card-grid.three { grid-template-columns: repeat(3,1fr); }
.eits-card-grid.four { grid-template-columns: repeat(4,1fr); }
.eits-card { display: block; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-sm); color: var(--fg); text-decoration: none; transition: transform .18s, box-shadow .18s, border-color .18s; }
.eits-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(249,115,22,.35); }
.eits-card h3 { font-family: var(--font-display); font-size: 20px; line-height: 1.25; margin-bottom: 10px; color: var(--fg); }
.eits-card p { font-size: 15px; line-height: 1.75; color: var(--muted); margin: 0; }
.eits-five-grid { grid-template-columns: repeat(5,1fr); }
.eits-reader-promise { background: #fff; }
.eits-promise-box { background: #fff7ed; border: 1px solid #fed7aa; border-radius: var(--radius-lg); padding: 34px; }
.eits-quote-panel, .eits-side-note { background: var(--primary); color: #fff; border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-lg); }
.eits-quote-panel p, .eits-side-note p { color: rgba(255,255,255,.82); font-size: 17px; line-height: 1.8; margin: 0; }
.eits-quote-panel small { display: block; color: rgba(255,255,255,.58); margin-top: 14px; }
.eits-side-note h3 { font-family: var(--font-display); font-size: 26px; color: #fff; margin-bottom: 12px; }
.eits-side-note.warm { background: linear-gradient(135deg, #f97316, #c2410c); }
.eits-hero-grid { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(300px,.95fr); gap: 56px; align-items: center; }
.about-hero { padding-bottom: 86px; }
.eits-values-section { background: #fff; }
.nav-link.active, .nav-item.active > .nav-link, .mobile-nav-link.active, .mobile-nav-toggle.active { color: var(--primary) !important; background: var(--primary-light); font-weight: 800; }
.dropdown a.active, .mobile-subnav a.active { color: var(--accent-hover) !important; background: #fff7ed; font-weight: 800; }
@media (max-width: 1100px) { .eits-five-grid { grid-template-columns: repeat(2,1fr); } .eits-card-grid.four { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 860px) { .eits-split, .eits-split.reverse, .eits-hero-grid { grid-template-columns: 1fr; gap: 32px; } .eits-card-grid.three, .eits-card-grid.four, .eits-five-grid { grid-template-columns: 1fr; } .eits-promise-box, .eits-side-note, .eits-quote-panel { padding: 24px; } }


/* ============================================================
   Final professional polish pass
   ============================================================ */
.logo { font-size: 24px; letter-spacing: -0.02em; }
.footer-brand .logo, .footer-brand .logo span { color: var(--accent) !important; }
.footer-brand p { max-width: 360px; }
.nav-link.active, .nav-item.active > .nav-link, .mobile-nav-link.active, .mobile-nav-toggle.active {
  color: var(--primary) !important;
  background: var(--primary-light) !important;
  font-weight: 800 !important;
}
.dropdown a.active, .mobile-subnav a.active { color: var(--accent-hover) !important; background: #fff7ed !important; font-weight: 800 !important; }
.eits-table-wrap { width: 100%; overflow-x: auto; margin: 22px 0; border: 1px solid var(--border); border-radius: 18px; background:#fff; }
.eits-table-wrap table { width: 100%; min-width: 640px; border-collapse: collapse; }
.eits-table-wrap th { background: var(--primary); color:#fff; font-weight:800; text-align:left; padding:14px 16px; font-size:13px; }
.eits-table-wrap td { padding:14px 16px; border-bottom:1px solid var(--border); color:#374151; line-height:1.65; vertical-align:top; }
.eits-table-wrap tr:last-child td { border-bottom:0; }
.eits-table-wrap tr:nth-child(even) td { background:#f8fafc; }
.eits-visual-row { display:grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 20px; margin: 4px 0; }
.eits-visual-row .eits-figure img { max-height: 340px; }
.eits-figure-wide img { max-height: 500px; object-fit: cover; }
.eits-card .content-list, .eits-card ul.content-list { display:grid; gap:14px; padding:0; margin:20px 0; }
.eits-card .content-list li { padding-left: 32px; }
.eits-layer-grid { display:grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap:18px; margin:22px 0; }
.eits-layer-card { background:#f8fafc; border:1px solid var(--border); border-radius:18px; padding:20px; }
.eits-layer-card strong { display:block; font-family:var(--font-display); font-size:20px; color:var(--fg); margin-bottom:8px; }
.eits-layer-card p { font-size:15.5px; line-height:1.8; margin:0; color:#374151; }
.eits-home-link-fix { cursor:pointer; }
@media (max-width: 860px) { .eits-visual-row, .eits-layer-grid { grid-template-columns: 1fr; } .logo { font-size:22px; } }
@media (max-width: 620px) { .eits-table-wrap table { min-width: 540px; } .logo { font-size:21px; } }


/* ===== ExplainItSimply platform upgrades ===== */
.logo{font-size:24px}.footer-logo span,.brand-orange{color:var(--accent)!important}.nav-link.active-parent,.nav-item.active-parent>.nav-link,.mobile-nav-link.active-parent,.mobile-nav-item.active-parent>.mobile-nav-toggle{background:var(--primary-light);color:var(--primary);font-weight:800}.dropdown a.active-link,.mobile-subnav a.active-link{background:#fff7ed;color:var(--accent-hover);font-weight:800}.eits-layout{display:grid;grid-template-columns:minmax(0,1fr) 300px;gap:34px;align-items:start}.eits-sidebar{position:sticky;top:88px;display:flex;flex-direction:column;gap:18px}.sidebar-card{background:#fff;border:1px solid var(--border);border-radius:var(--radius-lg);padding:22px;box-shadow:var(--shadow-sm)}.sidebar-card h3{font-family:var(--font-display);font-size:20px;margin-bottom:12px}.sidebar-card a{display:block;color:var(--primary);font-weight:700;margin:10px 0;font-size:14px}.sidebar-card p{color:var(--muted);line-height:1.7;font-size:14px;margin-bottom:14px}.did-you-know{background:linear-gradient(135deg,#fff7ed,#ffffff);border:1px solid rgba(249,115,22,.25);border-left:5px solid var(--accent);border-radius:18px;padding:20px 24px;margin:28px 0;box-shadow:var(--shadow-sm)}.did-you-know strong{display:block;color:var(--accent-hover);font-size:13px;text-transform:uppercase;letter-spacing:.09em;margin-bottom:8px}.did-you-know p{margin:0;color:#374151;line-height:1.8}.learning-visual{margin:30px 0;border-radius:22px;overflow:hidden;border:1px solid var(--border);box-shadow:var(--shadow-md);background:#fff}.learning-visual img{width:100%;height:auto;display:block}.learning-visual figcaption{font-size:13px;color:var(--muted);padding:12px 18px;background:#fff;line-height:1.5}.visual-2{max-width:720px}.visual-3{max-width:520px;margin-left:auto;margin-right:auto}.deep-section,.value-card,.promise-card{background:#fff;border:1px solid var(--border);border-radius:var(--radius-lg);padding:28px;margin:32px 0;box-shadow:var(--shadow-sm)}.deep-section h2,.value-card h3,.promise-card h3{font-family:var(--font-display);color:var(--fg);margin-bottom:14px}.deep-section p,.promise-card p{font-size:16.5px;line-height:1.9;color:#374151;margin-bottom:16px}.value-card{background:#f6f8fc}.value-card ul{margin:0;padding:0;display:grid;gap:12px}.value-card li{list-style:none;position:relative;padding-left:28px;line-height:1.75;color:#374151}.value-card li:before{content:'v';position:absolute;left:0;top:0;color:var(--accent);font-weight:900}.layer-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px;margin:22px 0}.layer-grid div{background:#f0f4fb;border:1px solid var(--border);border-radius:16px;padding:18px}.layer-grid strong{display:block;font-size:17px;color:var(--primary);margin-bottom:8px}.responsive-table-wrap,.table-wrapper,.comparison-table-wrap{overflow-x:auto;-webkit-overflow-scrolling:touch}.comparison-table,table{width:100%;border-collapse:collapse;min-width:680px}.eits-article ul,.eits-article ol{padding-left:0}.eits-article li{line-height:1.75;margin-bottom:10px}.cta-ribbon{background:linear-gradient(135deg,var(--primary),var(--primary-dark));color:#fff;border-radius:24px;padding:34px;margin:40px 0;box-shadow:var(--shadow-lg)}.cta-ribbon h2{font-family:var(--font-display);font-size:30px;margin-bottom:10px;color:#fff}.cta-ribbon p{color:rgba(255,255,255,.78);line-height:1.8;margin-bottom:18px}.blog-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}.blog-card{background:#fff;border:1px solid var(--border);border-radius:20px;padding:24px;box-shadow:var(--shadow-sm);display:flex;flex-direction:column;min-height:230px}.blog-card .article-cat{align-self:flex-start;margin-bottom:12px}.blog-card h3{font-family:var(--font-display);font-size:22px;margin-bottom:10px}.blog-card p{color:var(--muted);line-height:1.7;flex:1}.counter-strip{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin:30px 0}.counter-card{background:#fff;border:1px solid var(--border);border-radius:18px;padding:22px;text-align:center;box-shadow:var(--shadow-sm)}.counter-card strong{display:block;font-family:var(--font-display);font-size:34px;color:var(--primary)}.counter-card span{font-size:13px;color:var(--muted)}.scroll-reveal{opacity:0;transform:translateY(22px);transition:opacity .7s ease, transform .7s ease}.scroll-reveal.is-visible{opacity:1;transform:none}.footer-brand p strong{font-weight:800}.homepage-quick-links a[href="#"],.articles-cta a[href="#"]{pointer-events:auto}@media(max-width:980px){.eits-layout{grid-template-columns:1fr}.eits-sidebar{position:static;display:grid;grid-template-columns:1fr}.blog-grid{grid-template-columns:1fr 1fr}.counter-strip{grid-template-columns:1fr 1fr}.layer-grid{grid-template-columns:1fr}.logo{font-size:22px}}@media(max-width:640px){.blog-grid,.counter-strip{grid-template-columns:1fr}.deep-section,.value-card,.promise-card,.cta-ribbon{padding:22px}.learning-visual{border-radius:16px}}


/* ===== FAQ, learning path and AdSense readiness polish ===== */
.nav-link.active-parent,.nav-item.active-parent>.nav-link,.mobile-nav-link.active-parent,.mobile-nav-item.active-parent>.mobile-nav-toggle{background:var(--primary-light)!important;color:var(--primary)!important;font-weight:800!important}.dropdown a.active-link,.mobile-subnav a.active-link{background:#fff7ed!important;color:var(--accent-hover)!important;font-weight:800!important}.faq-section{scroll-margin-top:96px}.faq-section .section-label{margin-bottom:10px}.faq-accordion{display:grid;gap:14px;margin-top:20px}.faq-item{border:1px solid var(--border);border-radius:18px;background:#fff;box-shadow:var(--shadow-sm);overflow:hidden}.faq-item summary{list-style:none;cursor:pointer;padding:18px 54px 18px 20px;font-weight:800;color:var(--fg);position:relative;line-height:1.45}.faq-item summary::-webkit-details-marker{display:none}.faq-item summary:after{content:'+';position:absolute;right:18px;top:50%;transform:translateY(-50%);width:28px;height:28px;border-radius:50%;background:#fff7ed;color:var(--accent);display:flex;align-items:center;justify-content:center;font-size:20px;font-weight:900}.faq-item[open] summary{background:var(--bg-subtle);color:var(--primary)}.faq-item[open] summary:after{content:'-';background:var(--accent);color:#fff}.faq-answer{padding:0 20px 20px;color:#374151;font-size:16px;line-height:1.85}.learning-nav{display:grid;grid-template-columns:1fr 1fr;gap:18px;margin:28px 0}.learning-nav a{display:block;border:1px solid var(--border);border-radius:18px;padding:20px;background:#fff;box-shadow:var(--shadow-sm);color:var(--fg)}.learning-nav a:hover{border-color:rgba(249,115,22,.45);box-shadow:var(--shadow-md);transform:translateY(-2px)}.learning-nav small{display:block;text-transform:uppercase;letter-spacing:.08em;color:var(--muted);font-size:11px;font-weight:800;margin-bottom:8px}.learning-nav strong{font-family:var(--font-display);font-size:20px;color:var(--primary);line-height:1.25}.site-faq-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:22px}.faq-category-card{border:1px solid var(--border);border-radius:22px;background:#fff;padding:24px;box-shadow:var(--shadow-sm)}.faq-category-card h2{font-family:var(--font-display);font-size:26px;margin:0 0 10px}.faq-category-card p{color:var(--muted);line-height:1.75;margin-bottom:18px}.trust-note{background:#f0fdf4;border-left:5px solid #16a34a;border-radius:18px;padding:20px 24px;margin:24px 0}.trust-note strong{display:block;color:#15803d;text-transform:uppercase;letter-spacing:.08em;font-size:12px;margin-bottom:8px}.legal-page .eits-card h2{margin-top:6px}.legal-page .eits-card p{max-width:82ch}@media(max-width:780px){.learning-nav,.site-faq-grid{grid-template-columns:1fr}.faq-item summary{padding-right:48px}}

/* ============================================================
   Layout stability patch - no content changes
   Fixes sidebar overlap, table overflow, card stretching and smooth accordions
   ============================================================ */
* { box-sizing: border-box; }
html { scroll-padding-top: 96px; }
body { overflow-x: hidden; }
.container { width: 100%; }
.eits-page .container,
.eits-layout { max-width: 1200px; margin-left: auto; margin-right: auto; }
.eits-layout {
  width: 100%;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 300px) !important;
  gap: clamp(22px, 3vw, 38px) !important;
  align-items: start !important;
}
.eits-article, .eits-main, article.eits-article { min-width: 0 !important; max-width: 100% !important; }
.eits-sidebar {
  width: 100%;
  min-width: 0;
  align-self: start;
  position: sticky;
  top: 88px;
  z-index: 1;
}
.eits-card, .deep-section, .value-card, .promise-card, .cta-ribbon, .faq-section {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: normal;
}
.eits-card:hover { transform: none; }
.eits-card p, .deep-section p, .promise-card p { max-width: 78ch; }
.eits-card img, .learning-visual img, .eits-figure img { max-width: 100%; height: auto; }
.eits-visual-row, .eits-two-cards, .eits-related-grid, .blog-grid, .counter-strip, .layer-grid, .eits-layer-grid { min-width: 0; }
.eits-visual-row > *, .eits-two-cards > *, .eits-related-grid > *, .blog-grid > *, .counter-strip > *, .layer-grid > *, .eits-layer-grid > * { min-width: 0; }
/* Tables must scroll inside the article instead of pushing under the sidebar */
.eits-article table,
.article-content table,
.comparison-table {
  width: 100%;
  max-width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}
.eits-article table:not(.no-scroll-table),
.article-content table:not(.no-scroll-table) {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.responsive-table-wrap, .table-wrapper, .comparison-table-wrap, .eits-table-wrap {
  max-width: 100%;
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch;
}
/* Lists must align cleanly */
.eits-article ul, .eits-article ol, .article-content ul, .article-content ol {
  max-width: 78ch;
}
.eits-article li, .article-content li {
  overflow-wrap: break-word;
}
/* FAQ accordion smooth open/close feel */
.faq-item {
  transition: box-shadow .25s ease, border-color .25s ease, transform .25s ease;
}
.faq-item:hover {
  border-color: rgba(249,115,22,.35);
  box-shadow: var(--shadow-md);
}
.faq-item summary::after { transition: transform .25s ease, background .25s ease, color .25s ease; }
.faq-item[open] summary::after { transform: translateY(-50%) rotate(180deg); }
.faq-answer {
  animation: eitsFaqFade .24s ease both;
}
@keyframes eitsFaqFade {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 1100px) {
  .eits-layout { grid-template-columns: minmax(0,1fr) 270px !important; gap: 24px !important; }
}
@media (max-width: 980px) {
  .eits-layout { grid-template-columns: 1fr !important; }
  .eits-sidebar { position: static !important; order: 2 !important; }
  .eits-article { order: 1; }
}
@media (max-width: 720px) {
  .eits-card p, .deep-section p, .promise-card p, .eits-article ul, .eits-article ol { max-width: 100%; }
  .eits-visual-row, .eits-two-cards, .eits-related-grid, .blog-grid, .counter-strip, .layer-grid, .eits-layer-grid { grid-template-columns: 1fr !important; }
  .eits-article table, .article-content table, .comparison-table { min-width: 560px; }
}


/* ============================================================
   Real image + value sections added for AdSense-ready pass
   ============================================================ */
.eits-layout{display:grid;grid-template-columns:minmax(0,1fr) 300px;gap:34px;align-items:start;}
.eits-article{min-width:0;}
.eits-sidebar{position:sticky;top:86px;align-self:start;z-index:1;}
.real-image-card{margin:30px 0;border-radius:22px;overflow:hidden;background:#fff;border:1px solid var(--border);box-shadow:var(--shadow-md);}
.real-image-card img{width:100%;height:clamp(260px,36vw,430px);object-fit:cover;display:block;}
.real-image-card figcaption{font-size:13px;line-height:1.6;color:var(--muted);padding:12px 18px;background:#fff;}
.real-life-section{background:#fff;}
.real-life-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px;margin-top:18px;}
.real-life-card{border:1px solid var(--border);border-radius:16px;background:var(--bg-card);padding:18px;}
.real-life-card h3{font-family:var(--font-display);font-size:18px;margin:0 0 8px;color:var(--fg);}
.real-life-card p{margin:0;color:var(--muted);font-size:14.5px;line-height:1.7;}
.eits-table-wrap,.table-wrapper{overflow-x:auto;max-width:100%;}
.eits-table-wrap table,.table-wrapper table{min-width:640px;}
.eits-article ul:not(.related-list){padding-left:0;}
.eits-article li{line-height:1.75;}
@media (max-width: 980px){.eits-layout{display:block}.eits-sidebar{position:static;margin-top:26px}.real-life-grid{grid-template-columns:1fr}.real-image-card img{height:260px}}

.sidebar-real-image{width:100%;height:150px;object-fit:cover;border-radius:14px;margin-top:16px;border:1px solid var(--border);}

/* Final mobile safety override */
@media (max-width:768px){.hero.has-hero-slider{min-height:calc(100svh - var(--header-h))!important;height:auto!important}.eits-hero.has-hero-slider,.page-hero.has-hero-slider{min-height:auto!important}.hero-slider-image{background-size:cover!important;background-position:center!important}}

/* ============================================================
   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: "\2192" !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;
  }
}


/* ===== mega-menu.css ===== */
/* ExplainItSimply mega menu preview */
.header .container{max-width:1280px}
.header-inner{gap:18px}
.logo{font-size:1.55rem;white-space:nowrap}
.nav.mega-nav{display:flex;align-items:center;gap:6px;min-width:0;flex:1;justify-content:flex-end}
.nav.mega-nav>.nav-link,.nav.mega-nav .nav-link{font-size:13px;padding:10px 10px;border-radius:999px;white-space:nowrap;display:inline-flex;align-items:center;gap:6px}
.nav.mega-nav .nav-item{position:relative}
.nav.mega-nav .mega-panel{position:absolute;top:calc(100% + 14px);left:50%;transform:translateX(-50%) translateY(8px);width:min(960px,calc(100vw - 32px));max-height:calc(100vh - 120px);overflow:auto;background:#fff;border:1px solid rgba(30,58,95,.10);box-shadow:0 24px 70px rgba(15,23,42,.18);border-radius:26px;padding:0;opacity:0;visibility:hidden;pointer-events:none;transition:opacity .18s ease,transform .18s ease,visibility .18s ease;z-index:5000}
.nav.mega-nav .nav-item.open .mega-panel,.nav.mega-nav .nav-item:hover .mega-panel{opacity:1;visibility:visible;pointer-events:auto;transform:translateX(-50%) translateY(0)}
.mega-panel::before{content:"";position:absolute;top:-10px;left:50%;width:18px;height:18px;background:#fff;border-left:1px solid rgba(30,58,95,.10);border-top:1px solid rgba(30,58,95,.10);transform:translateX(-50%) rotate(45deg)}
.mega-head{padding:22px 24px;border-bottom:1px solid rgba(30,58,95,.08);background:linear-gradient(135deg,#f7fbff,#fff7ed);border-radius:26px 26px 0 0}
.mega-head strong{display:block;color:#0f2f55;font-size:1.05rem;margin-bottom:4px}
.mega-head span{display:block;color:#64748b;font-size:.88rem;line-height:1.5}
.mega-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:8px 16px;padding:22px 24px 10px}
.mega-col h4{margin:0 0 10px;color:#0f2f55;font-size:.86rem;text-transform:uppercase;letter-spacing:.05em}
.mega-col a{display:block;color:#334155;text-decoration:none;font-size:.91rem;line-height:1.35;padding:7px 0;border-radius:8px;transition:color .15s ease,transform .15s ease}
.mega-col a:hover,.mega-col a.active-link{color:#f97316;transform:translateX(3px)}
.mega-feature{margin:10px 24px 24px;padding:16px 18px;border-radius:18px;background:#0f2f55;color:#fff;display:flex;align-items:center;justify-content:space-between;gap:18px}
.mega-feature strong{display:block;font-size:.98rem;margin-bottom:4px}.mega-feature span{font-size:.85rem;color:rgba(255,255,255,.78)}.mega-feature a{color:#fff;text-decoration:none;font-weight:800;background:rgba(255,255,255,.13);padding:9px 12px;border-radius:999px;white-space:nowrap}.mega-feature a:hover{background:rgba(255,255,255,.22)}
.nav [data-section].active-parent>.nav-link,.nav-link.active-parent,.mobile-nav [data-section].active-parent>.mobile-nav-toggle,.mobile-nav-link.active-parent{background:#fff4e8;color:#f97316;box-shadow:inset 0 0 0 1px rgba(249,115,22,.20)}
@media (max-width:1180px){.header-actions{display:none}.nav.mega-nav>.nav-link,.nav.mega-nav .nav-link{font-size:12px;padding:9px 7px}.logo{font-size:1.38rem}}
@media (max-width:1024px){.nav.mega-nav{display:none}.mobile-menu-btn{display:inline-flex}.header-actions{display:none}}
@media (max-width:700px){.mega-grid{grid-template-columns:1fr}.mega-feature{display:block}.mega-feature a{display:inline-block;margin-top:12px}}
.mobile-subnav .mobile-group-title{display:block;margin:14px 0 4px;padding:0 8px;color:#0f2f55;font-weight:800;font-size:.78rem;text-transform:uppercase;letter-spacing:.06em}.mobile-subnav a{padding-left:18px}


/* ===== Mega menu title icons ===== */
.mega-title{
  display:flex;
  align-items:center;
  gap:14px;
}
.mega-head-icon{
  width:46px;
  height:46px;
  border-radius:16px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 46px;
  font-weight:900;
  font-size:14px;
  letter-spacing:.04em;
  box-shadow:0 10px 24px rgba(15,23,42,.10);
}
.mega-icon-ai{background:#f0e8ff;color:#7c3aed;}
.mega-icon-software{background:#e7f0ff;color:#2563eb;}
.mega-icon-space{background:#e8f7ff;color:#0284c7;}
.mega-icon-school{background:#eaf9ec;color:#16a34a;}
.mega-icon-money{background:#fff6e5;color:#f59e0b;}
.mega-icon-skills{background:#fff0e8;color:#ea580c;}
.mega-icon-more{background:#f3f4f6;color:#6b7280;}


/* ===== SVG icons inside mega menu titles ===== */
.mega-head-icon svg{
  width:24px;
  height:24px;
  display:block;
}
.mega-title > div{
  min-width:0;
}


/* ===== Final left-aligned mega menu polish ===== */
.header-inner{
  position:relative;
}
.nav.mega-nav .nav-item{
  position:static;
}
.nav.mega-nav .mega-panel{
  left:0;
  right:auto;
  transform:translateY(8px);
  width:min(980px, calc(100vw - 32px));
}
.nav.mega-nav .nav-item.open .mega-panel,
.nav.mega-nav .nav-item:hover .mega-panel{
  transform:translateY(0);
}
.nav.mega-nav .mega-panel::before{
  left:42px;
  transform:rotate(45deg);
}
.mega-icon-aviation{
  background:#eaf7ff;
  color:#0ea5e9;
}
@media (max-width:1024px){
  .nav.mega-nav .nav-item{position:relative;}
}

/* Keep the expanded navigation stable after adding Aviation */
@media (min-width:1025px){
  .nav.mega-nav{gap:4px;}
  .nav.mega-nav>.nav-link,
  .nav.mega-nav .nav-link{
    font-size:12.5px;
    padding:9px 8px;
  }
}


/* data-patch-aviation-menu: keep Aviation menu aligned and stable */
@media (min-width:1025px){
  .nav.mega-nav{gap:3px;}
  .nav.mega-nav .nav-link{font-size:12px;padding:8px 7px;}
  .nav.mega-nav .mega-panel{left:0;right:auto;max-width:calc(100vw - 40px);}
}
.mega-icon-aviation{background:#eaf7ff;color:#0ea5e9;}

/* ============================================================
   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: "\2192" !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;
  }
}


/* ===== eits-share.css ===== */
/* Static page sharing controls */
.eits-share-system{font-family:"Plus Jakarta Sans",Arial,sans-serif}.eits-static-share{width:min(100% - 32px,1180px);margin:22px auto;display:flex;align-items:center;justify-content:space-between;gap:18px;padding:16px 20px;border:1px solid rgba(18,48,82,.12);border-radius:16px;background:#fff;box-shadow:0 8px 26px rgba(18,48,82,.07)}.eits-share-top{margin-top:22px;margin-bottom:4px}.eits-share-bottom{margin-top:30px;margin-bottom:30px}.eits-share-prompt{color:#475b72;font-weight:700}.eits-share-open{border:0;border-radius:999px;padding:11px 18px;background:#e87524;color:#fff;font:inherit;font-weight:800;cursor:pointer;white-space:nowrap;box-shadow:0 8px 20px rgba(232,117,36,.22)}.eits-share-open:hover,.eits-share-open:focus-visible{background:#cf6418;outline:3px solid rgba(232,117,36,.22);outline-offset:2px}.eits-share-modal[hidden]{display:none!important}.eits-share-modal{position:fixed;inset:0;z-index:5000;display:grid;place-items:center;padding:20px}.eits-share-backdrop{position:absolute;inset:0;background:rgba(5,20,38,.68);backdrop-filter:blur(3px)}.eits-share-dialog{position:relative;z-index:1;width:min(100%,500px);padding:30px;border-radius:22px;background:#fff;box-shadow:0 30px 80px rgba(0,0,0,.28);outline:none}.eits-share-dialog h2{margin:7px 40px 8px 0;color:#123052}.eits-share-dialog>p{margin:0 0 20px;color:#58697c}.eits-share-close{position:absolute;right:16px;top:14px;width:38px;height:38px;border:0;border-radius:50%;background:#eef3f8;color:#123052;font-size:28px;line-height:1;cursor:pointer}.eits-share-choices{display:grid;gap:12px}.eits-share-choice{display:flex;align-items:center;gap:14px;padding:15px;border:1px solid #e2e9f1;border-radius:15px;text-decoration:none;background:#fbfcfe;color:#17324f;transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease}.eits-share-choice:hover,.eits-share-choice:focus-visible{transform:translateY(-1px);border-color:#c6d4e3;box-shadow:0 9px 22px rgba(18,48,82,.08);outline:none}.share-choice-icon{display:grid;place-items:center;flex:0 0 43px;width:43px;height:43px;border-radius:13px;color:#fff;font-weight:900}.eits-share-choice.whatsapp .share-choice-icon{background:#25d366}.eits-share-choice.facebook .share-choice-icon{background:#1877f2}.eits-share-choice.email .share-choice-icon{background:#e87524}.eits-share-choice strong,.eits-share-choice small{display:block}.eits-share-choice small{margin-top:2px;color:#6b7787}.eits-share-modal-open{overflow:hidden}.facebook-icon{display:inline-grid;place-items:center;flex:0 0 30px;width:30px;height:30px;border-radius:50%;background:#1877f2;color:#fff;font-weight:800}.facebook-icon svg{display:block;width:19px;height:19px}.footer-social{margin:24px 0 12px}.facebook-link{display:inline-flex;align-items:center;gap:10px;color:#fff;font-weight:700;text-decoration:none}.language-switch{display:flex;gap:10px;margin:18px 0 28px}.language-switch button{border:1px solid #e87524;border-radius:999px;padding:10px 18px;background:#fff;font-weight:700;cursor:pointer}.language-switch button.active{background:#e87524;color:#fff}.article-date{font-weight:700;color:#64748b;margin:10px 0 18px}.language-panel[hidden]{display:none!important}@media(max-width:720px){.eits-static-share{align-items:flex-start;flex-direction:column;padding:15px 16px;margin-top:16px;margin-bottom:16px}.eits-share-open{width:100%}.eits-share-dialog{padding:25px 19px}.eits-share-choice{padding:13px}.eits-share-prompt{font-size:.94rem}}


/* ===== eits-v2-bundle.css ===== */
/* ExplainItSimply V2 unified visual system. Generated from the approved working source. */

/* ===== legacy layer: eits-dev.css ===== */

/* ExplainItSimply Software Development additions */
.topic-card.navy{background:linear-gradient(135deg,#0f172a,#1e3a8a);color:#fff}.topic-card.navy p,.topic-card.navy .topic-count{color:rgba(255,255,255,.86)}
.software-curiosity .value-tile{text-decoration:none;color:inherit}.software-curiosity .value-tile span{display:inline-block;margin-top:10px;font-weight:700;color:#d97706}
.dev-hero{background:linear-gradient(135deg,#0f172a,#1e3a8a 55%,#f59e0b)}
.curiosity-card{border-left:6px solid #f59e0b;background:linear-gradient(180deg,#fff7ed,#fff)}
.hero-topic-image img,.real-topic-image{width:100%;height:auto;display:block;object-fit:cover;border-radius:22px}.hero-topic-image img{max-height:420px}
.real-life-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px;margin-top:18px}.real-life-card{background:#f8fafc;border:1px solid #e5e7eb;border-radius:18px;padding:18px}.real-life-card h3{margin:0 0 8px;color:#1a3a6b}.real-life-card p{margin:0}.think-card{background:#f8fbff}.learned-card{background:#fff7ed}.value-card ul{margin:0;padding-left:1.2rem}.value-card li{margin:.55rem 0}.eits-layout{align-items:start}.eits-article{min-width:0}.eits-sidebar{position:relative;z-index:1}.eits-side-card{overflow:hidden}.eits-toc a{word-break:normal;overflow-wrap:anywhere}.learning-nav a{text-decoration:none}.footer-grid{align-items:start}
@media (min-width: 1024px){.eits-layout{display:grid;grid-template-columns:minmax(0,1fr) 320px;gap:32px}.eits-sidebar{position:sticky;top:96px}.topics-grid.eits-five-grid{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media (max-width: 1023px){.eits-layout{display:block}.eits-sidebar{margin-top:28px}.real-life-grid{grid-template-columns:1fr}.topics-grid.eits-five-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media (max-width: 680px){.topics-grid.eits-five-grid{grid-template-columns:1fr}.hero-topic-image img{max-height:none}.real-life-card{padding:15px}.footer-grid{grid-template-columns:1fr!important}}


/* ===== TOP SCROLLING LEARNING BANNER ===== */
.top-scroll-banner{
  width:100%;
  overflow:hidden;
  background:#071a33;
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
  padding:10px 0;
  position:relative;
  z-index:40;
}

.top-scroll-track{
  display:flex;
  align-items:center;
  gap:42px;
  width:max-content;
  white-space:nowrap;
  animation:eitsTopScroll 30s linear infinite;
  will-change:transform;
}

.top-scroll-track span{
  color:#ffffff;
  font-size:14px;
  font-weight:800;
  letter-spacing:.03em;
  line-height:1;
}

.top-scroll-track span::before{
  content:"";
  display:inline-block;
  width:7px;
  height:7px;
  border-radius:999px;
  background:#f97316;
  margin-right:12px;
  vertical-align:middle;
  box-shadow:0 0 0 4px rgba(249,115,22,.14);
}

@keyframes eitsTopScroll{
  from{ transform:translateX(100vw); }
  to{ transform:translateX(-100%); }
}

.top-scroll-banner:hover .top-scroll-track{
  animation-play-state:paused;
}

@media (prefers-reduced-motion: reduce){
  .top-scroll-track{
    animation:none;
    transform:none;
    padding-left:16px;
  }
}

/* ===== FOOTER BRAND BANNER ===== */
.footer{
  padding-bottom:0 !important;
}

.footer-brand-banner{
  width:100%;
  margin-top:32px;
  padding:0;
  overflow:hidden;
  border-top:1px solid rgba(255,255,255,.10);
  background:#06172d;
  line-height:0;
}

.footer-brand-banner picture,
.footer-brand-banner img{
  display:block;
  width:100%;
}

.footer-brand-banner img{
  height:auto;
  max-width:100%;
}

@media (max-width:768px){
  .top-scroll-banner{
    padding:9px 0;
  }

  .top-scroll-track{
    gap:28px;
    animation-duration:22s;
  }

  .top-scroll-track span{
    font-size:13px;
  }

  .footer-brand-banner{
    margin-top:24px;
  }

  .footer-brand-banner img{
    width:100%;
    max-width:100%;
    height:auto;
    margin-left:0;
  }
}


/* ===== Footer brand banner responsive ===== */
.footer-brand-banner{
  width:100%;
  margin-top:30px;
  padding:0;
  overflow:hidden;
  background:#06172d;
  border-top:1px solid rgba(255,255,255,.08);
}
.footer-brand-banner picture,
.footer-brand-banner img{display:block;width:100%;}
.footer-brand-banner img{height:auto;max-width:100%;}
@media (max-width:768px){
  .footer-brand-banner{margin-top:22px;max-height:220px;}
  .footer-brand-banner img{width:180%;max-width:none;margin-left:-40%;height:auto;}
}


/* ============================================================
   FINAL POLISH: Rotating image banner, card title icons, FAQ
   ============================================================ */

/* Rotating image banner below the top scrolling text */
.eits-image-banner{
  width:100%;
  background:#f6f8fc;
  border-bottom:1px solid rgba(26,58,107,.10);
  padding:14px 16px;
  position:relative;
  z-index:20;
}

.eits-image-banner-shell{
  max-width:1280px;
  margin:0 auto;
  position:relative;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 16px 42px rgba(15,23,42,.14);
  background:#071a33;
}

.eits-image-banner-track{
  min-height:210px;
  position:relative;
}

.eits-image-banner-slide{
  min-height:210px;
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
}

.eits-image-banner-content{
  max-width:720px;
  padding:34px 76px;
  color:#fff;
}

.eits-image-banner-content span{
  display:inline-flex;
  align-items:center;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(249,115,22,.95);
  color:#fff;
  font-size:12px;
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
  margin-bottom:12px;
}

.eits-image-banner-content h2{
  color:#fff;
  font-family:var(--font-display, Georgia, serif);
  font-size:clamp(1.45rem,3vw,2.65rem);
  line-height:1.05;
  margin:0 0 10px;
}

.eits-image-banner-content p{
  color:rgba(255,255,255,.90);
  max-width:620px;
  margin:0 0 18px;
  line-height:1.7;
}

.eits-image-banner-content a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 16px;
  border-radius:999px;
  background:#fff;
  color:#1a3a6b;
  font-weight:900;
  box-shadow:0 12px 28px rgba(0,0,0,.18);
}

.eits-image-banner-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:3;
  width:42px;
  height:42px;
  border:0;
  border-radius:999px;
  background:rgba(255,255,255,.92);
  color:#1a3a6b;
  font-size:30px;
  line-height:1;
  cursor:pointer;
  box-shadow:0 12px 28px rgba(0,0,0,.18);
}

.eits-image-banner-arrow.prev{left:18px;}
.eits-image-banner-arrow.next{right:18px;}

.eits-image-banner-dots{
  position:absolute;
  left:50%;
  bottom:14px;
  transform:translateX(-50%);
  display:flex;
  gap:8px;
  z-index:4;
}

.eits-image-banner-dot{
  width:9px;
  height:9px;
  border:0;
  border-radius:999px;
  background:rgba(255,255,255,.55);
  cursor:pointer;
}

.eits-image-banner-dot.active{
  width:26px;
  background:#f97316;
}

/* Card title icons - safe CSS icons, no special characters */
.topic-card h3,
.guide-card h3,
.article-card h3,
.blog-card h3,
.eits-card > h2,
.eits-card > h3,
.value-card h3,
.promise-card h3,
.real-life-card h3,
.about-feature-card h3,
.about-value-card h3,
.sidebar-card h3,
.eits-side-card h2,
.eits-side-card h3{
  display:flex;
  align-items:center;
  gap:10px;
}

.topic-card h3::before,
.guide-card h3::before,
.article-card h3::before,
.blog-card h3::before,
.eits-card > h2::before,
.eits-card > h3::before,
.value-card h3::before,
.promise-card h3::before,
.real-life-card h3::before,
.about-feature-card h3::before,
.about-value-card h3::before,
.sidebar-card h3::before,
.eits-side-card h2::before,
.eits-side-card h3::before{
  content:"";
  width:28px;
  height:28px;
  border-radius:10px;
  display:inline-flex;
  flex:0 0 28px;
  background:
    linear-gradient(135deg, rgba(249,115,22,.95), rgba(26,58,107,.95));
  box-shadow:0 8px 18px rgba(15,23,42,.12);
}

.topic-card.blue h3::before{background:linear-gradient(135deg,#60a5fa,#2563eb);}
.topic-card.green h3::before{background:linear-gradient(135deg,#86efac,#16a34a);}
.topic-card.purple h3::before{background:linear-gradient(135deg,#c4b5fd,#7c3aed);}
.topic-card.orange h3::before{background:linear-gradient(135deg,#fdba74,#f97316);}
.topic-card.teal h3::before{background:linear-gradient(135deg,#5eead4,#0f766e);}
.topic-card.navy h3::before{background:linear-gradient(135deg,#f97316,#ffffff);}

/* FAQ open and close icons */
.faq-item summary::after,
.about-faq-card summary::after{
  content:"+" !important;
  font-family:Arial, Helvetica, sans-serif !important;
  speak:none;
}

.faq-item[open] summary::after,
.about-faq-card[open] summary::after{
  content:"-" !important;
}

/* Mobile adjustments */
@media (max-width:768px){
  .eits-image-banner{
    padding:10px 10px;
  }

  .eits-image-banner-shell{
    border-radius:18px;
  }

  .eits-image-banner-track,
  .eits-image-banner-slide{
    min-height:260px;
  }

  .eits-image-banner-content{
    padding:38px 22px 54px;
  }

  .eits-image-banner-content p{
    font-size:14px;
  }

  .eits-image-banner-arrow{
    width:34px;
    height:34px;
    font-size:24px;
  }

  .eits-image-banner-arrow.prev{left:10px;}
  .eits-image-banner-arrow.next{right:10px;}

  .topic-card h3,
  .guide-card h3,
  .article-card h3,
  .blog-card h3,
  .eits-card > h2,
  .eits-card > h3{
    align-items:flex-start;
  }
}


/* ===== Final spacing fix for rotating image banner ===== */
.eits-image-banner{
  padding-top:24px !important;
  padding-bottom:18px !important;
  margin-top:0 !important;
}
.eits-image-banner-shell{
  overflow:hidden;
}
@media (max-width:768px){
  .eits-image-banner{
    padding-top:18px !important;
    padding-left:10px !important;
    padding-right:10px !important;
  }
}

/* ============================================================
   HERO LEARNING STRIP - integrated inside the existing hero
   ============================================================ */
.hero-learning-strip{
  width:100%;
  max-width:720px;
  margin:24px 0 20px;
  padding:10px 0;
  overflow:hidden;
  border-top:1px solid rgba(255,255,255,.18);
  border-bottom:1px solid rgba(255,255,255,.18);
  position:relative;
}

.eits-hero .hero-learning-strip,
.page-hero .hero-learning-strip{
  max-width:100%;
}

.hero-learning-track{
  display:flex;
  align-items:center;
  gap:28px;
  width:max-content;
  white-space:nowrap;
  animation:eitsHeroLearningScroll 28s linear infinite;
}

.hero-learning-track span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 16px;
  border-radius:999px;
  background:rgba(249,115,22,.95);
  color:#fff;
  font-size:13px;
  font-weight:900;
  letter-spacing:.02em;
  text-transform:uppercase;
  box-shadow:0 10px 24px rgba(0,0,0,.16);
}

.hero-learning-track span::before{
  content:"";
  width:5px;
  height:5px;
  border-radius:999px;
  background:rgba(255,255,255,.75);
  flex-shrink:0;
}

.hero-learning-strip:hover .hero-learning-track{
  animation-play-state:paused;
}

@keyframes eitsHeroLearningScroll{
  from{transform:translateX(0);}
  to{transform:translateX(-50%);}
}

@media (max-width:768px){
  .hero-learning-strip{
    margin:18px 0 16px;
    max-width:100%;
  }

  .hero-learning-track{
    gap:18px;
    animation-duration:22s;
  }

  .hero-learning-track span{
    font-size:11px;
    padding:6px 12px;
  }
}


/* ===========================================
   Reusable HeroSlider.ascx control
   =========================================== */
.hero.has-hero-slider,
.eits-hero.has-hero-slider,
.page-hero.has-hero-slider {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.hero-slider-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-slider-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 900ms ease, transform 6500ms ease;
}

.hero-slider-image.active {
    opacity: 1;
    transform: scale(1);
}

.hero.has-hero-slider::before,
.eits-hero.has-hero-slider::before,
.page-hero.has-hero-slider::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(5, 18, 38, .86) 0%, rgba(5, 18, 38, .72) 42%, rgba(5, 18, 38, .38) 100%);
    pointer-events: none;
}

.hero.has-hero-slider > :not(.hero-slider-layer):not(.hero-slider-controls),
.eits-hero.has-hero-slider > :not(.hero-slider-layer):not(.hero-slider-controls),
.page-hero.has-hero-slider > :not(.hero-slider-layer):not(.hero-slider-controls) {
    position: relative;
    z-index: 2;
}

.hero-slider-controls {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
}

.hero-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .65);
    background: rgba(255, 255, 255, .14);
    color: #ffffff;
    font-size: 26px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    pointer-events: auto;
    backdrop-filter: blur(10px);
    transition: background .2s ease, transform .2s ease;
}

.hero-slider-arrow:hover {
    background: rgba(255, 255, 255, .25);
    transform: translateY(-50%) scale(1.05);
}

.hero-slider-prev { left: 18px; }
.hero-slider-next { right: 18px; }

.hero-slider-dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    display: flex;
    gap: 9px;
    pointer-events: auto;
}

.hero-slider-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .8);
    background: rgba(255, 255, 255, .25);
    cursor: pointer;
}

.hero-slider-dot.active {
    width: 28px;
    background: #f97316;
    border-color: #f97316;
}

/* Hide the old scrolling text strip if an older file still renders it. */
.hero-learning-strip,
.top-scroll-banner {
    display: none !important;
}

/* ===========================================
   Reusable ExplainItSimply.ascx control
   =========================================== */
.explainit-simply-control {
    width: min(1120px, calc(100% - 32px));
    margin: 28px auto 0;
    padding: 0 0 20px;
}

.explainit-simply-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
}

.explainit-simply-mark {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1d4ed8, #f97316);
    color: #ffffff;
    font-weight: 900;
    letter-spacing: .02em;
    flex-shrink: 0;
}

.explainit-simply-control h2 {
    margin: 0 0 4px;
    color: #ffffff;
    font-size: 1.1rem;
}

.explainit-simply-control p {
    margin: 0;
    color: rgba(255, 255, 255, .82);
    line-height: 1.55;
}

@media (max-width: 768px) {
    .hero-slider-arrow {
        width: 38px;
        height: 38px;
        font-size: 22px;
    }

    .hero-slider-prev { left: 10px; }
    .hero-slider-next { right: 10px; }

    .hero-slider-dots { bottom: 12px; }

    .hero.has-hero-slider::before,
    .eits-hero.has-hero-slider::before,
    .page-hero.has-hero-slider::before {
        background: linear-gradient(180deg, rgba(5,18,38,.82) 0%, rgba(5,18,38,.72) 100%);
    }

    .explainit-simply-inner {
        align-items: flex-start;
        padding: 16px;
    }
}

/* Final mobile safety override */
@media (max-width:768px){.hero.has-hero-slider{min-height:calc(100svh - var(--header-h))!important;height:auto!important}.eits-hero.has-hero-slider,.page-hero.has-hero-slider{min-height:auto!important}.hero-slider-image{background-size:cover!important;background-position:center!important}}

/* Final: remove hero arrow controls */
.hero-slider-arrow,.hero-slider-prev,.hero-slider-next{display:none!important;visibility:hidden!important;pointer-events:none!important;}

/* ============================================================
   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: "\2192" !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;
  }
}


/* ===== legacy layer: eits-value.css ===== */
/* Value-section helpers */
.value-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}.value-tile{background:#fff;border:1px solid #e5e7eb;border-radius:20px;padding:20px;box-shadow:0 12px 32px rgba(15,23,42,.06)}.value-tile h3{margin:0 0 8px;color:#1a3a6b}.home-real-life-section{background:#f8fafc}.link-tile{text-decoration:none;color:inherit}.link-tile span{color:#d97706;font-weight:700}@media(max-width:900px){.value-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media(max-width:600px){.value-grid{grid-template-columns:1fr}}


/* ===== legacy layer: eits-learning-flow.css ===== */

/* ExplainItSimply learning flow additions */
.eits-learning-flow{margin:34px 0 38px;border:1px solid #d9e4f2;border-radius:28px;background:linear-gradient(135deg,#ffffff 0%,#f7fbff 48%,#fffaf2 100%);box-shadow:0 18px 45px rgba(15,35,75,.08);overflow:hidden;position:relative}
.eits-learning-flow:before{content:"";position:absolute;inset:0 0 auto 0;height:6px;background:linear-gradient(90deg,#0b58d0,#16a3ff,#ff8a00)}
.eits-learning-inner{padding:30px clamp(20px,4vw,38px)}
.eits-learning-kicker{display:inline-flex;align-items:center;gap:8px;padding:8px 14px;border-radius:999px;background:#eef5ff;color:#0b4db3;font-weight:800;font-size:.82rem;letter-spacing:.02em;margin-bottom:12px}
.eits-learning-flow h2{font-size:clamp(1.65rem,3vw,2.35rem);line-height:1.1;margin:6px 0 12px;color:#071a45}
.eits-learning-lead{font-size:1.05rem;line-height:1.75;color:#34415d;max-width:72ch;margin:0 0 22px}
.learning-box-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;margin:22px 0 24px}
.learning-box{background:#fff;border:1px solid #dce7f4;border-radius:20px;padding:20px;box-shadow:0 10px 28px rgba(10,30,70,.06)}
.learning-box h3{display:flex;align-items:center;gap:10px;font-size:1.05rem;margin:0 0 10px;color:#081a44}
.learning-box p{margin:0;color:#44536f;line-height:1.7;font-size:.98rem}
.learning-icon{width:34px;height:34px;display:inline-flex;align-items:center;justify-content:center;border-radius:12px;background:#eff6ff;font-size:1.15rem;flex:0 0 34px}
.eits-analogy{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1.25fr);gap:18px;align-items:stretch;margin:24px 0}
.eits-analogy-card{background:#071a45;color:#fff;border-radius:22px;padding:24px;position:relative;overflow:hidden}
.eits-analogy-card:after{content:"";position:absolute;right:-50px;bottom:-50px;width:150px;height:150px;border-radius:50%;background:rgba(255,138,0,.18)}
.eits-analogy-card h3{margin:0 0 10px;color:#fff;font-size:1.35rem}
.eits-analogy-card p{margin:0;color:#dce8ff;line-height:1.75}
.eits-steps{background:#fff;border:1px solid #dce7f4;border-radius:22px;padding:22px}
.eits-steps h3{margin:0 0 14px;color:#071a45;font-size:1.25rem}
.step-list{counter-reset:eitsStep;display:grid;gap:12px;margin:0;padding:0;list-style:none}
.step-list li{counter-increment:eitsStep;display:grid;grid-template-columns:42px 1fr;gap:12px;align-items:start;padding:13px 14px;border:1px solid #e6edf7;border-radius:16px;background:#f9fbff;color:#364761;line-height:1.55}
.step-list li:before{content:counter(eitsStep);width:34px;height:34px;border-radius:12px;background:#0b58d0;color:#fff;font-weight:900;display:flex;align-items:center;justify-content:center;box-shadow:0 8px 18px rgba(11,88,208,.22)}
.eits-mini-takeaway{margin-top:20px;padding:18px 20px;border-left:5px solid #ff8a00;background:#fff7ec;border-radius:16px;color:#23304c;line-height:1.65}
.eits-mini-takeaway strong{color:#071a45}
@media (max-width: 980px){.learning-box-grid,.eits-analogy{grid-template-columns:1fr}.eits-learning-inner{padding:24px 18px}}
@media (max-width: 560px){.eits-learning-flow{border-radius:20px;margin:24px 0}.learning-box{padding:17px}.step-list li{grid-template-columns:36px 1fr;padding:12px}.step-list li:before{width:30px;height:30px;border-radius:10px}.eits-learning-flow h2{font-size:1.55rem}}


/* ===== legacy layer: eits-launch-polish.css ===== */
/* ExplainItSimply final logo and header correction */
html{scroll-behavior:smooth}
.header-inner{min-height:88px!important;height:88px!important;gap:20px!important}
.logo-brand{display:flex!important;align-items:center!important;flex:0 0 280px!important;max-width:280px!important;overflow:hidden!important}
.site-logo{display:block!important;width:280px!important;height:78px!important;max-width:100%!important;object-fit:contain!important;object-position:left center!important}
.nav.mega-nav{min-width:0!important;flex:1 1 auto!important}
.eits-sidebar{position:sticky;top:110px;align-self:start}
.back-to-top{transition:opacity .25s ease,transform .25s ease}
.back-to-top:hover{transform:translateY(-3px)}
@media(max-width:1200px){
 .header-inner{min-height:80px!important;height:80px!important;gap:12px!important}
 .logo-brand{flex-basis:225px!important;max-width:225px!important}
 .site-logo{width:225px!important;height:68px!important}
}
@media(max-width:900px){
 .header-inner{min-height:76px!important;height:76px!important}
 .logo-brand{flex-basis:auto!important;max-width:235px!important}
 .site-logo{width:225px!important;height:64px!important}
 .eits-sidebar{position:static!important}
}
@media(max-width:420px){
 .logo-brand{max-width:205px!important}
 .site-logo{width:195px!important;height:58px!important}
}


/* Final content and founder polish */
.eits-why-panel{padding:clamp(28px,5vw,64px);border-radius:30px;background:linear-gradient(135deg,#f8fbff,#fff7ed);border:1px solid rgba(15,23,42,.08);box-shadow:0 24px 70px rgba(15,23,42,.08)}
.eits-why-panel>p{max-width:980px;font-size:1.06rem;line-height:1.85;color:#475569}.eits-why-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px;margin:28px 0}.eits-why-grid article{padding:24px;border-radius:20px;background:#fff;border:1px solid #e5e7eb}.eits-why-grid h3{margin-top:0}.eits-why-panel blockquote{margin:28px 0;padding:24px;border-left:5px solid #f97316;background:#fff;border-radius:0 18px 18px 0;font-family:Fraunces,serif;font-size:clamp(1.25rem,2.5vw,1.75rem);color:#0f172a}
.author-showcase{position:relative;min-height:620px;overflow:hidden;background:#081426}.author-showcase-slide{position:absolute;inset:0;opacity:0;visibility:hidden;background-size:cover;background-position:center;transition:opacity .7s ease,visibility .7s}.author-showcase-slide.active{opacity:1;visibility:visible}.author-showcase-overlay{position:absolute;inset:0;background:linear-gradient(90deg,rgba(3,12,28,.92) 0%,rgba(3,12,28,.72) 48%,rgba(3,12,28,.32) 100%)}.author-showcase-copy{position:relative;z-index:2;color:#fff;padding-top:clamp(120px,16vw,190px);padding-bottom:110px}.author-showcase-copy h1,.author-showcase-copy h2{max-width:900px;color:#fff;font-size:clamp(2.5rem,5vw,4.8rem);line-height:1.03;margin:16px 0 22px}.author-showcase-copy p{max-width:790px;color:rgba(255,255,255,.92);font-size:clamp(1.05rem,2vw,1.3rem);line-height:1.75}.author-showcase-prev,.author-showcase-next{position:absolute;z-index:4;top:50%;transform:translateY(-50%);width:48px;height:48px;border:1px solid rgba(255,255,255,.45);border-radius:50%;background:rgba(3,12,28,.55);color:#fff;font-size:24px;cursor:pointer}.author-showcase-prev{left:20px}.author-showcase-next{right:20px}.author-showcase-dots{position:absolute;z-index:4;bottom:28px;left:50%;transform:translateX(-50%);display:flex;gap:10px}.author-showcase-dots button{width:11px;height:11px;border:0;border-radius:50%;background:rgba(255,255,255,.5);cursor:pointer}.author-showcase-dots button.active{width:30px;border-radius:999px;background:#f97316}
@media(max-width:900px){.eits-why-grid{grid-template-columns:1fr}.author-showcase{min-height:700px}.author-showcase-copy{padding:130px 58px 100px 24px}.author-showcase-prev{left:8px}.author-showcase-next{right:8px}.author-showcase-prev,.author-showcase-next{top:auto;bottom:22px;width:42px;height:42px}.author-showcase-dots{bottom:36px}}


/* EITS unified related-guides, language-switch and footer-social polish */
.related-guides-card{padding:24px!important}.related-guides-card .section-label{display:block;margin-bottom:5px}.related-guides-card h3{margin:0 0 14px}.related-guides-nav{display:grid;gap:9px}.related-guides-nav a{position:relative;display:flex!important;align-items:center;min-height:46px;padding:11px 38px 11px 14px!important;border:1px solid rgba(18,48,82,.10)!important;border-radius:12px;background:#f7f9fc;color:#17365d!important;font-weight:700;text-decoration:none!important;line-height:1.35;transition:transform .18s ease,border-color .18s ease,background .18s ease}.related-guides-nav a:after{content:"\2192";position:absolute;right:14px;color:#e9781a;font-weight:900}.related-guides-nav a:hover{transform:translateX(3px);border-color:rgba(233,120,26,.45)!important;background:#fff8f0}.language-switch-wrap{width:min(1200px,calc(100% - 48px));margin:28px auto 0}.language-switch{display:flex;align-items:center;flex-wrap:wrap;gap:10px;padding:14px 18px;border:1px solid rgba(18,48,82,.12);border-radius:14px;background:#fff;box-shadow:0 8px 25px rgba(18,48,82,.06)}.language-switch strong{color:#123052;margin-right:3px}.language-switch a,.language-switch span{display:inline-flex;align-items:center;min-height:36px;padding:7px 13px;border-radius:999px;font-weight:800;text-decoration:none}.language-switch .active{background:#123052;color:#fff}.language-switch a{background:#fff3e6;color:#b85a00}.language-switch a:hover{background:#ffe4c4}.footer-social .facebook-link{display:inline-flex!important;align-items:center;gap:10px;padding:10px 14px;border-radius:999px;text-decoration:none;font-weight:800}.footer-social .facebook-icon{display:inline-flex;align-items:center;justify-content:center;width:30px;height:30px;border-radius:50%;background:#1877f2;color:#fff;flex:0 0 30px}.footer-social .facebook-icon svg{width:18px;height:18px;display:block}@media(max-width:760px){.language-switch-wrap{width:min(100% - 28px,760px);margin-top:20px}.language-switch{align-items:flex-start}.related-guides-nav a{font-size:.94rem}}


/* EITS global rotating hero and sidebar link consistency */
.eits-hero.has-hero-slider,.hero.has-hero-slider,.page-hero.has-hero-slider{position:relative;overflow:hidden;isolation:isolate;background:#123052}.has-hero-slider .hero-slider-layer{position:absolute;inset:0;z-index:-2;overflow:hidden}.has-hero-slider .hero-slider-image{position:absolute;inset:0;background-size:cover;background-position:center;opacity:0;transform:scale(1.035);transition:opacity 1.15s ease-in-out,transform 8s ease}.has-hero-slider .hero-slider-image.active{opacity:1;transform:scale(1)}.has-hero-slider .hero-slider-layer:after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(5,25,51,.9) 0%,rgba(10,42,77,.77) 52%,rgba(10,42,77,.55) 100%);z-index:2}.has-hero-slider>.container,.has-hero-slider>.hero-container,.has-hero-slider>.eits-wave,.has-hero-slider>.hero-wave{position:relative;z-index:3}.has-hero-slider .hero-slider-controls{position:absolute;left:50%;bottom:68px;z-index:4;display:flex;gap:9px;transform:translateX(-50%)}.has-hero-slider .hero-slider-dot{width:11px;height:11px;border:1px solid rgba(255,255,255,.95);border-radius:50%;padding:0;background:rgba(255,255,255,.35);cursor:pointer}.has-hero-slider .hero-slider-dot.active{background:#fff;transform:scale(1.2)}
.eits-sidebar .eits-side-card{overflow:hidden}.eits-sidebar .related-guides-card,.eits-sidebar .trust-links-card{padding:22px}.eits-sidebar .related-guides-nav,.eits-sidebar .trust-links-nav{display:grid;gap:9px}.eits-sidebar .related-guides-nav a,.eits-sidebar .trust-links-nav a,.eits-sidebar .eits-side-card>a{display:flex;align-items:center;justify-content:space-between;gap:12px;margin:0;padding:12px 13px;border:1px solid rgba(18,48,82,.1);border-radius:12px;background:#f7f9fc;color:#17324f;font-weight:750;line-height:1.35;text-decoration:none}.eits-sidebar .related-guides-nav a:after,.eits-sidebar .trust-links-nav a:after,.eits-sidebar .eits-side-card>a:after{content:"\2192";flex:0 0 auto;color:#e87524;font-weight:900}.eits-sidebar .related-guides-nav a:hover,.eits-sidebar .trust-links-nav a:hover,.eits-sidebar .eits-side-card>a:hover{border-color:rgba(232,117,36,.45);background:#fff8f1;transform:translateX(2px)}.eits-sidebar .eits-toc{display:grid;gap:7px}.eits-sidebar .eits-toc a{display:block;padding:9px 11px;border-left:3px solid #dbe4ee;border-radius:0 9px 9px 0;background:#f8fafc;color:#41566d;text-decoration:none;line-height:1.4}.eits-sidebar .eits-toc a:hover{border-left-color:#e87524;background:#fff8f1;color:#17324f}@media(prefers-reduced-motion:reduce){.has-hero-slider .hero-slider-image{transition:none;transform:none}}@media(max-width:720px){.has-hero-slider .hero-slider-controls{bottom:54px}.eits-sidebar .related-guides-nav a,.eits-sidebar .trust-links-nav a,.eits-sidebar .eits-side-card>a{padding:11px 12px}}

/* EITS quality pass: mobile images, cookie consent, diagrams */
img.real-topic-image,.eits-article img,.learning-section-photo img,.article-img img{max-width:100%;height:auto}
.mobile-friendly-image{display:block;width:100%;height:auto;max-height:560px;object-fit:cover;object-position:center;border-radius:18px}
.eits-hero.has-hero-slider .hero-slider-image{background-position:center center}
.eits-cookie-consent{position:fixed;left:18px;right:18px;bottom:18px;z-index:10050;display:flex;align-items:center;justify-content:space-between;gap:22px;max-width:1120px;margin:auto;padding:18px 20px;border:1px solid rgba(18,48,82,.15);border-radius:18px;background:#fff;box-shadow:0 20px 55px rgba(8,28,50,.24);color:#26384d}
.eits-cookie-consent[hidden]{display:none}.eits-cookie-copy{max-width:760px}.eits-cookie-copy strong{display:block;color:#123052;margin-bottom:5px}.eits-cookie-copy p{margin:0;line-height:1.55;font-size:.94rem}.eits-cookie-actions{display:flex;gap:10px;flex:0 0 auto}.eits-cookie-actions button{border-radius:999px;padding:10px 16px;font:inherit;font-weight:800;cursor:pointer}.cookie-essential{border:1px solid #cbd6e3;background:#fff;color:#123052}.cookie-accept{border:1px solid #f28c28;background:#f28c28;color:#fff}
.eits-original-diagram{margin:24px 0;padding:18px;border:1px solid rgba(18,48,82,.12);border-radius:20px;background:#f8fafc}.eits-original-diagram img{display:block;width:100%;height:auto;border-radius:12px}.eits-original-diagram figcaption{margin-top:12px;color:#526274;font-size:.92rem;line-height:1.55}
@media(max-width:700px){.eits-cookie-consent{align-items:stretch;flex-direction:column;left:10px;right:10px;bottom:10px;padding:16px}.eits-cookie-actions{width:100%}.eits-cookie-actions button{flex:1}.eits-hero.has-hero-slider .hero-slider-image{background-position:center center}.eits-article img,.mobile-friendly-image{width:100%;height:auto;object-fit:contain}}

/* EITS topic diagrams */
.eits-topic-diagram{margin:0 0 30px;padding:0;border:0;background:transparent}.eits-topic-diagram img{display:block;width:100%;height:auto;max-width:100%;border-radius:22px;box-shadow:0 14px 38px rgba(18,48,82,.10);background:#f5f8fc}.eits-article>.eits-share-top+.eits-topic-diagram{margin-top:8px}@media(max-width:680px){.eits-topic-diagram{margin-bottom:22px}.eits-topic-diagram img{border-radius:15px}}
/* END EITS topic diagrams */


/* ===== legacy layer: eits-final-refresh.css ===== */
/* ExplainItSimply final content refresh — 2026-08-19 */
:root{--eis-navy:#0b2d55;--eis-orange:#f97316;--eis-ink:#10233f;--eis-soft:#f7f9fc;--eis-line:#dfe7f1}
html{font-size:17px} body{font-size:1rem;line-height:1.72;color:var(--eis-ink)}
p,li{line-height:1.78}.article-content p,.article-content li,.content-body p,.content-body li{font-size:1.04rem}
h1{line-height:1.08} h2{line-height:1.2} h3{line-height:1.3}
.eis-purpose-panel{margin:32px 0;padding:28px;border:1px solid var(--eis-line);border-radius:22px;background:linear-gradient(135deg,#fff 0%,#fff8f1 100%);box-shadow:0 12px 35px rgba(11,45,85,.06)}
.eis-purpose-panel h2{margin:0 0 10px;color:var(--eis-navy)}.eis-purpose-panel p{margin:0 0 12px}.eis-purpose-panel p:last-child{margin-bottom:0}
.eis-member-value{display:grid;grid-template-columns:1.35fr 1fr;gap:24px;padding:30px;border-radius:24px;background:#0b2d55;color:#fff;margin:34px 0}.eis-member-value h2,.eis-member-value h3{color:#fff}.eis-member-value p{color:#e8f0f8}.eis-member-value a{color:#fff}.eis-member-points{display:grid;gap:10px}.eis-member-point{padding:12px 14px;background:rgba(255,255,255,.08);border-radius:12px}
.eis-search-story{font-size:.92rem;color:#52647a;margin-top:8px}.eis-direct-answer{border-left:5px solid var(--eis-orange);background:#fff8f1;padding:20px 22px;border-radius:0 16px 16px 0;margin:18px 0}.eis-direct-answer strong{display:block;color:var(--eis-navy);margin-bottom:6px}
.eis-search-steps{list-style:none;padding:0;margin:20px 0 0;display:grid;gap:11px}.eis-search-steps li{display:flex;gap:12px;align-items:center}.eis-search-step-dot{width:28px;height:28px;border-radius:50%;display:grid;place-items:center;background:#edf3f9;color:var(--eis-navy);font-weight:800;flex:0 0 auto}.eis-search-steps li:first-child .eis-search-step-dot{background:#e8f7ef;color:#15803d}
.member-loading-card.eis-search-loading{max-width:520px;text-align:left}.member-loading-card.eis-search-loading strong{font-size:1.2rem}.eis-loading-brand{display:flex;align-items:center;gap:10px;margin-bottom:12px}.eis-loading-bulb{font-size:2rem}.eis-mobile-note{display:none}
@media(max-width:900px){html{font-size:16px}.eis-member-value{grid-template-columns:1fr;padding:22px}.eis-purpose-panel{padding:22px}.eis-mobile-note{display:block}.hero-copy p{font-size:1.04rem}.article-content p,.content-body p{font-size:1.02rem}}


/* ===== legacy layer: eits-content-upgrade.css ===== */
/* =========================================================================
   EITS Content Upgrade Layer
   Purpose: sharper typographic polish + a few new value-adding components,
   built entirely from the existing brand variables in styles.css.
   This file only ADDS rules — it does not override or remove anything
   from styles.css / eits-page.css / article.css, so nothing already
   deployed can break by including it.
   ========================================================================= */

/* ---- Slightly sharper reading rhythm on long-form cards ---- */
.eits-card h2 { letter-spacing: -0.01em; }
.eits-card p { color: #33415a; }
.eits-card p strong, .eits-card li strong { color: var(--fg); }

/* ---- Stat strip: quick-glance numbers pulled out of a wall of facts ---- */
.eits-stat-strip { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 12px; margin: 6px 0 24px; }
.eits-stat-strip .stat { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 16px 14px; text-align: center; }
.eits-stat-strip .stat .num { display: block; font-family: var(--font-display); font-size: clamp(20px, 2.4vw, 26px); color: var(--primary); font-weight: 700; line-height: 1.1; }
.eits-stat-strip .stat .lbl { display: block; margin-top: 6px; font-size: 11.5px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); font-weight: 700; }
@media (max-width: 700px) { .eits-stat-strip { grid-template-columns: repeat(2, minmax(0,1fr)); } }

/* ---- Pull quote: a single idea, set apart, for scannability ---- */
.eits-pull-quote { border-left: 4px solid var(--accent); background: var(--primary-light); border-radius: 0 16px 16px 0; padding: 18px 22px; margin: 22px 0; }
.eits-pull-quote p { margin: 0; font-family: var(--font-display); font-size: clamp(18px, 2vw, 22px); line-height: 1.5; color: var(--primary-dark); max-width: none; }

/* ---- Myth vs fact grid ---- */
.eits-myth-grid { display: grid; gap: 14px; margin: 18px 0; }
.eits-myth-row { display: grid; grid-template-columns: 26px 1fr; gap: 12px; padding: 14px 16px; border: 1px solid var(--border); border-radius: 14px; background: #fff; }
.eits-myth-row.myth { border-left: 4px solid #dc2626; }
.eits-myth-row.fact { border-left: 4px solid #16a34a; }
.eits-myth-row .tag { font-weight: 900; font-size: 13px; }
.eits-myth-row.myth .tag { color: #dc2626; }
.eits-myth-row.fact .tag { color: #16a34a; }
.eits-myth-row p { margin: 0; font-size: 15.5px; line-height: 1.7; }

/* ---- Comparison table (two or more columns, sharper than the plain fact table) ---- */
.eits-compare-table { width: 100%; border-collapse: separate; border-spacing: 0; margin: 18px 0; border: 1px solid var(--border); border-radius: 18px; overflow: hidden; background: #fff; }
.eits-compare-table th, .eits-compare-table td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--border); font-size: 14.5px; }
.eits-compare-table thead th { background: var(--primary); color: #fff; font-weight: 800; }
.eits-compare-table tbody th { background: #f4f7fc; color: var(--primary); font-weight: 700; width: 34%; }
.eits-compare-table tr:last-child td, .eits-compare-table tr:last-child th { border-bottom: 0; }

/* ---- Timeline (mission history, event sequences) ---- */
.eits-timeline-v2 { position: relative; margin: 22px 0 6px; padding-left: 28px; display: grid; gap: 22px; }
.eits-timeline-v2::before { content: ''; position: absolute; left: 8px; top: 6px; bottom: 6px; width: 2px; background: var(--border); }
.eits-timeline-v2 .tl-item { position: relative; }
.eits-timeline-v2 .tl-item::before { content: ''; position: absolute; left: -28px; top: 4px; width: 14px; height: 14px; border-radius: 50%; background: var(--accent); border: 3px solid #fff; box-shadow: 0 0 0 2px var(--border); }
.eits-timeline-v2 .tl-year { font-weight: 800; color: var(--primary); font-size: 13px; text-transform: uppercase; letter-spacing: .05em; }
.eits-timeline-v2 .tl-item h4 { margin: 3px 0 4px; font-family: var(--font-display); font-size: 18px; color: var(--fg); }
.eits-timeline-v2 .tl-item p { margin: 0; font-size: 15px; line-height: 1.75; color: #33415a; }

/* ---- Sidebar polish: sharper active/hover state, no structural change ---- */
.eits-side-card { transition: box-shadow .2s ease; }
.eits-toc a { border-radius: 10px; padding-left: 8px; transition: background .15s ease, color .15s ease; }
.eits-toc a:hover { background: var(--primary-light); color: var(--primary); }

@media (max-width: 620px) {
  .eits-pull-quote { padding: 15px 18px; }
}


/* ===== legacy layer: eits-fresh-look-2026.css ===== */
/* =========================================================================
   EITS Fresh Look 2026
   A sitewide visual refresh layer. Loaded LAST on every public page, so it
   safely wins over legacy rules without deleting or renaming anything —
   nothing already deployed can break by including this file.
   Built entirely from the existing brand tokens in css/styles.css.
   ========================================================================= */

/* ---- Global rhythm ---- */
body { text-rendering: optimizeLegibility; }
.eits-card p, .article-body p { color: #33415a; }

/* ---- Hero: richer depth, subtle texture, calmer gradient ---- */
.eits-hero {
  background:
    radial-gradient(circle at 12% 8%, rgba(255,255,255,.10), transparent 34%),
    radial-gradient(circle at 88% 0%, rgba(249,115,22,.28), transparent 40%),
    linear-gradient(150deg, var(--primary-dark) 0%, var(--primary) 55%, #0e6e63 120%);
}
.eits-hero::before { display: none; }
.eits-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 85%);
  pointer-events: none;
}
.eits-hero h1 { text-shadow: 0 2px 24px rgba(0,0,0,.18); }
.eits-hero-meta span { backdrop-filter: blur(6px); }

/* ---- Cards: crisper edge, calmer shadow, gentle lift ---- */
.eits-card {
  border-radius: 22px;
  box-shadow: 0 1px 2px rgba(13,27,62,.04), 0 10px 30px -14px rgba(13,27,62,.14);
  transition: box-shadow .25s ease, border-color .25s ease;
}
.eits-card:hover { box-shadow: 0 4px 10px rgba(13,27,62,.05), 0 18px 40px -16px rgba(13,27,62,.18); }
.eits-card h2 { position: relative; padding-bottom: 4px; }
.eits-card > h2:first-child::after,
.eits-card .section-label + h2::after {
  content: ''; display: block; width: 46px; height: 4px; margin-top: 12px;
  border-radius: 999px; background: linear-gradient(90deg, var(--accent), #fbbf24);
}
.section-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 800; letter-spacing: .08em;
}
.section-label::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

/* ---- Article / topic cards on hubs and homepage ---- */
.article-card, .eits-card-grid .eits-card {
  border-radius: 20px;
  box-shadow: 0 1px 2px rgba(13,27,62,.04), 0 8px 24px -14px rgba(13,27,62,.16);
}
.article-card:hover { box-shadow: 0 6px 16px -6px rgba(13,27,62,.10), 0 22px 44px -18px rgba(13,27,62,.22); }
.article-cat { letter-spacing: .04em; font-weight: 800; }

/* ---- Topic diagrams: give the SVG a real "designed" frame instead of floating loose ---- */
.eits-topic-diagram {
  margin: 0 0 8px;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--primary-light), #fff);
  border: 1px solid var(--border);
  box-shadow: 0 1px 2px rgba(13,27,62,.04), 0 14px 34px -18px rgba(13,27,62,.18);
}
.eits-topic-diagram img { display: block; width: 100%; height: auto; }

/* ---- Buttons: slightly more tactile ---- */
.btn, .cta-button, .eits-btn, button[type="submit"] {
  box-shadow: 0 1px 2px rgba(13,27,62,.06);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.btn:hover, .cta-button:hover, .eits-btn:hover { transform: translateY(-1px); filter: brightness(1.03); }

/* ---- Tables: cleaner separation ---- */
.planet-fact-table, table { border-radius: 16px; overflow: hidden; }
.planet-fact-table th, .planet-fact-table td { border-color: var(--border); }

/* ---- Sidebar cards ---- */
.eits-side-card {
  border-radius: 20px;
  box-shadow: 0 1px 2px rgba(13,27,62,.04), 0 10px 26px -16px rgba(13,27,62,.16);
}

@media (max-width: 700px) {
  .eits-hero::after { background-size: 30px 30px; }
}


/* ===== legacy layer: eits-editorial-v2.css ===== */
/* ExplainItSimply editorial polish — 20 Aug 2026. Conservative layer: typography and content surfaces only. */
.eits-article,.article-content,.blog-content{font-size:1.06rem;line-height:1.82}
.eits-article p,.article-content p,.blog-content p{margin:0 0 1.15rem}
.eits-article h2,.article-content h2,.blog-content h2{line-height:1.22;margin-top:.2rem}
.eits-article h3,.article-content h3,.blog-content h3{line-height:1.3}
.eits-card{padding:clamp(1.15rem,2.2vw,1.8rem);margin-bottom:1.15rem}
.eits-card>p:last-child{margin-bottom:0}
.eits-depth-section{border:1px solid #dce6f2;background:linear-gradient(180deg,#fff 0%,#f8fbff 100%)}
.eits-meaningful-visual{border-left:5px solid #f28c28}
.eits-flow-diagram{display:grid;grid-template-columns:repeat(auto-fit,minmax(150px,1fr));gap:.8rem;margin:1rem 0}
.eits-flow-diagram>span{display:flex;align-items:center;justify-content:center;min-height:76px;padding:.85rem;border-radius:14px;background:#f3f7fc;border:1px solid #d7e2ef;font-weight:700;text-align:center}
.eits-compare-table,.planet-fact-table{width:100%;border-collapse:separate;border-spacing:0;overflow:hidden}
.eits-compare-table th,.eits-compare-table td,.planet-fact-table th,.planet-fact-table td{padding:.8rem .9rem;vertical-align:top}
@media(max-width:760px){.eits-article,.article-content,.blog-content{font-size:1rem;line-height:1.72}.eits-card{padding:1.05rem}.eits-flow-diagram{grid-template-columns:1fr}.eits-compare-table,.planet-fact-table{font-size:.94rem}}


/* ===== legacy layer: eits-v2-launch.css ===== */
/* ExplainItSimply V2 launch layer — August 2026
   Intentionally loaded last. It polishes existing pages without replacing server controls. */
:root{
  --eis-navy:#102a43;--eis-navy-2:#163d63;--eis-orange:#f28c28;--eis-orange-soft:#fff1df;
  --eis-cream:#fffaf4;--eis-ink:#1e2d3d;--eis-muted:#5f6f7e;--eis-line:#e5e9ee;--eis-blue:#edf6ff;
  --eis-green:#edf9f3;--eis-purple:#f4efff;--eis-shadow:0 14px 36px rgba(16,42,67,.09);
  --eis-radius:20px;
}
html{scroll-behavior:smooth}
body{color:var(--eis-ink);font-size:16px;line-height:1.65;background:#fff}
.eits-page{padding-top:2.15rem;padding-bottom:4rem}
.eits-article{min-width:0}
.eits-article p,.deep-section p,.blog-card p,.eits-why-panel p{font-size:1.075rem;line-height:1.82;color:#33475b}
.eits-article li{font-size:1.035rem;line-height:1.72;margin:.38rem 0}
.eits-hero .container{padding-top:1.15rem;padding-bottom:1.1rem}
.eits-hero h1,.hero h1{margin:.72rem 0 1.05rem!important;line-height:1.08;letter-spacing:-.025em}
.eits-hero h1 + p,.hero h1 + p{margin-top:0!important;max-width:900px;line-height:1.72;font-size:1.09rem}
.eits-breadcrumb{margin-bottom:1.1rem}
.hero-badge{margin-bottom:.35rem}
.eits-hero-meta{margin-top:1.35rem;gap:.6rem;display:flex;flex-wrap:wrap}
.eits-hero-meta span{background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.22);padding:.48rem .76rem;border-radius:999px}

/* Article cards are now editorial surfaces, not flat boxes. */
.eits-card,.deep-section,.curiosity-card,.value-card,.real-life-section,.think-card,.learned-card{
  position:relative;background:#fff;border:1px solid var(--eis-line);border-radius:var(--eis-radius);
  box-shadow:var(--eis-shadow);padding:clamp(1.25rem,2.5vw,2rem);margin:0 0 1.55rem;overflow:hidden
}
.eits-card::after,.deep-section::after{content:"";position:absolute;left:0;top:0;width:100%;height:4px;background:linear-gradient(90deg,var(--eis-orange),#f5b35f 42%,transparent 84%)}
.eits-card.soft{background:linear-gradient(145deg,#fffaf4,#fff)}
.eits-card h2,.deep-section h2,.eits-why-panel h2{color:var(--eis-navy);font-size:clamp(1.42rem,2.2vw,1.82rem);line-height:1.22;margin:.2rem 0 1rem;letter-spacing:-.015em}
.eits-card h2::before,.deep-section h2::before{content:"✦";display:inline-grid;place-items:center;width:32px;height:32px;margin-right:.65rem;border-radius:10px;background:var(--eis-orange-soft);color:var(--eis-orange);font-size:.9rem;vertical-align:.12em}
.eits-card h3,.deep-section h3{color:var(--eis-navy);font-size:1.18rem;line-height:1.35;margin:1.2rem 0 .55rem}
.section-label,.member-kicker{display:inline-block;color:#a8520b;font-weight:800;letter-spacing:.075em;text-transform:uppercase;font-size:.76rem;margin-bottom:.6rem}
.eits-callout,.eits-v2-scenario,.eits-v2-misconception,.human-visit-box,.eits-pull-quote{
  border:1px solid #efd7b8;border-left:5px solid var(--eis-orange);background:#fffaf3;border-radius:16px;padding:1.15rem 1.25rem;margin:1.25rem 0
}
.eits-v2-scenario{background:var(--eis-blue);border-color:#cfe5f7;border-left-color:#3d82bb}
.eits-v2-misconception{background:var(--eis-purple);border-color:#ded4f5;border-left-color:#7658c6}
.eits-v2-scenario h3,.eits-v2-misconception h3{margin-top:0}
.eits-v2-deep-dive{margin-top:2rem}

/* Rich topic illustrations */
.hero-topic-image,.eits-figure{border-radius:24px;overflow:hidden;background:var(--eis-cream);box-shadow:0 18px 45px rgba(16,42,67,.11);border:1px solid #eee3d5;margin:1.4rem 0 1.8rem}
.hero-topic-image img,.eits-figure img{display:block;width:100%;height:auto;max-height:none;object-fit:contain;background:var(--eis-cream)}
.planet-detail-hero-img{margin-top:1.3rem!important}

/* Tables should feel like teaching tools. */
.eits-compare-table,.planet-fact-table,.eits-article table{width:100%;border-collapse:separate;border-spacing:0;overflow:hidden;border:1px solid var(--eis-line);border-radius:16px;background:#fff}
.eits-compare-table th,.eits-compare-table td,.planet-fact-table th,.planet-fact-table td,.eits-article table th,.eits-article table td{padding:.85rem 1rem;border-bottom:1px solid #edf0f3;text-align:left;vertical-align:top}
.eits-compare-table th,.planet-fact-table th,.eits-article table th{background:#f7fafc;color:var(--eis-navy);font-weight:750}

/* Lists and fact grids */
.eits-check-list{padding-left:0;list-style:none}.eits-check-list li{position:relative;padding-left:2rem}.eits-check-list li::before{content:"✓";position:absolute;left:0;top:.12rem;width:1.35rem;height:1.35rem;display:grid;place-items:center;border-radius:50%;background:var(--eis-green);color:#197451;font-size:.78rem;font-weight:900}
.real-life-grid,.planet-feature-grid,.eits-two-cards,.eits-card-grid,.value-grid,.topics-grid{gap:1.15rem!important}
.real-life-card,.planet-feature,.eits-mini,.value-tile,.topic-card,.eis-member-point{border:1px solid var(--eis-line)!important;border-radius:18px!important;background:#fff!important;box-shadow:0 8px 22px rgba(16,42,67,.06);padding:1.25rem!important}
.topic-card{position:relative;transition:transform .18s ease,box-shadow .18s ease}.topic-card:hover{transform:translateY(-3px);box-shadow:0 16px 34px rgba(16,42,67,.12)}
.topic-icon{width:52px!important;height:52px!important;border-radius:16px!important;display:grid!important;place-items:center!important;background:var(--eis-orange-soft)!important;color:var(--eis-navy)!important;font-size:.82rem!important;font-weight:900!important;letter-spacing:.03em}

/* FAQ — deeper, easier to scan. */
.faq-accordion{display:grid;gap:.8rem}.faq-item{border:1px solid var(--eis-line);border-radius:15px;background:#fff;overflow:hidden}.faq-item summary{cursor:pointer;padding:1rem 1.1rem;font-weight:750;color:var(--eis-navy);font-size:1.02rem;list-style:none}.faq-item summary::-webkit-details-marker{display:none}.faq-item summary::after{content:"+";float:right;color:var(--eis-orange);font-size:1.3rem}.faq-item[open] summary::after{content:"−"}.faq-answer{padding:0 1.1rem 1.05rem;color:#42556a}.faq-answer p{margin:.25rem 0 0}

/* Sidebar */
.eits-side-card{border:1px solid var(--eis-line)!important;border-radius:18px!important;box-shadow:0 10px 26px rgba(16,42,67,.07)!important;overflow:hidden;background:#fff!important}.eits-side-card h3{color:var(--eis-navy)!important}.eits-toc a,.related-guides-nav a{border-radius:10px;padding:.55rem .65rem!important}.eits-toc a:hover,.related-guides-nav a:hover{background:var(--eis-orange-soft);color:#8a4309}

/* Buttons + all ASP.NET inputs. Prevent browser-default controls from leaking into V2. */
a.btn-primary,.btn-primary,input[type=submit].btn-primary,input[type=submit].member-primary-button,.member-primary-button,.article-search-button,button.member-primary-button{
  appearance:none!important;border:0!important;border-radius:12px!important;background:var(--eis-orange)!important;color:#fff!important;font:inherit!important;font-weight:800!important;padding:.78rem 1.15rem!important;min-height:46px!important;box-shadow:0 7px 16px rgba(242,140,40,.22)!important;text-decoration:none!important;cursor:pointer!important
}
a.btn-primary:hover,.btn-primary:hover,.member-primary-button:hover,.article-search-button:hover{background:#dc7418!important;transform:translateY(-1px)}
.btn-ghost,.member-secondary-button{border:1px solid #cfd9e2!important;border-radius:12px!important;background:#fff!important;color:var(--eis-navy)!important;padding:.75rem 1rem!important;font-weight:750!important;text-decoration:none!important}
input[type=text],input[type=email],input[type=password],input[type=search],input[type=number],input[type=date],select,textarea,.article-search-input{
  font:inherit!important;color:var(--eis-ink)!important;background:#fff!important;border:1px solid #ccd7e0!important;border-radius:12px!important;min-height:46px!important;padding:.72rem .9rem!important;outline:none!important;box-sizing:border-box!important
}
input:focus,select:focus,textarea:focus,.article-search-input:focus{border-color:var(--eis-orange)!important;box-shadow:0 0 0 4px rgba(242,140,40,.14)!important}

/* Search is a flagship V2 component. */
.article-search{max-width:980px;margin:0 auto}.article-search-bar{display:grid!important;grid-template-columns:auto minmax(0,1fr) auto!important;align-items:center!important;gap:.6rem!important;background:#fff!important;border:1px solid #dce4ea!important;border-radius:18px!important;padding:.55rem!important;box-shadow:0 14px 34px rgba(16,42,67,.1)!important}.article-search-icon{width:42px;height:42px;display:grid;place-items:center;border-radius:12px;background:var(--eis-orange-soft);color:var(--eis-orange)}.article-search-icon svg{width:20px;height:20px;stroke:currentColor;fill:none;stroke-width:2}.article-search-input{border:0!important;box-shadow:none!important;background:transparent!important;font-size:1.04rem!important}.article-search-button{min-width:110px}
.article-search-results-wrap{margin-top:1.2rem}.article-result-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1rem}.article-result-card{border:1px solid var(--eis-line);border-radius:18px;background:#fff;box-shadow:0 8px 24px rgba(16,42,67,.07);overflow:hidden}.article-result-body{padding:1.2rem}.eis-direct-answer{border-left:5px solid var(--eis-orange);background:var(--eis-orange-soft);padding:1.1rem 1.2rem;border-radius:14px;margin:1rem 0 1.2rem}

/* Shared ArticleSearch results: public and member pages use the same cards. */
.article-search-results-wrap{padding:22px!important;border:1px solid #dce5ee!important;border-radius:18px!important;background:#fff!important;box-shadow:0 8px 24px rgba(16,42,67,.05)!important}
.article-search-results-head{display:flex!important;align-items:center!important;justify-content:space-between!important;gap:16px!important;margin-bottom:18px!important}
.article-search-results-head>div{position:relative;min-width:0}
.article-search-results-head h2{margin:3px 52px 0 0!important;color:#0b315c!important;font-family:"Fraunces",Georgia,serif!important;font-size:1.55rem!important;line-height:1.2!important}
.article-result-count{display:inline-flex!important;align-items:center!important;justify-content:center!important;flex:0 0 auto!important;padding:7px 12px!important;border-radius:999px!important;background:#f0f4f8!important;color:#64788d!important;font-size:.72rem!important;font-weight:800!important;white-space:nowrap!important}
.article-search-results-head .member-section-help{position:absolute!important;right:0!important;bottom:0!important;display:grid!important;width:36px!important;height:36px!important;place-items:center!important;padding:0!important;border:1px solid #d8e4ee!important;border-radius:50%!important;background:#fff!important;color:#175085!important;font:inherit!important;font-size:.8rem!important;font-weight:900!important;cursor:pointer!important}
.article-search-results-head .member-section-help:hover,.article-search-results-head .member-section-help[aria-expanded="true"]{border-color:#f0a86f!important;background:#fff4e9!important;color:#c95600!important}
.article-search-help-popover{position:absolute!important;z-index:30!important;top:calc(100% + 12px)!important;left:0!important;width:min(390px,calc(100vw - 64px))!important;box-sizing:border-box!important;padding:18px 44px 18px 18px!important;border:1px solid #d8e4ee!important;border-radius:15px!important;background:#fff!important;box-shadow:0 18px 45px rgba(16,42,67,.18)!important;color:#42586e!important;text-align:left!important}
.article-search-help-popover[hidden]{display:none!important}
.article-search-help-popover strong{display:block!important;margin:0 0 7px!important;color:#123052!important;font-size:.92rem!important}
.article-search-help-popover p{display:block!important;margin:0 0 9px!important;color:#42586e!important;font-size:.79rem!important;line-height:1.6!important}
.article-search-help-popover small{display:block!important;color:#697d90!important;font-size:.72rem!important;line-height:1.55!important}
.article-search-help-close{position:absolute!important;right:10px!important;top:9px!important;width:30px!important;height:30px!important;padding:0!important;border:0!important;border-radius:50%!important;background:#f1f5f8!important;color:#173f65!important;font:inherit!important;font-size:1.15rem!important;line-height:1!important;cursor:pointer!important}
.article-result-card{display:block!important;min-height:0!important;overflow:hidden!important}
.article-result-body{display:flex!important;min-width:0!important;height:100%!important;box-sizing:border-box!important;flex-direction:column!important;padding:22px 22px 18px!important}
.article-result-category-title{display:flex!important;align-items:center!important;gap:9px!important;margin-bottom:14px!important;color:#173f65!important;font-size:.74rem!important;font-weight:850!important;text-transform:uppercase!important;letter-spacing:.055em!important}
.article-result-category-icon{display:grid!important;width:34px!important;height:34px!important;flex:0 0 34px!important;place-items:center!important;border-radius:10px!important;background:#edf4fb!important;color:#175085!important}
.article-result-category-icon svg{display:block!important;width:18px!important;height:18px!important;max-width:18px!important;max-height:18px!important;fill:none!important;stroke:currentColor!important;stroke-width:1.8!important;stroke-linecap:round!important;stroke-linejoin:round!important}
.article-result-body h3{margin:0 0 10px!important;color:#0b315c!important;font-family:"Fraunces",Georgia,serif!important;font-size:1.18rem!important;line-height:1.3!important}
.article-result-body p{display:-webkit-box!important;overflow:hidden!important;margin:0!important;color:#64778c!important;font-size:.84rem!important;line-height:1.65!important;-webkit-line-clamp:4;-webkit-box-orient:vertical}
.article-result-footer{display:flex!important;align-items:center!important;justify-content:space-between!important;gap:10px!important;margin-top:auto!important;padding-top:14px!important;border-top:1px solid #edf1f5!important}
.article-read-link{color:#07518d!important;font-size:.78rem!important;font-weight:850!important;text-decoration:none!important}
.article-save-button{border:0!important;background:transparent!important;color:#657b91!important;font-size:.74rem!important;font-weight:800!important;cursor:pointer!important}
.article-save-button.saved{color:#d85c0c!important}
.article-result-grid>.article-result-card:only-child{width:100%!important;min-height:0!important}
@media(max-width:760px){.article-search-results-wrap{padding:16px!important}.article-search-results-head{align-items:flex-start!important}.article-search-results-head h2{font-size:1.3rem!important}.article-result-grid{grid-template-columns:1fr!important}.article-result-body{padding:18px!important}}

/* Homepage member value */
.eis-member-value{margin-top:2rem;padding:clamp(1.4rem,3vw,2.2rem);border-radius:24px;background:linear-gradient(135deg,var(--eis-navy),#173f66);color:#fff;display:grid;grid-template-columns:.9fr 1.1fr;gap:1.5rem;box-shadow:0 20px 45px rgba(16,42,67,.16)}
.eis-member-value h2,.eis-member-value p{color:#fff}.eis-member-points{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.9rem}.eis-member-point{background:rgba(255,255,255,.08)!important;border-color:rgba(255,255,255,.13)!important;color:#fff!important}.eis-member-point strong{display:block;color:#fff;margin-bottom:.2rem}

/* Logged-in V2 surfaces */
.member-shell,.member-page,.dashboard-page,.account-page{background:#f7f9fb}.member-card,.dashboard-card,.profile-card,.member-panel,.member-empty-card{border:1px solid var(--eis-line)!important;border-radius:18px!important;background:#fff!important;box-shadow:0 10px 28px rgba(16,42,67,.07)!important}.member-card h2,.member-card h3,.dashboard-card h2,.dashboard-card h3,.profile-card h2,.profile-card h3{color:var(--eis-navy)!important}.member-kicker{color:#a8520b!important}
.member-table,.member-gridview,.history-grid{width:100%;border-collapse:separate;border-spacing:0;border:1px solid var(--eis-line);border-radius:14px;overflow:hidden;background:#fff}.member-table th,.member-gridview th,.history-grid th{background:var(--eis-navy);color:#fff;padding:.8rem}.member-table td,.member-gridview td,.history-grid td{padding:.8rem;border-bottom:1px solid #edf0f3}

/* Search progress: technical but friendly, intentionally unlike a generic 'thinking' loader. */
.member-loading-overlay{position:fixed!important;inset:0!important;background:rgba(9,28,47,.58)!important;backdrop-filter:blur(5px);display:grid!important;place-items:center!important;z-index:9999!important;padding:1rem}.member-loading-card{width:min(560px,92vw)!important;border-radius:22px!important;background:#fff!important;box-shadow:0 25px 70px rgba(0,0,0,.25)!important;padding:1.45rem!important;color:var(--eis-ink)!important}.member-loading-spinner{display:block;width:46px;height:46px;border:4px solid #f4dfc8;border-top-color:var(--eis-orange);border-radius:50%;animation:eisSpin .8s linear infinite;margin-bottom:.8rem}.member-loading-card strong{display:block;color:var(--eis-navy);font-size:1.2rem}.member-loading-card>span:last-child{display:block;margin-top:.25rem;color:var(--eis-muted)}@keyframes eisSpin{to{transform:rotate(360deg)}}

/* Section hubs */
.section-head h2{color:var(--eis-navy);font-size:clamp(1.75rem,3vw,2.35rem);letter-spacing:-.025em}.section-head p{font-size:1.05rem;line-height:1.75;max-width:820px}.section-head.centered p{margin-left:auto;margin-right:auto}
.counter-strip{border-radius:22px!important;border:1px solid var(--eis-line)!important;box-shadow:var(--eis-shadow)!important}

/* Responsive */
@media(max-width:900px){.eis-member-value{grid-template-columns:1fr}.article-result-grid{grid-template-columns:1fr}.eits-page{padding-top:1.4rem}.eits-layout{gap:1.4rem!important}}
@media(max-width:650px){body{font-size:16px}.eits-article p{font-size:1.03rem;line-height:1.76}.eits-card,.deep-section{padding:1.15rem;border-radius:16px}.eits-card h2::before,.deep-section h2::before{width:28px;height:28px;border-radius:9px}.article-search-bar{grid-template-columns:auto minmax(0,1fr)!important}.article-search-button{grid-column:1/-1;width:100%!important}.eis-member-points{grid-template-columns:1fr}.hero-topic-image,.eits-figure{border-radius:16px}.eits-hero h1,.hero h1{font-size:clamp(2rem,10vw,3rem)!important}.eits-hero h1 + p,.hero h1 + p{font-size:1rem}.eits-compare-table,.planet-fact-table,.eits-article table{display:block;overflow-x:auto;white-space:normal}}
.topic-icon img{width:52px;height:52px;display:block}.topic-icon:has(img){padding:0!important;background:transparent!important}

/* V2 editorial depth components */
.v2-editorial-depth{position:relative;overflow:hidden}
.v2-editorial-depth:before{content:"";position:absolute;left:0;top:0;bottom:0;width:5px;background:linear-gradient(180deg,#f59e0b,#ea580c)}
.v2-editorial-depth>p{font-size:1.08rem;line-height:1.88;color:#24364b}
.v2-insight-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1rem;margin:1.5rem 0 2rem}
.v2-insight-card{background:linear-gradient(180deg,#fffaf0,#fff);border:1px solid #f2d9aa;border-radius:18px;padding:1.15rem;box-shadow:0 9px 22px rgba(25,54,93,.06)}
.v2-insight-card h3{margin:0 0 .55rem;color:#17365f;font-size:1.06rem}
.v2-insight-card p{margin:0;color:#46566a;line-height:1.7;font-size:.98rem}
.v2-editorial-depth .faq-accordion{margin-top:1rem}
.v2-editorial-depth .faq-item{border:1px solid #dce5ef;border-radius:14px;background:#fff;margin:.7rem 0;overflow:hidden}
.v2-editorial-depth .faq-item summary{cursor:pointer;padding:1rem 1.1rem;font-weight:700;color:#17365f}
.v2-editorial-depth .faq-answer{padding:0 1.1rem 1.05rem;color:#405168;line-height:1.75}
@media(max-width:860px){.v2-insight-grid{grid-template-columns:1fr}.v2-editorial-depth>p{font-size:1.02rem}}
.v2-real-scenario{background:linear-gradient(135deg,#f7fbff 0%,#fff 62%);border:1px solid #d7e4f2}
.v2-real-scenario>p{font-size:1.07rem;line-height:1.86;color:#293d55}
.v2-real-scenario h2:before{content:"↳";display:inline-flex;align-items:center;justify-content:center;width:34px;height:34px;margin-right:.65rem;border-radius:10px;background:#fff0d5;color:#d96b00;font-family:Arial,sans-serif;font-size:1rem;vertical-align:middle}


/* ===== EIS V2 CANONICAL DESIGN SYSTEM ===== */
:root{
 --eis-navy:#0b2f5b;--eis-navy-2:#123f73;--eis-orange:#ff7300;--eis-orange-2:#ff963d;
 --eis-ink:#14233b;--eis-text:#33445f;--eis-muted:#65738a;--eis-line:#dce5ef;--eis-soft:#f7f9fc;
 --eis-cream:#fff8f1;--eis-white:#fff;--eis-green:#2cab6f;--eis-shadow:0 14px 34px rgba(11,47,91,.09);
 --eis-radius:22px;--eis-radius-sm:15px;--eis-content:1180px;
}
html{font-size:16px;scroll-behavior:smooth}*{box-sizing:border-box}
body{margin:0;color:var(--eis-text);background:#fff;font-family:"Plus Jakarta Sans",Inter,Segoe UI,Arial,sans-serif;font-size:17px;line-height:1.72;-webkit-font-smoothing:antialiased}
.container{width:min(var(--eis-content),calc(100% - 40px));margin-inline:auto}
main p,article p,.eits-card p,.deep-section p,.faq-answer{font-size:1.04rem;line-height:1.78;color:var(--eis-text);margin:.65rem 0 1.1rem;max-width:none}
h1,h2,h3,h4{color:var(--eis-navy);letter-spacing:-.02em;line-height:1.17;margin-top:0}
h1,.eits-hero h1{font-family:"Fraunces",Georgia,serif;font-size:clamp(2.55rem,5vw,4.65rem);margin:.6rem 0 1.25rem!important;max-width:1000px}
h2{font-family:"Fraunces",Georgia,serif;font-size:clamp(1.8rem,3vw,2.7rem);margin:0 0 1rem}
h3{font-size:clamp(1.18rem,2vw,1.45rem);margin:0 0 .65rem}
.eits-hero{padding:72px 0 62px!important}.eits-hero .container{position:relative}.eits-hero p{font-size:clamp(1.08rem,1.4vw,1.24rem);line-height:1.75;max-width:860px;margin:0 0 1.2rem!important}.hero-badge,.section-label{display:inline-flex;align-items:center;gap:.45rem;font-size:.78rem;font-weight:800;letter-spacing:.12em;text-transform:uppercase;color:#c95600;background:#fff2e5;border:1px solid #ffd7b4;border-radius:999px;padding:.48rem .78rem}
.eits-page{padding:58px 0 90px}.eits-layout{gap:34px!important}.eits-article{min-width:0}
/* canonical cards */
.eits-card,.deep-section,.learning-visual,.did-you-know,.value-tile,.article-card,.eits-side-card,.eits-mini,.learning-box,.real-life-card,.planet-feature,.info-box,.card{
 background:#fff;border:1px solid var(--eis-line)!important;border-radius:var(--eis-radius)!important;box-shadow:var(--eis-shadow);padding:clamp(1.35rem,2.3vw,2rem)!important;margin-bottom:28px;overflow:hidden;position:relative
}
.eits-card:before,.deep-section:before{content:"";position:absolute;left:0;top:0;width:100%;height:4px;background:linear-gradient(90deg,var(--eis-orange),#ffb15c 44%,var(--eis-navy) 44%,var(--eis-navy) 100%)}
.eits-card>h2:first-of-type,.deep-section>h2:first-of-type{display:flex;align-items:flex-start;gap:.72rem;padding-top:.25rem}
.eits-card>h2:first-of-type:before,.deep-section>h2:first-of-type:before{content:"";flex:0 0 13px;width:13px;height:13px;margin-top:.48em;border-radius:4px;background:linear-gradient(145deg,var(--eis-orange),var(--eis-navy));box-shadow:0 0 0 6px #fff3e8}
.eits-card.soft{background:linear-gradient(145deg,#fffaf5,#fff)}
.eits-two-cards,.learning-box-grid,.real-life-grid,.value-grid,.eits-related-grid,.planet-feature-grid{display:grid!important;grid-template-columns:repeat(auto-fit,minmax(min(100%,290px),1fr))!important;gap:22px!important;align-items:stretch}
.eits-mini,.learning-box,.real-life-card,.value-tile{margin:0!important;min-width:0;min-height:180px}
.eits-mini h3,.learning-box h3,.real-life-card h3,.value-tile h3{font-size:1.25rem;display:flex;align-items:center;gap:.65rem}
.eits-mini h3:before,.learning-box h3:before,.real-life-card h3:before,.value-tile h3:before{content:"";width:11px;height:11px;border-radius:4px;background:var(--eis-orange);box-shadow:0 0 0 5px #fff1e5;flex:0 0 11px}
/* prevent squeezed content */
.eits-card ul,.eits-card ol,.deep-section ul,.deep-section ol{padding-left:1.35rem}.eits-card li,.deep-section li{margin:.5rem 0;line-height:1.7}
.eits-stat-strip{display:grid!important;grid-template-columns:repeat(auto-fit,minmax(150px,1fr))!important;gap:14px!important}.eits-stat-strip .stat{background:#f8fbff;border:1px solid #dce7f3;border-radius:16px;padding:1rem;text-align:center}.eits-stat-strip .num{display:block;font-weight:800;color:var(--eis-navy);font-size:1.45rem}
/* buttons/forms */
.btn-primary,input[type=submit],button[type=submit],.search-button,.aspNetDisabled+input[type=submit]{appearance:none;border:0!important;border-radius:12px!important;background:linear-gradient(135deg,var(--eis-orange),#ff8f2a)!important;color:#fff!important;font:700 1rem "Plus Jakarta Sans",sans-serif!important;padding:.86rem 1.35rem!important;min-height:46px;box-shadow:0 8px 18px rgba(255,115,0,.2);cursor:pointer;text-decoration:none;display:inline-flex;align-items:center;justify-content:center}
.btn-primary:hover,input[type=submit]:hover,button[type=submit]:hover{transform:translateY(-1px);filter:saturate(1.07)}
.btn-ghost{border:1px solid #bfd0e4!important;border-radius:12px!important;padding:.82rem 1.25rem!important;color:var(--eis-navy)!important;background:#fff!important;font-weight:700;text-decoration:none}
input[type=text],input[type=email],input[type=password],input[type=search],textarea,select{width:100%;min-height:50px;border:1px solid #cfdbea!important;border-radius:12px!important;background:#fff;padding:.8rem 1rem!important;font:500 1rem "Plus Jakarta Sans",sans-serif;color:var(--eis-ink);outline:none}
input:focus,textarea:focus,select:focus{border-color:var(--eis-orange)!important;box-shadow:0 0 0 4px rgba(255,115,0,.12)!important}
/* tables */
.eits-table-wrap,.table-wrapper{overflow-x:auto;border-radius:18px;border:1px solid var(--eis-line);margin:1.35rem 0}.comparison-table,.eits-compare-table,.planet-fact-table,table{width:100%;border-collapse:collapse;background:#fff}.comparison-table th,.comparison-table td,.eits-compare-table th,.eits-compare-table td,.planet-fact-table th,.planet-fact-table td{padding:14px 16px!important;border-bottom:1px solid #e7edf4!important;text-align:left}.comparison-table thead th,.eits-compare-table thead th{background:var(--eis-navy)!important;color:#fff!important}
/* images */
.real-image-card,.planet-detail-hero-img,.eits-figure{border-radius:24px!important;overflow:hidden;background:#eef3f8;border:1px solid var(--eis-line);box-shadow:var(--eis-shadow);margin:0 0 28px!important}.real-image-card img,.planet-detail-hero-img img,.eits-figure img,.mobile-friendly-image{display:block;width:100%;height:auto;max-height:620px;object-fit:cover}
.topic-icon img{display:block;width:56px!important;height:56px!important;object-fit:contain}.topic-card{position:relative;overflow:hidden}.topic-card .topic-icon{margin-bottom:1rem}
/* homepage/topic cards */
.topic-grid,.learning-path-grid{display:grid!important;grid-template-columns:repeat(auto-fit,minmax(260px,1fr))!important;gap:24px!important}.topic-card,.learning-path-card{background:#fff;border:1px solid var(--eis-line);border-radius:22px;padding:1.55rem;box-shadow:var(--eis-shadow);min-height:280px;display:flex;flex-direction:column}.topic-card p,.learning-path-card p{font-size:1rem;line-height:1.7}.topic-card>a:last-child,.learning-path-card>a:last-child{margin-top:auto;font-weight:800;color:var(--eis-orange);text-decoration:none}
/* FAQ */
.faq-accordion{display:grid;gap:12px}.faq-item{border:1px solid var(--eis-line);border-radius:16px;background:#fff;overflow:hidden}.faq-item summary{cursor:pointer;padding:1rem 1.15rem;font-weight:800;color:var(--eis-navy);font-size:1.02rem}.faq-answer{padding:0 1.15rem 1.15rem}
/* sidebar */
.eits-side-card{padding:1.25rem!important}.eits-side-card h3{font-size:1.1rem}.eits-toc a,.related-guides-nav a{display:block;padding:.58rem .2rem;border-bottom:1px solid #edf1f6;color:var(--eis-text);text-decoration:none;font-size:.94rem}.eits-toc a:hover,.related-guides-nav a:hover{color:var(--eis-orange)}
/* normalize old generic decorative flows if any remain */
.eits-flow-diagram{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:12px;margin:1.2rem 0}.eits-flow-diagram span{background:#f8fbff;border:1px solid #dbe6f2;border-radius:14px;padding:1rem;font-weight:700;color:var(--eis-navy);position:relative}
/* member surfaces */
.member-card,.dashboard-card,.profile-card,.account-card{border:1px solid var(--eis-line)!important;border-radius:20px!important;box-shadow:var(--eis-shadow);background:#fff!important}.member-card h2,.dashboard-card h2,.profile-card h2{color:var(--eis-navy)!important}
/* remove visual scars from empty generated wrappers */
.eits-card:empty,.eits-mini:empty,.learning-box:empty,.real-life-card:empty{display:none!important}
@media(max-width:1024px){.eits-layout{grid-template-columns:1fr!important}.eits-sidebar{position:static!important;width:100%!important;max-width:none!important}.eits-page{padding-top:42px}.topic-grid,.learning-path-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}}
@media(max-width:700px){body{font-size:16px}.container{width:min(100% - 28px,var(--eis-content))}.eits-hero{padding:50px 0 42px!important}h1,.eits-hero h1{font-size:clamp(2.25rem,11vw,3.2rem)}h2{font-size:clamp(1.65rem,8vw,2.15rem)}.eits-card,.deep-section{padding:1.2rem!important;border-radius:18px!important}.topic-grid,.learning-path-grid,.eits-two-cards,.learning-box-grid,.real-life-grid,.value-grid{grid-template-columns:1fr!important}.topic-card,.learning-path-card{min-height:0}.eits-stat-strip{grid-template-columns:repeat(2,minmax(0,1fr))!important}.btn-primary,.btn-ghost{width:100%;margin:.3rem 0}.hero-ctas{display:grid!important;grid-template-columns:1fr!important;gap:10px!important}}

/* ===== V2 image reliability + hero visual alignment ===== */
.topic-icon{width:64px;height:64px;border-radius:18px;display:flex;align-items:center;justify-content:center;margin-bottom:18px;background:linear-gradient(145deg,#fff7ef,#eef5ff);border:1px solid #dbe5f0;box-shadow:0 10px 24px rgba(14,48,89,.08);color:#123a70}
.topic-icon svg{width:38px;height:38px;display:block;fill:none;stroke:currentColor;stroke-width:2.4;stroke-linecap:round;stroke-linejoin:round}
.topic-icon--ai{color:#2f6fed}.topic-icon--school{color:#28a967}.topic-icon--career{color:#7b54e8}.topic-icon--money{color:#f47a21}.topic-icon--space{color:#168f8a}.topic-icon--software{color:#235eb7}.topic-icon--aviation{color:#e76818}.topic-icon--blog{color:#c64f7b}
.v2-topic-hero-wrap{max-width:1200px;margin:30px auto 36px;padding:0 24px}
.v2-topic-hero-wrap .real-image-card{margin:0;border-radius:24px;overflow:hidden;background:#0d2f59;box-shadow:0 18px 48px rgba(10,39,78,.16);border:1px solid rgba(17,58,112,.10)}
.v2-topic-hero-wrap .real-image-card img{display:block;width:100%;height:clamp(280px,38vw,520px);object-fit:cover;object-position:center}
.v2-topic-hero-wrap .real-image-card figcaption{padding:12px 18px;background:#fff;color:#5b6880;font-size:.95rem}
.eits-hero h1{margin-bottom:18px!important}.eits-hero h1 + p{margin-top:0!important;line-height:1.75!important}
@media(max-width:760px){.v2-topic-hero-wrap{margin:20px auto 28px;padding:0 16px}.v2-topic-hero-wrap .real-image-card{border-radius:18px}.v2-topic-hero-wrap .real-image-card img{height:280px}.topic-icon{width:56px;height:56px;border-radius:16px}.topic-icon svg{width:32px;height:32px}}


/* ===== V2 release: member journey + sharing + reliable first-load position ===== */
.eits-member-journey{width:min(100% - 32px,1180px);margin:2rem auto 1rem;padding:clamp(1.25rem,2.5vw,2rem);border:1px solid #dfe7ef;border-radius:24px;background:linear-gradient(135deg,#0b315c 0%,#123f70 100%);box-shadow:0 18px 42px rgba(11,49,92,.14);display:grid;grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);gap:1.4rem;align-items:stretch}.eits-member-journey .section-label{color:#ff9a52}.eits-member-journey h2{margin:.2rem 0 .65rem;color:#fff;font-size:clamp(1.7rem,3vw,2.35rem);line-height:1.1}.eits-member-journey-copy>p{margin:0 0 1.1rem;color:#e7eef6;font-size:1.03rem;line-height:1.75}.eits-member-journey-actions{display:flex;flex-wrap:wrap;gap:.75rem;align-items:center}.eits-member-journey .btn-ghost{background:transparent!important;border-color:rgba(255,255,255,.38)!important;color:#fff!important}.eits-member-journey-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.8rem}.eits-member-benefit-card{display:flex;gap:.85rem;align-items:flex-start;padding:1rem;border:1px solid rgba(255,255,255,.14);border-radius:16px;background:rgba(255,255,255,.08);min-width:0}.eits-benefit-icon{display:grid;place-items:center;flex:0 0 40px;width:40px;height:40px;border-radius:12px;background:#ff7a1a;color:#fff;font-weight:900;font-size:1.05rem}.eits-member-benefit-card h3{margin:0 0 .25rem;color:#fff!important;font-size:1rem}.eits-member-benefit-card p{margin:0;color:#dce7f2!important;font-size:.92rem;line-height:1.55}.eits-static-share.eits-share-bottom{width:min(100% - 32px,1180px);margin:1rem auto 2rem;display:grid;grid-template-columns:minmax(0,1fr) auto;align-items:center;gap:1.25rem;padding:1.15rem 1.3rem;border:1px solid #dfe7ef;border-radius:18px;background:#fff;box-shadow:0 10px 28px rgba(16,42,67,.07)}.eits-share-copy{display:grid;gap:.2rem;min-width:0}.eits-share-copy .section-label{margin:0;color:#b65c13}.eits-share-heading{display:block;color:#123052;font-family:"Fraunces",Georgia,serif;font-size:1.22rem;line-height:1.25}.eits-share-copy .eits-share-prompt{font-weight:500;color:#5f6f80;font-size:.94rem;line-height:1.55}.eits-share-open{justify-self:end;min-width:150px;padding:.78rem 1rem!important;border-radius:12px!important}.eits-share-top{display:none!important}@media(max-width:850px){.eits-member-journey{grid-template-columns:1fr}.eits-member-journey-grid{grid-template-columns:1fr 1fr}}@media(max-width:620px){.eits-member-journey-grid{grid-template-columns:1fr}.eits-static-share.eits-share-bottom{grid-template-columns:1fr}.eits-share-open{justify-self:stretch;width:100%;min-width:0}.eits-member-journey-actions{display:grid;grid-template-columns:1fr}.eits-member-journey-actions a{text-align:center}}

/* Shared content-card treatment: used by landing pages instead of page-specific CSS. */
.value-tile .value-icon{display:grid;width:42px;height:42px;margin-bottom:.85rem;place-items:center;border-radius:12px;background:#fff1e5;color:#d85c0c;font-size:.82rem;font-weight:900;letter-spacing:-.02em}.home-real-life-section .value-grid{grid-template-columns:repeat(3,minmax(0,1fr))}.home-real-life-section .value-tile p{font-size:1rem;line-height:1.72}.article-search-results-wrap,.article-search-empty{scroll-margin-top:120px}.article-search-message{display:block;margin:.75rem .35rem 0;color:#a63b20;font-weight:700}.auth-v2-benefits h2{color:#fff!important}.auth-v2-benefits .section-label{color:#ff9d5d!important}.auth-v2-benefit-list>span,.auth-v2-benefit-list strong{color:#fff!important}
@media(max-width:900px){.home-real-life-section .value-grid{grid-template-columns:1fr 1fr}}
@media(max-width:620px){.home-real-life-section .value-grid{grid-template-columns:1fr}}

/* ===== V2 release: member article tools must stay full-size and readable ===== */
.article-member-tools{margin:1.25rem 0 1.5rem!important}
.article-learning-tools.article-learning-tools-v2{display:grid!important;grid-template-columns:minmax(0,1fr) auto!important;gap:1.1rem!important;align-items:center!important;padding:1.15rem 1.2rem!important;border:1px solid #dfe7ef!important;border-left:5px solid #ff7a1a!important;border-radius:18px!important;background:linear-gradient(135deg,#f8fbff 0%,#fff8f2 100%)!important;box-shadow:0 10px 28px rgba(16,42,67,.07)!important}
.article-learning-tools.article-learning-tools-v2 .article-learning-tools-copy strong{font-family:"Fraunces",Georgia,serif!important;font-size:1.18rem!important;line-height:1.3!important;color:#0b315c!important;margin:.25rem 0 .35rem!important}
.article-learning-tools.article-learning-tools-v2 .article-learning-tools-copy>span:last-of-type{font-size:.92rem!important;line-height:1.55!important;color:#617487!important}
.article-learning-tools.article-learning-tools-v2 .article-learning-tools-actions{display:flex!important;flex-wrap:wrap!important;gap:.55rem!important;justify-content:flex-end!important}
.article-learning-tools.article-learning-tools-v2 .learning-tool-button{min-height:44px!important;padding:.72rem .9rem!important;border-radius:11px!important;font-size:.82rem!important;font-weight:800!important}
@media(max-width:760px){.article-learning-tools.article-learning-tools-v2{grid-template-columns:1fr!important}.article-learning-tools.article-learning-tools-v2 .article-learning-tools-actions{display:grid!important;grid-template-columns:1fr!important}.article-learning-tools.article-learning-tools-v2 .learning-tool-button{width:100%!important;justify-content:center!important}}

/* =========================================================
   V2 responsive media + share experience (2026-08-21)
   ========================================================= */
.eits-responsive-picture{display:block;width:100%;margin:0;padding:0}
.eits-responsive-picture>img{display:block;width:100%;height:auto}
.real-image-card>.eits-responsive-picture,.planet-detail-hero-img>.eits-responsive-picture{display:block;height:100%}
.real-image-card>.eits-responsive-picture>img,.planet-detail-hero-img>.eits-responsive-picture>img{width:100%;height:100%;object-fit:cover}

.eits-static-share.eits-share-bottom{
  width:min(100% - 32px,1180px)!important;
  margin:1.35rem auto 2.25rem!important;
  display:grid!important;
  grid-template-columns:54px minmax(0,1fr) auto!important;
  align-items:center!important;
  gap:1rem!important;
  padding:1.2rem 1.3rem!important;
  border:1px solid #dce6f0!important;
  border-left:5px solid #ff7417!important;
  border-radius:20px!important;
  background:linear-gradient(135deg,#ffffff 0%,#fff9f4 100%)!important;
  box-shadow:0 12px 32px rgba(14,45,77,.08)!important;
}
.eits-share-mark{display:grid;place-items:center;width:52px;height:52px;border-radius:16px;background:#123b69;color:#fff;box-shadow:0 8px 18px rgba(18,59,105,.18)}
.eits-share-mark svg{width:24px;height:24px}
.eits-share-copy{display:grid;gap:.18rem;min-width:0}
.eits-share-copy .section-label{margin:0;color:#d8620d;font-size:.75rem;letter-spacing:.09em;text-transform:uppercase;font-weight:800}
.eits-share-heading{display:block;margin:0;color:#0e2e52;font-family:"Fraunces",Georgia,serif;font-size:clamp(1.15rem,1.8vw,1.4rem);line-height:1.2}
.eits-share-copy .eits-share-prompt{max-width:760px;color:#5b6f82!important;font-size:.95rem!important;line-height:1.55!important;font-weight:500!important}
.eits-share-open{justify-self:end!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;gap:.48rem!important;min-width:168px!important;padding:.78rem 1rem!important;border:0!important;border-radius:12px!important;background:#ff7417!important;color:#fff!important;font-family:"Plus Jakarta Sans",Arial,sans-serif!important;font-size:.94rem!important;font-weight:800!important;line-height:1.2!important;box-shadow:0 8px 20px rgba(255,116,23,.20)!important;cursor:pointer!important;white-space:nowrap!important}
.eits-share-open:hover,.eits-share-open:focus-visible{background:#e9640a!important;transform:translateY(-1px);outline:3px solid rgba(255,116,23,.18)!important;outline-offset:2px}

@media(max-width:768px){
  .eits-responsive-picture>img{width:100%;height:auto}
  .real-image-card>.eits-responsive-picture>img,.planet-detail-hero-img>.eits-responsive-picture>img{min-height:250px;max-height:390px;object-fit:cover}
  .eits-static-share.eits-share-bottom{grid-template-columns:46px minmax(0,1fr)!important;gap:.8rem!important;padding:1rem!important;margin:1rem auto 1.6rem!important}
  .eits-share-mark{width:46px;height:46px;border-radius:14px;align-self:start}
  .eits-share-open{grid-column:1/-1!important;width:100%!important;min-width:0!important;justify-self:stretch!important;margin-top:.15rem}
  .eits-share-copy .eits-share-prompt{font-size:.9rem!important}
}

/* ============================================================
   V2 HERO STABILITY FIX — static page-specific hero artwork
   Replaces the old rotating pager globally. One meaningful hero
   image per page, no dots/arrows, no timer, no layout movement.
   ============================================================ */
.hero-slider-controls,
.hero-slider-dots,
.hero-slider-dot,
.hero-slider-arrow,
.hero-slider-prev,
.hero-slider-next {
  display:none !important;
  visibility:hidden !important;
  width:0 !important;
  height:0 !important;
  margin:0 !important;
  padding:0 !important;
  border:0 !important;
  overflow:hidden !important;
  pointer-events:none !important;
}
.hero.has-static-hero-image,
.eits-hero.has-static-hero-image,
.page-hero.has-static-hero-image {
  position:relative !important;
  overflow:hidden !important;
  isolation:isolate !important;
  background:#0b2d55 !important;
}
.has-static-hero-image .hero-static-layer {
  position:absolute !important;
  inset:0 !important;
  z-index:0 !important;
  overflow:hidden !important;
  pointer-events:none !important;
}
.has-static-hero-image .hero-static-image {
  position:absolute !important;
  inset:0 !important;
  opacity:1 !important;
  transform:none !important;
  transition:none !important;
  background-size:cover !important;
  background-position:center !important;
  background-repeat:no-repeat !important;
}
.has-static-hero-image .hero-static-layer::after {
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:linear-gradient(90deg,rgba(4,18,40,.94) 0%,rgba(7,31,60,.82) 44%,rgba(7,31,60,.50) 100%);
}
.hero.has-static-hero-image::before,
.eits-hero.has-static-hero-image::before,
.page-hero.has-static-hero-image::before {
  display:none !important;
}
.has-static-hero-image > :not(.hero-slider-layer) {
  position:relative;
  z-index:2;
}
@media(max-width:760px){
  .has-static-hero-image .hero-static-image{background-position:center center !important;}
  .has-static-hero-image .hero-static-layer::after{background:linear-gradient(180deg,rgba(4,18,40,.86) 0%,rgba(4,18,40,.82) 100%);}
}

/* ============================================================
   V2 FINAL LAYOUT STABILISATION — 2026-08-21
   Single source of truth for header/nav, reading widths, cards,
   hero spacing and responsive behaviour across all public pages.
   ============================================================ */
:root{
  --header-h:92px!important;
  --eis-shell:1440px;
  --eis-reading:1180px;
}
html,body{max-width:100%;overflow-x:hidden}
body{font-family:"Plus Jakarta Sans",Inter,"Segoe UI",Arial,sans-serif!important;font-size:17px!important;line-height:1.72!important;color:#26384b!important}

/* Header: keep the logo in its own lane and never let nav sit on top of it. */
.header{height:var(--header-h)!important;min-height:var(--header-h)!important;background:#fff!important;border-bottom:1px solid #e7edf4!important;box-shadow:0 4px 18px rgba(16,42,67,.05)!important}
.header .container{width:min(var(--eis-shell),calc(100% - 48px))!important;max-width:var(--eis-shell)!important;padding:0!important}
.header-inner{height:var(--header-h)!important;min-height:var(--header-h)!important;display:grid!important;grid-template-columns:260px minmax(0,1fr) auto!important;align-items:center!important;gap:26px!important}
.logo-brand{display:flex!important;align-items:center!important;width:260px!important;max-width:260px!important;min-width:260px!important;height:76px!important;overflow:visible!important;flex:none!important}
.site-logo{display:block!important;width:252px!important;max-width:252px!important;height:72px!important;max-height:72px!important;object-fit:contain!important;object-position:left center!important;transform:none!important}
.nav.mega-nav{display:flex!important;align-items:center!important;justify-content:center!important;gap:3px!important;min-width:0!important;width:100%!important;overflow:visible!important}
.nav.mega-nav>.nav-link,.nav.mega-nav .nav-link{font-family:"Plus Jakarta Sans",Arial,sans-serif!important;font-size:13px!important;font-weight:650!important;line-height:1!important;padding:10px 9px!important;border-radius:999px!important;white-space:nowrap!important;color:#34455f!important}
.nav.mega-nav .nav-link:hover,.nav.mega-nav .nav-link.active-parent{background:#fff3e8!important;color:#c95600!important}
.header-actions{display:flex!important;align-items:center!important;justify-content:flex-end!important;min-width:128px!important}
.btn-contact{min-height:46px!important;padding:0 20px!important;border-radius:12px!important;background:#173f73!important;color:#fff!important;font-size:13px!important;font-weight:800!important;display:inline-flex!important;align-items:center!important;justify-content:center!important}
.mobile-menu-btn{display:none!important}

/* Mega menus should be positioned relative to the header shell, not the logo/nav item. */
.nav.mega-nav .nav-item{position:static!important}
.nav.mega-nav .mega-panel{top:calc(100% + 10px)!important;left:50%!important;right:auto!important;transform:translateX(-50%) translateY(8px)!important;width:min(980px,calc(100vw - 48px))!important;max-width:980px!important}
.nav.mega-nav .nav-item.open .mega-panel,.nav.mega-nav .nav-item:hover .mega-panel{transform:translateX(-50%) translateY(0)!important}

/* Public reading shell — consistent widths and readable rhythm. */
.eits-page>.container,.eits-page .container.eits-layout,.container.eits-layout{width:min(var(--eis-reading),calc(100% - 48px))!important;max-width:var(--eis-reading)!important;margin-inline:auto!important;padding-left:0!important;padding-right:0!important}
.eits-layout{display:grid!important;grid-template-columns:minmax(0,1fr) 300px!important;gap:36px!important;align-items:start!important}
.eits-article,.article-body,.blog-content,.page-content{min-width:0!important;max-width:100%!important}
.eits-article p,.article-body p,.blog-content p,.page-content p,.eits-card p,.deep-section p{font-size:1.04rem!important;line-height:1.8!important;color:#34465a!important;max-width:none!important}
.eits-article h2,.article-body h2,.blog-content h2,.page-content h2{margin-top:0!important;margin-bottom:1rem!important;line-height:1.18!important}
.eits-article h3,.article-body h3,.blog-content h3,.page-content h3{margin-top:1.45rem!important;line-height:1.3!important}
.eits-card,.deep-section,.learning-visual,.did-you-know,.value-tile,.article-card,.eits-side-card,.eits-mini,.learning-box,.real-life-card,.planet-feature,.info-box,.card{overflow:visible!important}
.eits-card,.deep-section{padding:clamp(1.45rem,2.4vw,2.1rem)!important;margin-bottom:30px!important}
.eits-mini,.learning-box,.real-life-card,.value-tile{padding:1.35rem!important;min-height:0!important}

/* Keep side navigation useful without appearing at the top of the article. */
.eits-sidebar{position:sticky!important;top:calc(var(--header-h) + 22px)!important;align-self:start!important;width:300px!important;max-width:300px!important}
.eits-sidebar .eits-side-card{margin-bottom:18px!important;overflow:hidden!important}
.eits-sidebar .eits-toc{max-height:calc(100vh - var(--header-h) - 100px)!important;overflow:auto!important}

/* Stable hero spacing: fixed header never collides with hero text. */
.eits-hero,.page-hero{padding-top:clamp(78px,7vw,104px)!important;padding-bottom:clamp(56px,6vw,82px)!important}
.eits-hero .container,.page-hero .container{width:min(var(--eis-reading),calc(100% - 48px))!important;max-width:var(--eis-reading)!important;margin-inline:auto!important;padding-left:0!important;padding-right:0!important}
.eits-hero h1,.page-hero h1{margin:.85rem 0 1.25rem!important;max-width:980px!important}
.eits-hero h1+p,.page-hero h1+p{font-size:clamp(1.08rem,1.35vw,1.22rem)!important;line-height:1.75!important;max-width:880px!important}

/* Cards/grids: do not squeeze text merely to keep three columns. */
.topic-grid,.learning-path-grid,.eits-two-cards,.learning-box-grid,.real-life-grid,.value-grid,.eits-related-grid,.planet-feature-grid{gap:24px!important}
.topic-grid,.learning-path-grid{grid-template-columns:repeat(auto-fit,minmax(290px,1fr))!important}
.eits-two-cards,.learning-box-grid,.real-life-grid,.value-grid,.eits-related-grid,.planet-feature-grid{grid-template-columns:repeat(auto-fit,minmax(300px,1fr))!important}
.topic-card,.learning-path-card{min-width:0!important;min-height:0!important;padding:1.55rem!important}

/* Images and tables must never force horizontal overflow. */
picture,img,svg,video,iframe{max-width:100%!important}
.real-image-card,.planet-detail-hero-img,.eits-figure,.v2-topic-hero-wrap{max-width:100%!important}
.table-wrapper,.eits-table-wrap,.comparison-table-wrap{max-width:100%!important;overflow-x:auto!important}

/* Member/utility page typography should still feel like the same site. */
.member-page,.dashboard-page,.auth-v2-page,.auth-v2-page-simple,.register-page,.quiz-member-page{font-family:"Plus Jakarta Sans",Inter,"Segoe UI",Arial,sans-serif!important;color:#26384b!important}
.member-page h1,.member-page h2,.dashboard-page h1,.dashboard-page h2,.auth-v2-page h1,.auth-v2-page h2,.register-page h1,.register-page h2{font-family:"Fraunces",Georgia,serif!important;color:#123052!important}

@media(max-width:1260px){
  :root{--header-h:84px!important}
  .header,.header-inner{height:var(--header-h)!important;min-height:var(--header-h)!important}
  .header-inner{grid-template-columns:225px minmax(0,1fr) auto!important;gap:15px!important}
  .logo-brand{width:225px!important;min-width:225px!important;max-width:225px!important;height:70px!important}
  .site-logo{width:218px!important;max-width:218px!important;height:64px!important;max-height:64px!important}
  .nav.mega-nav>.nav-link,.nav.mega-nav .nav-link{font-size:12px!important;padding:9px 6px!important}
  .btn-contact{padding-inline:14px!important}
}
@media(max-width:1120px){
  :root{--header-h:78px!important}
  .header .container{width:min(100% - 28px,var(--eis-shell))!important}
  .header-inner{display:flex!important;height:var(--header-h)!important;min-height:var(--header-h)!important;gap:12px!important}
  .logo-brand{width:auto!important;min-width:0!important;max-width:225px!important;height:66px!important;flex:1 1 auto!important}
  .site-logo{width:215px!important;max-width:215px!important;height:62px!important;max-height:62px!important}
  .nav.mega-nav,.header-actions{display:none!important}
  .mobile-menu-btn{display:inline-flex!important;margin-left:auto!important;flex:0 0 44px!important;width:44px!important;height:44px!important;background:#f6f8fb!important;border:1px solid #e2e8f0!important;border-radius:12px!important}
  .eits-layout{grid-template-columns:1fr!important}
  .eits-sidebar{position:static!important;width:100%!important;max-width:none!important;margin-top:30px!important}
  .eits-sidebar .eits-toc{max-height:none!important}
}
@media(max-width:700px){
  :root{--header-h:72px!important}
  .header-inner{height:72px!important;min-height:72px!important}
  .logo-brand{max-width:205px!important;height:60px!important}
  .site-logo{width:195px!important;max-width:195px!important;height:56px!important;max-height:56px!important}
  .eits-page>.container,.eits-page .container.eits-layout,.container.eits-layout,.eits-hero .container,.page-hero .container{width:calc(100% - 28px)!important}
  .eits-hero,.page-hero{padding-top:48px!important;padding-bottom:44px!important}
  .eits-two-cards,.learning-box-grid,.real-life-grid,.value-grid,.eits-related-grid,.planet-feature-grid,.topic-grid,.learning-path-grid{grid-template-columns:1fr!important}
  .eits-card,.deep-section{padding:1.2rem!important}
  .eits-article p,.article-body p,.blog-content p,.page-content p,.eits-card p,.deep-section p{font-size:1rem!important;line-height:1.78!important}
}

/* ===== AI menu batch: topic-specific visual system ===== */
.eits-ai-topic-picture{display:block;width:100%;margin:0 0 2rem;}
.eits-ai-topic-picture img{display:block;width:100%;height:auto;aspect-ratio:16/9;object-fit:cover;border-radius:24px;box-shadow:0 18px 42px rgba(11,42,85,.14);background:#0b2a55;}
.eits-ai-card-media{margin:-.25rem -.25rem 1rem;overflow:hidden;border-radius:18px;background:#0b2a55;}
.eits-ai-card-media img{display:block;width:100%;aspect-ratio:16/9;object-fit:cover;}
.grid.grid-3>.card{padding:1rem;display:flex;flex-direction:column;align-items:stretch;}
.grid.grid-3>.card .card-icon{display:none;}
.grid.grid-3>.card h3{margin:.2rem 0 .55rem;font-size:1.32rem;}
.grid.grid-3>.card p{font-size:1rem;line-height:1.65;flex:1;}
@media(max-width:768px){.eits-ai-topic-picture img{aspect-ratio:4/5;border-radius:18px}.eits-ai-card-media img{aspect-ratio:4/3}.grid.grid-3>.card{padding:.85rem}}

/* ===== AI BATCH LAYOUT STABILITY 2026-08-22 ===== */
.eits-hub-page .eits-layout{display:block!important;max-width:1280px!important;}
.eits-hub-page .eits-article{width:100%!important;max-width:none!important;}
.eits-hub-page .eits-sidebar{display:none!important;}
.member-journey-teaser h3,.member-benefit-card h3,.member-benefit-title{color:#fff!important;-webkit-text-fill-color:#fff!important;opacity:1!important;font-family:"Plus Jakarta Sans",sans-serif!important;font-weight:800!important;line-height:1.25!important;}
.eits-ai-card-media{overflow:hidden;border-radius:18px;background:#071a3a;}
.eits-ai-card-media picture,.eits-ai-card-media img{display:block;width:100%;}
.eits-ai-card-media img{aspect-ratio:16/10;object-fit:cover;}
@media(max-width:768px){.eits-ai-card-media img{aspect-ratio:4/3;}.eits-hub-page .eits-page{padding-top:32px!important;}}


/* ===== AI image render + sizing stability 2026-08-22 ===== */
.v2-topic-hero-wrap{max-width:1200px!important;margin:26px auto 34px!important;padding:0 24px!important}
.v2-topic-hero-wrap .real-image-card{margin:0!important;background:#fff!important;border:1px solid #dce5ef!important;border-radius:22px!important;overflow:hidden!important;box-shadow:0 16px 42px rgba(13,47,89,.12)!important}
.v2-topic-hero-wrap .real-image-card img{display:block!important;width:100%!important;height:clamp(240px,26vw,350px)!important;object-fit:cover!important;object-position:center!important;background:#f7f9fc!important}
@media(max-width:768px){.v2-topic-hero-wrap{padding:0 16px!important;margin:18px auto 26px!important}.v2-topic-hero-wrap .real-image-card{border-radius:18px!important}.v2-topic-hero-wrap .real-image-card img{height:230px!important;object-fit:cover!important}}

/* ===== V2 CONTENT-FIRST HERO SYSTEM 2026-08-22 =====
   Static public pages lead with meaning, not decorative artwork. */
.eits-content-first-hero{
  position:relative!important;
  margin:28px auto 0!important;
  width:min(1180px,calc(100% - 40px))!important;
  padding:0!important;
  background:transparent!important;
  color:#123052!important;
  min-height:0!important;
  overflow:visible!important;
}
.eits-content-first-hero::before,
.eits-content-first-hero::after,
.eits-content-first-hero .eits-wave{display:none!important}
.eits-content-first-hero>.container{
  width:100%!important;
  max-width:none!important;
  margin:0!important;
  padding:clamp(28px,4vw,46px)!important;
  border:1px solid #dce5ef!important;
  border-top:5px solid #ff7a18!important;
  border-radius:26px!important;
  background:linear-gradient(145deg,#fffaf5 0%,#ffffff 68%,#f5f9ff 100%)!important;
  box-shadow:0 18px 46px rgba(15,48,84,.10)!important;
}
.eits-content-first-hero .eits-breadcrumb{margin-bottom:18px!important;color:#66758a!important}
.eits-content-first-hero .eits-breadcrumb a{color:#1f5da8!important}
.eits-content-first-hero .hero-badge{
  display:inline-flex!important;align-items:center!important;gap:8px!important;
  background:#fff0e3!important;color:#c84f00!important;border:1px solid #ffd2ad!important;
  border-radius:999px!important;padding:8px 13px!important;font-family:"Plus Jakarta Sans",sans-serif!important;
  font-size:.78rem!important;font-weight:800!important;letter-spacing:.08em!important;text-transform:uppercase!important;
}
.eits-content-first-hero h1{
  color:#123052!important;-webkit-text-fill-color:#123052!important;
  margin:16px 0 14px!important;max-width:980px!important;
  font-size:clamp(2.35rem,5vw,4.7rem)!important;line-height:1.02!important;
}
.eits-content-first-hero h1+p{
  color:#43566d!important;font-family:"Plus Jakarta Sans",sans-serif!important;
  font-size:clamp(1.05rem,1.45vw,1.25rem)!important;line-height:1.78!important;
  max-width:900px!important;margin:0!important;
}
.eits-content-first-hero .eits-hero-meta{display:flex!important;flex-wrap:wrap!important;gap:10px!important;margin-top:22px!important}
.eits-content-first-hero .eits-hero-meta span{
  background:#f2f6fb!important;color:#24456d!important;border:1px solid #dce5ef!important;
  border-radius:999px!important;padding:8px 12px!important;font-size:.86rem!important;font-weight:700!important;
}
@media(max-width:700px){
  .eits-content-first-hero{width:calc(100% - 24px)!important;margin-top:16px!important}
  .eits-content-first-hero>.container{padding:24px 20px!important;border-radius:20px!important}
  .eits-content-first-hero h1{font-size:clamp(2rem,11vw,3.1rem)!important}
  .eits-content-first-hero h1+p{font-size:1rem!important;line-height:1.72!important}
}


/* ===== V2 CONTENT-FIRST FINAL POLISH: 2026-08-22 ===== */
/* Static learning pages lead with content, not decorative/generated imagery. */
.eits-content-first-hero{
  width:min(1200px,calc(100% - 48px))!important;
  max-width:1200px!important;
  margin:26px auto 34px!important;
  padding:0!important;
  min-height:0!important;
  background:#fff!important;
  color:#123052!important;
  overflow:visible!important;
  box-shadow:none!important;
  border:0!important;
}
.eits-content-first-hero::before,.eits-content-first-hero::after,.eits-content-first-hero .eits-wave{display:none!important;content:none!important;}
.eits-content-first-hero>.container{
  width:100%!important;max-width:100%!important;margin:0!important;
  padding:30px 38px 32px!important;
  border:1px solid #d9e3ee!important;border-top:4px solid #ff7a18!important;
  border-radius:22px!important;
  background:linear-gradient(145deg,#fffaf6 0%,#fff 72%,#f7faff 100%)!important;
  box-shadow:0 12px 34px rgba(15,48,84,.08)!important;
}
.eits-content-first-hero .eits-breadcrumb{margin-bottom:14px!important;}
.eits-content-first-hero h1{
  font-size:clamp(2.25rem,4.4vw,4rem)!important;
  line-height:1.04!important;letter-spacing:-.025em!important;
  margin:14px 0 12px!important;max-width:900px!important;
}
.eits-content-first-hero h1+p{
  font-size:clamp(1.04rem,1.25vw,1.17rem)!important;
  line-height:1.7!important;max-width:850px!important;
}
.eits-content-first-hero .eits-hero-meta{margin-top:18px!important;}
/* Generated visual wrappers are retired. */
.v2-topic-visual,.v2-topic-hero-wrap,.eits-ai-topic-picture,.eits-ai-card-media{display:none!important;}
/* Hub cards are now editorial cards: icon + title + useful copy, no illustration dependency. */
.eits-hub-page .card{padding:1.35rem 1.4rem!important;border-radius:20px!important;min-height:250px!important;display:flex!important;flex-direction:column!important;}
.eits-hub-page .card .card-icon{margin-bottom:.85rem!important;}
.eits-hub-page .card h3{font-size:1.45rem!important;line-height:1.2!important;margin:.15rem 0 .7rem!important;}
.eits-hub-page .card p{font-size:1rem!important;line-height:1.7!important;color:#52637a!important;}
.eits-hub-page .card .btn{margin-top:auto!important;align-self:flex-start!important;width:auto!important;padding:.72rem 1rem!important;}
/* AI hub keeps a true reading sidebar on desktop. */
.ai-hub-sidebar{display:block!important;}
.ai-hub-sidebar .eits-side-card{position:relative!important;}
@media(max-width:1024px){
  .eits-content-first-hero{width:calc(100% - 32px)!important;margin:18px auto 26px!important;}
  .eits-content-first-hero>.container{padding:26px 28px!important;border-radius:20px!important;}
  .eits-content-first-hero h1{font-size:clamp(2.15rem,7vw,3.4rem)!important;}
  .ai-hub-sidebar{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:16px!important;}
}
@media(max-width:700px){
  .eits-content-first-hero{width:calc(100% - 22px)!important;margin:12px auto 22px!important;}
  .eits-content-first-hero>.container{padding:22px 20px 24px!important;border-radius:17px!important;}
  .eits-content-first-hero h1{font-size:clamp(2rem,10vw,2.8rem)!important;line-height:1.08!important;}
  .eits-content-first-hero h1+p{font-size:1rem!important;line-height:1.68!important;}
  .ai-hub-sidebar{display:block!important;}
  .eits-hub-page .card{min-height:0!important;padding:1.15rem!important;}
}


/* ===== V2 HERO RESTORE — 2026-08-22 =====
   Restore the real EIS hero section. Only decorative top images were removed.
   This block intentionally replaces the temporary content-first white card treatment. */
.eits-hero:not(.has-hero-slider):not(.has-static-hero-image){
  width:100%!important;
  max-width:none!important;
  margin:0!important;
  border:0!important;
  border-radius:0!important;
  box-shadow:none!important;
  overflow:hidden!important;
  padding:clamp(48px,5vw,70px) 0 clamp(44px,4.5vw,64px)!important;
  background:linear-gradient(135deg,#0b2342 0%,#123866 58%,#0f766e 100%)!important;
  color:#fff!important;
}
.eits-hero:not(.has-hero-slider):not(.has-static-hero-image)::before{
  display:block!important;
  content:""!important;
  position:absolute!important;inset:0!important;
  background:radial-gradient(circle at 82% 18%,rgba(255,122,24,.18),transparent 27%),radial-gradient(circle at 18% 15%,rgba(255,255,255,.07),transparent 28%)!important;
  pointer-events:none!important;
}
.eits-hero:not(.has-hero-slider):not(.has-static-hero-image)::after{display:none!important;content:none!important}
.eits-hero>.container{width:min(1180px,calc(100% - 48px))!important;max-width:1180px!important;margin-inline:auto!important;padding:0!important;position:relative!important;z-index:2!important}
.eits-hero .eits-breadcrumb,.eits-hero .eits-breadcrumb a{color:rgba(255,255,255,.78)!important}
.eits-hero .hero-badge{color:#ff7417!important;background:#fff3e8!important;border-color:#ffd3b0!important}
.eits-hero h1{font-size:clamp(2.7rem,4.7vw,4.3rem)!important;color:#fff!important;margin:.7rem 0 1rem!important;line-height:1.04!important;text-shadow:none!important}
.eits-hero h1+p{font-size:clamp(1.05rem,1.35vw,1.2rem)!important;line-height:1.72!important;color:rgba(255,255,255,.88)!important;max-width:880px!important;margin:0!important}
.eits-hero .eits-hero-meta{margin-top:1.15rem!important}
.eits-hero .eits-hero-meta span{color:#fff!important;background:rgba(255,255,255,.1)!important;border-color:rgba(255,255,255,.2)!important}
.eits-hero .eits-wave{display:block!important;position:absolute!important;left:0!important;right:0!important;bottom:-1px!important;z-index:3!important;height:38px!important;overflow:hidden!important}
.eits-hero .eits-wave svg{display:block!important;width:100%!important;height:100%!important}
@media(max-width:700px){
  .eits-hero:not(.has-hero-slider):not(.has-static-hero-image){padding:38px 0 44px!important}
  .eits-hero>.container{width:calc(100% - 28px)!important}
  .eits-hero h1{font-size:clamp(2.2rem,10vw,3.05rem)!important}
  .eits-hero .eits-wave{height:28px!important}
}


/* ===== V2 MENU CONTENT QUALITY PASS — 2026-08-22 ===== */
.cta-ribbon,
.eits-cta,
.member-journey-teaser {
  color:#fff !important;
}
.cta-ribbon p,
.cta-ribbon li,
.cta-ribbon small,
.eits-cta p,
.member-journey-teaser p {
  color:rgba(255,255,255,.88) !important;
}
.cta-ribbon h2,
.cta-ribbon h3,
.eits-cta h2,
.member-journey-teaser h2,
.member-journey-teaser h3 {
  color:#fff !important;
}
.v2-editorial-addition {
  border-top:4px solid #ff7a00 !important;
  background:linear-gradient(180deg,#fff 0%,#fffaf5 100%) !important;
}
.v2-editorial-addition h2 {
  margin:.2rem 0 1rem !important;
  color:#123a6b !important;
}
.v2-editorial-addition p {
  font-size:1.08rem !important;
  line-height:1.85 !important;
  color:#344861 !important;
  max-width:76ch !important;
}
@media(max-width:700px){
  .v2-editorial-addition p{font-size:1rem !important;line-height:1.75 !important;}
}

/* ===== HOME CONTENT DEPTH AND LAYOUT PASS — 2026-08-23 ===== */
.eits-feature-band .eits-card-grid.three{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px;align-items:stretch}
.eits-feature-band .eits-card-grid.three>.eits-card{display:flex;min-height:0!important;height:auto!important;flex-direction:column;justify-content:flex-start}
.eits-feature-band .eits-card-grid.three>.eits-card h3{margin-bottom:10px}
.eits-feature-band .eits-card-grid.three>.eits-card p{margin-bottom:0}
.home-real-life-section{padding:78px 0;background:#f7f9fd}
.home-real-life-section .value-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px;margin-top:30px}
.home-real-life-section .value-tile{display:flex;min-height:0;flex-direction:column;background:#fff;border:1px solid rgba(20,50,90,.12);border-radius:20px;padding:24px;box-shadow:0 10px 30px rgba(15,35,70,.06)}
.home-real-life-section .value-tile h3{margin:0 0 10px;font-size:1.12rem}
.home-real-life-section .value-tile p{margin:0 0 18px;color:#53627c;line-height:1.72}
.articles-grid .article-img img{width:100%;height:100%;object-fit:cover;display:block;border-radius:inherit}

.value-icon svg{display:block;width:24px;height:24px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.value-tile-link{display:inline-flex;align-items:center;gap:7px;margin-top:auto;color:#b94f06!important;font-size:.85rem;font-weight:800;text-decoration:none!important}
.value-tile-link:hover{color:#8f3900!important;text-decoration:underline!important}
.value-tile-links{display:flex;align-items:flex-start;flex-wrap:wrap;gap:10px 18px;margin-top:auto}

.home-explanation-journey{display:grid;gap:12px;padding:24px;border:1px solid #dce5ee;border-radius:22px;background:linear-gradient(145deg,#f8fbff,#fff8f1);box-shadow:0 12px 32px rgba(16,42,67,.07)}
.home-explanation-journey article{display:grid;grid-template-columns:42px minmax(0,1fr);align-items:start;gap:13px;padding:14px;border:1px solid #e3eaf1;border-radius:14px;background:#fff}
.home-explanation-journey article>span{display:grid;width:42px;height:42px;place-items:center;border-radius:12px;background:#fff0e4;color:#c95600;font-weight:900}
.home-explanation-journey strong{display:block;margin-bottom:4px;color:#123052}
.home-explanation-journey p{margin:0!important;color:#586c80!important;font-size:.9rem!important;line-height:1.6!important}

.topic-card .topic-context{margin-top:.8rem;padding-top:.8rem;border-top:1px solid #e8edf3;color:#53677c!important;font-size:.9rem!important;line-height:1.62!important}
.topic-card .topic-context strong{color:#123052}
.topics-grid .topic-card{height:100%;box-sizing:border-box}
.topics-grid .topic-foot{margin-top:auto;padding-top:1rem}

.software-curiosity .value-grid{grid-template-columns:repeat(3,minmax(0,1fr));align-items:stretch}
.software-curiosity .value-tile{display:flex;height:100%;box-sizing:border-box;flex-direction:column;padding:24px!important}
.software-curiosity .value-tile h3{font-size:1.2rem}
.software-curiosity .value-tile p{margin:.35rem 0;color:#53677c;line-height:1.68}
.software-curiosity .value-tile p strong{color:#123052}
.software-curiosity .value-tile>span:last-child{margin-top:auto;padding-top:16px}
.software-journey-line{display:flex;align-items:center;justify-content:center;flex-wrap:wrap;gap:8px;margin:0 0 26px;padding:16px 18px;border:1px solid #dfe7ef;border-radius:16px;background:#f7f9fc;color:#123052}
.software-journey-line span{padding:7px 10px;border-radius:9px;background:#fff;color:#173f65;font-size:.78rem;font-weight:800;box-shadow:0 3px 10px rgba(16,42,67,.05)}
.software-journey-line b{color:#e87524}

.eis-member-point{display:flex;flex-direction:column;min-height:150px}
.eis-member-point span{color:rgba(255,255,255,.9);font-size:.9rem;line-height:1.65}
.eis-member-point strong{font-size:1rem}

.eits-quote-panel .eits-principle-detail{margin-top:22px;padding-top:18px;border-top:1px solid rgba(255,255,255,.22)}
.eits-principle-detail strong{display:block;margin-bottom:8px;color:#fff;font-size:1rem}
.eits-principle-detail p{margin:0 0 10px!important;color:rgba(255,255,255,.88)!important;font-family:"Plus Jakarta Sans",Arial,sans-serif!important;font-size:.88rem!important;font-style:normal!important;line-height:1.7!important}

@media(max-width:980px){.eits-feature-band .eits-card-grid.three,.home-real-life-section .value-grid,.software-curiosity .value-grid{grid-template-columns:1fr 1fr}.home-explanation-journey{margin-top:18px}}
@media(max-width:650px){.eits-feature-band .eits-card-grid.three,.home-real-life-section .value-grid,.software-curiosity .value-grid{grid-template-columns:1fr}.home-real-life-section{padding:56px 0}.home-explanation-journey{padding:16px}.home-explanation-journey article{grid-template-columns:36px minmax(0,1fr);padding:12px}.home-explanation-journey article>span{width:36px;height:36px}.eis-member-point{min-height:0}.value-tile-links{flex-direction:column}.software-journey-line{align-items:stretch;flex-direction:column}.software-journey-line b{align-self:center;transform:rotate(90deg)}}

/* ===== ABOUT CONTENT AND CONTRAST PASS — 2026-08-23 ===== */
.about-page .hero-copy>p{max-width:900px!important;font-size:1.08rem!important;line-height:1.78!important}
.about-page .hero-stats .num{color:#fff!important;font-weight:850!important}
.about-page .hero-stats .label{color:rgba(255,255,255,.86)!important;font-weight:650!important}
.about-page .about-feature-card h2,.about-page .about-feature-card h3,.about-page .about-value-card h2,.about-page .about-value-card h3,.about-page .about-process-card h2,.about-page .about-process-card h3,.about-page .about-author-card h2,.about-page .about-author-card h3,.about-page .about-compare-card h3,.about-page .about-mini-list strong,.about-page .eits-mini h3,.about-page .topic-card h3{color:#0b315c!important;font-weight:850!important;opacity:1!important}
.about-page .about-highlight h2,.about-page .about-highlight h3{color:#fff!important;opacity:1!important}
.about-page .about-highlight p{color:rgba(255,255,255,.92)!important;opacity:1!important;font-size:1rem!important;line-height:1.82!important}
.about-page .about-highlight .section-label{color:#a94700!important;background:#fff1e5!important;border-color:#ffd0aa!important;opacity:1!important}
.about-page .topics-head>p{max-width:720px;color:#4d6176!important;font-size:1rem!important;line-height:1.72!important}
.about-page .topics-grid{grid-template-columns:repeat(auto-fit,minmax(280px,1fr))!important}
.about-page .topic-card{height:100%;box-sizing:border-box}
.about-page .topic-card p{color:#52667a!important;font-size:.94rem!important;line-height:1.7!important}
.about-page .topic-card .topic-foot{margin-top:auto;padding-top:14px}
.about-page #quality-heading+ p,.about-page #quality-heading+ p+ p{max-width:900px;color:#42586e!important;font-size:1.04rem!important;line-height:1.82!important}
.about-page .about-mini-list{grid-template-columns:repeat(2,minmax(0,1fr))}
.about-page .about-mini-list li{color:#52667a;font-size:.96rem;line-height:1.72}
.about-page .about-mini-list strong{display:block;margin-bottom:6px;font-size:1rem}
@media(max-width:800px){.about-page .about-mini-list{grid-template-columns:1fr}.about-page .hero-stats{grid-template-columns:repeat(2,minmax(0,1fr))!important}}

/* ===== AI MEGA MENU CONTENT AND SIDEBAR PASS — 2026-08-23 ===== */
.eits-article>.eits-card,.eits-article>.eits-deep-dive,.eits-article>.eits-depth-section{scroll-margin-top:118px}
.eits-article .eits-card h2,.eits-article .eits-card h3,.eits-article .v2-insight-card h3,.eits-article .eits-mini h3,.eits-article .real-life-card h3{color:#0b315c!important;opacity:1!important;font-weight:850!important}
.eits-article .eits-card>h2{line-height:1.22;margin-bottom:.85rem}
.eits-article .eits-card>p,.eits-article .eits-card>div>p{color:#354a60;line-height:1.82}
.eits-article .section-label{color:#a94700!important;background:#fff1e5!important;border-color:#ffd0aa!important;opacity:1!important}
.eits-sidebar,.eits-hub-page .eits-sidebar.ai-hub-sidebar{display:flex!important;flex-direction:column!important;width:300px!important;max-width:300px!important;position:sticky!important;top:calc(var(--header-h) + 22px)!important;align-self:start!important;gap:18px!important}
.eits-sidebar .eits-side-card{width:100%;border:1px solid #dbe5ef;background:#fff;box-shadow:0 12px 28px rgba(11,49,92,.07)}
.eits-sidebar .eits-side-card h3{color:#0b315c!important;opacity:1!important;font-weight:850!important}
.eits-sidebar .section-label{color:#a94700!important;background:#fff1e5!important;border-color:#ffd0aa!important;opacity:1!important}
.eits-sidebar .eits-toc a{color:#234767!important;font-weight:720!important}
.eits-sidebar .eits-toc a:hover{color:#9d4600!important}
.v2-case-study,.v2-real-scenario,.v2-editorial-depth,.eits-v2-category-rebuild{margin-bottom:1.35rem!important}
.v2-case-study{border-top:4px solid #ff7a1a!important}.v2-real-scenario{border-top:4px solid #1b6ca8!important}.v2-editorial-depth{border-top:4px solid #0f7a72!important}
@media(max-width:1023px){.eits-sidebar,.eits-hub-page .eits-sidebar.ai-hub-sidebar{position:static!important;width:100%!important;max-width:none!important;margin-top:30px!important}.eits-sidebar .eits-toc{max-height:none!important}}

/* AI overview opens with an answer, not an empty navigation block. */
.eits-hub-page .eits-opening-answer{font-size:1.12rem!important;line-height:1.82!important;color:#203d5a!important}
.eits-hub-page .ai-opening-questions{margin:1.35rem 0 .4rem}
.eits-hub-page .eits-article>.eits-card.soft>.section{padding:1.5rem 0 0!important}
.eits-hub-page .eits-article>.eits-card.soft>.section>.container{width:100%!important;max-width:none!important;padding:0!important;margin:0!important}
.eits-hub-page .eits-article>.eits-card.soft .section-header{margin:0 0 1.1rem!important;text-align:left!important}
.eits-hub-page .eits-article>.eits-card.soft .section-header h2{margin:0 0 .55rem!important}
.eits-hub-page .eits-article>.eits-card.soft .section-header span{display:block;color:#53677a;font-size:1rem;line-height:1.7}
.eits-article .ai-use-now{margin:1rem 0 1.35rem!important}
.eits-article .ai-use-now .eits-mini{border:1px solid #dbe6ef!important;border-left:4px solid #ff7a1a!important;background:#f8fbfe!important;padding:1.05rem 1.1rem!important}
.eits-article .ai-use-now .eits-mini h3{margin:0 0 .45rem!important;font-size:1.05rem!important}
.eits-article .ai-use-now .eits-mini p{margin:0!important;color:#40566c!important;font-size:.96rem!important;line-height:1.68!important}
.eits-article .ai-context-link{margin:.2rem 0 1rem!important;padding:.85rem 1rem;border-left:4px solid #1b6ca8;border-radius:0 12px 12px 0;background:#f2f7fc;color:#3f566d!important;font-size:.96rem!important;line-height:1.68!important}
.eits-article .ai-context-link a{color:#0b5a9c!important;font-weight:800;text-decoration:underline;text-decoration-thickness:1px;text-underline-offset:3px}
.developer-step-list{counter-reset:developer-step;display:grid;gap:.85rem;margin:1.25rem 0;padding:0!important}
.developer-step-list li{counter-increment:developer-step;position:relative;list-style:none!important;margin:0!important;padding:1rem 1.05rem 1rem 3.65rem;border:1px solid #dbe6ef;border-radius:14px;background:#f8fafc;color:#40566c;line-height:1.72}
.developer-step-list li::before{content:counter(developer-step);position:absolute;left:1rem;top:1rem;display:grid;place-items:center;width:30px;height:30px;border-radius:10px;background:#ff7a1a;color:#fff;font-weight:900}
.developer-step-list strong{color:#0b315c}.developer-step-list a{color:#0b5a9c!important;font-weight:800;text-decoration:underline;text-underline-offset:3px}

/* ===== SPACE MEGA MENU CONTENT AND LAYOUT PASS — 2026-08-24 ===== */
.space-hero h2{position:relative;z-index:1;max-width:820px;margin:0 auto 16px;color:#fff!important;font-family:var(--font-display);font-size:clamp(1.8rem,3vw,2.75rem);line-height:1.18}
.space-hero p,.space-hero .btn-primary{position:relative;z-index:1}
.guides-grid .guide-card{height:100%;box-sizing:border-box}
.guides-grid .guide-card h3{color:#0b315c!important;font-weight:850!important;opacity:1!important}
.guides-grid .guide-card p{color:#40566c!important;font-size:.95rem!important;line-height:1.72!important}
.guides-grid .guide-card-foot{margin-top:auto}
.eits-article .real-life-card h3,.eits-article .planet-header h3,.eits-article .layer-grid strong{color:#0b315c!important;font-weight:850!important;opacity:1!important}
.eits-sidebar .eits-toc{max-height:min(58vh,620px);overflow:auto;padding-right:4px}
@media(max-width:1023px){.eits-sidebar .eits-toc{max-height:none;overflow:visible}}

/* Space revision: readable openings, content rhythm and matching share control. */
.eits-space-opening{padding:clamp(1.35rem,3vw,2.2rem)!important;border-top:4px solid #ff7417!important}
.eits-space-opening h2{max-width:820px;margin:.35rem 0 1rem!important;color:#0b315c!important;font-size:clamp(1.75rem,3vw,2.55rem)!important;line-height:1.2!important}
.eits-space-opening p{max-width:900px;margin:0 0 1rem!important;color:#354a60!important;font-size:1rem!important;line-height:1.82!important}
.eits-space-opening .btn-primary{margin-top:.35rem}
.eits-article section>h2:not(:first-child){margin-top:1.8rem!important}
.eits-article section>h2{line-height:1.24!important}
.eits-article section>h2+p,.eits-article section>h3+p{margin-top:.72rem!important}
.eits-article section>p{line-height:1.82!important}
.eits-share-system{display:block!important;width:100%!important;max-width:none!important;min-width:0!important}
.eits-static-share.eits-share-bottom{grid-template-columns:54px minmax(360px,1fr) auto!important}
.eits-static-share.eits-share-bottom .eits-share-copy{display:grid!important;width:auto!important;max-width:none!important;min-width:0!important}
.eits-static-share.eits-share-bottom .eits-share-heading,.eits-static-share.eits-share-bottom .eits-share-prompt{width:auto!important;max-width:760px!important;white-space:normal!important;word-break:normal!important;overflow-wrap:normal!important}
@media(max-width:768px){.eits-static-share.eits-share-bottom{grid-template-columns:46px minmax(0,1fr)!important}.eits-static-share.eits-share-bottom .eits-share-copy{min-width:0!important}}
