/* 50 Plus Hub — Article Page: Layout, Typography & Components */

/* ── Article Layout: 2-column grid ── */
.article-layout {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 48px;
  align-items: start;
}
.article-layout .article-main {
  min-width: 0;
}

@media (max-width: 1024px) {
  .article-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ── Breadcrumbs ── */
.breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--link); }
.breadcrumb .sep { color: var(--border); }

/* ── Article Header ── */
.article-header {
  margin-bottom: 32px;
}
.article-header .cat-badge {
  margin-bottom: 12px;
}
.article-header h1 {
  font-size: 2.2rem;
  margin-bottom: 16px;
  max-width: 800px;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.95rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.article-meta .author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.article-meta .author-name { font-weight: 600; color: var(--text); }
.article-meta .meta-sep { color: var(--border); }
.article-meta .meta-btn {
  background: var(--bg-light);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s, color 0.2s;
}
.article-meta .meta-btn:hover {
  background: var(--link);
  color: #fff;
  border-color: var(--link);
}

/* ── Key Takeaways Box ── */
.key-takeaways {
  background: linear-gradient(135deg, #EEF6FF 0%, #F0F7FF 100%);
  border: 2px solid #B3D4FC;
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 24px 0 32px;
}
.key-takeaways h2 {
  font-size: 1.15rem;
  margin: 0 0 14px;
  color: var(--link);
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.key-takeaways ul {
  margin: 0;
  padding-left: 1.2em;
  list-style: disc;
}
.key-takeaways li {
  margin-bottom: 8px;
  line-height: 1.6;
}
.key-takeaways li:last-child { margin-bottom: 0; }

/* ── Table of Contents (Sidebar — Desktop) ── */
.article-toc {
  position: sticky;
  top: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow);
}
.article-toc h2 {
  font-size: 1rem;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin: 0 0 12px;
}
.article-toc ol {
  margin: 0;
  padding-left: 1.2em;
  list-style: decimal;
}
.article-toc li {
  margin-bottom: 10px;
}
.article-toc a {
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.4;
  transition: color 0.15s;
}
.article-toc a:hover {
  color: var(--link);
  text-decoration: none;
}
.article-toc li.active a {
  color: var(--link);
  font-weight: 700;
}

/* TOC — Mobile: collapsible box at top of article */
.article-toc-mobile {
  display: none;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin: 0 0 28px;
  overflow: hidden;
}
.article-toc-mobile .toc-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  background: var(--bg-light);
  border: none;
  width: 100%;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-sans);
  color: var(--text);
}
.article-toc-mobile .toc-toggle::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 700;
  transition: transform 0.2s;
}
.article-toc-mobile.open .toc-toggle::after {
  content: '\2212';
}
.article-toc-mobile .toc-list {
  display: none;
  padding: 16px 20px 16px 40px;
  list-style: decimal;
  margin: 0;
}
.article-toc-mobile.open .toc-list {
  display: block;
}
.article-toc-mobile .toc-list li {
  margin-bottom: 10px;
}
.article-toc-mobile .toc-list a {
  color: var(--text);
  font-size: 0.95rem;
}
.article-toc-mobile .toc-list a:hover {
  color: var(--link);
}

@media (max-width: 1024px) {
  .article-toc { display: none; }
  .article-toc-mobile { display: block; }
}

/* ── Article Body ── */
.article-body {
  max-width: 740px;
}
.article-body p {
  margin-bottom: 1.5em;
}
.article-body h2 {
  font-size: 1.5rem;
  margin-top: 2em;
  margin-bottom: 0.8em;
  scroll-margin-top: 24px;
}
.article-body h3 {
  font-size: 1.2rem;
  margin-top: 1.5em;
  margin-bottom: 0.6em;
}
.article-body ul, .article-body ol {
  margin-bottom: 1.5em;
  padding-left: 1.5em;
  list-style: disc;
}
.article-body ol { list-style: decimal; }
.article-body li {
  margin-bottom: 0.5em;
  line-height: 1.7;
}
.article-body blockquote {
  border-left: 4px solid var(--link);
  padding: 16px 24px;
  margin: 1.5em 0;
  background: var(--bg-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
}
.article-body img {
  border-radius: var(--radius);
  margin: 1.5em 0;
}
.article-body a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Stat Callout ── */
.stat-callout {
  background: var(--bg-warm);
  border-left: 5px solid var(--link);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 1.5em 0;
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}
.stat-callout .stat-number {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--link);
  line-height: 1;
  white-space: nowrap;
}
.stat-callout .stat-text {
  font-size: 1rem;
  color: var(--text);
  flex: 1;
  min-width: 200px;
}
.stat-callout .stat-source {
  font-size: 0.85rem;
  color: var(--text-muted);
  width: 100%;
  margin-top: 4px;
}

