/*
 * blog.css — Shared styles for all blog article pages
 * Extracted from inline <style> blocks duplicated across 100+ blog pages.
 * Works alongside common.css which provides base layout, header, footer,
 * breadcrumb, financial-disclaimer, skip-nav, cookie-consent, and print styles.
 *
 * Improves content-to-code ratio for Google AdSense compliance
 * and enables browser caching of blog-specific CSS.
 */

/* ===== Blog Hero Image Section ===== */
.blog-hero {
  position: relative;
  width: 100%;
  height: 350px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 30px;
}

.blog-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 30px 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.blog-hero-category {
  display: inline-block;
  background: var(--rainbow-grad);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.blog-hero-title {
  color: white;
  font-size: 36px;
  margin: 0 0 12px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.blog-hero-meta {
  display: flex;
  gap: 16px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

/* ===== Blog Main Layout (article + sidebar grid) ===== */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 900px) {
  .blog-layout {
    grid-template-columns: 1fr 320px;
  }
}

/* ===== Article Content ===== */
article.blog-post {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 40px;
  box-shadow: var(--shadow-2);
  position: relative;
  overflow: hidden;
}

article.blog-post::after {
  content: "";
  position: absolute;
  right: -10%;
  top: -20%;
  width: 50%;
  height: 150%;
  background: linear-gradient(120deg, rgba(255, 95, 109, 0.04), rgba(255, 195, 113, 0.04), rgba(161, 139, 250, 0.04));
  transform: rotate(20deg);
  pointer-events: none;
}

.blog-content {
  position: relative;
  z-index: 1;
}

.blog-content h2 {
  font-size: 24px;
  margin: 32px 0 16px;
  color: var(--text);
  letter-spacing: -0.3px;
}

.blog-content h3 {
  font-size: 20px;
  margin: 24px 0 12px;
  color: var(--text);
}

.blog-content p {
  margin: 0 0 16px;
  line-height: 1.7;
}

.blog-content ul,
.blog-content ol {
  margin: 0 0 16px;
  padding-left: 28px;
}

.blog-content li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.blog-content strong {
  color: var(--text);
  font-weight: 700;
}

.blog-content a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}

.blog-content a:hover {
  text-decoration: underline;
}

/* ===== Highlight & Tip Boxes ===== */
.highlight-box {
  background: linear-gradient(135deg, rgba(255, 95, 109, 0.08), rgba(161, 139, 250, 0.08));
  border-left: 4px solid var(--rainbow-1);
  padding: 20px;
  border-radius: 8px;
  margin: 24px 0;
}

.tip-box {
  background: linear-gradient(135deg, rgba(123, 228, 149, 0.1), rgba(102, 217, 255, 0.1));
  border-left: 4px solid var(--rainbow-4);
  padding: 20px;
  border-radius: 8px;
  margin: 24px 0;
}

/* ===== Sidebar ===== */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-section {
  background: linear-gradient(180deg, #ffffff, #fff);
  border-radius: 14px;
  padding: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 30px rgba(12, 18, 32, 0.04);
}

.sidebar-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid transparent;
  border-image: var(--rainbow-grad) 1;
}

.sidebar-blog-card {
  display: flex;
  gap: 12px;
  padding: 12px;
  background: linear-gradient(145deg, #ffffff, #f8faff);
  border-radius: 12px;
  border: 1px solid rgba(12, 18, 32, 0.06);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  margin-bottom: 12px;
}

.sidebar-blog-card:last-child {
  margin-bottom: 0;
}

.sidebar-blog-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(12, 18, 32, 0.08);
}

.sidebar-blog-img {
  width: 80px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.sidebar-blog-content {
  flex: 1;
  min-width: 0;
}

.sidebar-blog-category {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: var(--rainbow-6);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.sidebar-blog-title {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== Share Buttons ===== */
.share-buttons {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 24px 0;
  padding: 16px 0;
  border-top: 1px solid var(--border, #e5e7eb);
}

.share-buttons span {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text, #081124);
}

.share-buttons button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 8px;
  background: var(--glass, #f8f9fa);
  border: 1px solid var(--border, #e5e7eb);
  color: var(--text, #081124);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.share-buttons button:hover {
  background: var(--border, #e5e7eb);
}

.share-buttons a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  transition: opacity 0.2s;
}

.share-buttons a:hover {
  opacity: 0.85;
}

/* ===== Author Byline ===== */
.author-byline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* ===== Freshness Badge ===== */
.freshness-badge {
  display: inline-block;
  background: linear-gradient(135deg, #7be495, #66d9ff);
  color: #081124;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: 10px;
}

/* ===== Table of Contents Container ===== */
.toc-container {
  background: var(--glass, #f8f9fa);
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 28px;
}

.toc-container summary {
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  color: var(--text, #081124);
  margin-bottom: 10px;
}

.toc-container ol {
  padding-left: 20px;
  margin: 0;
  line-height: 1.9;
}

.toc-container a {
  color: var(--muted, #6b7280);
  text-decoration: none;
}

.toc-container a:hover {
  color: var(--text, #081124);
  text-decoration: underline;
}

/* ===== Key Takeaways Box ===== */
.key-takeaways-box {
  background: linear-gradient(135deg, #f0fdf4, #ecfeff);
  border: 2px solid #86efac;
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 24px;
}

.key-takeaways-box h3 {
  margin: 0 0 10px 0;
  font-size: 1rem;
  color: #166534;
  display: flex;
  align-items: center;
  gap: 8px;
}

.key-takeaways-box p {
  margin: 0 0 10px 0;
  font-size: 0.92rem;
  color: #15803d;
}

.key-takeaways-box ul {
  margin: 0;
  padding-left: 20px;
  font-size: 0.88rem;
  color: #166534;
  line-height: 1.7;
}

/* ===== Sidebar (P2 blog pages) ===== */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-1);
}

.sidebar-card h4 {
  margin: 0 0 12px;
  font-size: 15px;
  color: var(--text);
}

.sidebar-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.88rem;
  line-height: 2;
}

.sidebar-card a {
  color: var(--muted);
  text-decoration: none;
}

.sidebar-card a:hover {
  color: var(--text);
}

/* ===== Calculator Section (bottom of blog posts) ===== */
.calculators-section {
  margin-top: 40px;
  background: linear-gradient(180deg, #ffffff, #fff);
  border-radius: 14px;
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 30px rgba(12, 18, 32, 0.04);
}

.calculators-section h2 {
  font-size: 22px;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid transparent;
  border-image: var(--rainbow-grad) 1;
}

.calc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.calc-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border-radius: 12px;
  border: 2px solid rgba(12, 18, 32, 0.06);
  background: linear-gradient(145deg, #ffffff, #f8faff);
  transition: all 0.24s ease;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}

.calc-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: var(--rainbow-grad);
}

.calc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(12, 18, 32, 0.1);
}

.calc-meta {
  display: flex;
  gap: 12px;
  align-items: center;
}

.calc-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4));
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--text);
  border: 2px solid rgba(12, 18, 32, 0.06);
  font-size: 14px;
}

.calc-info .title {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 4px;
}

.calc-info .desc {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

.calc-card .chev {
  width: 18px;
  height: 18px;
  opacity: 0.6;
}

/* ===== Quick Answer Block ===== */
.quick-answer {
  background: linear-gradient(135deg, rgba(102, 217, 255, 0.08), rgba(123, 228, 149, 0.08));
  border-left: 4px solid var(--rainbow-5);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 20px 0;
  position: relative;
}

.quick-answer-label {
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--rainbow-5);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.quick-answer p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
}

/* ===== Stat Callout Blocks ===== */
.stat-callout {
  background: linear-gradient(135deg, rgba(255, 95, 109, 0.06), rgba(161, 139, 250, 0.06));
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 24px 0;
  text-align: center;
  border: 1px solid rgba(161, 139, 250, 0.12);
}

.stat-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}

.stat-source {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

/* ===== Key Terms Section ===== */
.key-terms-section {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 32px 0;
  border: 1px solid var(--border);
}

.key-terms-section h2 {
  font-size: 20px;
  margin: 0 0 20px;
  color: var(--text);
}

.key-terms-grid {
  display: grid;
  gap: 16px;
}

.key-term dt {
  font-weight: 700;
  font-size: 15px;
  color: var(--rainbow-6);
  margin-bottom: 4px;
}

.key-term dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

/* ===== Comparison Table ===== */
.comparison-table-wrap {
  overflow-x: auto;
  margin: 24px 0;
  border-radius: var(--radius-md, 12px);
  border: 1px solid var(--border, rgba(9, 16, 28, 0.06));
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.comparison-table caption {
  padding: 12px 16px;
  font-size: 13px;
  color: var(--muted, #6b7280);
  text-align: left;
  border-bottom: 1px solid var(--border, rgba(9, 16, 28, 0.06));
}

.comparison-table th {
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
  font-size: 13px;
  border-bottom: 2px solid var(--border, rgba(9, 16, 28, 0.1));
}

.comparison-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border, rgba(9, 16, 28, 0.06));
  font-size: 13px;
  line-height: 1.5;
}

.comparison-table tbody tr:hover {
  background: rgba(102, 217, 255, 0.04);
}

/* ===== Glossary Tooltip System ===== */
.glossary-term {
  border-bottom: 1.5px dashed #667eea;
  cursor: help;
  position: relative;
  color: inherit;
  font-weight: inherit;
  background: linear-gradient(to bottom, transparent 60%, rgba(102, 126, 234, 0.1) 60%);
  padding: 0 2px;
  border-radius: 2px;
  transition: background 0.2s;
}

.glossary-term:hover {
  background: rgba(102, 126, 234, 0.12);
}

.glossary-tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #1a202c;
  color: #e2e8f0;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.82rem;
  line-height: 1.5;
  white-space: normal;
  width: 280px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
  font-weight: 400;
}

.glossary-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #1a202c;
}

.glossary-term:hover .glossary-tooltip {
  opacity: 1;
  pointer-events: auto;
}

.glossary-tooltip strong {
  color: #7be495;
  font-weight: 700;
  display: block;
  margin-bottom: 3px;
  font-size: 0.85rem;
}

/* ===== Topic Cluster Navigation ===== */
.topic-cluster-nav {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin: 32px 0;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-1);
}

.topic-cluster-nav h3 {
  font-size: 18px;
  margin: 0 0 16px;
  color: var(--text);
}

.cluster-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cluster-links a {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(102, 217, 255, 0.06), rgba(161, 139, 250, 0.06));
  border-radius: 20px;
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--border);
  transition: all 0.2s;
}

