/*
Theme Name: LytteDK
Theme URI: https://lytte.dk
Author: Jesper Carstens
Author URI: https://lytte.dk
Description: Minimalistisk WordPress-tema til lydbog-affiliate site — redesignet efter Lytte.dk 2026-identitet.
Version: 2.0.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lydbogsfinderen
Tags: custom-menu, custom-logo, featured-images, translation-ready
*/

/* ═══════════════════════════════════════
   CUSTOM PROPERTIES — Lytte.dk 2026
   ═══════════════════════════════════════ */
:root {
  /* Core palette */
  --lf-ink:        #29261b;
  --lf-ink-2:      #5a5444;
  --lf-ink-3:      #8c8574;
  --lf-paper:      #faf9f5;
  --lf-paper-2:    #f3f0e8;
  --lf-accent:     #E2452A;
  --lf-accent-hover: #c93820;
  --lf-accent-soft: rgba(226,69,42,0.09);
  --lf-dark:       #15130E;
  --lf-dark-2:     #1e1b14;
  --lf-line:       #e4dfd4;
  --lf-white:      #ffffff;
  --lf-sage:       #16A34A;
  --lf-sage-light: #F0FDF4;
  --lf-muted:      #8c8574;
  --lf-border:     #e4dfd4;

  /* Legacy compat aliases */
  --lf-warm:       #f3f0e8;
  --lf-cream:      #ece6db;

  /* Shadows */
  --lf-shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --lf-shadow-md: 0 4px 20px rgba(0,0,0,0.09);
  --lf-shadow-lg: 0 12px 48px rgba(0,0,0,0.14);

  /* Radii */
  --lf-radius:     12px;
  --lf-radius-sm:  8px;
  --lf-radius-lg:  18px;
  --lf-radius-pill: 100px;

  /* Typography */
  --lf-font-display: 'Space Grotesk', -apple-system, system-ui, sans-serif;
  --lf-font-body:    'Space Grotesk', -apple-system, system-ui, sans-serif;
  --lf-font-serif:   'Newsreader', Georgia, serif;

  /* Layout */
  --lf-max-w:     1200px;
  --lf-content-w: 960px;
  --lf-gap:       40px;
  --lf-pad:       24px;
}

/* ═══════════════════════════════════════
   FONTS
   ═══════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,wght@0,400..800;1,400..700&family=Space+Grotesk:wght@400;500;600;700&display=swap');


/* ═══════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--lf-font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--lf-ink);
  background: var(--lf-paper);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--lf-accent);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: var(--lf-accent-hover); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--lf-font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--lf-ink);
}

p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
}


/* ═══════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════ */
#page { overflow-x: clip; }

.lf-container {
  max-width: var(--lf-max-w);
  margin: 0 auto;
  padding: 0 var(--lf-pad);
}

.lf-prose { max-width: var(--lf-content-w); }

.lf-section { padding: 64px 0; }

.lf-section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 36px;
}
.lf-section-header h2 {
  font-size: clamp(1.4rem, 3vw, 1.75rem);
  font-weight: 700;
  margin-bottom: 0;
  letter-spacing: -0.02em;
  color: var(--lf-ink);
}
.lf-section-header p {
  font-size: 14px;
  color: var(--lf-ink-3);
  margin: 6px 0 0;
}
.lf-section-header a {
  font-size: 14px;
  font-weight: 600;
  color: var(--lf-accent);
  border-bottom: 1.5px solid var(--lf-accent);
}
.lf-section-header a:hover { opacity: 0.8; }

.lf-section-heading {
  text-align: center;
  margin-bottom: 40px;
}
.lf-section-heading h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  color: var(--lf-ink);
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}
.lf-section-heading p {
  font-size: 16px;
  color: var(--lf-ink-2);
  max-width: 480px;
  margin: 0 auto;
}

/* ── Kicker / eyebrow label ── */
.lf-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--lf-accent);
  margin-bottom: 12px;
}

/* ── Wave decoration ── */
.lf-wave {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 18px;
  vertical-align: middle;
}
.lf-wave i {
  display: block;
  width: 3px;
  background: currentColor;
  border-radius: 2px;
  flex-shrink: 0;
}
.lf-wave i:nth-child(1) { height: 55%; }
.lf-wave i:nth-child(2) { height: 85%; }
.lf-wave i:nth-child(3) { height: 100%; }
.lf-wave i:nth-child(4) { height: 70%; }
.lf-wave i:nth-child(5) { height: 40%; }


/* ═══════════════════════════════════════
   STICKY ANNOUNCEMENT BAR (ticker)
   ═══════════════════════════════════════ */
.lf-sticky-bar {
  background: var(--lf-dark);
  color: white;
  padding: 9px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 12.5px;
  font-weight: 500;
}
.lf-sticky-bar__left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.lf-sticky-bar__star { color: var(--lf-accent); font-weight: 700; }
.lf-sticky-bar__links { display: flex; gap: 20px; }
.lf-sticky-bar__links a {
  color: rgba(255,255,255,0.65);
  font-weight: 600;
  font-size: 12px;
  transition: color 0.15s;
}
.lf-sticky-bar__links a:hover { color: white; }


/* ═══════════════════════════════════════
   HEADER
   ═══════════════════════════════════════ */
.site-header {
  border-bottom: 1px solid var(--lf-line);
  position: sticky;
  top: 0;
  z-index: 100;
  background: white;
  transition: box-shadow 0.2s;
}