/* ── Step Cards ── */
.step-card {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 16px;
  align-items: flex-start;
}
.step-card .step-num {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--link);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  font-family: var(--font-serif);
}
.step-card .step-content h3 {
  font-size: 1.1rem;
  margin: 0 0 6px;
}
.step-card .step-content p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Comparison Table ── */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
  font-size: 0.95rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.comparison-table thead th {
  background: var(--nav-bg);
  color: #fff;
  padding: 14px 16px;
  text-align: left;
  font-weight: 700;
  font-size: 0.95rem;
}
.comparison-table tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.comparison-table tbody tr:nth-child(even) {
  background: var(--bg-light);
}
.comparison-table tbody tr:hover {
  background: #EEF3FA;
}

/* Responsive table wrapper */
.table-wrap {
  overflow-x: auto;
  margin: 1.5em 0;
  -webkit-overflow-scrolling: touch;
}

/* ── Chart Container ── */
.chart-container {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin: 1.5em 0;
}
.chart-container h3 {
  font-size: 1.1rem;
  margin: 0 0 16px;
  text-align: center;
}
.chart-container svg {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

/* Horizontal bar chart */
.bar-chart .bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.bar-chart .bar-label {
  min-width: 120px;
  font-size: 0.9rem;
  text-align: right;
  color: var(--text);
}
.bar-chart .bar-track {
  flex: 1;
  height: 28px;
  background: var(--bg-light);
  border-radius: 4px;
  overflow: hidden;
}
.bar-chart .bar-fill {
  height: 100%;
  border-radius: 4px;
  background: var(--link);
  display: flex;
  align-items: center;
  padding-left: 8px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  transition: width 0.6s ease;
}

/* ── FAQ Section ── */
.faq-section {
  margin: 2.5em 0;
  border-top: 2px solid var(--border);
  padding-top: 2em;
}
.faq-section > h2 {
  font-size: 1.5rem;
  margin-bottom: 1em;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item .faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  margin: 0;
  font-size: 1.05rem;
  font-family: var(--font-sans);
  cursor: pointer;
  background: var(--bg-light);
  border: none;
  width: 100%;
  text-align: left;
  color: var(--text);
  font-weight: 600;
  transition: background 0.15s;
  min-height: 48px;
}
.faq-item .faq-q:hover {
  background: #E8E6E1;
}
.faq-item .faq-q::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--link);
  flex-shrink: 0;
  margin-left: 12px;
  transition: transform 0.2s;
}
.faq-item.open .faq-q::after {
  content: '\2212';
}
.faq-item .faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-a {
  max-height: 600px;
}
.faq-item .faq-a-inner {
  padding: 16px 20px 20px;
  line-height: 1.7;
}