.cluster-links a:hover {
  background: linear-gradient(135deg, rgba(102, 217, 255, 0.15), rgba(161, 139, 250, 0.12));
  border-color: var(--rainbow-5);
}

/* ===== Further Reading ===== */
.further-reading {
  background: linear-gradient(135deg, rgba(123, 228, 149, 0.06), rgba(102, 217, 255, 0.06));
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 24px 0;
}

.further-reading h3 {
  font-size: 17px;
  margin: 0 0 12px;
  color: var(--text);
}

.further-reading ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.further-reading li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.further-reading li:last-child {
  border-bottom: none;
}

.further-reading a {
  color: var(--rainbow-6);
  text-decoration: none;
  font-weight: 600;
}

.further-reading a:hover {
  text-decoration: underline;
}

/* ===== Related Calculators Inline ===== */
.related-calcs-inline {
  background: linear-gradient(135deg, rgba(102, 217, 255, 0.06), rgba(161, 139, 250, 0.06));
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 24px 0;
  border: 1px solid var(--border);
}

.related-calcs-inline h3 {
  font-size: 17px;
  margin: 0 0 14px;
  color: var(--text);
}

.related-calcs-inline-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.related-calcs-inline-grid a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--surface, #fff);
  border-radius: 10px;
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--border);
  transition: all 0.2s;
}

