/* ============================================================
   SettlementRadar — Content Pages Redesign (Task #1469879)
   /blog, /guides, /news — unified premium content layout

   Design language: All-white bg + Fraunces headings + DM Sans body
   Emerald accents (#00875A). Matches settlement-detail card system.
   Desktop 1440px • Mobile 375px • Thumb-friendly tap targets.
   ============================================================ */

/* ─── Shared: Content Hub Hero ──────────────────────────────── */
.ch-hero {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 7.5rem 1.5rem 3rem;
}
.ch-hero-inner {
  max-width: 820px;
  margin: 0 auto;
}
.ch-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #00643E;
  background: #E6F9F3;
  border: 1px solid #b3e6d3;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.ch-hero h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #0A0A0A;
  line-height: 1.15;
  margin-bottom: 0.85rem;
}
.ch-hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  color: #4B5563;
  line-height: 1.65;
  max-width: 620px;
}

/* ─── Shared: Category Filter Bar ──────────────────────────── */
.ch-filter-bar {
  position: sticky;
  top: 60px;
  z-index: 90;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e5e7eb;
  padding: 0.6rem 1.5rem;
}
.ch-filter-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.ch-filter-inner::-webkit-scrollbar { display: none; }
.ch-filter-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: #4B5563;
  background: transparent;
  border: 1.5px solid #E5E7EB;
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.18s ease;
}
.ch-filter-tab:hover {
  color: #00875A;
  border-color: #99E6CC;
  background: #f0fdf8;
}
.ch-filter-tab.active {
  color: #ffffff;
  background: #00875A;
  border-color: #00875A;
  font-weight: 600;
}

/* ─── Shared: Content Grid Layout ──────────────────────────── */
.ch-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2.5rem;
  align-items: start;
}
.ch-main { min-width: 0; }
.ch-sidebar { position: sticky; top: 115px; }

/* ─── Featured Card (first post / large hero card) ─────────── */
.ch-featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  margin-bottom: 2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.ch-featured-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}
.ch-featured-card-img-wrap {
  overflow: hidden;
  aspect-ratio: 4/3;
}
.ch-featured-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  display: block;
}
.ch-featured-card:hover .ch-featured-card-img {
  transform: scale(1.03);
}
.ch-featured-card-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 240px;
  background: linear-gradient(135deg, #E6F9F3 0%, #f0fdf8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1rem;
  color: #00875A;
  font-weight: 700;
}
.ch-featured-card-body {
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ch-featured-card-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
  flex-wrap: wrap;
}
.ch-featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  background: #00875A;
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
}
.ch-category-chip {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #00643E;
  background: #E6F9F3;
  border: 1px solid #b3e6d3;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}
.ch-card-date {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: #6B7280;
}
.ch-card-read-time {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: #6B7280;
}
.ch-card-dot {
  color: #D1D5DB;
  font-size: 0.7rem;
}
.ch-featured-card h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #0A0A0A;
  line-height: 1.25;
  margin-bottom: 0.65rem;
}
.ch-card-excerpt {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: #4B5563;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ch-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #00875A;
  text-decoration: none;
}
.ch-card-cta::after {
  content: '→';
  transition: transform 0.18s ease;
}
.ch-featured-card:hover .ch-card-cta::after { transform: translateX(3px); }

/* ─── Card Grid (2-col or 3-col) ──────────────────────────── */
.ch-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.ch-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.ch-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.09);
}
.ch-card-img-wrap {
  overflow: hidden;
  aspect-ratio: 16/9;
  position: relative;
}
.ch-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}
.ch-card:hover .ch-card-img { transform: scale(1.04); }
.ch-card-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 160px;
  background: linear-gradient(135deg, #f0fdf8 0%, #E6F9F3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 0.85rem;
  color: #00875A;
  font-weight: 700;
}
.ch-card-body {
  padding: 1.1rem 1.25rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.ch-card-meta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.6rem;
  flex-wrap: wrap;
}
.ch-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0A0A0A;
  line-height: 1.3;
  margin-bottom: 0.45rem;
}
.ch-card-footer {
  margin-top: auto;
  padding-top: 0.75rem;
}