.site-header__inner {
  max-width: var(--lf-max-w);
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

/* Brandmark (wave + wordmark) */
.site-branding a {
  font-family: var(--lf-font-body);
  font-size: 22px;
  font-weight: 700;
  color: var(--lf-ink);
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

/* Wave brandmark icon */
.site-branding__wave {
  display: inline-flex;
  align-items: flex-end;
  gap: 2.5px;
  height: 22px;
  color: var(--lf-accent);
}
.site-branding__wave span {
  display: block;
  width: 3.5px;
  background: currentColor;
  border-radius: 2px;
}
.site-branding__wave span:nth-child(1) { height: 55%; }
.site-branding__wave span:nth-child(2) { height: 85%; }
.site-branding__wave span:nth-child(3) { height: 100%; }
.site-branding__wave span:nth-child(4) { height: 70%; }

.site-branding__word { letter-spacing: -0.02em; }
.site-branding__dot  { color: var(--lf-accent); }

/* Legacy icon fallback */
.site-branding__icon {
  width: 34px; height: 34px;
  background: var(--lf-accent);
  border-radius: 9px;
  display: flex;
  align-items: center; justify-content: center;
  color: white;
  font-size: 15px; font-weight: 800;
  flex-shrink: 0;
}

/* Navigation */
.main-navigation { display: flex; align-items: center; gap: 28px; }
.main-navigation .menu { display: flex; align-items: center; gap: 28px; }
.main-navigation a {
  color: var(--lf-ink-2);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s;
}
.main-navigation a:hover,
.main-navigation .current-menu-item > a { color: var(--lf-ink); }

.main-navigation .menu-item-cta > a {
  background: var(--lf-ink);
  color: white !important;
  padding: 8px 18px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  transition: opacity 0.15s;
}
.main-navigation .menu-item-cta > a:hover { opacity: 0.85; color: white !important; }

.menu-toggle {
  display: none;
  background: none; border: none;
  padding: 8px; cursor: pointer;
  color: var(--lf-ink); font-size: 24px;
}

/* Header dropdown */
.main-navigation .menu > .menu-item { position: relative; }
.main-navigation .menu > .menu-item > .sub-menu {
  display: none;
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  background: var(--lf-white);
  border: 1px solid var(--lf-line);
  border-radius: var(--lf-radius);
  box-shadow: var(--lf-shadow-lg);
  min-width: 200px; padding: 8px 0; z-index: 200;
  flex-direction: column; gap: 0;
}
.main-navigation .menu > .menu-item:hover > .sub-menu,
.main-navigation .menu > .menu-item:focus-within > .sub-menu { display: flex; }
.main-navigation .sub-menu a { display: block; padding: 8px 18px; font-size: 13px; color: var(--lf-ink-2); white-space: nowrap; transition: background 0.15s, color 0.15s; }
.main-navigation .sub-menu a:hover { background: var(--lf-warm); color: var(--lf-ink); }
.main-navigation .menu > .menu-item-has-children > a::after { content: '▾'; margin-left: 4px; font-size: 10px; vertical-align: middle; }

.site-branding .custom-logo-link img,
.site-branding .custom-logo { max-height: 38px !important; width: auto !important; }

/* Header search */
.site-header__search { flex-shrink: 0; }
.lf-header-search { position: relative; width: 220px; }
.lf-header-search__input {
  width: 100%; height: 36px;
  border: 1.5px solid var(--lf-line);
  border-radius: var(--lf-radius-pill);
  padding: 0 36px 0 14px;
  font-size: 13px;
  background: var(--lf-paper);
  color: var(--lf-ink);
  outline: none;
  transition: all 0.2s;
}
.lf-header-search__input::placeholder { color: var(--lf-ink-3); }
.lf-header-search__input:focus { border-color: var(--lf-accent); width: 300px; }
.lf-header-search__btn {
  position: absolute; right: 4px; top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  border: none; border-radius: 50%;
  background: var(--lf-accent); color: white;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}

/* Header quiz button */
.lf-header-quiz-btn {
  background: var(--lf-accent); color: white;
  border-radius: 10px; padding: 8px 18px;
  font-size: 13px; font-weight: 700;
  transition: opacity 0.15s; white-space: nowrap; flex-shrink: 0;
}
.lf-header-quiz-btn:hover { opacity: 0.85; color: white; }


/* ═══════════════════════════════════════
   HERO — Dark split layout (Lytte.dk style)
   ═══════════════════════════════════════ */
.lf-hero-v2 {
  background: var(--lf-dark);
  color: white;
  padding: 0;
  border-bottom: none;
}

/* Dark hero inner: two-column */
.lf-hero-v2__inner {
  max-width: var(--lf-max-w);
  margin: 0 auto;
  padding: 64px 48px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.lf-hero-v2__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--lf-accent);
  margin-bottom: 20px;
}

.lf-hero-v2 h1 {
  font-family: var(--lf-font-serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: white;
  margin: 0 0 20px;
}
.lf-hero-v2 h1 em { font-style: italic; color: white; }

/* Non-italic version of headline words */
.lf-hero-v2__headline-plain { font-style: normal; }

.lf-hero-v2__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  max-width: 44ch;
  margin: 0 0 32px;
  line-height: 1.65;
}

.lf-hero-v2__ctas {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.lf-hero-v2__cta-primary {
  background: var(--lf-accent);
  color: white;
  border-radius: 10px;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform 0.15s, box-shadow 0.15s;
}
.lf-hero-v2__cta-primary:hover { color: white; transform: translateY(-1px); box-shadow: 0 6px 24px rgba(226,69,42,0.35); }
.lf-hero-v2__cta-secondary {
  color: rgba(255,255,255,0.7);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 10px;
  padding: 13px 22px;
  font-weight: 600;
  font-size: 15px;
  transition: border-color 0.15s, color 0.15s;
}
.lf-hero-v2__cta-secondary:hover { color: white; border-color: rgba(255,255,255,0.5); }

/* Trust badges */
.lf-hero-v2__trust {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  flex-wrap: wrap;
}
.lf-hero-v2__trust-item { display: flex; align-items: center; gap: 5px; }
.lf-hero-v2__trust-check { color: var(--lf-accent); font-weight: 700; }

/* ── Hero winner card (right column) ── */
.lf-hero-v2__winner {
  background: var(--lf-paper);
  border-radius: 16px;
  padding: 28px;
  position: relative;
}

.lf-hero-v2__winner-seal {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--lf-ink-2);
  background: rgba(226,69,42,0.1);
  color: var(--lf-accent);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.lf-hero-v2__winner-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.lf-hero-v2__winner-mono {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px;
  color: white; flex-shrink: 0;
  background: white;
  border: 1px solid var(--lf-line);
  overflow: hidden;
}
.lf-hero-v2__winner-mono img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 6px;
  box-sizing: border-box;
  display: block;
}
.lf-hero-v2__winner-name {
  font-size: 20px; font-weight: 700; color: var(--lf-ink);
  flex: 1;
}
.lf-hero-v2__winner-score {
  font-family: var(--lf-font-serif);
  font-size: 26px; font-weight: 700; color: var(--lf-ink);
}
.lf-hero-v2__winner-score span { font-size: 14px; color: var(--lf-ink-3); }

.lf-hero-v2__winner-trial {
  display: flex; align-items: center; gap: 10px;
  margin: 18px 0;
  font-size: 15px; color: var(--lf-ink);
}

.lf-hero-v2__winner-pros {
  list-style: none; padding: 0; margin: 0 0 18px;
  display: flex; flex-direction: column; gap: 6px;
}
.lf-hero-v2__winner-pros li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13.5px; color: var(--lf-ink-2);
}
.lf-hero-v2__winner-pros li::before {
  content: '✓';
  color: var(--lf-accent); font-weight: 700; flex-shrink: 0;
}

