/* ==========================================================================
   MeuTrace — Bold Playful Theme
   ========================================================================== */

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; line-height: 1.6; color: #1a1a1a; background: #fff8e7; min-height: 100vh; -webkit-font-smoothing: antialiased; }
img, svg { max-width: 100%; display: block; height: auto; }
a { color: #d4581c; text-decoration: none; font-weight: 700; }
a:hover { text-decoration: underline; text-decoration-thickness: 3px; text-underline-offset: 4px; }
button { font-family: inherit; cursor: pointer; }

/* Typography */
:root {
  --bg: #fff8e7;
  --bg-alt: #ffe9b0;
  --ink: #1a1a1a;
  --ink-soft: #4a4a4a;
  --primary: #ff5c2c;
  --primary-dark: #d4581c;
  --accent: #2dd4bf;
  --pink: #ff77a9;
  --purple: #9b6dff;
  --green: #4ade80;
  --yellow: #fbbf24;
  --blue: #60a5fa;
  --border: #1a1a1a;
  --shadow: 6px 6px 0 #1a1a1a;
  --shadow-sm: 3px 3px 0 #1a1a1a;
  --shadow-lg: 8px 8px 0 #1a1a1a;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;
}

h1, h2, h3, h4 { font-family: 'Nunito', sans-serif; font-weight: 900; line-height: 1.15; letter-spacing: -0.02em; color: var(--ink); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin: 2.5rem 0 1rem; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); margin: 1.5rem 0 0.75rem; }
h4 { font-size: 1.1rem; margin: 1rem 0 0.5rem; }
p { margin-bottom: 1.1rem; font-size: 1.05rem; }
strong { font-weight: 800; }

/* Container */
.container { max-width: 1180px; margin: 0 auto; padding: 0 1.25rem; }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 1.25rem; }