/* ─── Meta Bar ───────────────────────────────────────────── */
.ch-meta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  color: #6B7280;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #F3F4F6;
  flex-wrap: wrap;
}
.ch-meta-bar strong { color: #1F2A37; }

/* ─── Newsletter inline (between cards) ─────────────────── */
.ch-newsletter-card {
  background: linear-gradient(135deg, #E6F9F3 0%, #f0fdf8 100%);
  border: 1px solid #b3e6d3;
  border-radius: 14px;
  padding: 1.5rem 1.75rem;
  margin: 0.5rem 0;
  grid-column: 1 / -1;
}
.ch-newsletter-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #0A0A0A;
  margin-bottom: 0.4rem;
}
.ch-newsletter-card p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: #374151;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.ch-newsletter-form {
  display: flex;
  gap: 0.6rem;
  max-width: 480px;
}
.ch-newsletter-input {
  flex: 1;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: #0A0A0A;
  background: #ffffff;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  padding: 0.6rem 0.9rem;
  min-width: 0;
  outline: none;
  transition: border-color 0.18s ease;
}
.ch-newsletter-input:focus { border-color: #00875A; }
.ch-newsletter-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
  background: #00875A;
  border: none;
  border-radius: 8px;
  padding: 0.6rem 1.1rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.18s ease;
}
.ch-newsletter-btn:hover { background: #006B4D; }
.ch-newsletter-success {
  display: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: #00643E;
  font-weight: 600;
  margin-top: 0.6rem;
}

/* ─── Pagination ─────────────────────────────────────────── */
.ch-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #F3F4F6;
}
.ch-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 0.6rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: #4B5563;
  background: #ffffff;
  border: 1.5px solid #E5E7EB;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.15s ease;
}
.ch-page-btn:hover:not(.disabled):not(.active) {
  color: #00875A;
  border-color: #99E6CC;
  background: #f0fdf8;
}
.ch-page-btn.active {
  color: #ffffff;
  background: #00875A;
  border-color: #00875A;
  font-weight: 700;
}
.ch-page-btn.disabled {
  color: #D1D5DB;
  pointer-events: none;
  border-color: #F3F4F6;
}
.ch-pagination-ellipsis {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: #9CA3AF;
  padding: 0 0.2rem;
}