.lf-hero-v2__winner-cta {
  display: block; text-align: center;
  background: var(--lf-accent); color: white;
  padding: 14px; border-radius: 10px;
  font-weight: 700; font-size: 15px;
  transition: opacity 0.15s;
}
.lf-hero-v2__winner-cta:hover { opacity: 0.88; color: white; }
.lf-hero-v2__winner-note {
  text-align: center; font-size: 11px;
  color: var(--lf-ink-3); margin-top: 8px;
}


/* ═══════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════ */
.lf-stats-bar {
  background: var(--lf-dark-2);
  padding: 0 48px;
}
.lf-stats-bar__inner {
  max-width: var(--lf-max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}
.lf-stats-bar__item {
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  padding: 24px;
}
.lf-stats-bar__item:last-child { border-right: none; }
.lf-stats-bar__value {
  font-family: var(--lf-font-serif);
  font-size: 28px; font-weight: 700;
  color: white; letter-spacing: -0.02em; line-height: 1;
}
.lf-stats-bar__value b { font-size: 16px; font-style: italic; }
.lf-stats-bar__label {
  font-size: 12px; color: rgba(255,255,255,0.5);
  font-weight: 500; margin-top: 5px;
  text-transform: uppercase; letter-spacing: 0.04em;
}


/* ═══════════════════════════════════════
   APP COMPARISON SECTION (ranking cards)
   ═══════════════════════════════════════ */
.lf-compare {
  padding: 64px 0;
  border-bottom: 1px solid var(--lf-line);
}
.lf-compare--top {
  background: var(--lf-paper-2);
  padding: 72px 0;
}
.lf-compare__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1060px;
  margin: 0 auto;
}
.lf-compare__aff-note {
  font-size: 11px; color: var(--lf-ink-3);
  font-style: italic; margin: 24px auto 0;
  text-align: center; max-width: 1060px;
}

/* ── Service / App card ── */
.lf-svc-card {
  background: white;
  border: 1px solid var(--lf-line);
  border-radius: 16px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow 0.2s;
}
.lf-svc-card:hover { box-shadow: var(--lf-shadow-md); }

.lf-svc-card--featured {
  border-color: var(--lf-ink);
  box-shadow: 0 0 0 1px var(--lf-ink);
}

.lf-svc-card__badge {
  background: var(--lf-dark);
  color: white; text-align: center;
  padding: 8px 16px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  display: flex; align-items: center; justify-content: center; gap: 5px;
}
.lf-svc-card--featured .lf-svc-card__badge { background: var(--lf-accent); }

.lf-svc-card__body { padding: 24px 24px 20px; display: flex; flex-direction: column; flex: 1; }

.lf-svc-card__rank {
  font-family: var(--lf-font-serif);
  font-size: 28px; font-weight: 700;
  color: var(--lf-accent);
  width: 28px; flex-shrink: 0;
}
.lf-svc-card--featured .lf-svc-card__rank { color: var(--lf-accent); }

.lf-svc-card__top {
  display: flex; align-items: center;
  gap: 14px; margin-bottom: 18px;
}
.lf-svc-card__logo {
  width: 60px; height: 60px; min-width: 60px;
  border-radius: 14px; overflow: hidden;
  border: 1px solid var(--lf-line);
  background: #ffffff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.lf-svc-card__logo img {
  width: 48px; height: 48px;
  object-fit: contain;
  display: block;
}
.lf-svc-card__logo--fb {
  background: var(--lf-accent); color: white;
  font-weight: 700; font-size: 16px; border-color: var(--lf-accent);
}
.lf-svc-card__name-area { flex: 1; min-width: 0; }
.lf-svc-card__name {
  font-weight: 700; font-size: 19px;
  letter-spacing: -0.02em; display: block;
  margin-bottom: 4px; color: var(--lf-ink);
}
.lf-svc-card__stars { display: flex; gap: 2px; margin-bottom: 3px; }
.lf-svc-card__stars svg { display: block; }
.lf-svc-card__reviews { font-size: 12px; color: var(--lf-ink-3); margin-top: 2px; }

