:root {
  --site-bg: #f7faf5;
  --site-ink: #1a2818;
  --site-accent: #2d7a32;
  --site-muted: #5a6a52;
  --site-card: #ffffff;
  --font-h: 'Instrument Serif', Georgia, serif;
  --font-b: 'Inter', system-ui, sans-serif;
}
body.site-lk { font-family: var(--font-b); background: var(--site-bg); color: var(--site-ink); }
.lk-title, h1.article-title { font-family: var(--font-h); }
.lk-topbar { background: #1b4332; color: #d8f3dc; font-size: .8rem; padding: .45rem 0; }
.lk-nav { box-shadow: 0 1px 0 rgba(45,122,50,.12); }
.lk-brand { font-family: var(--font-h); font-weight: 600; font-size: 1.35rem; }
.lk-hero { background: linear-gradient(180deg, #e8f5e9 0%, var(--site-bg) 100%); }
.lk-featured { background: var(--site-card); border-radius: 16px; border: 2px solid #a5d6a7; box-shadow: 0 8px 32px rgba(45,122,50,.1); transition: transform .2s, box-shadow .2s; }
.lk-featured:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(45,122,50,.15); }
.lk-featured-inner { padding: 1.5rem; }
.lk-sponsored { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--site-accent); }
.lk-chip { display:flex; align-items:center; gap:.6rem; background:var(--site-card); border:1px solid #c8e6c9; border-radius:12px; padding:.85rem 1rem; font-size:.85rem; font-weight:500; }
.lk-article-row { background:var(--site-card); border-radius:14px; border:1px solid rgba(45,122,50,.1); transition:box-shadow .2s, border-color .2s; }
.lk-article-row:hover { box-shadow:0 8px 24px rgba(45,122,50,.1); border-color:#81c784; }
.lk-thumb { width:96px; height:72px; }
.lk-thumb img { object-fit:cover; min-height:72px; }
.lk-footer { background: linear-gradient(180deg, #1b4332, #081c15); color: #fff; }
.lk-brand-footer { font-family: var(--font-h); }
.legal-link { background:none; border:none; color:rgba(255,255,255,.7); cursor:pointer; padding:0; font:inherit; }
.legal-link:hover { color:#a5d6a7; }
.article-lede { font-size:1.15rem; line-height:1.7; margin-bottom:2rem; color:var(--site-muted); }
.longread-body p { margin-bottom:1.15rem; line-height:1.85; max-width:68ch; }
.longread-body h2 { margin-top:2.5rem; margin-bottom:1rem; font-family:var(--font-h); font-size:1.45rem; }
.article-pullquote { border-left:4px solid var(--site-accent); padding:1rem 1.5rem; margin:2rem 0; font-style:italic; background:#e8f5e9; border-radius:0 8px 8px 0; }
.article-box { background:#e8f5e9; border:1px solid #a5d6a7; padding:1.25rem; margin:2.5rem 0; border-radius:12px; }
.article-hero-img { max-height:400px; width:100%; object-fit:cover; border-radius:12px; margin:1.5rem 0 2rem; background:#c8e6c9; }
.promo-ribbon { background:var(--site-accent); color:#fff; text-align:center; padding:.55rem; font-size:.82rem; }
.badge-sponsored { display:inline-block; background:var(--site-accent); color:#fff; padding:.3rem .75rem; font-size:.72rem; text-transform:uppercase; border-radius:6px; }
.disclaimer-block { margin-top:3rem; padding:1.25rem; border:1px solid #c8e6c9; font-size:.88rem; color:var(--site-muted); background:#f1f8e9; border-radius:12px; }
.quiz-wrap { margin:2.5rem 0; padding:2rem; background:var(--site-card); border-radius:16px; border:1px solid #c8e6c9; box-shadow:0 4px 20px rgba(45,122,50,.08); }
.quiz-progress { height:8px; background:#e8f5e9; border-radius:4px; overflow:hidden; margin:1rem 0; }
.quiz-fill { height:100%; background:var(--site-accent); width:0; transition:width .35s; }
.quiz-answers button { display:block; width:100%; text-align:left; margin:.5rem 0; padding:.85rem 1rem; border:1px solid #c8e6c9; background:#fff; cursor:pointer; border-radius:10px; font:inherit; }
.quiz-answers button:hover { border-color:var(--site-accent); background:#e8f5e9; }
.quiz-timeline-lk { display:flex; gap:.5rem; list-style:none; padding:0; margin:0 0 1.25rem; counter-reset:step; }
.quiz-timeline-lk li { flex:1; text-align:center; font-size:.72rem; padding:.5rem .25rem; background:#e8f5e9; border-radius:6px; color:#5a7a5c; position:relative; }
.quiz-timeline-lk li.active { background:var(--site-accent); color:#fff; font-weight:600; }
.quiz-timeline-lk li.done { background:#2d6a2d; color:#fff; }
.quiz-proc-lk { text-align:center; padding:2rem 1rem; }
.quiz-compass-lk { width:56px; height:56px; margin:0 auto 1rem; border:3px solid var(--site-accent); border-radius:50%; position:relative; animation:lk-spin 2s linear infinite; }
.quiz-compass-lk::after { content:''; position:absolute; top:4px; left:50%; transform:translateX(-50%); width:0; height:0; border-left:6px solid transparent; border-right:6px solid transparent; border-bottom:20px solid var(--site-accent); }
@keyframes lk-spin { to { transform:rotate(360deg); } }
.quiz-res-lk { text-align:center; padding:1.5rem; }
.quiz-tiers-lk { display:grid; grid-template-columns:repeat(3,1fr); gap:.75rem; margin:1.25rem 0; }
.quiz-tiers-lk .tier { padding:1rem .5rem; border:1px solid #c8e6c9; border-radius:10px; font-size:.85rem; }
.quiz-tiers-lk .tier.active { border-color:var(--site-accent); background:#e8f5e9; }
.quiz-tiers-lk strong { display:block; font-size:1.1rem; color:var(--site-accent); }
.quiz-tiers-lk small { display:block; font-size:.72rem; color:var(--site-muted); }
.quiz-cta-lk { background:var(--site-accent); color:#fff !important; padding:.85rem 1.5rem; border-radius:10px; text-decoration:none; display:inline-block; }
.hidden { display:none !important; }
.modal-overlay { position:fixed; inset:0; background:rgba(0,0,0,.5); display:flex; align-items:center; justify-content:center; z-index:200; padding:1rem; }
.modal-overlay[hidden] { display:none !important; }
.modal-panel { background:#fff; max-width:540px; padding:1.75rem; border-radius:16px; max-height:85vh; overflow:auto; }
.modal-close-btn { float:right; border:none; background:none; font-size:1.5rem; cursor:pointer; }