/* ─── Sidebar ────────────────────────────────────────────── */
.ch-sidebar-card {
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 1.25rem 1.35rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.ch-sidebar-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: #0A0A0A;
  margin-bottom: 0.75rem;
}
.ch-sidebar-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: #4B5563;
  line-height: 1.55;
  margin-bottom: 0.85rem;
}
.ch-sidebar-price {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #0A0A0A;
  margin-bottom: 0.75rem;
}
.ch-sidebar-cta-btn {
  display: block;
  width: 100%;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  background: #00875A;
  border-radius: 10px;
  padding: 0.7rem 1rem;
  text-align: center;
  text-decoration: none;
  transition: background 0.18s ease;
}
.ch-sidebar-cta-btn:hover { background: #006B4D; }
.ch-sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ch-sidebar-links li + li {
  border-top: 1px solid #F3F4F6;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
}
.ch-sidebar-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: #1F2A37;
  text-decoration: none;
  transition: color 0.15s ease;
  gap: 0.5rem;
}
.ch-sidebar-links a::after { content: '→'; color: #9CA3AF; font-size: 0.8rem; }
.ch-sidebar-links a:hover { color: #00875A; }
.ch-sidebar-links a:hover::after { color: #00875A; }

.ch-sidebar-nl-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.84rem;
  color: #6B7280;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}
.ch-sidebar-nl-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.ch-sidebar-nl-input {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: #0A0A0A;
  background: #F9FAFB;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  padding: 0.6rem 0.9rem;
  outline: none;
  transition: border-color 0.15s ease;
}
.ch-sidebar-nl-input:focus { border-color: #00875A; }
.ch-sidebar-nl-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
  background: #00875A;
  border: none;
  border-radius: 8px;
  padding: 0.6rem 0.9rem;
  cursor: pointer;
  transition: background 0.18s ease;
  text-align: center;
}
.ch-sidebar-nl-btn:hover { background: #006B4D; }
.ch-sidebar-nl-success {
  display: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  color: #00643E;
  font-weight: 600;
}

/* ─── Email Capture Section ──────────────────────────────── */
.ch-email-capture {
  background: linear-gradient(135deg, #0A0A0A 0%, #1a2a1e 100%);
  padding: 4rem 1.5rem;
}
.ch-email-capture-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.ch-email-capture h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}
.ch-email-capture p {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}
.ch-email-capture-form {
  display: flex;
  gap: 0.6rem;
  max-width: 440px;
  margin: 0 auto;
}
.ch-email-capture-input {
  flex: 1;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: #0A0A0A;
  background: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 0.75rem 1.1rem;
  outline: none;
  min-width: 0;
}
.ch-email-capture-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #0A0A0A;
  background: #00E89A;
  border: none;
  border-radius: 10px;
  padding: 0.75rem 1.35rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.18s ease;
}
.ch-email-capture-btn:hover { background: #00cc88; }
.ch-email-capture-success {
  display: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: #00E89A;
  font-weight: 600;
  margin-top: 1rem;
}
.ch-email-capture-fine {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.85rem;
}

/* ─── Pro CTA Footer Section ─────────────────────────────── */
.ch-pro-cta {
  background: #F9FAFB;
  border-top: 1px solid #E5E7EB;
  padding: 3.5rem 1.5rem;
  text-align: center;
}
.ch-pro-cta h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #0A0A0A;
  letter-spacing: -0.03em;
  margin-bottom: 0.65rem;
}
.ch-pro-cta p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: #4B5563;
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto 1.75rem;
}
.ch-pro-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}
.ch-pro-cta-primary {
  display: inline-flex;
  align-items: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  background: #00875A;
  border-radius: 10px;
  padding: 0.75rem 1.4rem;
  text-decoration: none;
  transition: background 0.18s ease;
}
.ch-pro-cta-primary:hover { background: #006B4D; }
.ch-pro-cta-secondary {
  display: inline-flex;
  align-items: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #00875A;
  background: #ffffff;
  border: 1.5px solid #00875A;
  border-radius: 10px;
  padding: 0.75rem 1.4rem;
  text-decoration: none;
  transition: all 0.18s ease;
}
.ch-pro-cta-secondary:hover { background: #f0fdf8; }

/* ───────────────────────────────────────────────────────────
   ARTICLE DETAIL PAGES — /blog/:slug, /news/:slug, /guides/:slug
   Clean reading layout: 720px max, 18px body, proper hierarchy
   ─────────────────────────────────────────────────────────── */

/* Page Header */
.ch-article-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 7.5rem 1.5rem 2.5rem;
}
.ch-article-header-inner {
  max-width: 820px;
  margin: 0 auto;
}
.ch-article-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  color: #6B7280;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.ch-article-breadcrumbs a {
  color: #6B7280;
  text-decoration: none;
  transition: color 0.15s ease;
}
.ch-article-breadcrumbs a:hover { color: #00875A; }
.ch-article-breadcrumbs span { color: #D1D5DB; font-size: 0.72rem; }
.ch-article-cat-badge {
  display: inline-flex;
  align-items: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #00643E;
  background: #E6F9F3;
  border: 1px solid #b3e6d3;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.ch-article-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #0A0A0A;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.ch-article-byline {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: #6B7280;
  flex-wrap: wrap;
}
.ch-article-byline-dot { color: #D1D5DB; }
.ch-article-author-name { color: #1F2A37; font-weight: 600; }
.ch-article-reviewed-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: #92400E;
  background: #FEF3C7;
  border: 1px solid #fcd34d;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}

/* Article Featured Image */
.ch-article-hero-img {
  width: 100%;
  max-width: 860px;
  margin: 0 auto 0;
  display: block;
  overflow: hidden;
}
.ch-article-hero-img img {
  width: 100%;
  height: auto;
  max-height: 460px;
  object-fit: cover;
  display: block;
}

/* Article Body Layout */
.ch-article-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: 720px 1fr;
  gap: 3rem;
  align-items: start;
}
.ch-article-main { min-width: 0; }
.ch-article-sidebar {
  position: sticky;
  top: 115px;
  min-width: 0;
}

/* Prose / Article Content */
.ch-prose {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #1a1a1a;
}
.ch-prose h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #0A0A0A;
  margin-top: 2.5rem;
  margin-bottom: 0.85rem;
  line-height: 1.25;
}
.ch-prose h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0A0A0A;
  margin-top: 2rem;
  margin-bottom: 0.65rem;
}
.ch-prose h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1F2A37;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.ch-prose p {
  margin-bottom: 1.4rem;
}
.ch-prose a {
  color: #00875A;
  text-decoration: underline;
  text-decoration-color: #b3e6d3;
  text-underline-offset: 2px;
  transition: color 0.15s ease;
}
.ch-prose a:hover { color: #006B4D; text-decoration-color: #006B4D; }
.ch-prose ul, .ch-prose ol {
  padding-left: 1.5rem;
  margin-bottom: 1.4rem;
}
.ch-prose li { margin-bottom: 0.5rem; }
.ch-prose strong { color: #0A0A0A; font-weight: 700; }
.ch-prose blockquote {
  border-left: 3px solid #00875A;
  padding: 0.75rem 1.25rem;
  margin: 1.75rem 0;
  background: #f0fdf8;
  border-radius: 0 8px 8px 0;
  color: #1F2A37;
  font-style: normal;
}
.ch-prose img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 1.5rem 0;
}
.ch-prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}
.ch-prose th {
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  padding: 0.65rem 0.85rem;
  text-align: left;
  font-weight: 700;
  color: #0A0A0A;
}
.ch-prose td {
  border: 1px solid #E5E7EB;
  padding: 0.65rem 0.85rem;
  color: #1F2A37;
}
.ch-prose tr:nth-child(even) td { background: #F9FAFB; }
.ch-prose code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85em;
  background: #F3F4F6;
  color: #1F2A37;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
}
.ch-prose pre {
  background: #F3F4F6;
  border-radius: 8px;
  padding: 1.25rem;
  overflow-x: auto;
  margin: 1.5rem 0;
}

/* Article Social Share */
.ch-article-share {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1.25rem 0;
  border-top: 1px solid #E5E7EB;
  border-bottom: 1px solid #E5E7EB;
  margin: 1.75rem 0 2rem;
  flex-wrap: wrap;
}
.ch-share-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-right: 0.25rem;
}
.ch-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 8px;
  border: 1.5px solid #E5E7EB;
  background: #ffffff;
  color: #374151;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s ease;
}
.ch-share-btn:hover {
  border-color: #9CA3AF;
  background: #F9FAFB;
}
.ch-share-btn.twitter:hover { color: #0f1419; border-color: #0f1419; }
.ch-share-btn.facebook:hover { color: #1877F2; border-color: #1877F2; }
.ch-share-btn.copy:hover { color: #00875A; border-color: #00875A; }

/* Mid-article CTA banner */
.ch-article-cta-banner {
  background: linear-gradient(135deg, #E6F9F3 0%, #f0fdf8 100%);
  border: 1px solid #b3e6d3;
  border-radius: 14px;
  padding: 1.5rem 1.75rem;
  margin: 2.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.ch-article-cta-banner-text h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0A0A0A;
  margin-bottom: 0.3rem;
}
.ch-article-cta-banner-text p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: #374151;
  line-height: 1.5;
  margin: 0;
}
.ch-article-cta-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  background: #00875A;
  border-radius: 10px;
  padding: 0.65rem 1.2rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.18s ease;
}
.ch-article-cta-banner-btn:hover { background: #006B4D; }

/* Article Tags */
.ch-article-tags {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 1.75rem 0;
}
.ch-article-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: #4B5563;
  background: #F3F4F6;
  border: 1px solid #E5E7EB;
  border-radius: 100px;
  padding: 0.25rem 0.7rem;
  text-decoration: none;
  transition: all 0.15s ease;
}
.ch-article-tag:hover { background: #E6F9F3; color: #00643E; border-color: #b3e6d3; }

/* Author Bio */
.ch-author-bio {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 1.35rem 1.5rem;
  margin: 2rem 0;
}
.ch-author-avatar {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: #00875A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
}
.ch-author-info { flex: 1; min-width: 0; }
.ch-author-namerow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 0.2rem;
}
.ch-author-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: #0A0A0A;
}
.ch-author-credential {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: #6B7280;
}
.ch-author-role {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: #9CA3AF;
  margin-bottom: 0.5rem;
}
.ch-author-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: #4B5563;
  line-height: 1.55;
}
.ch-attorney-badge {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  color: #92400E;
  text-align: center;
}