.lf-svc-card__score {
  width: 50px; height: 50px; min-width: 50px;
  border-radius: 50%;
  background: var(--lf-accent); color: white;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; flex-shrink: 0;
}
.lf-svc-card__score-num { font-weight: 800; font-size: 19px; line-height: 1; color: white; }
.lf-svc-card__score-denom { font-size: 9px; color: rgba(255,255,255,0.7); font-weight: 600; }

.lf-svc-card__price-box {
  background: var(--lf-paper);
  border-radius: 10px; padding: 12px 14px;
  margin-bottom: 14px;
  display: flex; align-items: center; justify-content: space-between;
}
.lf-svc-card__price-label { font-size: 10px; color: var(--lf-ink-3); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 2px; }
.lf-svc-card__price { display: flex; align-items: baseline; gap: 4px; }
.lf-svc-card__price-amount { font-size: 28px; font-weight: 800; color: var(--lf-ink); letter-spacing: -0.03em; line-height: 1; }
.lf-svc-card__price-per { font-size: 13px; color: var(--lf-ink-2); font-weight: 500; }

.lf-svc-card__features { list-style: none; padding: 0; margin: 0 0 18px; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.lf-svc-card__features li { display: flex; align-items: flex-start; gap: 8px; font-size: 13.5px; line-height: 1.4; color: var(--lf-ink-2); }
.lf-svc-card__features li .check { color: var(--lf-accent); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

.lf-svc-card__actions { display: flex; flex-direction: column; gap: 0; }
.lf-svc-card__cta {
  display: block; text-align: center;
  padding: 13px 18px; border-radius: 10px;
  font-size: 14px; font-weight: 700;
  background: var(--lf-ink); color: white !important;
  transition: opacity 0.15s; letter-spacing: -0.01em;
}
.lf-svc-card__cta:hover { opacity: 0.85; color: white !important; }
.lf-svc-card--featured .lf-svc-card__cta { background: var(--lf-accent); }
.lf-svc-card__cta.lf-aff::after { content: "*"; font-size: 0.7em; vertical-align: super; opacity: 0.7; margin-left: 1px; }
.lf-svc-card__note { text-align: center; font-size: 11px; color: var(--lf-ink-3); margin-top: 7px; }
.lf-svc-card__read { text-align: center; font-size: 13px; color: var(--lf-ink-2) !important; text-decoration: underline !important; margin-top: 8px; }


/* ═══════════════════════════════════════
   TRUST BAND
   ═══════════════════════════════════════ */
.lf-trustband {
  background: white;
  border-top: 1px solid var(--lf-line);
  border-bottom: 1px solid var(--lf-line);
  padding: 48px 0;
}
.lf-trustband__grid {
  max-width: var(--lf-max-w);
  margin: 0 auto;
  padding: 0 var(--lf-pad);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.lf-trustband__item {
  display: flex; flex-direction: column; gap: 10px;
}
.lf-trustband__item svg { color: var(--lf-accent); width: 24px; height: 24px; }
.lf-trustband__item h4 { font-size: 15px; font-weight: 700; margin: 0; color: var(--lf-ink); }
.lf-trustband__item p { font-size: 14px; color: var(--lf-ink-2); margin: 0; line-height: 1.6; }


/* ═══════════════════════════════════════
   HOW IT WORKS — Steps
   ═══════════════════════════════════════ */
.lf-steps {
  background: var(--lf-paper);
  padding: 72px 0;
  border-top: 1px solid var(--lf-line);
}
.lf-steps__title {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
  text-align: center;
  color: var(--lf-ink);
}
.lf-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}
.lf-step { position: relative; }
.lf-step__connector {
  position: absolute; top: 28px;
  left: calc(100% + 8px); width: calc(100% - 16px);
  height: 2px;
  background: linear-gradient(90deg, rgba(226,69,42,0.2), transparent);
  pointer-events: none; z-index: 0;
}
.lf-step__num {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(226,69,42,0.08);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 18px; font-weight: 800;
  color: var(--lf-accent);
  font-family: var(--lf-font-serif);
  position: relative; z-index: 1;
}
.lf-step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.01em; color: var(--lf-ink); }
.lf-step p { font-size: 14px; color: var(--lf-ink-2); line-height: 1.65; margin: 0; }


/* ═══════════════════════════════════════
   QUIZ BANNER — Dark CTA
   ═══════════════════════════════════════ */
.lf-quiz-banner {
  background: var(--lf-dark);
  color: white;
  padding: 80px 48px;
  text-align: center;
}
.lf-quiz-banner__text { max-width: 600px; margin: 0 auto; }
.lf-quiz-banner__eyebrow {
  font-size: 12px; color: var(--lf-accent);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.lf-quiz-banner__text h2 {
  font-family: var(--lf-font-serif);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700; font-style: italic;
  letter-spacing: -0.02em;
  color: white; line-height: 1.15; margin-bottom: 16px;
}
.lf-quiz-banner__text p {
  color: rgba(255,255,255,0.55);
  font-size: 15.5px; line-height: 1.65;
  margin-bottom: 36px;
  max-width: 480px; margin-left: auto; margin-right: auto;
}
.lf-quiz-banner__btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--lf-accent); color: white;
  font-size: 15px; font-weight: 700;
  padding: 15px 36px; border-radius: 12px;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 24px rgba(226,69,42,0.3);
}
.lf-quiz-banner__btn:hover { color: white; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(226,69,42,0.4); }
.lf-quiz-banner__hint { font-size: 12px; color: rgba(255,255,255,0.3); margin-top: 14px; }
.lf-quiz-banner__bg-circle,
.lf-quiz-banner__inner { display: contents; }
.lf-quiz-banner__preview,
.lf-quiz-banner__q-card,
.lf-quiz-banner__visual,
.lf-quiz-banner__book { display: none; }


