/* ─────────────────────────────────────────────
   EloReview – Frontend CSS  (V2 redesign)
   Design: Source Serif 4, Geist, JetBrains Mono
   Tokens fra Eloversigt V2 design-spec
──────────────────────────────────────────────*/

/* ── Design tokens ───────────────────────────── */
.elr-page {
  --eo-accent:      #16a34a;
  --eo-ink:         #0f1419;
  --eo-ink-soft:    #3a3f47;
  --eo-muted:       #6b7280;
  --eo-muted-soft:  #9ca3af;
  --eo-rule:        rgba(15,20,25,0.09);
  --eo-rule-strong: rgba(15,20,25,0.18);
  --eo-subtle:      #f7f7f5;
  --eo-paper:       #fafaf8;
  --eo-bg:          #ffffff;
  --eo-serif:       "Source Serif 4", Georgia, serif;
  --eo-sans:        "Geist", "Plus Jakarta Sans", system-ui, sans-serif;
  --eo-mono:        "JetBrains Mono", ui-monospace, monospace;
}

/* ── Page ────────────────────────────────────── */
.elr-page { background: var(--eo-bg); }

/* ── Columns ─────────────────────────────────── */
.elr-col {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 36px;
}
/* Header uses wider col so score-strip fits 5 cards */
.elr-hdr .elr-col {
  max-width: 980px;
}

/* ─────────────────────────────────────────────
   PAGE HEADER
──────────────────────────────────────────────*/
.elr-hdr {
  background: #fff;
  border-bottom: 1px solid var(--eo-rule);
  padding: 18px 0 36px;
}

/* Breadcrumb */
.elr-bc {
  font-family: var(--eo-sans);
  font-size: 12px;
  color: var(--eo-muted-soft);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}
.elr-bc a        { color: var(--eo-muted-soft); transition: color .15s; text-decoration: none; }
.elr-bc a:hover  { color: var(--eo-ink); }
.elr-bc__sep     { opacity: .5; }

/* ── Hero ─────────────────────────────────────── */
.elr-hero {
  display: grid;
  grid-template-columns: 104px 1fr auto;
  gap: 32px;
  align-items: start;
}
.elr-hero.no-aff {
  grid-template-columns: 104px 1fr;
}

/* Logo badge — 104×104 */
.elr-hero__logo-badge {
  width: 104px;
  height: 104px;
  border-radius: 18px;
  border: 1px solid var(--eo-rule);
  background: var(--eo-paper);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  padding: 12px;
  box-shadow: 0 1px 3px rgba(15,20,25,0.06);
  align-self: start;
}
.elr-hero__logo-img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.elr-hero__logo-init {
  font-family: var(--eo-sans);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.5px;
  color: var(--eo-ink);
}

/* Hero info column */
.elr-hero__kicker {
  font-family: var(--eo-sans);
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--eo-accent);
  margin-bottom: 10px;
}
.elr-hero__title {
  font-family: var(--eo-serif);
  font-size: 52px;
  font-weight: 400;
  letter-spacing: -1.2px;
  line-height: 1;
  color: var(--eo-ink);
  margin: 0 0 16px;
}
.elr-hero__title em { font-style: italic; }

/* Hero rating row */
.elr-hero__rating {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--eo-sans);
  font-size: 13.5px;
  color: var(--eo-muted);
  flex-wrap: wrap;
}
.elr-hero__rating-stars {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.elr-hero__rating-num {
  font-family: var(--eo-mono);
  font-size: 16px;
  font-weight: 600;
  color: var(--eo-ink);
  font-variant-numeric: tabular-nums;
}
.elr-hero__rating-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--eo-muted-soft);
  flex-shrink: 0;
}
.elr-hero__rating-date { color: var(--eo-muted-soft); }

/* Stars */
.elr-stars { display: inline-flex; gap: 1px; line-height: 0; vertical-align: middle; }
.elr-stars svg { display: block; flex-shrink: 0; }

/* Hero CTA — pill, affiliate only */
.elr-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  background: var(--eo-accent);
  color: #fff;
  font-family: var(--eo-sans);
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: start;
  margin-top: 22px; /* optically align with H1, below kicker */
  box-shadow: 0 4px 14px rgba(22,163,74,0.30);
  transition: background .15s, transform .12s;
}
.elr-hero__cta:hover { background: #15803d; transform: translateY(-1px); }
.elr-hero__cta-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.elr-aff-mark { font-size: 9px; vertical-align: super; margin-left: 1px; opacity: .7; }

/* ── Score strip ──────────────────────────────── */
.elr-score-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1.7fr;
  gap: 12px;
  margin-top: 28px;
}

