/*
Theme Name: Astra Child
Template: astra
Version: 1.0
*/

/* =========================================================
   NOMADWALLETS SINGLE POST SYSTEM
   ========================================================= */

:root{
  --nw-bg: #f6f8fc;
  --nw-card: #ffffff;
  --nw-text: #111827;
  --nw-muted: #6b7280;
  --nw-line: #e5e7eb;
  --nw-accent: #2563eb;
  --nw-accent-dark: #1d4ed8;
  --nw-radius: 20px;
  --nw-shadow: 0 12px 40px rgba(17,24,39,.08);
  --nw-max: 1380px;
}

/* =========================
   PAGE / ASTRA OVERRIDES
   ========================= */
body.single-post{
  background: var(--nw-bg);
}

body.single-post .site-content > .ast-container{
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

body.single-post .entry-header.ast-no-thumbnail{
  display: none;
}

body.single-post .site-content{
  padding-top: 18px;
}

/* =========================
   WRAPPER
   ========================= */
.nw-single-wrap{
  width: min(100% - 32px, 1560px);
  margin: 0 auto;
}

/* =========================
   HERO
   ========================= */
.nw-post-hero{
  margin: 26px auto 24px;
  background: linear-gradient(135deg, #ffffff 0%, #f5f8ff 100%);
  border: 1px solid var(--nw-line);
  border-radius: 28px;
  box-shadow: var(--nw-shadow);
  padding: 34px;
}

.nw-breadcrumbs{
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--nw-muted);
  line-height: 1.5;
}

.nw-breadcrumbs a{
  color: var(--nw-muted);
  text-decoration: none;
}

.nw-breadcrumbs a:hover{
  color: var(--nw-accent);
}

.nw-post-category{
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(37,99,235,.08);
  color: var(--nw-accent-dark);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 16px;
}

.nw-post-title{
  margin: 0 0 16px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.04;
  color: var(--nw-text);
  font-weight: 800;
  letter-spacing: -0.035em;
  max-width: 1100px;
}

.nw-post-excerpt{
  max-width: 900px;
  color: #374151;
  font-size: 1.08rem;
  line-height: 1.85;
  margin-bottom: 20px;
}

.nw-post-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 8px;
}

.nw-post-meta span{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f8fafc;
  border: 1px solid var(--nw-line);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: .92rem;
  color: #4b5563;
}

.nw-post-featured{
  margin-top: 24px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--nw-line);
  box-shadow: 0 14px 36px rgba(15,23,42,.08);
}

.nw-post-featured img{
  display: block;
  width: 100%;
  height: auto;
}

/* =========================
   POST LAYOUT — FINAL FIX
   ========================= */
.nw-post-layout{
  display: grid;
  grid-template-columns: 210px minmax(0, 1.55fr) 220px;
  gap: 22px;
  align-items: start;
  margin-bottom: 36px;
}

.nw-post-main{
  min-width: 0;
}

.nw-article-card{
  padding: 34px;
}

@media (max-width: 1280px){
  .nw-post-layout{
    grid-template-columns: 210px minmax(0, 1fr);
  }

  .nw-post-sidebar{
    grid-column: 1 / -1;
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 18px;
  }
}

@media (max-width: 921px){
  .nw-post-layout{
    grid-template-columns: 1fr;
  }

  .nw-post-sidebar{
    grid-template-columns: 1fr;
  }
}

/* =========================
   TOC
   ========================= */
.nw-toc{
  position: sticky;
  top: 110px;
  align-self: start;
  max-height: calc(100vh - 130px);
  overflow: auto;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(226,232,240,.9);
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(15,23,42,.06);
  padding: 22px 20px;
}

.nw-toc-title{
  margin: 0 0 16px;
  font-size: 1rem;
  line-height: 1.2;
  color: #0f172a;
  font-weight: 800;
  letter-spacing: -.01em;
}

.nw-toc ul{
  list-style: none;
  margin: 0;
  padding: 0;
}

.nw-toc li{
  margin: 0;
}

.nw-toc li + li{
  margin-top: 8px;
}