/* Header */
.site-header { background: var(--bg); border-bottom: 4px solid var(--ink); padding: 1rem 0; position: sticky; top: 0; z-index: 100; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.logo { display: flex; align-items: center; gap: 0.5rem; font-size: 1.6rem; font-weight: 900; color: var(--ink); letter-spacing: -0.03em; text-decoration: none; }
.logo:hover { text-decoration: none; }
.logo-icon { width: 44px; height: 44px; background: var(--primary); border: 3px solid var(--ink); border-radius: 14px; display: grid; place-items: center; color: #fff; font-weight: 900; font-size: 1.5rem; box-shadow: var(--shadow-sm); transform: rotate(-4deg); }
.nav-main { display: flex; gap: 1.25rem; align-items: center; }
.nav-main a { color: var(--ink); font-weight: 800; font-size: 0.95rem; padding: 0.5rem 0; position: relative; text-decoration: none; }
.nav-main a:hover { color: var(--primary); text-decoration: none; }
.nav-main a:hover::after { content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 4px; background: var(--primary); border-radius: 4px; }
.menu-toggle { display: none; background: var(--ink); color: #fff; border: 3px solid var(--ink); border-radius: 12px; padding: 0.5rem 0.9rem; font-weight: 800; font-size: 0.95rem; }

/* Hero — entity pages */
.hero-entity { padding: 2.5rem 0 1rem; }
.hero-entity .badge-cat { display: inline-block; background: var(--yellow); border: 3px solid var(--ink); border-radius: var(--radius-pill); padding: 0.35rem 1rem; font-weight: 800; font-size: 0.85rem; margin-bottom: 1rem; box-shadow: var(--shadow-sm); }
.hero-entity h1 { margin-bottom: 0.75rem; }
.hero-entity .lede { font-size: 1.15rem; color: var(--ink-soft); max-width: 720px; }

/* Category color variants on badge */
.cat-transportadoras .badge-cat { background: var(--yellow); }
.cat-marketplaces .badge-cat { background: var(--pink); }
.cat-internacional .badge-cat { background: var(--purple); color: #fff; }
.cat-veicular .badge-cat { background: var(--green); }
.cat-cartoes .badge-cat { background: var(--primary); color: #fff; }
.cat-onibus .badge-cat { background: var(--accent); }
.cat-ferramentas .badge-cat { background: var(--blue); color: #fff; }

/* Tracker card */
.tracker-card { background: #fff; border: 4px solid var(--ink); border-radius: var(--radius-lg); padding: 1.75rem; box-shadow: var(--shadow-lg); margin: 1.5rem 0 2rem; max-width: 720px; }
.tracker-card h2 { font-size: 1.4rem; margin: 0 0 1rem; }
.tracker-form { display: flex; flex-direction: column; gap: 0.85rem; }
.tracker-form label { font-weight: 800; font-size: 0.95rem; }
.tracker-input { width: 100%; padding: 0.95rem 1.1rem; font-size: 1.05rem; font-family: inherit; font-weight: 700; border: 3px solid var(--ink); border-radius: 14px; background: var(--bg); color: var(--ink); outline: none; transition: transform 0.1s, box-shadow 0.1s; }
.tracker-input:focus { transform: translate(-2px, -2px); box-shadow: var(--shadow-sm); }
.tracker-btn { background: var(--primary); color: #fff; border: 3px solid var(--ink); border-radius: 14px; padding: 1rem 1.5rem; font-size: 1.05rem; font-weight: 900; box-shadow: var(--shadow); transition: transform 0.1s, box-shadow 0.1s; }
.tracker-btn:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow-lg); }
.tracker-btn:active { transform: translate(2px, 2px); box-shadow: var(--shadow-sm); }
.tracker-btn[disabled] { opacity: 0.6; cursor: wait; }

/* Progress + result */
.tracker-progress { margin-top: 1rem; }
.progress-bar { width: 100%; height: 14px; background: var(--bg); border: 3px solid var(--ink); border-radius: var(--radius-pill); overflow: hidden; }
.progress-fill { height: 100%; background: var(--primary); width: 0; transition: width 2.5s linear; }
.progress-status { margin-top: 0.6rem; font-weight: 700; color: var(--ink-soft); font-size: 0.9rem; }
.tracker-result { margin-top: 1rem; padding: 1.25rem; background: var(--bg-alt); border: 3px solid var(--ink); border-radius: 18px; }
.tracker-result .result-row { display: flex; justify-content: space-between; padding: 0.4rem 0; border-bottom: 2px dashed rgba(26,26,26,0.2); font-size: 0.95rem; }
.tracker-result .result-row:last-of-type { border-bottom: none; }
.tracker-result .result-label { font-weight: 800; color: var(--ink-soft); }
.tracker-result .result-value { font-weight: 700; }
.tracker-result .result-cta { display: block; margin-top: 1rem; background: var(--ink); color: #fff; text-align: center; padding: 1rem; border-radius: 14px; font-weight: 900; box-shadow: var(--shadow-sm); }
.tracker-result .result-cta:hover { background: var(--primary); text-decoration: none; transform: translate(-2px, -2px); box-shadow: var(--shadow); }

/* Breadcrumbs */
.breadcrumbs { font-size: 0.9rem; padding: 1rem 0; color: var(--ink-soft); font-weight: 700; }
.breadcrumbs a { color: var(--ink-soft); }
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs .sep { margin: 0 0.4rem; }

/* Article body */
.article { padding: 2rem 0 4rem; }
.article p { font-size: 1.05rem; }
.article ul, .article ol { margin: 1rem 0 1.5rem 1.25rem; padding-left: 1rem; }
.article li { margin-bottom: 0.55rem; font-size: 1.05rem; }
.article ul li::marker { content: '✦ '; color: var(--primary); font-size: 1.1rem; }
.article ol { list-style: none; counter-reset: olc; padding-left: 0; }
.article ol li { counter-increment: olc; padding-left: 2.6rem; position: relative; }
.article ol li::before { content: counter(olc); position: absolute; left: 0; top: 0.05rem; width: 2rem; height: 2rem; background: var(--primary); color: #fff; border: 2px solid var(--ink); border-radius: 50%; display: grid; place-items: center; font-weight: 900; font-size: 0.85rem; }

/* Boxes */
.box-warning, .box-info, .box-tip { border: 3px solid var(--ink); border-radius: var(--radius); padding: 1.25rem 1.5rem; margin: 1.5rem 0; box-shadow: var(--shadow-sm); }
.box-warning { background: #ffe1e1; }
.box-info { background: #e0f2fe; }
.box-tip { background: var(--bg-alt); }
.box-warning h3, .box-info h3, .box-tip h3 { margin-top: 0; font-size: 1.1rem; }
.box-warning h3::before { content: '⚠ '; }
.box-info h3::before { content: 'ℹ '; }
.box-tip h3::before { content: '💡 '; }

/* FAQs */
.faq { margin: 2rem 0; }
.faq-item { background: #fff; border: 3px solid var(--ink); border-radius: var(--radius); margin-bottom: 1rem; overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-item summary { padding: 1.1rem 1.25rem; font-weight: 800; cursor: pointer; list-style: none; font-size: 1.05rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; width: 28px; height: 28px; background: var(--primary); color: #fff; border-radius: 50%; display: grid; place-items: center; font-weight: 900; font-size: 1.4rem; flex-shrink: 0; transition: transform 0.2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-answer { padding: 0 1.25rem 1.25rem; color: var(--ink-soft); }

/* Keyword chips */
.kw-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1rem 0; }
.kw-chips .chip { background: #fff; border: 2px solid var(--ink); border-radius: var(--radius-pill); padding: 0.35rem 0.9rem; font-size: 0.85rem; font-weight: 700; }

/* Related entities */
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 0.75rem; margin: 1rem 0 2rem; }
.related-grid a { background: #fff; border: 3px solid var(--ink); border-radius: 14px; padding: 0.85rem; font-size: 0.95rem; font-weight: 800; color: var(--ink); text-align: center; box-shadow: var(--shadow-sm); transition: transform 0.1s, box-shadow 0.1s; }
.related-grid a:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow); text-decoration: none; color: var(--primary); }

/* Disclaimer */
.disclaimer { font-size: 0.85rem; color: var(--ink-soft); padding: 1rem 1.25rem; border: 2px dashed var(--ink); border-radius: var(--radius); margin: 2rem 0; background: rgba(255,255,255,0.5); }

/* HOMEPAGE — DIRECTORY */
.dir-hero { padding: 3rem 0 1.5rem; text-align: center; }
.dir-hero h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
.dir-hero p { font-size: 1.2rem; color: var(--ink-soft); max-width: 640px; margin: 0 auto 1.5rem; }
.dir-search-wrap { max-width: 620px; margin: 0 auto 2rem; }
.dir-search { width: 100%; padding: 1.1rem 1.4rem; font-size: 1.1rem; font-family: inherit; font-weight: 700; border: 4px solid var(--ink); border-radius: var(--radius-pill); background: #fff; outline: none; box-shadow: var(--shadow); transition: transform 0.1s; }
.dir-search:focus { transform: translate(-2px, -2px); box-shadow: var(--shadow-lg); }

.dir-stats { display: flex; justify-content: center; gap: 0.75rem; flex-wrap: wrap; margin: 0 auto 2rem; }
.dir-stat { background: #fff; border: 3px solid var(--ink); border-radius: var(--radius-pill); padding: 0.5rem 1.1rem; font-weight: 800; font-size: 0.95rem; box-shadow: var(--shadow-sm); }

/* Directory filters */
.dir-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin: 1.5rem 0 2rem; }
.filter-chip { background: #fff; border: 3px solid var(--ink); border-radius: var(--radius-pill); padding: 0.5rem 1.1rem; font-weight: 800; font-size: 0.9rem; color: var(--ink); cursor: pointer; transition: transform 0.1s; }
.filter-chip:hover { transform: translate(-1px, -1px); box-shadow: var(--shadow-sm); }
.filter-chip.active { background: var(--ink); color: #fff; }

/* Alphabet jumper */
.alpha-jump { display: flex; flex-wrap: wrap; gap: 0.3rem; justify-content: center; margin: 1.5rem 0; padding: 1rem; background: var(--bg-alt); border: 3px solid var(--ink); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.alpha-jump a { width: 36px; height: 36px; display: grid; place-items: center; font-size: 0.9rem; font-weight: 900; color: var(--ink); background: #fff; border: 2px solid var(--ink); border-radius: 10px; text-decoration: none; }
.alpha-jump a:hover { background: var(--primary); color: #fff; text-decoration: none; transform: translate(-1px, -1px); box-shadow: var(--shadow-sm); }
.alpha-jump a.disabled { opacity: 0.3; pointer-events: none; }

/* Directory list — alphabetical sections */
.dir-section { margin: 2rem 0; }
.dir-letter { font-size: 2.5rem; font-weight: 900; color: var(--primary); border-bottom: 4px solid var(--ink); padding-bottom: 0.25rem; margin-bottom: 1rem; line-height: 1; }
.dir-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 0.6rem; list-style: none; padding: 0; margin: 0; }
.dir-list li { margin: 0; }
.dir-list li::marker { content: ''; }
.dir-list a { display: flex; justify-content: space-between; align-items: center; gap: 0.75rem; background: #fff; border: 2px solid var(--ink); border-radius: 12px; padding: 0.7rem 0.95rem; font-weight: 700; color: var(--ink); transition: transform 0.1s, box-shadow 0.1s; text-decoration: none; }
.dir-list a:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow-sm); color: var(--primary); text-decoration: none; }
.dir-list .cat-tag { font-size: 0.7rem; padding: 0.2rem 0.55rem; border-radius: var(--radius-pill); font-weight: 800; border: 1.5px solid var(--ink); flex-shrink: 0; }
.dir-list .cat-transp { background: var(--yellow); }
.dir-list .cat-mkt { background: var(--pink); }
.dir-list .cat-intl { background: var(--purple); color: #fff; }
.dir-list .cat-veic { background: var(--green); }
.dir-list .cat-cart { background: var(--primary); color: #fff; }
.dir-list .cat-onib { background: var(--accent); }
.dir-list .cat-ferr { background: var(--blue); color: #fff; }

.dir-empty { text-align: center; padding: 3rem 1rem; color: var(--ink-soft); font-weight: 700; }
.dir-empty.hidden { display: none; }

/* Generic content sections (categories, pillars, guides) */
.section-hero { padding: 2.5rem 0 1rem; text-align: center; }
.section-hero .badge-cat { margin: 0 0 1rem; }
.section-hero h1 { margin-bottom: 0.5rem; }
.section-hero p { font-size: 1.15rem; color: var(--ink-soft); max-width: 720px; margin: 0 auto; }

.tile-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1rem; margin: 1.5rem 0; }
.tile { background: #fff; border: 3px solid var(--ink); border-radius: var(--radius); padding: 1.25rem; box-shadow: var(--shadow-sm); transition: transform 0.1s, box-shadow 0.1s; display: block; color: var(--ink); text-decoration: none; }
.tile:hover { transform: translate(-3px, -3px); box-shadow: var(--shadow); text-decoration: none; color: var(--ink); }
.tile h3 { margin: 0 0 0.5rem; font-size: 1.15rem; }
.tile p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }
.tile .tile-icon { font-size: 2rem; margin-bottom: 0.5rem; }

/* Categories grid (homepage / category root) */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; margin: 2rem 0; }
.cat-card { background: #fff; border: 3px solid var(--ink); border-radius: var(--radius); padding: 1.5rem; text-decoration: none; color: var(--ink); box-shadow: var(--shadow-sm); transition: transform 0.1s, box-shadow 0.1s; display: block; }
.cat-card:hover { transform: translate(-3px, -3px); box-shadow: var(--shadow-lg); text-decoration: none; color: var(--ink); }
.cat-card .cat-icon-lg { font-size: 2.5rem; margin-bottom: 0.5rem; }
.cat-card h3 { font-size: 1.2rem; margin: 0.25rem 0 0.5rem; }
.cat-card .count { display: inline-block; background: var(--ink); color: #fff; border-radius: var(--radius-pill); padding: 0.2rem 0.7rem; font-size: 0.8rem; font-weight: 800; }

/* Comparison table */
.comp-table { width: 100%; border-collapse: separate; border-spacing: 0; margin: 1.5rem 0; background: #fff; border: 3px solid var(--ink); border-radius: var(--radius); overflow: hidden; }
.comp-table th, .comp-table td { padding: 0.85rem 1rem; text-align: left; border-bottom: 2px solid var(--ink); font-size: 0.95rem; }
.comp-table th { background: var(--yellow); font-weight: 800; }
.comp-table tr:last-child td { border-bottom: none; }
.comp-table tr:nth-child(even) td { background: var(--bg-alt); }

/* Footer */
.site-footer { background: var(--ink); color: #fff; padding: 3rem 0 2rem; margin-top: 4rem; border-top: 4px solid var(--primary); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.footer-col h4 { color: var(--yellow); font-size: 1rem; margin-bottom: 0.85rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.45rem; }
.footer-col a { color: #e0e0e0; font-weight: 600; font-size: 0.95rem; }
.footer-col a:hover { color: var(--primary); }
.footer-bottom { border-top: 2px solid #444; padding-top: 1.5rem; font-size: 0.85rem; color: #aaa; text-align: center; }
.footer-bottom p { margin-bottom: 0.4rem; font-size: 0.85rem; }

/* Cookie banner */
.cookie-banner { position: fixed; bottom: 1rem; left: 1rem; right: 1rem; max-width: 460px; margin: 0 auto; background: #fff; border: 4px solid var(--ink); border-radius: var(--radius); padding: 1.25rem; box-shadow: var(--shadow-lg); z-index: 1000; display: none; }
.cookie-banner.show { display: block; }
.cookie-banner p { margin-bottom: 0.85rem; font-size: 0.92rem; }
.cookie-actions { display: flex; gap: 0.5rem; }
.cookie-btn { padding: 0.55rem 1rem; border: 3px solid var(--ink); border-radius: 12px; font-weight: 800; font-size: 0.9rem; background: #fff; color: var(--ink); }
.cookie-btn.primary { background: var(--primary); color: #fff; box-shadow: var(--shadow-sm); }
.cookie-btn:hover { transform: translate(-1px, -1px); box-shadow: var(--shadow-sm); }

/* Mobile */
@media (max-width: 768px) {
  .nav-main { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg); border-bottom: 4px solid var(--ink); flex-direction: column; padding: 1rem; gap: 0.5rem; }
  .nav-main.open { display: flex; }
  .nav-main a { padding: 0.7rem 0; border-bottom: 1px solid rgba(0,0,0,0.1); width: 100%; }
  .menu-toggle { display: block; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .tracker-card { padding: 1.25rem; }
  .dir-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .alpha-jump a { width: 30px; height: 30px; font-size: 0.8rem; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .dir-stats { gap: 0.4rem; }
  .dir-stat { font-size: 0.85rem; padding: 0.4rem 0.85rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .progress-fill { transition: width 0.5s linear !important; }
}

/* Print */
@media print {
  .site-header, .site-footer, .tracker-card, .cookie-banner, .menu-toggle { display: none !important; }
  body { background: #fff; }
}

/* Skip link */
.skip-link { position: absolute; top: -100px; left: 0; background: var(--ink); color: #fff; padding: 0.75rem 1rem; z-index: 9999; font-weight: 800; border-radius: 0 0 12px 0; }
.skip-link:focus { top: 0; }

/* ==========================================================================
   Compat layer — maps legacy class names from build_pages.py to the new theme
   ========================================================================== */

.hero { padding: 2.5rem 0 1.5rem; }
.hero h1 { margin-bottom: 0.5rem; }
.hero .lede { font-size: 1.15rem; color: var(--ink-soft); max-width: 720px; }

.section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 900; margin-bottom: 0.5rem; }
.section-sub { color: var(--ink-soft); font-size: 1.05rem; max-width: 720px; margin-bottom: 1.5rem; }

.section-bg { background: var(--bg-alt); padding: 2.5rem 0; margin: 2rem 0; border-top: 4px solid var(--ink); border-bottom: 4px solid var(--ink); }

.niche-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem; margin: 1.5rem 0; }
.niche-card { background: #fff; border: 3px solid var(--ink); border-radius: var(--radius); padding: 1.5rem; text-decoration: none; color: var(--ink); box-shadow: var(--shadow-sm); transition: transform 0.1s, box-shadow 0.1s; display: block; }
.niche-card:hover { transform: translate(-3px, -3px); box-shadow: var(--shadow-lg); text-decoration: none; color: var(--ink); }
.niche-card .niche-icon { font-size: 2.2rem; display: block; margin-bottom: 0.5rem; }
.niche-card h3 { font-size: 1.2rem; margin: 0.25rem 0 0.5rem; }
.niche-card p { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 0.75rem; }
.niche-card .niche-cta { display: inline-block; font-weight: 800; color: var(--primary); }

.carriers-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 0.6rem; margin: 1rem 0; }
.carrier-tile { background: #fff; border: 2px solid var(--ink); border-radius: 12px; padding: 0.7rem 0.95rem; font-size: 0.95rem; font-weight: 700; color: var(--ink); text-align: center; text-decoration: none; transition: transform 0.1s, box-shadow 0.1s; }
.carrier-tile:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow-sm); color: var(--primary); text-decoration: none; }

.trust-bar { background: var(--ink); color: var(--bg); text-align: center; padding: 0.75rem 1rem; font-weight: 700; font-size: 0.95rem; }
.trust-bar strong { color: var(--yellow); }

/* sub h2 small count badge styling override for inline counts */
.section-title small { display: inline-block; vertical-align: middle; background: var(--bg-alt); border: 2px solid var(--ink); border-radius: var(--radius-pill); padding: 0.15rem 0.6rem !important; font-size: 0.7em !important; color: var(--ink-soft) !important; font-weight: 800 !important; margin-left: 0.5rem; }

/* category root cards reuse niche-card */
.related-section { padding: 2rem 0; margin-top: 2rem; }