/* ═══════════════════════════════════════
   BOOK CARDS & GRID
   ═══════════════════════════════════════ */
.lf-book-section {
  background: var(--lf-paper-2);
  padding: 64px 0;
  border-top: 1px solid var(--lf-line);
}
.lf-book-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.lf-book-grid--5 { grid-template-columns: repeat(5, 1fr); }
.lf-book-grid--3 { grid-template-columns: repeat(3, 1fr); }

.lf-book-card { cursor: pointer; transition: transform 0.2s; text-decoration: none; color: var(--lf-ink); display: block; min-width: 0; }
.lf-book-card:hover { transform: translateY(-4px); color: var(--lf-ink); }

.lf-book-card__cover {
  position: relative; width: 100%; padding-bottom: 150%; height: 0;
  border-radius: 10px; overflow: hidden; margin-bottom: 10px;
  background: var(--lf-line);
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  transition: box-shadow 0.2s;
}
.lf-book-card:hover .lf-book-card__cover { box-shadow: 0 8px 24px rgba(0,0,0,0.16); }
.lf-book-card__cover img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.lf-book-card__duration {
  position: absolute; bottom: 8px; left: 8px;
  background: rgba(21,19,14,0.8);
  color: white; padding: 3px 9px; border-radius: var(--lf-radius-pill);
  font-size: 10px; font-weight: 500;
}
.lf-book-card__info { display: flex; flex-direction: column; }
.lf-book-card__title { font-size: 12px; font-weight: 700; line-height: 1.3; margin-bottom: 3px; color: var(--lf-ink); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.lf-book-card__author { font-size: 11px; color: var(--lf-ink-3); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lf-book-card__meta { display: flex; align-items: center; gap: 8px; margin-top: 5px; }
.lf-rating { font-size: 11px; font-weight: 600; color: var(--lf-accent); }
.lf-tag { font-size: 10px; text-transform: uppercase; letter-spacing: 0.4px; color: var(--lf-ink-3); background: var(--lf-warm); padding: 2px 7px; border-radius: 4px; font-weight: 500; }

.lf-book-cta {
  margin-top: 32px; padding: 18px 22px;
  background: rgba(226,69,42,0.06);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.lf-book-cta__text { font-size: 14px; color: var(--lf-ink-2); font-weight: 500; }
.lf-book-cta__btn { background: var(--lf-accent); color: white; border-radius: 9px; padding: 10px 18px; font-size: 13px; font-weight: 700; white-space: nowrap; transition: opacity 0.15s; }
.lf-book-cta__btn:hover { opacity: 0.85; color: white; }


/* ═══════════════════════════════════════
   GENRE CARDS & TABS
   ═══════════════════════════════════════ */
.lf-genre-tabs { display: flex; gap: 6px; margin-bottom: 24px; flex-wrap: wrap; }
.lf-genre-tab {
  padding: 7px 16px; border-radius: var(--lf-radius-pill);
  border: 1px solid var(--lf-line);
  background: white; font-size: 13px; font-weight: 500; color: var(--lf-ink-2);
  cursor: pointer; transition: all 0.2s;
}
.lf-genre-tab:hover { border-color: var(--lf-accent); color: var(--lf-accent); }
.lf-genre-tab--active { border-color: var(--lf-ink); background: var(--lf-ink); color: var(--lf-paper); }

.lf-genre-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.lf-genre-card {
  background: white; border: 1px solid var(--lf-line); border-radius: var(--lf-radius);
  padding: 18px; text-decoration: none; color: var(--lf-ink);
  transition: all 0.2s; display: flex; align-items: center; gap: 12px; min-height: 72px;
}
.lf-genre-card:hover { border-color: var(--lf-accent); transform: translateY(-2px); box-shadow: var(--lf-shadow-md); color: var(--lf-ink); }
.lf-genre-card__icon { width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.lf-genre-card h3 { font-size: 15px; margin: 0; line-height: 1.3; font-weight: 600; }
.lf-genre-card span { font-size: 11px; color: var(--lf-ink-3); }


/* ═══════════════════════════════════════
   BLOG CARDS
   ═══════════════════════════════════════ */
.lf-section--blog { background: white; padding: 64px 0; border-top: 1px solid var(--lf-line); }
.lf-blog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.lf-blog-grid__right { display: flex; flex-direction: column; gap: 16px; }

.lf-blog-card { border-radius: 14px; overflow: hidden; background: white; border: 1px solid var(--lf-line); transition: box-shadow 0.2s, transform 0.2s; }
.lf-blog-card:hover { box-shadow: var(--lf-shadow-md); transform: translateY(-2px); }
.lf-blog-card__link { display: flex; flex-direction: column; text-decoration: none; color: var(--lf-ink); height: 100%; }
.lf-blog-card__link:hover { color: var(--lf-ink); }
.lf-blog-card__img { width: 100%; height: 140px; flex-shrink: 0; overflow: hidden; background: var(--lf-paper-2); }
.lf-blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; display: block; }
.lf-blog-card:hover .lf-blog-card__img img { transform: scale(1.04); }
.lf-blog-card__body { padding: 14px 16px 16px; flex: 1; display: flex; flex-direction: column; }
.lf-blog-card__cat { display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--lf-accent); margin-bottom: 6px; }
.lf-blog-card__title { font-size: 13px; font-weight: 700; line-height: 1.35; margin: 0 0 8px; color: var(--lf-ink); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.lf-blog-card__desc { font-size: 14px; color: var(--lf-ink-2); line-height: 1.55; margin: 0 0 12px; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.lf-blog-card__meta { font-size: 11px; color: var(--lf-ink-3); font-weight: 500; margin-top: auto; }

.lf-blog-card--featured .lf-blog-card__link { flex-direction: column; }
.lf-blog-card--featured .lf-blog-card__img { width: 100%; height: 220px; }
.lf-blog-card--featured .lf-blog-card__body { padding: 20px; }
.lf-blog-card__title--featured { font-size: 18px !important; font-weight: 700 !important; -webkit-line-clamp: 3 !important; margin-bottom: 8px !important; }

.lf-blog-card--small .lf-blog-card__link { flex-direction: row; }
.lf-blog-card--small .lf-blog-card__img { width: 110px; height: 90px; flex-shrink: 0; }
.lf-blog-card--small .lf-blog-card__body { padding: 12px 16px; }


/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.site-footer {
  background: var(--lf-dark);
  border-top: none; color: rgba(255,255,255,0.5);
  padding: 56px 48px 32px; margin-top: 0;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
.site-footer__brand .site-branding a { color: white; }
.site-footer__brand .site-branding__wave { color: var(--lf-accent); }
.site-footer__brand .site-branding__word { color: white; }
.site-footer__brand p { font-size: 13px; line-height: 1.65; max-width: 220px; margin-top: 14px; color: rgba(255,255,255,0.4); }
.site-footer__trust-chips { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
.site-footer__chip { font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.35); background: rgba(255,255,255,0.06); border-radius: 6px; padding: 4px 8px; border: 1px solid rgba(255,255,255,0.1); }
.site-footer__address { font-style: normal; font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.8; margin-top: 0; }
.site-footer__col h4 { color: rgba(255,255,255,0.3); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.site-footer__col a { display: block; color: rgba(255,255,255,0.5); font-size: 13px; margin-bottom: 10px; transition: color 0.15s; line-height: 1.4; }
.site-footer__col a:hover { color: white; }
.site-footer__col ul { list-style: none; padding: 0; margin: 0; }
.site-footer__col ul li a { display: block; color: rgba(255,255,255,0.5); font-size: 13px; margin-bottom: 10px; transition: color 0.15s; line-height: 1.4; }
.site-footer__col ul li a:hover { color: white; }
.site-footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,0.25); flex-wrap: wrap; gap: 8px; }


/* ═══════════════════════════════════════
   BUTTONS (global)
   ═══════════════════════════════════════ */
.lf-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 28px; border-radius: var(--lf-radius-pill);
  font-size: 14px; font-weight: 600; cursor: pointer; border: none; white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
}
.lf-btn--primary { background: var(--lf-accent); color: white; }
.lf-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(226,69,42,0.3); color: white; }
.lf-btn--secondary { background: white; color: var(--lf-ink); border: 1px solid var(--lf-line); }
.lf-btn--secondary:hover { border-color: var(--lf-accent); }


/* ═══════════════════════════════════════
   SEARCH
   ═══════════════════════════════════════ */
.lf-search { max-width: 600px; margin: 0 auto; position: relative; }
.lf-search__input {
  width: 100%; padding: 14px 52px 14px 20px;
  font-size: 15px; border: 1.5px solid var(--lf-line);
  border-radius: var(--lf-radius-pill);
  background: white; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s; color: var(--lf-ink);
}
.lf-search__input::placeholder { color: var(--lf-ink-3); }
.lf-search__input:focus { border-color: var(--lf-accent); box-shadow: 0 0 0 3px rgba(226,69,42,0.08); }
.lf-search__btn {
  position: absolute; right: 5px; top: 50%; transform: translateY(-50%);
  background: var(--lf-accent); color: white; border: none;
  width: 40px; height: 40px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}


/* ═══════════════════════════════════════
   CHIPS / FILTER PILLS
   ═══════════════════════════════════════ */
.lf-filters { display: flex; justify-content: center; gap: 8px; margin-top: 18px; flex-wrap: wrap; }
.lf-chip { padding: 6px 16px; border-radius: var(--lf-radius-pill); border: 1px solid var(--lf-line); background: white; font-size: 13px; font-weight: 500; color: var(--lf-ink-2); cursor: pointer; transition: all 0.2s; display: inline-block; }
.lf-chip:hover { border-color: var(--lf-accent); color: var(--lf-accent); }
.lf-chip--active { border-color: var(--lf-accent); color: var(--lf-accent); background: rgba(226,69,42,0.06); }


/* ═══════════════════════════════════════
   PAGINATION
   ═══════════════════════════════════════ */
.pagination, .nav-links { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 40px 0; }
.page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 38px; height: 38px; padding: 0 10px; border-radius: var(--lf-radius-sm); font-size: 14px; font-weight: 500; color: var(--lf-ink-2); text-decoration: none; transition: all 0.2s; border: 1px solid transparent; }
.page-numbers:hover { background: var(--lf-warm); color: var(--lf-ink); }
.page-numbers.current { background: var(--lf-ink); color: white; }
.page-numbers.dots { border: none; pointer-events: none; }


/* ═══════════════════════════════════════
   BREADCRUMBS
   ═══════════════════════════════════════ */
.lf-breadcrumbs { background: var(--lf-paper-2); border-bottom: 1px solid var(--lf-line); padding: 10px 0; font-size: 13px; color: var(--lf-ink-3); }
.lf-breadcrumbs a { color: var(--lf-ink-3); transition: color 0.2s; }
.lf-breadcrumbs a:hover { color: var(--lf-accent); }
.lf-breadcrumbs__sep { margin: 0 6px; color: var(--lf-line); }
.lf-breadcrumbs__current { color: var(--lf-ink); font-weight: 500; }


/* ═══════════════════════════════════════
   PAGE & ARTICLE CONTENT
   ═══════════════════════════════════════ */
.lf-page { max-width: var(--lf-content-w); margin: 0 auto; padding: 56px 0 72px; }
.lf-page__header { margin-bottom: 32px; padding-bottom: 28px; border-bottom: 1px solid var(--lf-line); }
.lf-page__header h1 { font-size: clamp(30px, 4vw, 44px); margin-bottom: 0; }
.lf-page__header .lf-page__meta { font-size: 14px; color: var(--lf-ink-3); margin-top: 8px; }

.entry-content { font-size: 16.5px; line-height: 1.8; color: var(--lf-ink-2); }
.entry-content h2 { font-size: 22px; font-weight: 700; margin-top: 2.5em; margin-bottom: 0.6em; }
.entry-content h3 { font-size: 18px; font-weight: 700; margin-top: 2em; margin-bottom: 0.5em; }
.entry-content h4 { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-top: 2em; margin-bottom: 0.5em; color: var(--lf-ink-3); }
.entry-content p { margin-bottom: 1.4em; }
.entry-content a { color: var(--lf-accent); text-decoration: underline; text-decoration-color: rgba(226,69,42,0.3); text-underline-offset: 3px; }
.entry-content a:hover { text-decoration-color: var(--lf-accent); }
.entry-content blockquote { margin: 2em 0; padding: 22px 26px; border-left: 3px solid var(--lf-accent); background: var(--lf-paper-2); border-radius: 0 10px 10px 0; font-style: italic; }
.entry-content blockquote p:last-child { margin-bottom: 0; }
.entry-content ul, .entry-content ol { padding-left: 1.6em; margin-bottom: 1.4em; }
.entry-content ul { list-style-type: disc !important; }
.entry-content ol { list-style-type: decimal !important; }
.entry-content li { margin-bottom: 0.5em; padding-left: 0.4em; }
.entry-content li::marker { color: var(--lf-accent); }
.entry-content img { border-radius: var(--lf-radius); margin: 2em 0; }
.entry-content hr { border: none; border-top: 1px solid var(--lf-line); margin: 3em 0; }
.entry-content table { width: 100%; border-collapse: collapse; margin: 2em 0; font-size: 14px; display: block; overflow-x: auto; }
.entry-content th, .entry-content td { padding: 12px 16px; border-bottom: 1px solid var(--lf-line); text-align: left; }
.entry-content th { font-weight: 700; background: var(--lf-paper-2); font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--lf-ink-3); }
.entry-content code { font-size: 0.9em; background: var(--lf-paper-2); padding: 2px 6px; border-radius: 4px; }