/* Related Content Sections */
.ch-related-section {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #E5E7EB;
}
.ch-related-section h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #0A0A0A;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.ch-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

/* Related Settlements list */
.ch-related-settlements {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.5rem;
}
.ch-related-settlement-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  padding: 0.85rem 1.1rem;
  text-decoration: none;
  transition: all 0.15s ease;
}
.ch-related-settlement-card:hover {
  border-color: #99E6CC;
  background: #f0fdf8;
}
.ch-settlement-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #0A0A0A;
}
.ch-settlement-amount {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: #6B7280;
  margin-top: 0.15rem;
}
.ch-settlement-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #00875A;
  white-space: nowrap;
}

/* Article sidebar */
.ch-article-sidebar-card {
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 1.25rem 1.35rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.ch-article-sidebar-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: #0A0A0A;
  margin-bottom: 0.7rem;
}
.ch-article-sidebar-card p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  color: #4B5563;
  line-height: 1.55;
  margin-bottom: 0.75rem;
}
.ch-sidebar-eligibility-btn {
  display: block;
  width: 100%;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  background: #00875A;
  border-radius: 10px;
  padding: 0.7rem 1rem;
  text-align: center;
  text-decoration: none;
  transition: background 0.18s ease;
}
.ch-sidebar-eligibility-btn:hover { background: #006B4D; }

/* Table of Contents (guides) */
.ch-toc {
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 1.25rem 1.35rem;
  margin-bottom: 1.25rem;
}
.ch-toc-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6B7280;
  margin-bottom: 0.75rem;
}
.ch-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: toc-counter;
}
.ch-toc-list li {
  counter-increment: toc-counter;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.3rem 0;
  border-bottom: 1px solid #F3F4F6;
}
.ch-toc-list li:last-child { border-bottom: none; }
.ch-toc-list li::before {
  content: counter(toc-counter);
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: #E6F9F3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  color: #00643E;
  margin-top: 0.15rem;
}
.ch-toc-list a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  color: #374151;
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.15s ease;
}
.ch-toc-list a:hover { color: #00875A; }

/* ─── Guides Index — hub grid ────────────────────────────── */
.ch-guides-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}
.ch-guides-section + .ch-guides-section {
  padding-top: 0;
}
.ch-guides-section-head {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #E5E7EB;
}
.ch-guides-section-head h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #0A0A0A;
  letter-spacing: -0.02em;
}
.ch-guides-section-head span {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: #9CA3AF;
  font-weight: 500;
}
.ch-guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.ch-guide-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 1.1rem 1.2rem;
  text-decoration: none;
  transition: all 0.18s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
}
.ch-guide-card:hover {
  border-color: #99E6CC;
  background: #f9fffb;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0,135,90,0.09);
}
.ch-guide-card-badge {
  display: inline-flex;
  align-items: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #00643E;
  background: #E6F9F3;
  border: 1px solid #b3e6d3;
  padding: 0.15rem 0.5rem;
  border-radius: 100px;
  margin-bottom: 0.7rem;
  width: fit-content;
}
.ch-guide-card-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: #0A0A0A;
  line-height: 1.35;
  margin-bottom: 0.45rem;
}
.ch-guide-card-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  color: #6B7280;
  line-height: 1.5;
  flex: 1;
  margin-bottom: 0.65rem;
}
.ch-guide-card-cta {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #00875A;
}

