/* Shared layout for Neeti pillar guides (fi-planning-india, retirement, allocation, etc.) */
:root {
  --bg: #f7f9fc;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --border: #e2e8f0;
  --brand: #16a34a;
  --brand-dark: #15803d;
  --teal: #0f766e;
  --prose: 65ch;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.5rem;
  z-index: 999;
  padding: 0.5rem 1rem;
  background: var(--text);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
}
.skip-link:focus {
  left: 0.5rem;
}
.shell {
  max-width: 920px;
  margin: 0 auto;
  padding: 1rem 1.1rem 2.75rem;
}
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding: 0.35rem 0 0.85rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}
.brand img {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  object-fit: cover;
}
.header-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
}
/* Match landing.html `.link-btn` (size, shape, motion) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid var(--border);
  background: #fff;
  color: #1f2937;
  padding: 0.58rem 0.9rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.86rem;
  transition: border-color 0.16s ease, background-color 0.16s ease, color 0.16s ease;
}
.btn:hover {
  border-color: #cbd5e1;
}
.btn:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}
.btn.primary {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}
.btn.primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}
.breadcrumb {
  margin: 0.85rem 0 0;
  font-size: 0.78rem;
  color: var(--muted);
}
.breadcrumb a {
  color: var(--teal);
  text-decoration: none;
  font-weight: 600;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.hero {
  margin-top: 1.35rem;
  padding: 1.35rem 1.2rem 1.45rem;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: linear-gradient(145deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
}
.hero-kicker {
  margin: 0 0 0.4rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
}
.hero h1 {
  margin: 0;
  font-size: clamp(1.55rem, 4vw, 2.05rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  max-width: var(--prose);
}
.hero-lead {
  margin: 0.75rem 0 0;
  font-size: 1.02rem;
  color: #475569;
  line-height: 1.65;
  max-width: var(--prose);
}
.hero-cta-row {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.notice {
  margin-top: 1rem;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: #f8fafc;
  font-size: 0.8rem;
  color: #475569;
  max-width: var(--prose);
  line-height: 1.5;
}
.notice strong {
  color: #334155;
}
.notice a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: none;
}
.notice a:hover {
  text-decoration: underline;
}
.toc {
  margin-top: 1.5rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
}
.toc h2 {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.toc ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.4rem;
}
.toc a {
  color: var(--teal);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
}
.toc a:hover {
  text-decoration: underline;
}
.section {
  margin-top: 1.85rem;
}
.section h2 {
  margin: 0 0 0.65rem;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid var(--border);
}
.section > p {
  margin: 0 0 0.75rem;
  color: #334155;
  max-width: var(--prose);
}
.steps-grid {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.85rem;
}
@media (min-width: 720px) {
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.step-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem 1.05rem;
  background: var(--surface);
  box-shadow: 0 2px 0 rgba(255, 255, 255, 0.8) inset;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.step-card:hover {
  border-color: rgba(22, 163, 74, 0.35);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 8px;
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  color: var(--brand-dark);
  font-weight: 800;
  font-size: 0.78rem;
  margin-bottom: 0.5rem;
}
.step-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  letter-spacing: -0.01em;
}
.step-card p {
  margin: 0;
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.58;
}
.india-callout {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  border: 1px solid rgba(14, 165, 233, 0.22);
  background: linear-gradient(120deg, #f0f9ff 0%, #ffffff 100%);
}
.india-callout h3 {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
}
.india-callout ul {
  margin: 0;
  padding-left: 1.15rem;
  color: #334155;
  font-size: 0.9rem;
}
.india-callout li {
  margin-bottom: 0.35rem;
}
.india-callout li:last-child {
  margin-bottom: 0;
}
.content-card {
  margin-top: 1rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.1rem 1.15rem;
  background: var(--surface);
}
.content-card h2 {
  margin: 0 0 0.6rem;
  font-size: 1.08rem;
  border: none;
  padding: 0;
}
.content-card ul,
.content-card ol {
  margin: 0;
  padding-left: 1.25rem;
  color: #334155;
  font-size: 0.92rem;
}
.content-card li {
  margin-bottom: 0.4rem;
}
.content-card li:last-child {
  margin-bottom: 0;
}
.neeti-workflow {
  margin-top: 1rem;
  padding: 1.1rem 1.15rem;
  border-radius: 14px;
  border: 1px solid rgba(34, 197, 94, 0.28);
  background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 55%);
}
.neeti-workflow h2 {
  margin: 0 0 0.75rem;
  font-size: 1.08rem;
  border: none;
  padding: 0;
}
.workflow-grid {
  display: grid;
  gap: 0.65rem;
}
@media (min-width: 640px) {
  .workflow-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.workflow-item {
  padding: 0.65rem 0.7rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(34, 197, 94, 0.15);
  font-size: 0.84rem;
  color: #334155;
  line-height: 1.5;
}
.workflow-item strong {
  display: block;
  color: var(--text);
  font-size: 0.8rem;
  margin-bottom: 0.2rem;
}
.cta-band {
  margin-top: 1.85rem;
  padding: 1.15rem 1.2rem;
  border-radius: 16px;
  border: 1px solid #bbf7d0;
  background: linear-gradient(120deg, #f0fdf4 0%, #ecfeff 100%);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
}
.cta-band p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #14532d;
  max-width: 42ch;
}
.related {
  margin-top: 2rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--border);
}
.related h2 {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.related-intro {
  margin: -0.35rem 0 0.85rem;
  font-size: 0.84rem;
  color: var(--muted);
  max-width: 52ch;
  line-height: 1.5;
}
.related-grid {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
.related a {
  display: block;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 0.86rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.related a:hover {
  border-color: var(--teal);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}
.related a span {
  display: block;
  margin-top: 0.25rem;
  font-weight: 400;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.45;
}
.related a.is-current {
  border-color: rgba(22, 163, 74, 0.45);
  background: #f0fdf4;
  pointer-events: none;
  cursor: default;
}
.legal-footer {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  font-size: 0.8rem;
}
.legal-footer a {
  color: var(--muted);
  text-decoration: none;
}
.legal-footer a:hover {
  color: var(--teal);
  text-decoration: underline;
}

/* —— Marketing atmosphere + blog (aligned with landing.html) —— */
body.neeti-marketing {
  position: relative;
  overflow-x: hidden;
}
body.neeti-marketing::before,
body.neeti-marketing::after {
  content: "";
  position: fixed;
  z-index: -1;
  pointer-events: none;
  filter: blur(8px);
}
body.neeti-marketing::before {
  width: 520px;
  height: 520px;
  left: -180px;
  top: -170px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0) 68%);
}
body.neeti-marketing::after {
  width: 500px;
  height: 500px;
  right: -170px;
  top: 140px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.22) 0%, rgba(34, 197, 94, 0) 70%);
}
.neeti-atmosphere {
  position: fixed;
  inset: -20% -10% auto;
  height: 460px;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(44% 52% at 22% 30%, rgba(125, 211, 252, 0.2) 0%, rgba(125, 211, 252, 0) 100%),
    radial-gradient(40% 48% at 78% 24%, rgba(52, 211, 153, 0.2) 0%, rgba(52, 211, 153, 0) 100%),
    radial-gradient(35% 44% at 52% 72%, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0) 100%);
}
.neeti-atmosphere-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.22;
  background-image:
    radial-gradient(rgba(15, 23, 42, 0.06) 0.6px, transparent 0.6px),
    radial-gradient(rgba(15, 23, 42, 0.04) 0.6px, transparent 0.6px);
  background-size: 18px 18px, 22px 22px;
  background-position: 0 0, 9px 11px;
}
body.neeti-marketing .shell,
body.neeti-marketing .shell--blog-index {
  padding: 1.2rem 1rem 2rem;
}
body.neeti-marketing .site-header {
  border-bottom: none;
  padding-bottom: 0.25rem;
}
body.neeti-marketing .brand {
  font-size: 1rem;
  letter-spacing: -0.01em;
}
body.neeti-marketing .brand img {
  width: 32px;
  height: 32px;
}
body.neeti-marketing .header-actions {
  gap: 0.55rem;
}
body.neeti-marketing .breadcrumb {
  margin-top: 0.65rem;
  font-size: 0.76rem;
}