/* Sub-score card */
.elr-score-card {
  padding: 20px 20px 16px;
  border-radius: 14px;
  background: var(--eo-paper);
  border: 1px solid var(--eo-rule);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  box-shadow: 0 1px 2px rgba(15,20,25,0.03);
}
.elr-score-card__kicker {
  font-family: var(--eo-sans);
  font-size: 8.5px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--eo-muted);
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 10px;
}
.elr-score-card__wt { color: var(--eo-muted-soft); white-space: nowrap; }
.elr-score-card__val {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.elr-score-card__num {
  font-family: var(--eo-serif);
  font-size: 30px;
  font-weight: 500;
  color: var(--eo-ink);
  letter-spacing: -0.6px;
  line-height: 0.95;
  font-variant-numeric: tabular-nums;
}
.elr-score-card__denom {
  font-family: var(--eo-sans);
  font-size: 12px;
  color: var(--eo-muted);
}
.elr-score-card__bar-wrap {
  height: 4px;
  background: rgba(15,20,25,0.06);
  border-radius: 2px;
  overflow: hidden;
}
.elr-score-card__bar-fill {
  height: 100%;
  width: 0;
  border-radius: 2px;
  transition: width .55s cubic-bezier(.2,.8,.3,1);
}

/* Samlet vurdering — dark card */
.elr-samlet-card {
  padding: 22px 24px;
  border-radius: 14px;
  background: linear-gradient(160deg, #0f1419 0%, #1e252e 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  box-shadow: 0 2px 8px rgba(15,20,25,0.15);
}
.elr-samlet-card__glow {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22,163,74,0.20), transparent 65%);
  pointer-events: none;
}
.elr-samlet-card__inner { position: relative; }
.elr-samlet-card__kicker {
  font-family: var(--eo-sans);
  font-size: 10px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--eo-accent);
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 7px;
}
/* elr-samlet-card__dot removed */
.elr-samlet-card__score {
  font-family: var(--eo-serif);
  font-size: 52px;
  font-weight: 500;
  letter-spacing: -1.5px;
  line-height: 0.95;
  font-variant-numeric: tabular-nums;
  display: flex;
  align-items: baseline;
  gap: 5px;
}
.elr-samlet-card__denom {
  font-family: var(--eo-serif);
  font-style: italic;
  font-size: 18px;
  opacity: 0.5;
}
.elr-samlet-card__foot {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}
/* elr-samlet-card__sub removed */

/* ─────────────────────────────────────────────
   CONTENT BODY
──────────────────────────────────────────────*/
.elr-body {
  padding: 28px 0 72px;
}

/* Thin dividers */
.elr-divider {
  border: none;
  border-top: 1px solid var(--eo-rule);
  margin: 40px 0;
}

/* ── Description ─────────────────────────────── */
.elr-desc {
  font-family: var(--eo-serif);
  font-size: 18px;
  line-height: 1.65;
  color: var(--eo-ink-soft);
  margin-top: 4px;
}
.elr-desc p              { margin-bottom: 1.2em; }
.elr-desc p:last-child   { margin-bottom: 0; }

/* ── Byline pill ─────────────────────────────── */
.elr-byline {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  margin-bottom: 4px;
  padding: 10px 14px;
  background: var(--eo-paper);
  border: 1px solid var(--eo-rule);
  border-radius: 999px;
  font-family: var(--eo-sans);
  font-size: 13px;
  color: var(--eo-muted);
  flex-wrap: nowrap;
  overflow: hidden;
}
.elr-byline__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1.5px solid rgba(15,20,25,0.09);
}
.elr-byline__avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.elr-byline__name  { font-weight: 600; color: var(--eo-ink); }
.elr-byline__sep   { opacity: .35; }
.elr-byline__green { color: var(--eo-accent); font-weight: 500; }