/* ═══════════════════════════════════════
   ARTICLE LAYOUT WITH SIDEBAR
   ═══════════════════════════════════════ */
.lf-article-layout { display: block; }
.lf-article-layout--has-sidebar { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 48px; align-items: start; }
.lf-article-layout__main { min-width: 0; overflow: hidden; }
.lf-article-layout__sidebar { display: none; }
@media (min-width: 1025px) {
  .lf-article-layout__sidebar { display: block; position: sticky; top: 88px; padding-top: 48px; align-self: start; max-height: calc(100vh - 88px); }
}

.lf-article { max-width: var(--lf-content-w); padding: 48px 0 64px; }
.lf-article-layout--has-sidebar .lf-article { max-width: none; }
.lf-article__header { margin-bottom: 36px; }
.lf-article__title { font-size: clamp(28px, 4vw, 46px); line-height: 1.1; margin-bottom: 0; letter-spacing: -0.02em; }
.lf-article__excerpt { font-family: var(--lf-font-serif); font-size: 18px; line-height: 1.6; color: var(--lf-ink-2); margin-top: 16px; margin-bottom: 0; }
.lf-article__meta { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--lf-line); }
.lf-article__author-row { display: flex; align-items: center; gap: 12px; }
.lf-article__avatar { width: 36px !important; height: 36px !important; border-radius: 50%; object-fit: cover; }
.lf-article__author-name { display: block; font-size: 14px; font-weight: 600; color: var(--lf-ink); }
.lf-article__date { display: block; font-size: 13px; color: var(--lf-ink-3); }