/* ─── News-specific: Settlement amount badge ──────────────── */
.ch-news-payout {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: #00643E;
  background: #E6F9F3;
  border: 1px solid #b3e6d3;
  border-radius: 100px;
  padding: 0.2rem 0.6rem;
}
.ch-news-deadline-urgent {
  display: inline-flex;
  align-items: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: #B91C1C;
  background: #FEF2F2;
  border: 1px solid #fca5a5;
  border-radius: 100px;
  padding: 0.18rem 0.55rem;
}
.ch-news-deadline-soon {
  display: inline-flex;
  align-items: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: #92400E;
  background: #FEF3C7;
  border: 1px solid #fcd34d;
  border-radius: 100px;
  padding: 0.18rem 0.55rem;
}
.ch-news-no-proof {
  display: inline-flex;
  align-items: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: #1D4ED8;
  background: #EFF6FF;
  border: 1px solid #bfdbfe;
  border-radius: 100px;
  padding: 0.18rem 0.55rem;
}

/* ─── Filing CTA (news feed inline) ─────────────────────── */
.ch-filing-cta {
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 1.5rem 1.75rem;
  margin: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.ch-filing-cta-text h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: #0A0A0A;
  margin-bottom: 0.25rem;
}
.ch-filing-cta-text p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  color: #6B7280;
  margin: 0;
  line-height: 1.5;
}
.ch-filing-cta-btn {
  display: inline-flex;
  align-items: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  background: #00875A;
  border-radius: 10px;
  padding: 0.6rem 1.2rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.18s ease;
}
.ch-filing-cta-btn:hover { background: #006B4D; }

/* ─── B2B Sidebar Card ───────────────────────────────────── */
.ch-b2b-card {
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 1rem 1.15rem;
  margin-bottom: 1rem;
}
.ch-b2b-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9CA3AF;
  margin-bottom: 0.65rem;
}
.ch-b2b-links { display: flex; flex-direction: column; gap: 0.4rem; }
.ch-b2b-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  color: #374151;
  text-decoration: none;
  padding: 0.3rem 0;
  transition: color 0.15s ease;
}
.ch-b2b-link:hover { color: #00875A; }
.ch-b2b-link span { color: #D1D5DB; font-size: 0.75rem; }

/* ─── RSS Link ───────────────────────────────────────────── */
.ch-rss-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: #6B7280;
  text-decoration: none;
  padding: 0.4rem 0;
  transition: color 0.15s ease;
}
.ch-rss-link:hover { color: #f97316; }

/* ───────────────────────────────────────────────────────────
   RESPONSIVE — Mobile 375px
   ─────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .ch-layout {
    grid-template-columns: 1fr 300px;
    gap: 1.75rem;
  }
  .ch-article-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .ch-article-sidebar {
    position: static;
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .ch-toc {
    grid-column: 1 / -1;
  }
  .ch-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ch-guides-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ch-hero { padding: 5.5rem 1rem 2rem; }
  .ch-layout {
    grid-template-columns: 1fr;
    padding: 1.5rem 1rem 3rem;
  }
  .ch-sidebar {
    position: static;
    display: none; /* Sidebar hidden on mobile; content first */
  }
  .ch-featured-card {
    grid-template-columns: 1fr;
  }
  .ch-featured-card-img-wrap {
    aspect-ratio: 16/9;
  }
  .ch-featured-card-body {
    padding: 1.25rem;
  }
  .ch-featured-card h2 {
    font-size: 1.2rem;
  }
  .ch-card-grid {
    grid-template-columns: 1fr;
  }
  .ch-newsletter-form {
    flex-direction: column;
  }
  .ch-filter-bar { top: 56px; }
  .ch-article-header { padding: 5.5rem 1rem 2rem; }
  .ch-article-layout {
    grid-template-columns: 1fr;
    padding: 1.5rem 1rem 3rem;
  }
  .ch-article-sidebar {
    display: grid;
    grid-template-columns: 1fr;
  }
  .ch-article-cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  .ch-article-cta-banner-btn { width: 100%; justify-content: center; }
  .ch-related-grid {
    grid-template-columns: 1fr;
  }
  .ch-guides-grid {
    grid-template-columns: 1fr;
  }
  .ch-filing-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .ch-filing-cta-btn { width: 100%; justify-content: center; }
  .ch-pro-cta-btns { flex-direction: column; align-items: stretch; }
  .ch-pro-cta-primary,
  .ch-pro-cta-secondary { justify-content: center; }
  .ch-email-capture-form { flex-direction: column; }
  .ch-email-capture-btn { width: 100%; justify-content: center; }
  .ch-author-bio {
    flex-direction: column;
    gap: 0.75rem;
  }
  .ch-attorney-badge { flex-direction: row; gap: 0.3rem; }
  .ch-guides-section { padding: 1.5rem 1rem; }
  .ch-guides-section-head { flex-direction: column; gap: 0.25rem; }
}

@media (max-width: 480px) {
  .ch-hero h1 { font-size: 1.6rem; }
  .ch-article-title { font-size: 1.5rem; }
  .ch-prose { font-size: 0.97rem; }
  .ch-related-grid {
    grid-template-columns: 1fr;
  }
}