/* ── Tool Widget ── */
.tool-widget {
  background: linear-gradient(135deg, #F5F9FF 0%, #FAFBFF 100%);
  border: 2px solid var(--link);
  border-radius: var(--radius);
  padding: 28px;
  margin: 2em 0;
}
.tool-widget h3 {
  font-size: 1.2rem;
  margin: 0 0 16px;
  color: var(--link);
}
.tool-widget label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.95rem;
}
.tool-widget input[type="number"],
.tool-widget input[type="text"],
.tool-widget select {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  margin-bottom: 16px;
  font-family: var(--font-sans);
}
.tool-widget input:focus,
.tool-widget select:focus {
  border-color: var(--link);
  outline: none;
}
.tool-widget .tool-btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--link);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.tool-widget .tool-btn:hover {
  background: #0e4a8a;
}
.tool-widget .tool-result {
  margin-top: 20px;
  padding: 20px;
  background: var(--white);
  border: 2px solid #B3D4FC;
  border-radius: var(--radius);
  display: none;
}
.tool-widget .tool-result.visible {
  display: block;
}
.tool-widget .tool-result .result-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--link);
  font-family: var(--font-serif);
}
.tool-widget .tool-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) {
  .tool-widget .tool-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Pro Tip Box ── */
.pro-tip {
  border-left: 5px solid #2E7D32;
  background: #F1F8E9;
  padding: 16px 20px;
  margin: 1.5em 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.pro-tip strong {
  color: #2E7D32;
  display: block;
  margin-bottom: 4px;
}

/* ── Warning Box ── */
.warning-box {
  border-left: 5px solid #E65100;
  background: #FFF3E0;
  padding: 16px 20px;
  margin: 1.5em 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.warning-box strong {
  color: #BF360C;
  display: block;
  margin-bottom: 4px;
}

/* ── Video Embed (16:9) ── */
.video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  margin: 1.5em 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
}
.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── Product Recommendation Card ── */
.product-rec {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin: 1.5em 0;
  align-items: center;
}
.product-rec .product-img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: var(--radius);
}
.product-rec .product-info {
  flex: 1;
}
.product-rec .product-info h4 {
  font-size: 1.05rem;
  margin: 0 0 6px;
}
.product-rec .product-info p {
  margin: 0 0 10px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}
.product-rec .product-info .product-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--link);
  margin-right: 12px;
}
.product-rec .product-info .btn {
  font-size: 0.9rem;
  padding: 8px 20px;
}
@media (max-width: 600px) {
  .product-rec {
    flex-direction: column;
    text-align: center;
  }
  .product-rec .product-img {
    margin: 0 auto;
  }
}

/* ── Source List ── */
.source-list {
  margin: 2em 0;
  padding-top: 1.5em;
  border-top: 1px solid var(--border);
}
.source-list h2 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}
.source-list ol {
  padding-left: 1.5em;
  list-style: decimal;
  margin: 0;
}
.source-list li {
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.source-list a {
  color: var(--link);
  word-break: break-word;
}

/* ── Print & TTS Buttons ── */
.print-btn,
.tts-btn {
  background: var(--bg-light);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s, color 0.2s;
}
.print-btn:hover,
.tts-btn:hover {
  background: var(--link);
  color: #fff;
  border-color: var(--link);
}

/* ── TTS Controls ── */
.tts-controls {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin: 16px 0;
  flex-wrap: wrap;
}
.tts-controls.visible {
  display: flex;
}
.tts-controls button {
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  min-width: 44px;
  min-height: 44px;
}
.tts-controls button:hover {
  background: var(--link);
  color: #fff;
  border-color: var(--link);
}
.tts-controls label {
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.tts-controls input[type="range"] {
  width: 100px;
}

/* ── Floating Accessibility Bar ── */
.accessibility-bar {
  position: fixed;
  bottom: 32px;
  right: 92px;
  display: flex;
  gap: 4px;
  background: var(--white);
  padding: 6px 10px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  z-index: 998;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
.accessibility-bar.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.accessibility-bar button {
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--bg-light);
  cursor: pointer;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  min-width: 44px;
  min-height: 44px;
  transition: background 0.15s, color 0.15s;
}
.accessibility-bar button.active {
  background: var(--link);
  color: #fff;
  border-color: var(--link);
}
.accessibility-bar button:hover {
  background: var(--link);
  color: #fff;
  border-color: var(--link);
}

/* ── Exercise Timer Widget ── */
.timer-widget {
  text-align: center;
  padding: 24px;
  background: var(--white);
  border: 2px solid var(--link);
  border-radius: var(--radius);
  margin: 1.5em 0;
}
.timer-widget .timer-display {
  font-size: 3.5rem;
  font-weight: 800;
  font-family: var(--font-serif);
  color: var(--link);
  margin: 16px 0;
  font-variant-numeric: tabular-nums;
}
.timer-widget .timer-reps {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.timer-widget button {
  padding: 12px 28px;
  margin: 0 6px;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
}
.timer-widget .timer-start {
  background: #2E7D32;
  color: #fff;
}
.timer-widget .timer-start:hover { background: #256d2a; }
.timer-widget .timer-pause {
  background: #E65100;
  color: #fff;
}
.timer-widget .timer-pause:hover { background: #cc4700; }
.timer-widget .timer-reset {
  background: var(--bg-light);
  border: 1px solid var(--border);
  color: var(--text);
}

/* ── Printable Checklist ── */
.checklist {
  background: var(--white);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin: 1.5em 0;
}
.checklist h3 {
  margin: 0 0 16px;
  font-size: 1.1rem;
}
.checklist label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  cursor: pointer;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--bg-light);
  min-height: 44px;
}
.checklist label:last-of-type { border-bottom: none; }
.checklist input[type="checkbox"] {
  width: 22px;
  height: 22px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--link);
}
.checklist .checklist-print-btn {
  margin-top: 16px;
  display: inline-block;
}

/* ── Image Gallery ── */
.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin: 1.5em 0;
}
.image-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.2s;
}
.image-gallery img:hover {
  transform: scale(1.02);
}
.image-gallery figcaption {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 6px;
}