/* ═══════════════════════════════════════
   RELATED POSTS
   ═══════════════════════════════════════ */
.lf-related { margin-top: 56px; padding-top: 48px; border-top: 1px solid var(--lf-line); }
.lf-related__title { font-size: 22px; margin-bottom: 24px; }
.lf-related__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }


/* ═══════════════════════════════════════
   AD BLOCKS
   ═══════════════════════════════════════ */
.lf-ad { position: relative; margin: 32px 0; }
.lf-ad__label { display: inline-block; font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--lf-ink-3); margin-bottom: 6px; opacity: 0.7; }
.lf-aff-star { font-size: 0.75em; opacity: 0.6; margin-left: 1px; vertical-align: super; font-weight: 400; }

.lf-ad__btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 11px 22px; background: var(--lf-accent); color: white !important;
  border: none; border-radius: var(--lf-radius-sm); font-weight: 600; font-size: 14px;
  text-decoration: none !important; cursor: pointer; transition: all 0.15s; white-space: nowrap; flex-shrink: 0;
}
.lf-ad__btn:hover { background: var(--lf-accent-hover); transform: translateY(-1px); color: white !important; }

.lf-ad--banner .lf-ad__inner {
  background: var(--lf-dark); border-radius: var(--lf-radius);
  padding: 20px 28px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.lf-ad--banner .lf-ad__left { display: flex; align-items: center; gap: 16px; min-width: 0; }
.lf-ad__title { display: block; font-size: 17px; color: var(--lf-paper); line-height: 1.3; }
.lf-ad__sub { display: block; font-size: 12px; opacity: 0.4; color: var(--lf-paper); margin-top: 2px; }

.lf-ad--card .lf-ad__card-inner { background: white; border: 1px solid var(--lf-line); border-radius: var(--lf-radius); padding: 28px 24px; text-align: center; }
.lf-ad--inline .lf-ad__inline-inner { display: flex; align-items: center; gap: 14px; padding: 12px 18px; background: var(--lf-paper-2); border-radius: var(--lf-radius-sm); border: 1px solid var(--lf-line); }


/* ═══════════════════════════════════════
   FAQ BLOCK
   ═══════════════════════════════════════ */
.schema-faq, .wp-block-yoast-faq-block { margin: 2.5em 0; }
.schema-faq-section { border: 1px solid var(--lf-line); border-radius: var(--lf-radius); background: white; margin-bottom: 10px; overflow: hidden; transition: box-shadow 0.2s; }
.schema-faq-section:hover { box-shadow: var(--lf-shadow-sm); }
.schema-faq-section .schema-faq-question { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; font-size: 15px; font-weight: 600; color: var(--lf-ink); cursor: pointer; margin: 0; user-select: none; list-style: none; }
.schema-faq-section .schema-faq-answer { padding: 0 22px 18px; font-size: 15px; line-height: 1.7; color: var(--lf-ink-2); }
.schema-faq-section .schema-faq-answer p:last-child { margin-bottom: 0; }


/* ═══════════════════════════════════════
   HERO LEGACY (compat)
   ═══════════════════════════════════════ */
.lf-hero-compact { background: var(--lf-dark); padding: 64px var(--lf-pad) 0; }
.lf-hero-compact__main h1 { font-family: var(--lf-font-serif); color: white; }
.lf-hero-compact__main h1 em { font-style: italic; color: var(--lf-accent); }
.lf-hero-compact__sub { color: rgba(255,255,255,0.6); }

/* Section label */
.lf-section-header__label { display: flex; align-items: center; gap: 0; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--lf-accent); }
.lf-section-header__bar { display: none; }