.related-calcs-inline-grid a:hover {
  border-color: var(--rainbow-5);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}

.related-calcs-inline-grid a::before {
  content: "\1F4CA";
  font-size: 14px;
}

/* ===== Pillar Page Cross-References ===== */
.pillar-crossref {
  background: linear-gradient(135deg, rgba(255, 95, 109, 0.04), rgba(255, 195, 113, 0.04), rgba(161, 139, 250, 0.04));
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin: 36px 0;
  border: 1px solid var(--border);
}

.pillar-crossref h3 {
  font-size: 20px;
  margin: 0 0 18px;
  background: var(--rainbow-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pillar-crossref-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.pillar-crossref-grid a {
  display: block;
  padding: 16px 20px;
  background: var(--surface, #fff);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
}

.pillar-crossref-grid a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: var(--rainbow-5);
}

.pillar-crossref-grid a strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-size: 15px;
}

.pillar-crossref-grid a span {
  font-size: 13px;
  color: var(--muted);
}

/* ===== Blog-specific Responsive Breakpoints ===== */
@media (max-width: 720px) {
  .blog-hero {
    height: 250px;
  }

  .blog-hero-title {
    font-size: 26px;
  }

  article.blog-post {
    padding: 24px;
  }

  .blog-content h2 {
    font-size: 22px;
  }

  .blog-content h3 {
    font-size: 18px;
  }

  .share-buttons {
    flex-wrap: wrap;
  }

  .toc-container {
    padding: 16px 18px;
  }

  .key-takeaways-box {
    padding: 16px 18px;
  }
}

@media (max-width: 600px) {
  .glossary-tooltip {
    width: 220px;
    font-size: 0.78rem;
    left: 0;
    transform: none;
  }
}

/* ===== Body Line-Height Override ===== */
/* Blog pages use 1.65 line-height vs common.css 1.55 for better readability */
body {
  line-height: 1.65;
}

/* ===== P2 Blog Template Variants ===== */
/* P2 blog pages use slightly different styles. Add class "blog-p2" to <body> or wrapper. */

.blog-p2 .blog-hero {
  height: 300px;
  background: linear-gradient(135deg, rgba(102,126,234,0.08), rgba(161,139,250,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-p2 .blog-hero-category {
  background: #e0f2fe;
  color: #0284c7;
}

.blog-p2 .blog-hero-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}

.blog-p2 .blog-layout {
  gap: 32px;
}

@media(min-width: 900px) {
  .blog-p2 .blog-layout {
    grid-template-columns: 1fr 300px;
  }
}

.blog-p2 .blog-content h2 {
  border-bottom: 2px solid var(--border);
  padding-bottom: 8px;
}

.blog-p2 .blog-content p {
  color: var(--muted);
  line-height: 1.8;
}

.blog-p2 .highlight-box {
  border-left-color: var(--rainbow-6);
}

.blog-p2 .tip-box {
  border-left: none;
  border: 1px solid rgba(123,228,149,0.2);
}

/* ===== Print Styles (blog-specific) ===== */
@media print {
  .glossary-tooltip,
  .topic-cluster-nav,
  .pillar-crossref,
  .related-calcs-inline,
  .calculators-section,
  .key-takeaways-box,
  .quick-answer {
    break-inside: avoid;
  }
  .glossary-term {
    border-bottom: none;
    background: none;
  }
  .glossary-term .glossary-tooltip {
    display: none !important;
  }
}

/* === Enhanced Content: Case Studies === */
.case-study {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}
.case-study h4 {
    color: var(--primary, #1a56db);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}
.case-study .outcome {
    background: #f0fdf4;
    border-left: 4px solid #22c55e;
    padding: 0.75rem 1rem;
    margin-top: 1rem;
    border-radius: 0 8px 8px 0;
    font-weight: 600;
}

/* === Enhanced Content: Expert Tips === */
.expert-tip-callout {
    display: flex;
    gap: 1rem;
    background: #eff6ff;
    border: 1px solid #93c5fd;
    border-radius: 12px;
    padding: 1.25rem;
    margin: 1.5rem 0;
}
.expert-tip-callout .tip-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}
.expert-tip-callout .tip-author {
    font-size: 0.85rem;
    color: #6b7280;
    font-style: italic;
}

/* === Enhanced Content: Action Checklist === */
.action-checklist {
    background: #fffbeb;
    border: 1px solid #fbbf24;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}
.action-checklist h3 { margin-top: 0; color: #92400e; }
.action-checklist ul { list-style: none; padding: 0; }
.action-checklist li {
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
    border-bottom: 1px solid #fef3c7;
}
.action-checklist li::before {
    content: "\2610";
    position: absolute;
    left: 0;
    color: #d97706;
}

/* === Enhanced Content: Compare Callout === */
.compare-cta {
    background: linear-gradient(135deg, #eff6ff, #faf5ff);
    border: 2px solid #8b5cf6;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: center;
}
.compare-cta a {
    display: inline-block;
    background: #7c3aed;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 0.75rem;
    font-weight: 600;
}