.nw-toc a{
  display: block;
  padding: 9px 10px;
  border-radius: 12px;
  color: #4b5563;
  font-size: .94rem;
  line-height: 1.45;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.nw-toc a:hover{
  background: #eff6ff;
  color: var(--nw-accent);
  transform: translateX(2px);
}

.nw-toc .nw-toc-subitem a{
  padding-left: 22px;
  font-size: .9rem;
  color: #6b7280;
}

.nw-toc.is-empty{
  display: none;
}

/* =========================
   MAIN ARTICLE
   ========================= */
.nw-post-main{
  min-width: 0;
}

.nw-article-card{
  background: var(--nw-card);
  border: 1px solid var(--nw-line);
  border-radius: 28px;
  box-shadow: var(--nw-shadow);
  padding: 34px;
}

.nw-article-card .entry-content,
.nw-article-card .post-content,
.nw-article-content{
  max-width: 100%;
}

.nw-article-content{
  color: #1f2937;
  font-size: 17px;
  line-height: 1.9;
}

.nw-article-content > *:first-child{
  margin-top: 0 !important;
}

.nw-article-content > *:last-child{
  margin-bottom: 0 !important;
}

.nw-article-content p{
  margin: 0 0 1.25em;
  color: #1f2937;
}

.nw-article-content strong{
  color: #0f172a;
  font-weight: 700;
}

.nw-article-content a{
  color: var(--nw-accent);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

.nw-article-content a:hover{
  color: var(--nw-accent-dark);
}

.nw-article-content h2,
.nw-article-content h3,
.nw-article-content h4{
  color: #0f172a;
  letter-spacing: -0.02em;
}

.nw-article-content h2{
  font-size: clamp(1.8rem, 2vw, 2.35rem);
  line-height: 1.18;
  margin: 1.9em 0 .65em;
  scroll-margin-top: 110px;
}

.nw-article-content h3{
  font-size: clamp(1.35rem, 1.5vw, 1.7rem);
  line-height: 1.3;
  margin: 1.55em 0 .55em;
  scroll-margin-top: 110px;
}

.nw-article-content h4{
  font-size: 1.18rem;
  line-height: 1.4;
  margin: 1.35em 0 .45em;
  scroll-margin-top: 110px;
}

.nw-article-content ul,
.nw-article-content ol{
  margin: 0 0 1.5em 1.25em;
  padding: 0;
}

.nw-article-content li{
  margin: 0 0 .6em;
  padding-left: .15em;
  color: #1f2937;
}

.nw-article-content li::marker{
  color: var(--nw-accent);
}

.nw-article-content blockquote{
  margin: 2em 0;
  padding: 22px 24px;
  border-left: 4px solid var(--nw-accent);
  background: linear-gradient(180deg, #f8fbff 0%, #f3f8ff 100%);
  border-radius: 18px;
  color: #1f2937;
  box-shadow: 0 12px 28px rgba(37,99,235,.06);
}

.nw-article-content blockquote p:last-child{
  margin-bottom: 0;
}

.nw-article-content img{
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  margin: 2em 0;
  box-shadow: 0 14px 36px rgba(15,23,42,.08);
}

.nw-article-content figure{
  margin: 2em 0;
}

.nw-article-content figcaption{
  margin-top: .85em;
  font-size: .92rem;
  line-height: 1.6;
  color: #6b7280;
  text-align: center;
}

/* =========================
   ARTICLE TABLES — FINAL FIX
   ========================= */
.nw-table-wrap{
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1.8em 0;
  border-radius: 16px;
  border: 1px solid var(--nw-line);
  background: #fff;
  box-shadow: 0 10px 24px rgba(15,23,42,.04);
}

.nw-article-content table{
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  background: #fff;
}

.nw-article-content thead th,
.nw-article-content th{
  background: #f8fafc;
  color: #0f172a;
  font-weight: 700;
  white-space: nowrap;
}

.nw-article-content th,
.nw-article-content td{
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--nw-line);
}

.nw-article-content tbody tr:nth-child(even){
  background: #fcfdff;
}

.nw-article-content tbody tr:last-child td{
  border-bottom: 0;
}

@media (max-width: 768px){
  .nw-table-wrap{
    margin: 1.4em 0;
    border-radius: 14px;
  }

  .nw-article-content table{
    min-width: 640px;
    font-size: 14px;
  }

  .nw-article-content th,
  .nw-article-content td{
    padding: 12px 14px;
  }
}

/* =========================
   BOTTOM AREA
   ========================= */
.nw-post-bottom{
  margin: 28px 0 50px;
}

/* =========================
   RELATED GUIDES
   ========================= */
.nw-related-posts{
  background: var(--nw-card);
  border: 1px solid var(--nw-line);
  border-radius: 28px;
  box-shadow: var(--nw-shadow);
  padding: 30px;
  margin-top: 24px;
}

.nw-related-posts h3{
  margin: 0 0 24px;
  color: var(--nw-text);
  font-size: 1.65rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.nw-related-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.nw-related-card{
  background: #fff;
  border: 1px solid var(--nw-line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15,23,42,.06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.nw-related-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15,23,42,.12);
  border-color: #dbe3f0;
}

.nw-related-thumb{
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
}

.nw-related-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0;
  box-shadow: none;
  border-radius: 0;
}

.nw-related-thumb-fallback{
  width: 100%;
  min-height: 220px;
  background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
}

.nw-related-card-body{
  padding: 18px 18px 20px;
}

.nw-related-cat{
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: #eff6ff;
  color: #2563eb;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.nw-related-title{
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.5;
}

.nw-related-title a{
  color: var(--nw-text);
  text-decoration: none;
}

.nw-related-title a:hover{
  color: var(--nw-accent);
}

/* =========================
   SIDEBAR — COMPACT
   ========================= */
.nw-post-sidebar{
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: start;
}

.nw-sidebar-card{
  background: var(--nw-card);
  border: 1px solid var(--nw-line);
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(15,23,42,.05);
  padding: 18px;
}

.nw-sidebar-card h3{
  margin: 0 0 8px;
  font-size: 1rem;
  line-height: 1.3;
  color: #0f172a;
}

.nw-sidebar-card p{
  margin: 0 0 14px;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.65;
}

.nw-sidebar-btn{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 44px;
  padding: 11px 14px;
  border-radius: 12px;
  background: var(--nw-accent);
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 10px 20px rgba(37,99,235,.16);
  transition: .2s ease;
}

.nw-sidebar-btn:hover{
  background: var(--nw-accent-dark);
  transform: translateY(-1px);
}

.nw-sidebar-links{
  list-style: none;
  margin: 0;
  padding: 0;
}

.nw-sidebar-links li + li{
  margin-top: 8px;
}

.nw-sidebar-links a{
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  background: #f8fafc;
  color: #1f2937;
  text-decoration: none;
  line-height: 1.35;
  font-size: 14px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.nw-sidebar-links a:hover{
  background: #eff6ff;
  color: var(--nw-accent);
  transform: translateX(2px);
}
/* =========================
   SIDEBAR RESOURCE PANEL — COMPACT
   ========================= */
.nw-resource-card h3{
	margin-bottom: 12px;
}

.nw-resource-links{
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.nw-resource-link{
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 11px 12px;
	border: 1px solid var(--nw-line);
	border-radius: 14px;
	background: #fff;
	text-decoration: none !important;
	color: var(--nw-text) !important;
	transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background-color .18s ease;
}

.nw-resource-link:hover{
	transform: translateY(-1px);
	box-shadow: 0 10px 22px rgba(15,23,42,.07);
	border-color: rgba(37,99,235,.22);
	background: #fbfdff;
}

.nw-resource-icon{
	flex: 0 0 34px;
	width: 34px;
	height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	background: linear-gradient(135deg, #eff6ff 0%, #ecfeff 100%);
	font-size: 15px;
	line-height: 1;
}

.nw-resource-text{
	display: flex;
	flex-direction: column;
	gap: 3px;
	min-width: 0;
}

.nw-resource-text strong{
	display: block;
	font-size: 14px;
	line-height: 1.3;
	color: var(--nw-text);
	font-weight: 700;
}

.nw-resource-text small{
	display: block;
	font-size: 12px;
	line-height: 1.4;
	color: #6b7280;
}

@media (max-width: 768px){
	.nw-resource-link{
		padding: 12px;
		border-radius: 14px;
	}

	.nw-resource-icon{
		width: 34px;
		height: 34px;
		font-size: 15px;
	}
}

/* =========================
   NOMADWALLETS NAVBAR V3
   centered before + after scroll
   ========================= */

body.admin-bar .site-header.is-nw-sticky{
	top: 32px;
}

.site-header{
	position: relative;
	z-index: 9999;
	background: transparent !important;
}

/* remove Astra full-width background feel */
.ast-primary-header-bar,
.main-header-bar{
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
}

.site-primary-header-wrap,
.ast-builder-grid-row-container{
	background: transparent !important;
}

/* sticky wrapper */
.site-header.is-nw-sticky{
	position: sticky;
	top: 0;
	padding: 0 !important;
	background: transparent !important;
}

/* =========================
   NAV SHELL — DEFAULT STATE
   ========================= */
.site-header .main-header-bar,
.site-header .ast-primary-header-bar{
	width: min(1380px, calc(100% - 40px));
	margin: 18px auto 0 !important;
	padding-left: 26px;
	padding-right: 26px;
	background: rgba(255,255,255,.94) !important;
	border: 1px solid rgba(226,232,240,.95);
	border-radius: 26px;
	box-shadow: 0 18px 50px rgba(15,23,42,.08);
	transition:
		background-color .25s ease,
		box-shadow .25s ease,
		transform .25s ease,
		border-color .25s ease,
		border-radius .25s ease,
		margin .25s ease,
		width .25s ease;
}

/* smoother transitions */
.site-header,
.main-header-bar,
.ast-primary-header-bar,
.ast-builder-grid-row-container,
.ast-builder-layout-element{
	transition:
		background-color .25s ease,
		box-shadow .25s ease,
		transform .25s ease,
		border-color .25s ease,
		padding .25s ease,
		margin .25s ease;
}

/* =========================
   SCROLLED STATE
   ========================= */
.site-header.is-nw-sticky.nw-scrolled{
	padding: 0 !important;
	background: transparent !important;
}

.site-header.is-nw-sticky.nw-scrolled .main-header-bar,
.site-header.is-nw-sticky.nw-scrolled .ast-primary-header-bar{
	width: min(1380px, calc(100% - 28px));
	margin: 10px auto 0 !important;
	background: rgba(255,255,255,.82) !important;
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	box-shadow: 0 16px 42px rgba(15,23,42,.14);
	border: 1px solid rgba(226,232,240,.72);
	border-radius: 20px;
}

/* keep links crisp */
.site-header .main-header-menu > .menu-item > a,
.site-header .ast-builder-menu-1 .menu-item > .menu-link{
	transition: color .2s ease, opacity .2s ease;
}

.site-header .main-header-menu > .menu-item > a:hover,
.site-header .ast-builder-menu-1 .menu-item > .menu-link:hover{
	color: #2563eb;
}

/* slightly tighter after scroll */
.site-header.is-nw-sticky.nw-scrolled .main-header-bar{
	min-height: 76px;
}

.site-header .ast-builder-layout-element{
	align-self: center;
}

/* =========================
   TABLET / MOBILE
   ========================= */
@media (max-width: 1024px){
	.site-header .main-header-bar,
	.site-header .ast-primary-header-bar{
		width: calc(100% - 20px) !important;
		margin: 12px auto 0 !important;
		padding-left: 16px;
		padding-right: 16px;
		border-radius: 18px;
	}

	.site-header.is-nw-sticky.nw-scrolled .main-header-bar,
	.site-header.is-nw-sticky.nw-scrolled .ast-primary-header-bar{
		width: calc(100% - 20px) !important;
		margin: 8px auto 0 !important;
		border-radius: 16px;
	}
}

@media (max-width: 921px){
	body.admin-bar .site-header.is-nw-sticky{
		top: 46px;
	}
}
/* =========================
   MOBILE LAYOUT FIX
   ========================= */
@media (max-width: 1024px){

  /* make whole page use one column */
  .nw-post-layout{
    display: block !important;
  }

  .nw-post-main,
  .nw-toc,
  .nw-post-sidebar{
    width: 100% !important;
    max-width: 100% !important;
  }

  /* article should be first */
  .nw-post-main{
    order: 1;
  }

  /* TOC becomes normal block, not sticky left rail */
  .nw-toc{
    position: static !important;
    top: auto !important;
    margin: 20px 0 0 !important;
  }

  /* sidebar becomes normal stacked block below content */
  .nw-post-sidebar{
    position: static !important;
    top: auto !important;
    margin-top: 20px !important;
  }

  /* cards should fill width cleanly */
  .nw-article-card,
  .nw-toc,
  .nw-sidebar-card,
  .nw-related-posts{
    width: 100% !important;
    box-sizing: border-box;
  }

  /* related cards: 1 per row on smaller screens */
  .nw-related-grid{
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px){

  .nw-single-wrap{
    width: calc(100% - 16px) !important;
    margin: 0 auto !important;
  }

  .nw-post-hero{
    padding: 18px !important;
    border-radius: 18px !important;
  }

  .nw-article-card,
  .nw-related-posts,
  .nw-sidebar-card,
  .nw-toc{
    padding: 18px !important;
    border-radius: 18px !important;
  }

  .nw-post-title{
    font-size: 2rem !important;
    line-height: 1.1 !important;
  }

  .nw-post-featured img{
    border-radius: 14px;
  }
}

@media (max-width: 640px){

  .nw-post-title{
    font-size: 1.8rem !important;
  }

  .nw-post-meta{
    gap: 8px !important;
    font-size: 13px !important;
  }

  .nw-article-content table{
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}
/* =========================
   NOMADWALLETS READABILITY POLISH
   ========================= */

/* Core readable text palette */
.nw-article-content{
  color: #1f2937;
  font-size: 17px;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Main article text */
.nw-article-content p,
.nw-article-content li,
.nw-article-content td,
.nw-article-content blockquote{
  color: #1f2937;
  font-size: 17px;
  line-height: 1.85;
}

/* Better spacing for article paragraphs/lists */
.nw-article-content p{
  margin: 0 0 1.2em;
}

.nw-article-content ul,
.nw-article-content ol{
  margin: 0 0 1.25em 1.2em;
}

.nw-article-content li{
  margin: 0 0 .5em;
}

/* Headings stronger + slightly tighter */
.nw-article-content h2,
.nw-article-content h3,
.nw-article-content h4{
  color: #0f172a;
  letter-spacing: -0.01em;
}

.nw-article-content h2{
  font-size: 1.9rem;
  line-height: 1.25;
  margin: 1.8em 0 .7em;
}

.nw-article-content h3{
  font-size: 1.35rem;
  line-height: 1.35;
  margin: 1.5em 0 .6em;
}

.nw-article-content h4{
  font-size: 1.1rem;
  line-height: 1.4;
  margin: 1.25em 0 .5em;
}

/* Intro/excerpt under title */
.nw-post-excerpt{
  color: #334155;
  font-size: 1.06rem;
  line-height: 1.8;
}

/* Meta / breadcrumbs / secondary labels */
.nw-post-meta,
.nw-breadcrumbs,
.nw-related-cat,
.nw-resource-text small{
  color: #475569;
}

/* Links in article: clearer contrast */
.nw-article-content a{
  color: #1d4ed8;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 2px;
}

.nw-article-content a:hover{
  color: #1e40af;
}

/* TOC readability */
.nw-toc-title{
  color: #0f172a;
}

.nw-toc a{
  color: #334155;
  font-size: .95rem;
  line-height: 1.45;
}

.nw-toc .nw-toc-subitem a{
  color: #475569;
}

/* Sidebar readability */
.nw-sidebar-card p{
  color: #334155;
  font-size: 14px;
  line-height: 1.7;
}

.nw-resource-text strong{
  color: #0f172a;
}

.nw-resource-text small{
  color: #475569;
  line-height: 1.45;
}

/* Related post cards */
.nw-related-title a{
  color: #0f172a;
  line-height: 1.45;
}

.nw-related-title a:hover{
  color: var(--nw-accent);
}

/* Table readability */
.nw-article-content th{
  color: #0f172a;
}

.nw-article-content td{
  color: #1f2937;
  line-height: 1.7;
}

/* Blockquotes */
.nw-article-content blockquote{
  color: #334155;
  font-style: normal;
  line-height: 1.85;
}

/* Mobile readability */
@media (max-width: 768px){
  .nw-article-content,
  .nw-article-content p,
  .nw-article-content li,
  .nw-article-content td,
  .nw-article-content blockquote{
    font-size: 16px;
    line-height: 1.8;
  }

  .nw-post-excerpt{
    font-size: 1rem;
    line-height: 1.75;
  }

  .nw-article-content h2{
    font-size: 1.55rem;
  }

  .nw-article-content h3{
    font-size: 1.2rem;
  }
}
/* =========================
   FORCE ARTICLE READABILITY
   ========================= */
.nw-article-content,
.nw-article-content p,
.nw-article-content li,
.nw-article-content ul li,
.nw-article-content ol li,
.nw-article-content td,
.nw-article-content blockquote{
  color: #1f2937 !important;
}

.nw-post-excerpt{
  color: #334155 !important;
}

.nw-post-meta,
.nw-breadcrumbs,
.nw-related-cat,
.nw-resource-text small,
.nw-sidebar-card p{
  color: #475569 !important;
}

.nw-article-content h2,
.nw-article-content h3,
.nw-article-content h4,
.nw-post-title,
.nw-sidebar-card h3,
.nw-resource-text strong,
.nw-related-title a{
  color: #0f172a !important;
}
.nw-article-content a{
  color: #1d4ed8;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 2px;
}

.nw-article-content a:hover{
  color: #1e40af;
}