/* Blog listing + article prose (uses same shell as guides) */
.shell--blog-index {
  max-width: 1120px;
}
/* Same surface language as landing `.card`; title + disclaimer in one calm band */
.blog-index-hero {
  margin-top: 1.25rem;
  padding: 1.15rem 1.25rem;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background:
    radial-gradient(95% 85% at 100% 0%, rgba(34, 197, 94, 0.07) 0%, rgba(34, 197, 94, 0) 62%),
    linear-gradient(165deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
}
.blog-index-hero-text {
  flex: 1 1 10rem;
  min-width: 0;
}
.blog-index-hero .hero-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #0f766e;
  font-weight: 700;
}
.blog-index-hero h1 {
  margin: 0;
  max-width: none;
  letter-spacing: -0.035em;
  font-size: clamp(1.9rem, 4.2vw, 2.45rem);
  line-height: 1.08;
  font-weight: 800;
}
.blog-index-disclaimer {
  margin: 0;
  flex: 0 1 auto;
  max-width: min(100%, 26rem);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.78rem;
  line-height: 1.45;
  color: #475569;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}
.blog-index-disclaimer strong {
  color: #334155;
  font-weight: 700;
}
.blog-index-disclaimer a {
  color: #0f766e;
  font-weight: 600;
  text-decoration: none;
}
.blog-index-disclaimer a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media (max-width: 640px) {
  .blog-index-hero {
    flex-direction: column;
    align-items: stretch;
  }
  .blog-index-disclaimer {
    max-width: none;
    border-radius: 12px;
  }
}
.blog-section-title {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #64748b;
}
.blog-index-posts {
  margin-top: 1.75rem;
}
.blog-index-posts .blog-grid {
  margin-top: 0.85rem;
}
.blog-meta {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}
/* Card grid: image on top, read CTA */
.blog-grid {
  margin-top: 1.85rem;
  display: grid;
  gap: 1.25rem 1.35rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .blog-grid {
    gap: 1.5rem 1.5rem;
  }
}
.blog-card {
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  display: flex;
  flex-direction: column;
}
.blog-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  text-decoration: none;
  color: inherit;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background:
    radial-gradient(95% 85% at 100% 0%, rgba(34, 197, 94, 0.07) 0%, rgba(34, 197, 94, 0) 62%),
    linear-gradient(165deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.blog-card-link:hover {
  transform: translateY(-2px);
  border-color: rgba(14, 165, 233, 0.24);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}
.blog-card-link:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}
.blog-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(145deg, #ecfdf5, #e0f2fe);
  border-bottom: 1px solid rgba(226, 232, 240, 0.65);
}
.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.blog-card-link:hover .blog-card-media img {
  transform: scale(1.04);
}
.blog-card-body {
  padding: 1.15rem 1.25rem 1.2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.5rem;
  min-height: 7.5rem;
}
.blog-card-body h2 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.3;
  letter-spacing: -0.022em;
  color: var(--text);
  font-weight: 700;
}
@media (min-width: 720px) {
  .blog-card-body h2 {
    font-size: 1.12rem;
  }
}
.blog-card-link:hover .blog-card-body h2 {
  color: #0f766e;
}
.blog-card-body .excerpt {
  margin: 0;
  font-size: 0.9rem;
  color: #5b677a;
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}
.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(226, 232, 240, 0.9);
}
.blog-card-footer time {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: 0.02em;
}
.blog-card-cta {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.02em;
  transition: transform 0.18s ease, color 0.18s ease;
}
.blog-card-link:hover .blog-card-cta {
  color: var(--brand-dark);
  transform: translateX(2px);
}
/* Legacy list (if used elsewhere) */
.blog-list {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.85rem;
}
.blog-list article {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  background: var(--surface);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.blog-list article:hover {
  border-color: rgba(15, 118, 110, 0.35);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}
.blog-list h2 {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}
.blog-list h2 a {
  color: var(--text);
  text-decoration: none;
}
.blog-list h2 a:hover {
  color: var(--teal);
}
.blog-list .excerpt {
  margin: 0.45rem 0 0;
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.55;
  max-width: 62ch;
}
.blog-list time {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.78rem;
  color: var(--muted);
}
/* Post: one panel like landing `.hero-visual` — cover + title + prose feel like product */
.blog-post-panel {
  margin-top: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 251, 255, 0.98) 100%);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.12);
  overflow: hidden;
}
/* Post page cover (same asset as card thumbnail) */
.blog-cover {
  margin: 1.15rem 0 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 14px 44px rgba(15, 23, 42, 0.07);
  line-height: 0;
  background: linear-gradient(145deg, #ecfdf5, #f0f9ff);
}
.blog-post-panel .blog-cover {
  margin: 0;
  border-radius: 0;
  border: none;
  box-shadow: none;
}
.blog-cover img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1200 / 630;
  object-fit: cover;
}
.blog-article-hero {
  margin-top: 1.1rem;
  padding: 1.25rem 1.2rem 1.35rem;
  border-radius: 18px;
  border: 1px solid rgba(226, 232, 240, 0.85);
  background: linear-gradient(180deg, #ffffff 0%, #fafefd 100%);
  box-shadow: 0 10px 36px rgba(15, 23, 42, 0.04);
}
.blog-post-panel .blog-article-hero {
  margin-top: 0;
  padding: 1.35rem 1.35rem 1rem;
  border-radius: 0;
  border: none;
  box-shadow: none;
  background: transparent;
}
.blog-article-hero h1 {
  margin: 0;
  font-size: clamp(1.5rem, 4vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  max-width: var(--prose);
}
.blog-article-hero .hero-lead {
  margin-top: 0.75rem;
  max-width: var(--prose);
  color: #5b677a;
  line-height: 1.62;
}
.blog-article-hero .hero-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #0f766e;
  font-weight: 700;
}
.blog-post-panel .blog-prose {
  margin-top: 0;
  padding: 0 1.35rem 1.25rem;
  max-width: none;
}
.blog-post-panel .blog-prose p,
.blog-post-panel .blog-prose li {
  color: #5b677a;
  max-width: 65ch;
}
.blog-post-panel .blog-prose h2,
.blog-post-panel .blog-prose h3,
.blog-post-panel .blog-prose strong {
  color: var(--text);
}
.blog-post-panel .where-neeti-fits {
  margin: 0 1.35rem 1.35rem;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: #f8fafc;
}
.blog-post-panel .where-neeti-fits .btn.primary {
  margin-top: 0.45rem;
}
.blog-back-link {
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: var(--muted);
}
.blog-back-link a {
  color: #0f766e;
  font-weight: 600;
  text-decoration: none;
}
.blog-back-link a:hover {
  text-decoration: underline;
}
.blog-prose {
  max-width: var(--prose);
  margin-top: 1.35rem;
}
.blog-prose > *:first-child {
  margin-top: 0;
}
.blog-prose p {
  margin: 0 0 1rem;
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.72;
}
.blog-prose h2 {
  margin: 1.85rem 0 0.65rem;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.blog-prose h2:first-of-type {
  margin-top: 1.25rem;
}
.blog-prose h3 {
  margin: 1.35rem 0 0.5rem;
  font-size: 1rem;
  color: var(--text);
}
.blog-prose ul,
.blog-prose ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  color: #334155;
  font-size: 0.93rem;
  line-height: 1.65;
}
.blog-prose li {
  margin-bottom: 0.35rem;
}
.blog-prose a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: none;
}
.blog-prose a:hover {
  text-decoration: underline;
}
.blog-prose strong {
  color: var(--text);
}
.where-neeti-fits {
  margin-top: 2rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: #f8fafc;
}
.where-neeti-fits h2 {
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border: none;
  padding: 0;
}
.where-neeti-fits p {
  margin: 0 0 0.65rem;
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.6;
}
.where-neeti-fits p:last-child {
  margin-bottom: 0;
}
.where-neeti-fits a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: none;
}
.where-neeti-fits a:hover {
  text-decoration: underline;
}
.blog-guides-crosslink {
  margin-top: 2rem;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