/* ── Affiliate Disclosure Inline ── */
.affiliate-note {
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 24px 0;
}
.affiliate-note a { font-weight: 600; }

/* ── Article Share Section ── */
.article-share {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  margin: 32px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.article-share span {
  font-weight: 700;
  font-size: 0.95rem;
}

/* ── Related Articles ── */
.related-articles {
  padding: 48px 0;
}
.related-articles h2 {
  margin-bottom: 24px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ── Article Newsletter CTA ── */
.article-cta {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  margin: 32px 0;
}
.article-cta h3 { margin-bottom: 8px; }
.article-cta p { margin-bottom: 16px; color: var(--text-muted); }
.article-cta form {
  display: flex;
  max-width: 400px;
  margin: 0 auto;
  gap: 0;
}
.article-cta form input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  font-size: 0.95rem;
}
.article-cta form button {
  padding: 12px 20px;
  background: var(--link);
  color: #fff;
  border: none;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-weight: 700;
  cursor: pointer;
}

/* ── Internal Cross-Links ── */
.related-reading {
  background: var(--bg-warm);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 2em 0;
}
.related-reading h3 {
  font-size: 1rem;
  margin: 0 0 12px;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}
.related-reading ul {
  margin: 0;
  padding-left: 1.2em;
  list-style: disc;
}
.related-reading li {
  margin-bottom: 8px;
}
.related-reading a {
  font-weight: 600;
}

/* ── Responsive Article ── */
@media (max-width: 768px) {
  .article-header h1 { font-size: 1.6rem; }
  .related-grid { grid-template-columns: 1fr; }
  .stat-callout { flex-direction: column; gap: 8px; }
  .stat-callout .stat-number { font-size: 2rem; }
  .step-card { flex-direction: column; gap: 12px; }
  .bar-chart .bar-label { min-width: 80px; font-size: 0.85rem; }
}

@media (max-width: 480px) {
  .tool-widget { padding: 20px 16px; }
  .key-takeaways { padding: 18px 16px; }
  .faq-item .faq-q { padding: 14px 16px; font-size: 1rem; }
}

/* ── Enhanced Print Styles ── */
@media print {
  .article-toc,
  .article-toc-mobile,
  .accessibility-bar,
  .tts-controls,
  .tts-btn,
  .print-btn,
  .timer-widget button,
  .tool-widget .tool-btn,
  .video-embed,
  .article-share,
  .article-cta { display: none !important; }

  .article-layout {
    display: block;
  }
  .article-body {
    max-width: 100%;
  }
  .faq-item .faq-a {
    max-height: none !important;
    overflow: visible !important;
  }
  .comparison-table { font-size: 10pt; }
  .stat-callout { break-inside: avoid; }
  .step-card { break-inside: avoid; }
}