/* ─────────────────────────────────────────────
   PROS & CONS — full card design
──────────────────────────────────────────────*/
.elr-pc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.elr-pc__card {
  background: #fff;
  border: 1px solid var(--eo-rule);
  border-radius: 14px;
  padding: 26px 28px 20px;
  box-shadow: 0 1px 2px rgba(15,20,25,0.03);
}
.elr-pc__card-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.elr-pc__icon-badge {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.elr-pc__icon-badge.pro  { background: #dcfce7; color: #15803d; }
.elr-pc__icon-badge.con  { background: #fee2e2; color: #b91c1c; }
.elr-pc__icon-badge svg  { width: 16px; height: 16px; display: block; }
.elr-pc__card-kicker {
  font-family: var(--eo-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.elr-pc__card-kicker.pro { color: var(--eo-accent); }
.elr-pc__card-kicker.con { color: #b91c1c; }
.elr-pc__card-title {
  font-family: var(--eo-serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--eo-ink);
  letter-spacing: -0.2px;
}
.elr-pc__list { list-style: none; margin: 0; padding: 0; }
.elr-pc__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px dashed var(--eo-rule);
  font-family: var(--eo-serif);
  font-size: 15px;
  font-weight: 500;
  color: var(--eo-ink-soft);
  line-height: 1.45;
}
.elr-pc__dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.elr-pc__dot.pro { background: #16a34a; color: #fff; }
.elr-pc__dot.con { background: #ef4444; color: #fff; }
.elr-pc__dot svg { display: block; }

/* ─────────────────────────────────────────────
   "VORES ANMELDELSE" DIVIDER
──────────────────────────────────────────────*/
.elr-rev-divider {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 40px 0 0;
  padding-top: 32px;
  border-top: 1px solid var(--eo-rule);
}
.elr-rev-divider__left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.elr-rev-divider__kicker {
  font-family: var(--eo-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--eo-accent);
}
.elr-rev-divider__back {
  font-family: var(--eo-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--eo-muted);
  text-decoration: none;
  transition: color .15s;
}
.elr-rev-divider__back:hover { color: var(--eo-ink); }
.elr-rev-divider__method {
  font-family: var(--eo-sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--eo-muted-soft);
  text-decoration: none;
  white-space: nowrap;
  transition: color .15s;
}
.elr-rev-divider__method:hover { color: var(--eo-accent); }

/* ─────────────────────────────────────────────
   SCORE SECTIONS
──────────────────────────────────────────────*/
.elr-section {
  padding-top: 36px;
  margin-top: 36px;
  border-top: 1px solid var(--eo-rule);
}
.elr-section:first-of-type { border-top: none; padding-top: 28px; margin-top: 0; }

.elr-section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}
.elr-section-head__left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.elr-section-ordinal {
  font-family: var(--eo-serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1;
  font-weight: 400;
  flex-shrink: 0;
}
.elr-section-kicker {
  font-family: var(--eo-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: var(--eo-ink);
  text-transform: uppercase;
  line-height: 1.3;
}
.elr-section-wt { color: var(--eo-muted); font-weight: 600; }
.elr-section-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.elr-section-score {
  font-family: var(--eo-mono);
  font-size: 14px;
  font-weight: 500;
  color: var(--eo-ink);
  font-variant-numeric: tabular-nums;
}

/* Progress bar */
.elr-bar {
  height: 4px;
  background: rgba(15,20,25,0.06);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 18px;
}
.elr-bar-fill {
  height: 100%;
  width: 0;
  border-radius: 2px;
  transition: width .55s cubic-bezier(.2,.8,.3,1);
}

/* Section body text */
.elr-section-body {
  font-family: var(--eo-serif);
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--eo-ink-soft);
}
.elr-section-body p             { margin-bottom: 1.1em; }
.elr-section-body p:last-child  { margin-bottom: 0; }

/* Price/transparency callout */
.elr-pnote {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 14px;
  padding: 11px 14px;
  background: var(--eo-paper);
  border-radius: 8px;
  font-family: var(--eo-sans);
  font-size: 12px;
  color: var(--eo-muted);
  line-height: 1.5;
}
.elr-pnote svg { margin-top: 1px; }
.elr-green { color: var(--eo-accent); font-weight: 600; }

/* ─────────────────────────────────────────────
   CLOSING PROSA + CTA
──────────────────────────────────────────────*/
.elr-closing {
  margin-top: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--eo-rule);
}
.elr-closing__prose {
  font-family: var(--eo-serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.55;
  color: var(--eo-ink-soft);
  margin: 0 0 18px;
}

/* Affiliate — big green CTA block */
.elr-cta-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  border-radius: 14px;
  text-decoration: none;
  transition: opacity .15s;
}
.elr-cta-block.aff    { background: var(--eo-accent); color: #fff; }
.elr-cta-block.aff:hover { opacity: .88; }
.elr-cta-block__label {
  font-family: var(--eo-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  opacity: .7;
  margin-bottom: 4px;
}
.elr-cta-block__text {
  font-family: var(--eo-serif);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.2px;
  line-height: 1.2;
}
.elr-cta-block__text em { font-style: italic; color: #bbf7d0; }
.elr-cta-block__icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.elr-cta-block__icon svg { width: 15px; height: 15px; display: block; }

/* Non-affiliate — discrete gray button */
.elr-cta-noaff {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 22px;
  border-radius: 10px;
  border: 1.5px solid var(--eo-rule-strong);
  background: var(--eo-subtle);
  color: var(--eo-ink);
  font-family: var(--eo-sans);
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color .15s, background .15s;
}
.elr-cta-noaff:hover { border-color: var(--eo-ink); background: #ebebea; }

/* ─────────────────────────────────────────────
   DEALS
──────────────────────────────────────────────*/
.elr-deals-hd {
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid var(--eo-rule);
  margin-bottom: 6px;
}
.elr-deals-hd__kicker {
  font-family: var(--eo-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--eo-accent);
  margin-bottom: 8px;
}
.elr-deals-hd__title {
  font-family: var(--eo-serif);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.5px;
  color: var(--eo-ink);
  margin: 0 0 6px;
}
.elr-deals-hd__sub {
  font-family: var(--eo-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--eo-muted-soft);
  margin: 0 0 20px;
}

/* Deal list wrapper */
.elr-deal-list { border-top: 1.5px solid var(--eo-ink); border-bottom: 1.5px solid var(--eo-ink); }

.elr-deal {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 8px;
  border-top: 1px solid var(--eo-rule);
  transition: background .1s;
}
.elr-deal:first-child { border-top: none; }
.elr-deal:hover { background: var(--eo-paper); border-radius: 8px; }

.elr-deal__logo {
  width: 48px;
  height: 48px;
  border-radius: 11px;
  background: var(--eo-subtle);
  border: 1px solid var(--eo-rule);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  padding: 4px;
}
.elr-deal__logo img { max-width: 100%; max-height: 100%; object-fit: contain; display: block; }

.elr-deal__info { flex: 1; min-width: 0; }
.elr-deal__name {
  font-family: var(--eo-serif);
  font-size: 17px;
  font-weight: 400;
  color: var(--eo-ink);
  margin-bottom: 5px;
  letter-spacing: -0.15px;
}
.elr-deal__tags { display: flex; gap: 5px; flex-wrap: wrap; }
.elr-deal__tag {
  font-family: var(--eo-sans);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
}
.elr-deal__tag.forbrugs { background: #eff6ff; color: #1d4ed8; }
.elr-deal__tag.neutral  { background: var(--eo-subtle); color: var(--eo-muted); }
.elr-deal__tag.green    { background: #dcfce7; color: #15803d; }

/* Price columns */
.elr-deal__price-col {
  text-align: right;
  flex-shrink: 0;
}
.elr-deal__price-lbl {
  font-family: var(--eo-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--eo-muted-soft);
  margin-bottom: 3px;
}
.elr-deal__price-val {
  font-family: var(--eo-mono);
  font-size: 14px;
  font-weight: 500;
  color: var(--eo-ink);
  font-variant-numeric: tabular-nums;
}

/* Separator line */
.elr-deal__sep {
  width: 1px;
  height: 28px;
  background: var(--eo-rule);
  flex-shrink: 0;
}

/* Deal button */
.elr-deal__btn {
  font-family: var(--eo-sans);
  font-size: 13px;
  font-weight: 600;
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: opacity .15s;
  flex-shrink: 0;
}
.elr-deal__btn svg { width: 11px; height: 11px; display: block; }
.elr-deal__btn.aff   { background: var(--eo-accent); color: #fff; box-shadow: 0 2px 8px rgba(22,163,74,0.20); }
.elr-deal__btn.aff:hover { opacity: .88; }
.elr-deal__btn.noaff {
  background: transparent;
  color: var(--eo-ink);
  border: 1.5px solid var(--eo-rule-strong);
}
.elr-deal__btn.noaff:hover { border-color: var(--eo-ink); background: var(--eo-subtle); }

/* ─────────────────────────────────────────────
   METHODOLOGY
──────────────────────────────────────────────*/
.elr-meth {
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid var(--eo-rule);
}
.elr-meth__hd { margin-bottom: 22px; }
.elr-meth__kicker {
  font-family: var(--eo-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--eo-accent);
  margin-bottom: 8px;
}
.elr-meth__title {
  font-family: var(--eo-serif);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.5px;
  color: var(--eo-ink);
  margin: 0 0 8px;
}
.elr-meth__lead {
  font-family: var(--eo-serif);
  font-style: italic;
  font-size: 15px;
  color: var(--eo-muted-soft);
  line-height: 1.6;
  margin: 0;
}
.elr-meth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}
.elr-meth-box {
  border: 1px solid var(--eo-rule);
  border-radius: 12px;
  padding: 16px 18px;
}
.elr-meth-box__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-bottom: 10px;
}
.elr-meth-box__t {
  font-family: var(--eo-sans);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--eo-ink);
  margin-bottom: 5px;
}
.elr-meth-box__d {
  font-family: var(--eo-sans);
  font-size: 12px;
  color: var(--eo-muted-soft);
  line-height: 1.5;
}
.elr-meth-note {
  padding: 14px 18px;
  background: var(--eo-paper);
  border: 1px solid var(--eo-rule);
  border-radius: 10px;
  font-family: var(--eo-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--eo-muted);
  line-height: 1.6;
}
.elr-meth-note strong { font-style: normal; font-weight: 600; color: var(--eo-ink); }
.elr-meth-note a { color: var(--eo-accent); text-decoration: none; }
.elr-meth-note a:hover { text-decoration: underline; }

/* ─────────────────────────────────────────────
   FAQ
──────────────────────────────────────────────*/
.elr-faq-title {
  font-family: var(--eo-serif);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.5px;
  color: var(--eo-ink);
  margin: 0 0 8px;
}
.elr-faq-item { border-top: 1px solid var(--eo-rule); }
.elr-faq-item:last-child { border-bottom: 1px solid var(--eo-rule); }
.elr-faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  text-align: left;
  font-family: var(--eo-serif);
  font-size: 17px;
  font-weight: 400;
  color: var(--eo-ink);
  transition: color .15s;
}
.elr-faq-q:hover { color: var(--eo-accent); }
.elr-faq-chevron {
  flex-shrink: 0;
  color: var(--eo-muted-soft);
  transition: transform .22s ease;
  display: block;
}
.elr-faq-item.open .elr-faq-chevron { transform: rotate(180deg); }
.elr-faq-a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.elr-faq-a-inner {
  padding: 0 0 16px;
  font-family: var(--eo-serif);
  font-style: italic;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--eo-muted);
}

/* ─────────────────────────────────────────────
   AUTHOR
──────────────────────────────────────────────*/
.elr-author {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  align-items: start;
}
.elr-author__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.elr-author__avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.elr-author__body {}
.elr-author__name {
  font-family: var(--eo-serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--eo-ink);
  margin-bottom: 3px;
  letter-spacing: -0.2px;
}
.elr-author__role {
  font-family: var(--eo-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--eo-accent);
  margin-bottom: 10px;
}
.elr-author__bio {
  font-family: var(--eo-serif);
  font-style: italic;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--eo-muted);
  margin-bottom: 10px;
}
.elr-author__link {
  font-family: var(--eo-sans);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--eo-ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.elr-author__link svg  { width: 12px; height: 12px; display: block; }
.elr-author__link:hover { color: var(--eo-accent); }

/* ─────────────────────────────────────────────
   DATES
──────────────────────────────────────────────*/
.elr-dates { display: flex; }
.elr-dates__item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0 36px;
  flex: 1;
  justify-content: center;
}
.elr-dates__item + .elr-dates__item { border-left: 1px solid var(--eo-rule); }
.elr-dates__icon {
  width: 28px;
  height: 28px;
  background: var(--eo-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--eo-muted-soft);
  flex-shrink: 0;
}
.elr-dates__icon svg { width: 12px; height: 12px; display: block; }
.elr-dates__lbl {
  font-family: var(--eo-sans);
  font-size: 9px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--eo-muted-soft);
  margin-bottom: 2px;
}
.elr-dates__val {
  font-family: var(--eo-mono);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--eo-ink);
}

/* ─────────────────────────────────────────────
   AFFILIATE DISCLOSURE
──────────────────────────────────────────────*/
.elr-disclosure {
  padding: 0 36px 28px;
  max-width: 820px;
  margin: 0 auto;
  font-family: var(--eo-sans);
  font-size: 11.5px;
  color: var(--eo-muted-soft);
  line-height: 1.5;
}
.elr-disclosure strong { color: var(--eo-muted); }

/* ─────────────────────────────────────────────
   STICKY FLOATING CTA
──────────────────────────────────────────────*/
.elr-sticky {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #fff;
  border: 1px solid var(--eo-rule);
  border-radius: 14px;
  padding: 12px 14px 12px 12px;
  box-shadow: 0 4px 20px rgba(15,20,25,0.12), 0 1px 4px rgba(15,20,25,0.05);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 50;
  transform: translateY(16px);
  opacity: 0;
  pointer-events: none;
  transition: transform .3s cubic-bezier(.2,.7,.3,1), opacity .3s;
}
.elr-sticky.is-visible { transform: translateY(0); opacity: 1; pointer-events: auto; }
.elr-sticky__logo {
  width: 32px;
  height: 32px;
  background: var(--eo-subtle);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 3px;
  flex-shrink: 0;
}
.elr-sticky__logo img { max-width: 100%; max-height: 100%; object-fit: contain; display: block; }
.elr-sticky__name {
  font-family: var(--eo-sans);
  font-size: 13px;
  font-weight: 700;
  color: var(--eo-ink);
  margin-bottom: 2px;
}
.elr-sticky__rating {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--eo-mono);
  font-size: 11px;
  color: var(--eo-muted);
}
.elr-sticky__btn {
  display: inline-flex;
  align-items: center;
  background: var(--eo-accent);
  color: #fff;
  border-radius: 999px;
  padding: 9px 16px;
  font-family: var(--eo-sans);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s;
  flex-shrink: 0;
}
.elr-sticky__btn:hover { background: #15803d; }

/* ─────────────────────────────────────────────
   RESPONSIVE
──────────────────────────────────────────────*/
@media (max-width: 900px) {
  .elr-score-strip {
    grid-template-columns: 1fr 1fr;
  }
  .elr-samlet-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .elr-col        { padding: 0 18px; }
  .elr-body       { padding: 24px 0 80px; }
  .elr-disclosure { padding: 0 18px 22px; }

  /* Hero mobile */
  .elr-hero,
  .elr-hero.no-aff {
    grid-template-columns: 72px 1fr;
    row-gap: 12px;
  }
  .elr-hero__logo-badge { width: 72px; height: 72px; border-radius: 14px; }
  .elr-hero__title      { font-size: 28px; letter-spacing: -0.6px; }
  .elr-hero__cta        { grid-column: 1 / -1; justify-self: start; }

  /* Score strip mobile */
  .elr-score-strip {
    grid-template-columns: 1fr 1fr;
    margin-top: 20px;
  }
  .elr-samlet-card { grid-column: 1 / -1; }

  /* Pros/cons single column */
  .elr-pc           { grid-template-columns: 1fr; gap: 12px; }

  /* Rev divider */
  .elr-rev-divider  { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* Score section */
  .elr-section-head { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* Deals */
  .elr-deal {
    flex-wrap: wrap;
  }
  .elr-deal__price-col { display: none; }
  .elr-deal__sep       { display: none; }

  /* Methodology */
  .elr-meth-grid  { grid-template-columns: 1fr; }

  /* Author */
  .elr-author { grid-template-columns: 48px 1fr; }

  /* Dates */
  .elr-dates          { flex-direction: column; }
  .elr-dates__item    { border-left: none; border-top: 1px solid var(--eo-rule); padding: 12px 0; }
  .elr-dates__item:first-child { border-top: none; }

  /* Sticky */
  .elr-sticky { left: 12px; right: 12px; bottom: 12px; border-radius: 12px; }
}

@media (max-width: 480px) {
  .elr-hero__title { font-size: 22px; }
  .elr-score-strip { grid-template-columns: 1fr 1fr; gap: 8px; }
  .elr-byline      { border-radius: 10px; flex-wrap: wrap; }
}