/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1100px) {
  .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
}

@media (max-width: 1024px) {
  .lf-book-grid, .lf-book-grid--5 { grid-template-columns: repeat(3, 1fr); }
  .lf-genre-grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .lf-compare__grid { grid-template-columns: 1fr; gap: 16px; }
  .lf-svc-card { max-width: 480px; }
  .lf-steps__grid { grid-template-columns: 1fr; max-width: 420px; }
  .lf-article-layout--has-sidebar { display: block; }
  .lf-article-layout__sidebar { display: none !important; }
  .lf-blog-grid { grid-template-columns: repeat(2, 1fr); }
  .lf-related__grid { grid-template-columns: repeat(2, 1fr); }
  .lf-hero-v2__inner { grid-template-columns: 1fr; gap: 40px; }
  .lf-hero-v2__winner { display: none; }
  .lf-trustband__grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .lf-sticky-bar { display: none; }
  .lf-hero-v2__inner { padding: 48px 24px; }
  .lf-hero-v2__ctas { flex-direction: column; align-items: flex-start; }
  .lf-stats-bar { padding: 0 24px; }
  .lf-steps { padding: 48px 0; }
  .lf-steps__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .lf-step__connector { display: none; }
  .lf-quiz-banner { padding: 56px 24px; }
  .lf-book-section { padding: 48px 0; }
  .lf-book-grid { grid-template-columns: repeat(3, 1fr); }
  .lf-section--blog { padding: 48px 0; }
  .lf-blog-grid { grid-template-columns: 1fr; }
  .lf-blog-grid__right { gap: 12px; }
  .site-footer { padding: 48px 24px 28px; }
  .site-footer__grid { grid-template-columns: 1fr 1fr 1fr; gap: 28px; }
  .site-header__inner { padding: 0 24px; }
}

@media (max-width: 768px) {
  :root { --lf-pad: 20px; --lf-content-w: 100%; }
  .menu-toggle { display: block; }
  .main-navigation .menu {
    display: none; position: absolute; top: 64px; left: 0; right: 0;
    background: var(--lf-paper); border-bottom: 1px solid var(--lf-line);
    flex-direction: column; padding: 16px var(--lf-pad); gap: 0;
    box-shadow: var(--lf-shadow-lg);
  }
  .main-navigation .menu.is-open { display: flex; }
  .main-navigation .menu a { font-size: 16px; padding: 8px 0; }
  .site-header__search { display: none; }
  .lf-header-quiz-btn { display: none; }
  .lf-article__title { font-size: 28px; }
  .lf-blog-grid { grid-template-columns: 1fr; }
  .lf-related__grid { grid-template-columns: 1fr; }
  .lf-blog-card--featured .lf-blog-card__img { height: 180px; }
}

@media (max-width: 640px) {
  .lf-book-grid, .lf-book-grid--3 { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .lf-genre-grid { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 24px; }
  .site-footer__bottom { flex-direction: column; }
  .lf-compare--top { padding: 40px 0; }
  .lf-stats-bar__inner { grid-template-columns: 1fr; }
  .lf-stats-bar__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .lf-stats-bar__item:last-child { border-bottom: none; }
  .lf-trustband__grid { grid-template-columns: 1fr; }
  .lf-book-cta { flex-direction: column; gap: 12px; text-align: center; }
}

/* Selection */
::selection { background: rgba(226,69,42,0.15); color: var(--lf-ink); }

/* WP defaults */
.alignleft { float: left; margin-right: 1.5em; margin-bottom: 1.5em; }
.alignright { float: right; margin-left: 1.5em; margin-bottom: 1.5em; }
.aligncenter { clear: both; display: block; margin: 0 auto 1.5em; }
.sticky { display: block; }
.updated:not(.published) { display: none; }

.site-footer__brand .custom-logo {
	filter: brightness(0) invert(1);
	transition: filter 0.2s ease;
}