/*
Theme Name:  Eloversigt
Theme URI:   https://altrum.dk
Author:      Jesper Carstens
Author URI:  https://altrum.dk
Description: Redaktionelt magasin-tema til eloversigt.dk — uafhængig forbrugerportal.
Version:     2.0.0
Requires at least: 6.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: eloversigt
Tags:        custom-menu, featured-images, translation-ready, news, magazine
*/

/* ─────────────────────────────────────────────
   TOKENS & RESET
──────────────────────────────────────────────*/
:root {
  --eo-accent:       #004aad;
  --eo-accent-light: #5b8def;
  --eo-ink:          #0f1419;
  --eo-ink-soft:     #3a3f47;
  --eo-muted:        #6b7280;
  --eo-bg:           #ffffff;
  --eo-paper:        #fafaf8;
  --eo-subtle:       #f5f5f3;
  --eo-rule:         rgba(15,20,25,0.09);
  --eo-rule-strong:  rgba(15,20,25,0.18);
  --eo-topbar:       #0f1419;
  --eo-display:      "Source Serif 4", "Newsreader", Georgia, serif;
  --eo-sans:         "Geist", "Plus Jakarta Sans", system-ui, sans-serif;
  --eo-mono:         "JetBrains Mono", ui-monospace, monospace;
  --eo-radius:       14px;
  --eo-max:          1240px;
  --eo-gutter:       36px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--eo-sans);
  background: var(--eo-bg);
  color: var(--eo-ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.eo-wrap {
  max-width: var(--eo-max);
  margin: 0 auto;
  padding: 0 var(--eo-gutter);
}

/* ─────────────────────────────────────────────
   UTILITY BAR
──────────────────────────────────────────────*/
.eo-utilbar {
  background: var(--eo-topbar);
  color: rgba(245,239,225,0.85);
  font-family: var(--eo-sans);
  font-size: 13px;
  height: 42px;
  display: flex;
  align-items: center;
}
.eo-utilbar__inner {
  max-width: var(--eo-max);
  margin: 0 auto;
  padding: 0 var(--eo-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
}
.eo-utilbar__left { display: flex; align-items: center; gap: 10px; flex-wrap: nowrap; overflow: hidden; }
.eo-utilbar__right { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
.eo-utilbar__dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--eo-accent-light); }
.eo-utilbar__sep { opacity: 0.3; }
.eo-utilbar a { color: rgba(245,239,225,0.7); font-weight: 500; text-decoration: none; }
.eo-utilbar a:hover { color: #fff; }
.eo-utilbar strong { color: var(--eo-accent-light); }

/* Utilbar items */
.eo-utilbar__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  font-size: 12.5px;
  color: rgba(245,239,225,0.65);
  text-decoration: none;
  transition: color 0.15s;
}
.eo-utilbar__item i { font-size: 10px; }

/* Highlight: "Sammenlign 20+ elselskaber" */
.eo-utilbar__item--highlight {
  color: rgba(245,239,225,0.85);
  font-weight: 500;
}
.eo-utilbar__item--highlight strong { color: var(--eo-accent-light); }
.eo-utilbar__item--highlight:hover { color: #fff; }
.eo-utilbar__item--highlight i { color: var(--eo-accent-light); }

/* Muted tagline */
.eo-utilbar__item--muted {
  color: rgba(245,239,225,0.45);
  font-size: 12px;
}

/* Divider */
.eo-utilbar__divider {
  color: rgba(245,239,225,0.20);
  font-size: 11px;
  flex-shrink: 0;
}

/* Live: "X aktive tilbud" — pulserende grøn tæller */
.eo-utilbar__item--live {
  color: rgba(245,239,225,0.85);
  font-weight: 500;
  padding: 2px 8px 2px 6px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 999px;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.eo-utilbar__item--live strong {
  color: var(--eo-accent-light);
  font-variant-numeric: tabular-nums;
}
.eo-utilbar__item--live i { font-size: 9px; opacity: 0.55; }
.eo-utilbar__item--live:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.20);
  color: #fff;
}
.eo-utilbar__tagline {
  color: rgba(245,239,225,0.6);
  font-size: 12px;
  letter-spacing: 0.02em;
}
.eo-utilbar__offers {
  background: transparent;
  border: none;
  color: rgba(245,239,225,0.9);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.eo-utilbar__offers:hover { color: #fff; }

/* Search box in utilbar */
.eo-utilbar__search {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  overflow: hidden;
  transition: background 0.15s, border-color 0.15s;
}
.eo-utilbar__search:focus-within {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.25);
}
.eo-utilbar__search input[type="search"] {
  background: transparent;
  border: none;
  outline: none;
  color: rgba(245,239,225,0.9);
  font-family: var(--eo-sans);
  font-size: 12.5px;
  padding: 5px 12px 5px 14px;
  width: 200px;
  -webkit-appearance: none;
}
.eo-utilbar__search input::placeholder { color: rgba(245,239,225,0.4); }
.eo-utilbar__search input::-webkit-search-cancel-button { display: none; }
.eo-utilbar__search button {
  background: transparent;
  border: none;
  color: rgba(245,239,225,0.55);
  padding: 5px 12px 5px 4px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: color 0.15s;
}
.eo-utilbar__search button:hover { color: rgba(245,239,225,0.9); }

/* ─────────────────────────────────────────────
   HEADER
──────────────────────────────────────────────*/
.eo-header {
  background: var(--eo-bg);
  border-bottom: 1px solid var(--eo-rule);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
}
.eo-header__inner {
  max-width: var(--eo-max);
  margin: 0 auto;
  padding: 0 var(--eo-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}
.eo-header__brand { display: flex; align-items: baseline; gap: 12px; flex-shrink: 0; }
.eo-header__mark {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--eo-ink);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--eo-display);
  font-style: italic;
  font-size: 21px;
  line-height: 1;
  padding-bottom: 3px;
  flex-shrink: 0;
}
.eo-header__wordmark { line-height: 1; }
.eo-header__site-name {
  font-family: var(--eo-display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.5px;
  color: var(--eo-ink);
  line-height: 1;
}
.eo-header__site-name em { font-style: italic; }
.eo-header__tagline {
  font-family: var(--eo-sans);
  font-size: 10px;
  color: var(--eo-muted);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-top: 3px;
}
.eo-header__nav {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  flex: 1;
  justify-content: center;
  flex-wrap: nowrap;
}
.eo-header__nav li a {
  font-family: var(--eo-sans);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--eo-ink-soft);
  padding: 8px 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  position: relative;
  transition: color 0.15s;
}
.eo-header__nav li a:hover,
.eo-header__nav li.current-menu-item a { color: var(--eo-ink); }
.eo-header__nav li.current-menu-item a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--eo-accent);
  border-radius: 1px;
}
.eo-header__cta {
  background: #16a34a;
  color: #fff;
  border: none;
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
/* Shimmer-lag */
.eo-header__cta::before {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0)   0%,
    rgba(255,255,255,0.28) 50%,
    rgba(255,255,255,0)   100%
  );
  transform: skewX(-20deg);
  transition: left 0s;
  pointer-events: none;
}
.eo-header__cta:hover::before {
  left: 135%;
  transition: left 0.45s ease;
}
.eo-header__cta:hover {
  background: #15803d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22,163,74,0.35);
}
.eo-header__cta:active { transform: translateY(0); box-shadow: none; }
/* Bolt-ikon: lille zap ved hover */
.eo-header__cta svg {
  width: 14px; height: 14px;
  transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1);
}
.eo-header__cta:hover svg {
  transform: rotate(-12deg) scale(1.25);
}

/* ── Nav-ikoner via Font Awesome (nth-child) ─────────────────── */
.eo-header__nav li a::before {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 11px;
  opacity: 0.40;
  transition: opacity 0.15s, transform 0.15s;
  flex-shrink: 0;
  line-height: 1;
}
.eo-header__nav li a:hover::before,
.eo-header__nav li.current-menu-item a::before {
  opacity: 0.85;
  transform: scale(1.15);
}
/* 1. Elberegner → lommeregner */
.eo-header__nav li:nth-child(1) a::before { content: '\f1ec'; }
/* 2. Elpriser → lynbolt */
.eo-header__nav li:nth-child(2) a::before { content: '\f0e7'; }
/* 3. Elselskaber → bygning */
.eo-header__nav li:nth-child(3) a::before { content: '\f1ad'; }
/* 4. Tilbud og kampagner → tag */
.eo-header__nav li:nth-child(4) a::before { content: '\f02b'; }

/* Mobile hamburger */
.eo-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  padding: 6px;
}
.eo-hamburger span {
  width: 24px; height: 2px;
  background: var(--eo-ink);
  border-radius: 1px;
  display: block;
  transition: all 0.2s;
}

/* ─────────────────────────────────────────────
   HERO SLIDER
──────────────────────────────────────────────*/
.eo-hero { padding: 32px var(--eo-gutter) 0; max-width: var(--eo-max); margin: 0 auto; }
.eo-hero__stage {
  border-radius: var(--eo-radius);
  overflow: hidden;
  position: relative;
  height: 560px;
  background: #1a2418;
  box-shadow: 0 4px 32px rgba(20,17,13,0.12);
  cursor: pointer;
}
.eo-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.eo-hero__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.eo-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease;
}
.eo-hero__slide.is-active .eo-hero__bg { transform: scale(1.03); }
.eo-hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.25) 45%, rgba(0,0,0,0.05) 80%);
}
.eo-hero__bg-tint {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 25%, rgba(255,230,160,0.1), transparent 60%);
}
.eo-hero__content {
  position: absolute;
  left: 56px;
  right: 340px;
  bottom: 56px;
  color: #fff;
}
.eo-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.eo-hero__tag {
  padding: 5px 12px;
  background: #fff;
  color: var(--eo-ink);
  font-family: var(--eo-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  border-radius: 3px;
}
.eo-hero__meta {
  font-family: var(--eo-sans);
  font-size: 12.5px;
  opacity: 0.85;
  font-weight: 500;
}
.eo-hero__meta-sep { opacity: 0.5; margin: 0 4px; }
.eo-hero__title {
  font-family: var(--eo-display);
  font-size: 56px;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -1.5px;
  margin: 0 0 18px;
  text-wrap: balance;
}
.eo-hero__lead {
  font-family: var(--eo-display);
  font-size: 18px;
  line-height: 1.5;
  opacity: 0.9;
  font-style: italic;
  margin: 0;
  max-width: 560px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.eo-hero__author {
  margin-top: 18px;
  font-family: var(--eo-sans);
  font-size: 12.5px;
  opacity: 0.75;
}

/* Right sidebar — story list */
.eo-hero__list {
  position: absolute;
  right: 24px;
  top: 24px;
  bottom: 24px;
  width: 300px;
  background: rgba(15,20,25,0.58);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.eo-hero__item {
  flex: 1;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px 16px;
  background: transparent;
  border: none;
  border-top: 1px solid rgba(255,255,255,0.07);
  text-align: left;
  cursor: pointer;
  opacity: 0.58;
  transition: opacity 0.2s, background 0.2s;
  min-height: 0;
  color: #fff;
}
.eo-hero__item:first-child { border-top: none; }
.eo-hero__item:hover { opacity: 0.85; background: rgba(255,255,255,0.05); }
.eo-hero__item.is-active { opacity: 1; }
.eo-hero__item-num {
  font-family: var(--eo-display);
  font-style: italic;
  font-size: 26px;
  font-weight: 400;
  color: #fff;
  line-height: 1;
  transition: color 0.2s;
}
.eo-hero__item.is-active .eo-hero__item-num { color: var(--eo-accent-light); }
.eo-hero__item-kicker {
  font-family: var(--eo-sans);
  font-size: 9.5px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  font-weight: 700;
  margin-bottom: 3px;
  transition: color 0.2s;
}
.eo-hero__item.is-active .eo-hero__item-kicker { color: var(--eo-accent-light); }
.eo-hero__item-title {
  font-family: var(--eo-display);
  font-size: 13.5px;
  line-height: 1.25;
  color: #fff;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Progress bar */
.eo-hero__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255,255,255,0.12);
}
.eo-hero__progress-bar {
  height: 100%;
  background: var(--eo-accent-light);
  transform-origin: left;
  transform: scaleX(0);
}
.eo-hero__progress-bar.is-animating {
  animation: eoFillBar 6s linear forwards;
}
@keyframes eoFillBar {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* ─────────────────────────────────────────────
   PRIMARY CTA LINKS
──────────────────────────────────────────────*/
.eo-cta-row {
  padding: 28px var(--eo-gutter) 0;
  max-width: var(--eo-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.eo-cta-card {
  display: flex;
  border-radius: var(--eo-radius);
  padding: 32px 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.15s;
  text-decoration: none;
}
.eo-cta-card:hover { transform: translateY(-2px); }
.eo-cta-card--dark { background: var(--eo-ink); color: #fff; }
.eo-cta-card--light { background: var(--eo-bg); color: var(--eo-ink); border: 1px solid var(--eo-rule); }
.eo-cta-card__glow {
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  pointer-events: none;
}
.eo-cta-card--dark .eo-cta-card__glow { background: radial-gradient(circle, rgba(74,200,140,0.22), transparent 65%); }
.eo-cta-card--light .eo-cta-card__glow { background: radial-gradient(circle, rgba(217,119,6,0.12), transparent 65%); }
.eo-cta-card__body { position: relative; flex: 1; }
.eo-cta-card__eyebrow {
  font-family: var(--eo-sans);
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
}
.eo-cta-card--dark .eo-cta-card__eyebrow { color: var(--eo-accent-light); }
.eo-cta-card--light .eo-cta-card__eyebrow { color: var(--eo-muted); }
.eo-cta-card__title {
  font-family: var(--eo-display);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.07;
  letter-spacing: -0.8px;
  margin-bottom: 12px;
}
.eo-cta-card--dark .eo-cta-card__title em { color: var(--eo-accent-light); }
.eo-cta-card--light .eo-cta-card__title em { font-style: italic; }
.eo-cta-card__desc {
  font-size: 14px;
  line-height: 1.55;
  max-width: 400px;
  margin-bottom: 24px;
}
.eo-cta-card--dark .eo-cta-card__desc { opacity: 0.7; }
.eo-cta-card--light .eo-cta-card__desc { color: var(--eo-muted); }
.eo-cta-card__link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--eo-sans);
  font-size: 13.5px;
  font-weight: 600;
}
.eo-cta-card--dark .eo-cta-card__link { color: #fff; }
.eo-cta-card--light .eo-cta-card__link { color: var(--eo-accent); }
.eo-cta-card__link svg { width: 13px; height: 13px; }

/* ─────────────────────────────────────────────
   SECTION HEADERS
──────────────────────────────────────────────*/
.eo-section {
  padding: 64px var(--eo-gutter) 0;
  max-width: var(--eo-max);
  margin: 0 auto;
}
.eo-section--border { border-top: 1px solid var(--eo-rule); padding-top: 48px; }
.eo-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}
.eo-section__heading {
  font-family: var(--eo-display);
  font-size: 44px;
  font-weight: 400;
  letter-spacing: -1px;
  line-height: 1;
  margin: 0;
}
.eo-section__heading em { font-style: italic; color: var(--eo-accent); }
.eo-section__eyebrow {
  font-family: var(--eo-sans);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--eo-accent);
  margin-bottom: 12px;
}
.eo-section__link {
  font-family: var(--eo-sans);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--eo-ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.eo-section__link svg { width: 12px; height: 12px; }
.eo-section__link:hover { color: var(--eo-accent); }

/* ─────────────────────────────────────────────
   BEDSTE ELSELSKABER
──────────────────────────────────────────────*/
.eo-best {
  padding: 64px var(--eo-gutter) 0;
  max-width: var(--eo-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 2.15fr;
  gap: 56px;
  align-items: start;
}
.eo-best__sidebar { position: sticky; top: 88px; }
.eo-best__month {
  font-family: var(--eo-sans);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--eo-accent);
  font-weight: 600;
  margin-bottom: 14px;
}
.eo-best__heading {
  font-family: var(--eo-display);
  font-size: 52px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -1.4px;
  margin: 0 0 20px;
}
.eo-best__heading em { font-style: italic; color: var(--eo-accent); }
.eo-best__desc {
  font-family: var(--eo-display);
  font-style: italic;
  font-size: 17px;
  color: var(--eo-ink-soft);
  line-height: 1.5;
  margin: 0 0 28px;
}
.eo-best__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border: 1px solid var(--eo-rule-strong);
  border-radius: 999px;
  font-family: var(--eo-sans);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--eo-ink);
  transition: background 0.15s;
}
.eo-best__cta:hover { background: var(--eo-subtle); }
.eo-best__cta svg { width: 13px; height: 13px; }

.eo-best__list { }
.eo-best__row {
  display: grid;
  grid-template-columns: 40px 56px 1fr auto auto;
  align-items: center;
  gap: 18px;
  padding: 22px 4px;
  border-top: 1px solid var(--eo-rule);
  cursor: pointer;
  transition: background 0.1s;
}
.eo-best__row:first-child { border-top: 1px solid var(--eo-ink); }
.eo-best__row:last-child { border-bottom: 1px solid var(--eo-ink); }
.eo-best__row:hover { background: var(--eo-subtle); border-radius: 6px; }
.eo-best__rank {
  font-family: var(--eo-display);
  font-style: italic;
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
  color: var(--eo-muted);
}
.eo-best__row:first-child .eo-best__rank { color: var(--eo-accent); }
.eo-best__logo {
  width: 52px; height: 52px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.3px;
  flex-shrink: 0;
}
.eo-best__info { min-width: 0; }
.eo-best__name {
  font-family: var(--eo-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--eo-ink);
  letter-spacing: -0.3px;
  line-height: 1.1;
  margin-bottom: 4px;
}
.eo-best__tag {
  font-size: 10.5px;
  font-family: var(--eo-sans);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--eo-accent);
  font-weight: 700;
}
.eo-best__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.eo-best__rating-val {
  font-family: var(--eo-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.5px;
  color: var(--eo-ink);
  line-height: 1;
}
.eo-stars {
  display: inline-flex;
  gap: 2px;
  align-items: center;
}
.eo-stars svg { display: block; }
.eo-best__btn {
  padding: 10px 18px;
  border-radius: 8px;
  border: none;
  background: var(--eo-ink);
  color: #fff;
  font-family: var(--eo-sans);
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  transition: background 0.15s;
}
.eo-best__row:first-child .eo-best__btn { background: var(--eo-accent); }
.eo-best__btn:hover { opacity: 0.85; }
.eo-best__btn svg { width: 12px; height: 12px; }

/* ─────────────────────────────────────────────
   NEWS GRID
──────────────────────────────────────────────*/
.eo-news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.eo-news-card { cursor: pointer; }
.eo-news-card__thumb {
  height: 180px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background: var(--eo-subtle);
  margin-bottom: 18px;
}
.eo-news-card__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.eo-news-card:hover .eo-news-card__thumb img { transform: scale(1.04); }
.eo-news-card__thumb-fallback {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.eo-news-card__cat {
  position: absolute;
  top: 14px; left: 14px;
  padding: 4px 10px;
  background: #fff;
  border-radius: 999px;
  font-family: var(--eo-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--eo-ink);
}
.eo-news-card__meta {
  font-family: var(--eo-sans);
  font-size: 11.5px;
  color: var(--eo-muted);
  margin-bottom: 8px;
}
.eo-news-card__title {
  font-family: var(--eo-display);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.28;
  color: var(--eo-ink);
  margin: 0 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.eo-news-card:hover .eo-news-card__title { color: var(--eo-accent); }
.eo-news-card__excerpt {
  font-family: var(--eo-sans);
  font-size: 13px;
  color: var(--eo-ink-soft);
  line-height: 1.55;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ─────────────────────────────────────────────
   GUIDES
──────────────────────────────────────────────*/
.eo-guides__list { list-style: none; }
.eo-guides__item {
  display: grid;
  grid-template-columns: 80px 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 22px 4px;
  border-top: 1px solid var(--eo-rule);
  cursor: pointer;
  transition: background 0.1s;
  text-decoration: none;
  color: var(--eo-ink);
}
.eo-guides__item:first-child { border-top: 1px solid var(--eo-ink); }
.eo-guides__item:last-child { border-bottom: 1px solid var(--eo-ink); }
.eo-guides__item:hover { background: var(--eo-subtle); border-radius: 6px; }
.eo-guides__num {
  font-family: var(--eo-display);
  font-style: italic;
  font-size: 40px;
  font-weight: 400;
  color: var(--eo-accent);
  line-height: 1;
}
.eo-guides__kicker {
  font-family: var(--eo-sans);
  font-size: 10.5px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--eo-muted);
  font-weight: 700;
  margin-bottom: 6px;
}
.eo-guides__title {
  font-family: var(--eo-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--eo-ink);
  line-height: 1.22;
  letter-spacing: -0.3px;
}
.eo-guides__time {
  font-family: var(--eo-sans);
  font-size: 12px;
  color: var(--eo-muted);
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.eo-guides__time svg { width: 12px; height: 12px; }
.eo-guides__arrow { color: var(--eo-muted); }
.eo-guides__arrow svg { width: 16px; height: 16px; }

/* ─────────────────────────────────────────────
   NEWSLETTER (MailerLite)
──────────────────────────────────────────────*/
.eo-newsletter {
  padding: 64px var(--eo-gutter) 0;
  max-width: var(--eo-max);
  margin: 0 auto;
}
.eo-newsletter__box {
  background: var(--eo-ink);
  color: var(--eo-bg);
  border-radius: var(--eo-radius);
  padding: 56px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.eo-newsletter__glow {
  position: absolute;
  top: -100px; right: -50px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,200,140,0.18), transparent 65%);
  pointer-events: none;
}
.eo-newsletter__eyebrow {
  font-family: var(--eo-sans);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--eo-accent-light);
  font-weight: 600;
  margin-bottom: 14px;
}
.eo-newsletter__heading {
  font-family: var(--eo-display);
  font-size: 42px;
  font-weight: 400;
  letter-spacing: -1px;
  line-height: 1.07;
  margin: 0 0 18px;
}
.eo-newsletter__heading em { font-style: italic; }
.eo-newsletter__desc {
  font-family: var(--eo-display);
  font-style: italic;
  font-size: 17px;
  opacity: 0.72;
  line-height: 1.5;
  margin: 0;
}
.eo-newsletter__form-side { position: relative; }
/* MailerLite embed overrides */
.eo-newsletter__box .ml-embedded,
.eo-newsletter__box .ml-form-embedContainer {
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
}
.eo-newsletter__box .ml-form-embedWrapper { background: transparent !important; }
.eo-newsletter__box input[type="email"] {
  background: rgba(255,255,255,0.1) !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  color: #fff !important;
  border-radius: 999px !important;
  padding: 14px 20px !important;
  font-family: var(--eo-sans) !important;
  font-size: 15px !important;
  width: 100% !important;
  margin-bottom: 10px !important;
}
.eo-newsletter__box input[type="email"]::placeholder { color: rgba(255,255,255,0.45) !important; }
.eo-newsletter__box button[type="submit"],
.eo-newsletter__box input[type="submit"] {
  background: var(--eo-accent) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 999px !important;
  padding: 13px 26px !important;
  font-family: var(--eo-sans) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  width: 100% !important;
  cursor: pointer !important;
  transition: background 0.15s !important;
}
.eo-newsletter__box button[type="submit"]:hover { background: #003a8c !important; }
.eo-newsletter__trust {
  display: flex;
  gap: 18px;
  margin-top: 14px;
  font-family: var(--eo-sans);
  font-size: 12px;
  opacity: 0.5;
  color: #fff;
  flex-wrap: wrap;
}

/* ─────────────────────────────────────────────
   FOOTER
──────────────────────────────────────────────*/
.eo-footer {
  margin-top: 80px;
  background: var(--eo-ink);
  color: rgba(245,239,225,0.75);
  padding: 56px 48px 28px;
}
.eo-footer__inner {
  max-width: var(--eo-max);
  margin: 0 auto;
}
.eo-footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.eo-footer__brand { }

/* Logo — billede (når custom logo er sat i WordPress) */
.eo-footer__logo-link { display: inline-block; margin-bottom: 18px; }
.eo-footer__logo-img {
  height: 40px;
  width: auto;
  display: block;
}

/* Fallback: CSS-tekstlogo */
.eo-footer__logo-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 18px;
}
.eo-footer__mark {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--eo-display);
  font-style: italic;
  font-size: 20px;
  padding-bottom: 2px;
}
.eo-footer__site-name {
  font-family: var(--eo-display);
  font-size: 28px;
  color: #fff;
  font-weight: 400;
  letter-spacing: -0.5px;
  line-height: 1;
}
.eo-footer__site-name em { font-style: italic; }
.eo-footer__desc {
  font-family: var(--eo-sans);
  font-size: 14px;
  color: rgba(245,239,225,0.6);
  line-height: 1.65;
  margin: 0 0 22px;
  max-width: 380px;
}
/* Disclaimer-bånd */
.eo-footer__disclaimer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  padding: 16px 20px;
  margin: 32px 0 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  font-family: var(--eo-sans);
  font-size: 12.5px;
  color: rgba(245,239,225,0.5);
  line-height: 1.55;
}
.eo-footer__disclaimer-icon {
  flex-shrink: 0;
  color: rgba(245,239,225,0.35);
}
.eo-footer__disclaimer-link {
  color: rgba(245,239,225,0.55);
  text-decoration: underline;
  text-decoration-color: rgba(245,239,225,0.2);
  text-underline-offset: 3px;
  white-space: nowrap;
  transition: color 0.15s;
}
.eo-footer__disclaimer-link:hover { color: rgba(245,239,225,0.85); }
.eo-footer__col-title {
  font-family: var(--eo-sans);
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--eo-accent-light);
  font-weight: 700;
  margin-bottom: 18px;
}
.eo-footer__col-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.eo-footer__col-list a {
  color: rgba(245,239,225,0.75);
  font-family: var(--eo-sans);
  font-size: 13.5px;
  transition: color 0.15s;
}
.eo-footer__col-list a:hover { color: #fff; }
.eo-footer__bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--eo-sans);
  font-size: 12px;
  color: rgba(245,239,225,0.45);
}
.eo-footer__bottom-left { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.eo-footer__bottom-left a { color: rgba(245,239,225,0.45); }
.eo-footer__bottom-left a:hover { color: rgba(245,239,225,0.8); }
.eo-footer__dot { opacity: .35; }
.eo-footer__bottom-right {
  font-family: var(--eo-sans);
  font-size: 12px;
  color: rgba(245,239,225,0.4);
}
.eo-footer__bottom-right a {
  color: rgba(245,239,225,0.55);
  text-decoration: underline;
  text-decoration-color: rgba(245,239,225,0.2);
  text-underline-offset: 3px;
  transition: color 0.15s;
}
.eo-footer__bottom-right a:hover { color: rgba(245,239,225,0.85); }

/* ─────────────────────────────────────────────
   SINGLE POST / PAGES
──────────────────────────────────────────────*/
/* ─── Custom logo ─── */
.eo-header__logo-custom {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  max-width: 180px;
}
.eo-header__logo-custom img {
  height: 40px;
  max-height: 40px;
  width: auto;
  max-width: 180px;
  display: block;
  object-fit: contain;
}

/* ─────────────────────────────────────────────
   ARCHIVE — magasin-layout
──────────────────────────────────────────────*/

/* Wrapper */
.eo-arc {
  max-width: var(--eo-max);
  margin: 0 auto;
  padding: 0 var(--eo-gutter) 80px;
}

/* ── Archive header ── */
.eo-arc__head {
  border-bottom: 1px solid var(--eo-rule-strong);
  padding: 20px 0 36px;
  margin-bottom: 48px;
}
.eo-arc__head-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.eo-arc__title-block { flex: 1; min-width: 0; }
.eo-arc__eyebrow {
  font-family: var(--eo-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--eo-accent);
  margin-bottom: 10px;
}
.eo-arc__title {
  font-family: var(--eo-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.5px;
  color: var(--eo-ink);
  margin: 0;
}
.eo-arc__title em { font-style: italic; color: var(--eo-accent); }
.eo-arc__desc {
  font-family: var(--eo-display);
  font-style: italic;
  font-size: 17px;
  color: var(--eo-ink-soft);
  margin-top: 14px;
  max-width: 600px;
}
.eo-arc__count {
  font-family: var(--eo-sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--eo-muted);
  background: var(--eo-subtle);
  border: 1px solid var(--eo-rule);
  border-radius: 999px;
  padding: 5px 14px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Hero article ── */
.eo-arc-hero {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 0;
  border-radius: var(--eo-radius);
  overflow: hidden;
  border: 1px solid var(--eo-rule);
  margin-bottom: 56px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .2s;
  background: var(--eo-bg);
}
.eo-arc-hero:hover { box-shadow: 0 8px 32px rgba(15,20,25,0.10); }
.eo-arc-hero__img {
  position: relative;
  background: var(--eo-subtle);
  overflow: hidden;
  min-height: 360px;
}
.eo-arc-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.eo-arc-hero:hover .eo-arc-hero__img img { transform: scale(1.03); }
.eo-arc-hero__fallback {
  width: 100%;
  height: 100%;
  min-height: 360px;
}
.eo-arc-hero__badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--eo-ink);
  color: #fff;
  font-family: var(--eo-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}
.eo-arc-hero__cat {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  font-family: var(--eo-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--eo-ink);
  padding: 4px 12px;
}
.eo-arc-hero__body {
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  border-left: 1px solid var(--eo-rule);
}
.eo-arc-hero__meta {
  font-family: var(--eo-sans);
  font-size: 12px;
  color: var(--eo-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}
.eo-arc-hero__meta-sep { opacity: .4; }
.eo-arc-hero__title {
  font-family: var(--eo-display);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.3px;
  color: var(--eo-ink);
  margin-bottom: 16px;
}
.eo-arc-hero:hover .eo-arc-hero__title { color: var(--eo-accent); }
.eo-arc-hero__excerpt {
  font-family: var(--eo-display);
  font-size: 16px;
  color: var(--eo-ink-soft);
  line-height: 1.6;
  margin-bottom: 28px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.eo-arc-hero__cta {
  font-family: var(--eo-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--eo-accent);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  transition: gap .15s;
}
.eo-arc-hero:hover .eo-arc-hero__cta { gap: 10px; }

/* ── Grid label ── */
.eo-arc__grid-wrap { }
.eo-arc__grid-label {
  font-family: var(--eo-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--eo-muted);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--eo-rule);
}

/* ── Pagination ── */
.eo-arc__pager {
  margin-top: 56px;
  display: flex;
  justify-content: center;
}
.eo-arc__pager .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border-radius: 8px;
  font-family: var(--eo-sans);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--eo-rule);
  color: var(--eo-ink);
  transition: all .15s;
  margin: 0 3px;
}
.eo-arc__pager .current { background: var(--eo-ink); color: #fff; border-color: var(--eo-ink); }
.eo-arc__pager .page-numbers:hover:not(.current) { border-color: var(--eo-ink-soft); }

/* ── Empty state ── */
.eo-arc__empty {
  text-align: center;
  padding: 80px 0;
  color: var(--eo-muted);
  font-family: var(--eo-display);
  font-style: italic;
  font-size: 18px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .eo-arc-hero {
    grid-template-columns: 1fr;
  }
  .eo-arc-hero__img { min-height: 260px; }
  .eo-arc-hero__body { border-left: none; border-top: 1px solid var(--eo-rule); padding: 28px 28px 32px; }
  .eo-arc-hero__title { font-size: 24px; }
  .eo-arc__head-inner { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 600px) {
  .eo-arc { padding: 0 20px 60px; }
  .eo-arc__head { padding: 32px 0 24px; margin-bottom: 32px; }
  .eo-arc-hero__body { padding: 22px 20px 26px; }
}

/* ─── Breadcrumbs ─── */
.eo-bc {
  font-family: var(--eo-sans);
  font-size: 12px;
  color: var(--eo-muted);
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.eo-bc a {
  color: var(--eo-muted);
  text-decoration: none;
  transition: color .15s;
}
.eo-bc a:hover { color: var(--eo-accent); }
.eo-bc__sep { opacity: .45; }
.eo-bc__current { color: #374151; }

/* ─── Single post / page ─── */
.eo-single {
  max-width: 1100px;
  margin: 24px auto;
  padding: 0 var(--eo-gutter);
}

/* ── 2-kolonne layout ─────────────────────────────────────────────── */
.eo-single__layout {
  display: grid;
  grid-template-columns: minmax(0, 680px) 300px;
  gap: 56px;
  align-items: start;
}

/* ── Sidebar ──────────────────────────────────────────────────────── */
.eo-single__sidebar {
  position: sticky;
  top: 88px; /* under fixed header */
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* CTA-boks */
.eo-sidebar-cta {
  background: var(--eo-accent);
  border-radius: var(--eo-radius);
  padding: 28px 24px;
  color: #fff;
}
.eo-sidebar-cta__label {
  font-family: var(--eo-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 6px;
}
.eo-sidebar-cta__heading {
  font-family: var(--eo-display);
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.25;
}
.eo-sidebar-cta__text {
  font-family: var(--eo-sans);
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  margin-bottom: 18px;
}
.eo-sidebar-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  color: var(--eo-accent);
  font-family: var(--eo-sans);
  font-size: 14px;
  font-weight: 700;
  padding: 11px 20px;
  border-radius: 999px;
  text-decoration: none;
  transition: opacity .15s;
  width: 100%;
  justify-content: center;
}
.eo-sidebar-cta__btn:hover { opacity: .88; }
.eo-sidebar-cta__btn svg { width: 14px; height: 14px; }

/* Relaterede artikler i sidebar */
.eo-sidebar-related {
  border: 1px solid var(--eo-rule);
  border-radius: var(--eo-radius);
  overflow: hidden;
}
.eo-sidebar-related__heading {
  font-family: var(--eo-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--eo-muted);
  padding: 14px 18px 12px;
  border-bottom: 1px solid var(--eo-rule);
  margin: 0;
}
.eo-sidebar-related__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.eo-sidebar-related__item {
  border-bottom: 1px solid var(--eo-rule);
}
.eo-sidebar-related__item:last-child { border-bottom: none; }
.eo-sidebar-related__link {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px 18px;
  text-decoration: none;
  transition: background .12s;
}
.eo-sidebar-related__link:hover { background: var(--eo-paper); }
.eo-sidebar-related__cat {
  font-family: var(--eo-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--eo-accent);
}
.eo-sidebar-related__title {
  font-family: var(--eo-sans);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--eo-ink);
  line-height: 1.4;
}
.eo-sidebar-related__date {
  font-family: var(--eo-sans);
  font-size: 11px;
  color: var(--eo-muted);
}

/* ── Page-template ────────────────────────────────────────────────── */
.eo-page {
  max-width: 1100px;
  margin: 32px auto;
  padding: 0 var(--eo-gutter);
}
.eo-page__header {
  margin-bottom: 28px;
}
.eo-page__featured {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 36px;
  max-height: 460px;
}
.eo-page__featured img { width: 100%; height: 100%; object-fit: cover; }
.eo-page__body {
  max-width: 860px;
  margin: 0 auto;
}

/* ── Mobil: enkeltkolonne ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .eo-single__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .eo-single__sidebar {
    position: static;
  }
  /* Sidebar-CTA og relaterede på mobil i rækkefølge under brødtekst */
}
@media (max-width: 640px) {
  .eo-page__title { font-size: 34px; }
}

/* Eyebrow: kategori + breadcrumb side om side */
.eo-single__eyebrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.eo-single__cat {
  font-family: var(--eo-sans);
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--eo-accent);
  flex-shrink: 0;
}
.eo-single__cat a { color: var(--eo-accent); text-decoration: none; }
.eo-single__breadcrumb {
  font-family: var(--eo-sans);
  font-size: 12.5px;
  color: var(--eo-muted);
}
.eo-single__breadcrumb a {
  color: var(--eo-muted);
  text-decoration: none;
  transition: color .15s;
}
.eo-single__breadcrumb a:hover { color: var(--eo-accent); }
/* Skjul det aktuelle sideled (sidste element) i breadcrumb */
.eo-single__breadcrumb .breadcrumb_last {
  display: none;
}

.eo-single__title {
  font-family: var(--eo-display);
  font-size: 52px;
  font-weight: 400;
  letter-spacing: -1px;
  line-height: 1.08;
  margin: 0 0 14px;
  max-width: 840px;
}
.eo-single__featured {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0;
  max-height: 520px;
}
.eo-single__featured img { width: 100%; height: 100%; object-fit: cover; }

/* Byline under billedet */
.eo-single__meta {
  font-family: var(--eo-sans);
  font-size: 13px;
  color: var(--eo-muted);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 14px 0 18px;
  border-bottom: 1px solid var(--eo-rule);
  margin-bottom: 36px;
}
.eo-single__author {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--eo-ink-soft);
}
.eo-single__avatar {
  width: 28px !important;
  height: 28px !important;
  border-radius: 50%;
  object-fit: cover;
}
.eo-single__meta-sep { opacity: .35; }

/* Body typography */
.eo-single__body {
  font-family: var(--eo-display);
  font-size: 19px;
  line-height: 1.8;
  color: var(--eo-ink);
}
.eo-single__body p { margin-bottom: 1.5em; }
.eo-single__body h2 {
  font-family: var(--eo-display);
  font-size: 34px;
  font-weight: 400;
  letter-spacing: -0.5px;
  margin: 2.2em 0 0.8em;
  line-height: 1.15;
}
.eo-single__body h3 {
  font-family: var(--eo-display);
  font-size: 26px;
  font-weight: 500;
  margin: 1.8em 0 0.7em;
}
.eo-single__body h4 {
  font-family: var(--eo-sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 1.6em 0 0.6em;
}
.eo-single__body a { color: var(--eo-accent); text-decoration: underline; }
.eo-single__body a:hover { color: #003a8c; }

/* Lister — korrekt font og spacing */
.eo-single__body ul,
.eo-single__body ol {
  font-family: var(--eo-display);
  font-size: 19px;
  line-height: 1.75;
  padding-left: 1.6em;
  margin-bottom: 1.5em;
  color: var(--eo-ink);
}
.eo-single__body ul { list-style: disc; }
.eo-single__body ol { list-style: decimal; }
.eo-single__body li {
  margin-bottom: 0.6em;
  padding-left: 0.2em;
}
.eo-single__body li::marker { color: var(--eo-accent); }

.eo-single__body blockquote {
  border-left: 3px solid var(--eo-accent);
  padding: 0.5em 0 0.5em 1.5em;
  font-style: italic;
  margin: 2em 0;
  color: var(--eo-ink-soft);
  font-size: 21px;
}
.eo-single__body img { border-radius: 8px; margin: 1.5em 0; max-width: 100%; }
.eo-single__body figure { margin: 2em 0; }
.eo-single__body figcaption {
  font-family: var(--eo-sans);
  font-size: 13px;
  color: var(--eo-muted);
  margin-top: 8px;
  text-align: center;
}
.eo-single__body table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--eo-sans);
  font-size: 15px;
  margin: 1.5em 0;
}
.eo-single__body th {
  background: var(--eo-subtle);
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid var(--eo-rule-strong);
}
.eo-single__body td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--eo-rule);
}
.eo-single__body code {
  font-family: var(--eo-mono);
  font-size: 0.85em;
  background: var(--eo-subtle);
  padding: 2px 6px;
  border-radius: 3px;
}
.eo-single__body pre {
  background: var(--eo-ink);
  color: #f5efe1;
  padding: 1.2em 1.5em;
  border-radius: 8px;
  overflow-x: auto;
  font-family: var(--eo-mono);
  font-size: 14px;
  line-height: 1.6;
  margin: 1.5em 0;
}

/* Wide elements kan stikke ud over tekstkolonnen */
.eo-single__body .wp-block-image.alignwide,
.eo-single__body .wp-block-table,
.eo-single__body .wp-block-cover { max-width: 960px; width: 100%; }

/* ─────────────────────────────────────────────
   LEAD / FEATURED STORY (erstatter slider)
──────────────────────────────────────────────*/
.eo-lead { max-width: var(--eo-max); margin: 0 auto; padding: 0 var(--eo-gutter); }
.eo-lead__inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 24px;
  align-items: start;
}
.eo-lead__primary {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--eo-ink);
  cursor: pointer;
}
.eo-lead__img {
  position: relative;
  border-radius: var(--eo-radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--eo-subtle);
  margin-bottom: 24px;
}
.eo-lead__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.eo-lead__primary:hover .eo-lead__img img { transform: scale(1.03); }
.eo-lead__cat {
  position: absolute;
  top: 16px; left: 16px;
  padding: 5px 12px;
  background: #fff;
  border-radius: 999px;
  font-family: var(--eo-sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--eo-ink);
  box-shadow: 0 1px 4px rgba(0,0,0,.1);
}
.eo-lead__cat--sm { font-size: 9.5px; padding: 3px 9px; }
.eo-lead__body { }
.eo-lead__meta {
  font-family: var(--eo-sans);
  font-size: 12px;
  color: var(--eo-muted);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.eo-lead__title {
  font-family: var(--eo-display);
  font-size: 42px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.8px;
  color: var(--eo-ink);
  margin: 0 0 16px;
  transition: color 0.15s;
}
.eo-lead__primary:hover .eo-lead__title { color: var(--eo-accent); }
.eo-lead__excerpt {
  font-family: var(--eo-display);
  font-style: italic;
  font-size: 18px;
  line-height: 1.55;
  color: var(--eo-ink-soft);
  margin: 0 0 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.eo-lead__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--eo-sans);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--eo-accent);
}
.eo-lead__cta svg { width: 13px; height: 13px; }

/* Sekundære stories */
.eo-lead__secondary {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--eo-ink);
  padding-top: 2px;
  margin-top: 4px;
}
.eo-lead__sec-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: start;
  text-decoration: none;
  color: var(--eo-ink);
  padding: 20px 0;
  border-bottom: 1px solid var(--eo-rule);
  transition: background 0.1s;
}
.eo-lead__sec-item:last-child { border-bottom: 1px solid var(--eo-ink); }
.eo-lead__sec-thumb {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--eo-subtle);
  flex-shrink: 0;
}
.eo-lead__sec-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s; }
.eo-lead__sec-item:hover .eo-lead__sec-thumb img { transform: scale(1.05); }
.eo-lead__sec-body { padding-top: 2px; }
.eo-lead__sec-title {
  font-family: var(--eo-display);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.28;
  color: var(--eo-ink);
  margin: 6px 0 0;
  transition: color 0.15s;
}
.eo-lead__sec-item:hover .eo-lead__sec-title { color: var(--eo-accent); }

/* ─────────────────────────────────────────────
   SØGERESULTATER
──────────────────────────────────────────────*/
.eo-search-page { max-width: var(--eo-max); margin: 48px auto; padding: 0 var(--eo-gutter); }
.eo-search-form {
  display: flex;
  gap: 0;
  max-width: 600px;
  margin: 24px 0 40px;
  border: 1.5px solid var(--eo-rule-strong);
  border-radius: 999px;
  overflow: hidden;
  background: var(--eo-bg);
}
.eo-search-form input {
  flex: 1;
  border: none;
  outline: none;
  padding: 14px 20px;
  font-family: var(--eo-sans);
  font-size: 15px;
  background: transparent;
}
.eo-search-form button {
  background: var(--eo-accent);
  color: #fff;
  border: none;
  padding: 14px 22px;
  font-family: var(--eo-sans);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.eo-search-form button:hover { background: #003a8c; }

/* ─────────────────────────────────────────────
   RESPONSIVE
──────────────────────────────────────────────*/
@media (max-width: 1024px) {
  :root { --eo-gutter: 24px; }
  .eo-news-grid { grid-template-columns: repeat(2, 1fr); }
  .eo-best { grid-template-columns: 1fr; gap: 32px; }
  .eo-best__sidebar { position: static; }
  .eo-newsletter__box { grid-template-columns: 1fr; gap: 32px; }
  .eo-cta-row { grid-template-columns: 1fr; }
  .eo-footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .eo-lead__inner { grid-template-columns: 1fr 320px; gap: 20px; }
  .eo-lead__title { font-size: 34px; }
}
@media (max-width: 768px) {
  :root { --eo-gutter: 18px; }

  /* Topbar skjules på mobil — for smal til at se godt ud */
  .eo-utilbar { display: none; }

  .eo-header__nav { display: none; }
  /* CTA skjules i header-baren på mobil — vises i dropdown-menuen i stedet */
  .eo-header__cta { display: none; }
  .eo-hamburger { display: flex; }

  .eo-news-grid { grid-template-columns: 1fr; }
  .eo-section__heading { font-size: 32px; }
  .eo-guides__item { grid-template-columns: 56px 1fr auto; }
  .eo-guides__time { display: none; }
  .eo-utilbar__search { display: none; }
  .eo-newsletter__box { padding: 36px 28px; }
  .eo-newsletter__heading { font-size: 30px; }
  .eo-footer__top { grid-template-columns: 1fr; }
  .eo-best__row { grid-template-columns: 40px 48px 1fr auto; }
  .eo-best__btn { display: none; }
  .eo-lead__inner { grid-template-columns: 1fr; }
  .eo-lead__secondary { display: none; }
  .eo-lead__title { font-size: 28px; }
  .eo-single__title { font-size: 32px; }
}

/* ─────────────────────────────────────────────
   REDAKTIONELLE INDHOLDSKOMPONENTER
   Genanvendelige klasser til brug i page-indhold.
   Alle baggrundsbånd bruger negative margins for
   at bryde ud af eo-single's padding.
──────────────────────────────────────────────*/

/* Baggrundsbånd — bryder ud til containerbredden */
.eo-band {
  margin-left: calc(-1 * var(--eo-gutter));
  margin-right: calc(-1 * var(--eo-gutter));
  padding: 56px var(--eo-gutter);
}
.eo-band--paper  { background: var(--eo-paper); }
.eo-band--subtle { background: var(--eo-subtle); }
.eo-band--ink    {
  background: var(--eo-ink);
  color: rgba(245,239,225,0.9);
}
.eo-band--ink h2,
.eo-band--ink h3 { color: #fff; }
.eo-band--ink p  { color: rgba(245,239,225,0.8); }
.eo-band--ink a  { color: var(--eo-accent-light); }
.eo-band--ink strong { color: #fff; }

/* Eyebrow-label — lille uppercase-tekst over overskrifter */
.eo-eyebrow {
  display: block;
  font-family: var(--eo-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--eo-accent);
  margin-bottom: 10px;
}
.eo-band--ink .eo-eyebrow { color: var(--eo-accent-light); }

/* Stor kursiv indledning */
.eo-lead-para {
  font-size: 22px !important;
  font-style: italic;
  color: var(--eo-ink-soft) !important;
  line-height: 1.65 !important;
  margin-bottom: 2em !important;
}

/* Pull-citat — stor kursiv serif med ink-linjer */
.eo-pull {
  border-top: 2px solid var(--eo-ink);
  border-bottom: 1px solid var(--eo-rule);
  padding: 36px 0;
  margin: 48px 0;
}
.eo-pull p {
  font-family: var(--eo-display) !important;
  font-style: italic;
  font-size: 26px !important;
  line-height: 1.45 !important;
  color: var(--eo-ink) !important;
  margin: 0 !important;
  max-width: 680px;
}

/* Trin-for-trin liste — store kursive numre */
.eo-steps { list-style: none; padding: 0; margin: 0; }
.eo-steps li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid var(--eo-rule);
  align-items: start;
}
.eo-steps li:first-child { border-top: 2px solid var(--eo-ink); }
.eo-steps li:last-child  { border-bottom: 2px solid var(--eo-ink); }
.eo-step-num {
  font-family: var(--eo-display);
  font-style: italic;
  font-size: 40px;
  font-weight: 400;
  color: var(--eo-accent);
  line-height: 1;
  padding-top: 4px;
}
.eo-step-body h4 {
  font-family: var(--eo-display) !important;
  font-size: 22px !important;
  font-weight: 500 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  margin: 0 0 8px !important;
  color: var(--eo-ink);
}
.eo-step-body p {
  font-size: 17px !important;
  line-height: 1.7 !important;
  margin: 0 !important;
  color: var(--eo-ink-soft);
}

/* Stregnotat — venstre-kant i stedet for farvet boks */
.eo-notice {
  border-left: 2px solid var(--eo-rule-strong);
  padding-left: 20px;
  margin: 24px 0;
}
.eo-notice p {
  font-size: 16px !important;
  line-height: 1.65 !important;
  color: var(--eo-ink-soft) !important;
  margin: 0 !important;
}

/* Regel-liste til ink-band */
.eo-rule-list { list-style: none; padding: 0; margin: 24px 0 0; }
.eo-rule-list li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-family: var(--eo-display);
  font-size: 18px;
  line-height: 1.55;
  align-items: start;
  color: rgba(245,239,225,0.85);
}
.eo-rule-list li::before {
  content: "—";
  color: var(--eo-accent-light);
  margin-top: 2px;
}

/* Tynd sektion-adskiller */
.eo-divider {
  border: none;
  border-top: 1px solid var(--eo-rule);
  margin: 0;
}

@media (max-width: 640px) {
  .eo-band {
    margin-left: calc(-1 * var(--eo-gutter));
    margin-right: calc(-1 * var(--eo-gutter));
    padding: 40px var(--eo-gutter);
  }
  .eo-steps li { grid-template-columns: 40px 1fr; gap: 14px; }
  .eo-step-num { font-size: 30px; }
  .eo-pull p   { font-size: 20px !important; }
}

/* =============================================================
   CONTACT FORM 7 — Eloversigt styling
   ============================================================= */

/* Wrapper */
.wpcf7 {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* Alle input-felter og textarea */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 input[type="number"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  display: block;
  font-family: var(--eo-sans);
  font-size: 15px;
  color: var(--eo-ink);
  background: var(--eo-paper);
  border: 1.5px solid var(--eo-rule-strong);
  border-radius: var(--eo-radius);
  padding: 13px 16px;
  transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  line-height: 1.5;
}

.wpcf7 input[type="text"]::placeholder,
.wpcf7 input[type="email"]::placeholder,
.wpcf7 input[type="tel"]::placeholder,
.wpcf7 textarea::placeholder {
  color: var(--eo-muted);
}

/* Focus state */
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 input[type="url"]:focus,
.wpcf7 input[type="number"]:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  border-color: var(--eo-accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.12);
}

/* Fejl-tilstand */
.wpcf7 .wpcf7-not-valid,
.wpcf7 input.wpcf7-not-valid,
.wpcf7 textarea.wpcf7-not-valid {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.10) !important;
}

/* Textarea */
.wpcf7 textarea {
  min-height: 148px;
  resize: vertical;
}

/* Label-tekst */
.wpcf7 .wpcf7-form-control-wrap {
  display: block;
}

/* Felt-gruppe med label */
.wpcf7 p {
  margin: 0 0 18px !important;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Label over feltet */
.wpcf7 label {
  font-family: var(--eo-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--eo-ink-soft);
}

/* Validerings-fejlbesked */
.wpcf7-not-valid-tip {
  font-family: var(--eo-sans) !important;
  font-size: 12.5px !important;
  color: #dc2626 !important;
  margin-top: 5px !important;
  display: block;
}

/* Submit-knap */
.wpcf7 input[type="submit"] {
  font-family: var(--eo-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: var(--eo-accent);
  border: none;
  border-radius: var(--eo-radius);
  padding: 14px 32px;
  cursor: pointer;
  transition: background 0.18s, transform 0.12s, box-shadow 0.18s;
  width: 100%;
  margin-top: 6px;
}

.wpcf7 input[type="submit"]:hover {
  background: #003a8c;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.25);
}

.wpcf7 input[type="submit"]:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Status-beskeder (efter indsendelse) */
.wpcf7-response-output {
  font-family: var(--eo-sans) !important;
  font-size: 14px !important;
  border-radius: var(--eo-radius) !important;
  padding: 14px 18px !important;
  margin: 18px 0 0 !important;
  border: none !important;
}

/* Succes */
.wpcf7-mail-sent-ok,
.wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ok {
  background: #f0fdf4 !important;
  border-left: 3px solid var(--eo-accent) !important;
  color: #15803d !important;
}

/* Fejl */
.wpcf7-mail-sent-ng,
.wpcf7-aborted,
.wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ng,
.wpcf7 .wpcf7-response-output.wpcf7-aborted {
  background: #fff5f5 !important;
  border-left: 3px solid #dc2626 !important;
  color: #991b1b !important;
}

/* Validerings-fejl (inden indsendelse) */
.wpcf7-validation-errors,
.wpcf7 .wpcf7-response-output.wpcf7-validation-errors {
  background: #fffbeb !important;
  border-left: 3px solid #d97706 !important;
  color: #92400e !important;
}

/* Spinner (loader under afsendelse) */
.wpcf7 .wpcf7-spinner {
  display: none !important; /* erstattes af knap-opacity */
}

.wpcf7.submitting input[type="submit"] {
  opacity: 0.65;
  pointer-events: none;
}

/* Mobil */
@media (max-width: 640px) {
  .wpcf7 input[type="submit"] {
    padding: 15px 24px;
  }
}

/* =============================================================
   GUTENBERG CODE-BLOK — fix hvid-på-hvid
   ============================================================= */

/* Inline <code> overalt på siden */
code {
  font-family: var(--eo-mono);
  font-size: 0.875em;
  background: var(--eo-subtle);
  color: var(--eo-ink);
  padding: 2px 7px;
  border-radius: 4px;
  border: 1px solid var(--eo-rule-strong);
}

/* Gutenberg Code-blok (.wp-block-code) */
.wp-block-code {
  background: var(--eo-ink) !important;
  color: #f0e8d5 !important;
  border: none !important;
  border-radius: var(--eo-radius) !important;
  padding: 1.4em 1.6em !important;
  overflow-x: auto;
  margin: 1.5em 0;
}
.wp-block-code code {
  font-family: var(--eo-mono) !important;
  font-size: 13.5px !important;
  line-height: 1.65 !important;
  background: transparent !important;
  color: #f0e8d5 !important;
  border: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  white-space: pre;
}

/* pre overalt (shortcodes, custom HTML-blokke osv.) */
pre {
  background: var(--eo-ink);
  color: #f0e8d5;
  border-radius: var(--eo-radius);
  padding: 1.4em 1.6em;
  overflow-x: auto;
  font-family: var(--eo-mono);
  font-size: 13.5px;
  line-height: 1.65;
  margin: 1.5em 0;
}
pre code {
  background: transparent;
  color: inherit;
  border: none;
  padding: 0;
  font-size: inherit;
}

/* =============================================================
   REDAKTIONELLE DESIGNBOKSE
   Brug som Gutenberg-gruppe med CSS-klasse, fx:
     eo-box eo-box--info
     eo-box eo-box--tip
     eo-box eo-box--warning
     eo-box eo-box--note
     eo-box eo-box--dark
   ============================================================= */

.eo-box {
  position: relative;
  border-radius: var(--eo-radius);
  padding: 24px 28px;
  margin: 2em 0;
}

/* Typografi inde i boksene */
.eo-box p {
  font-family: var(--eo-sans) !important;
  font-size: 16px !important;
  line-height: 1.7 !important;
  margin: 0 0 0.6em !important;
}
.eo-box p:last-child { margin-bottom: 0 !important; }
.eo-box strong { font-weight: 700; }
.eo-box a { text-decoration: underline; text-underline-offset: 3px; }

/* Overskrift inde i boksen */
.eo-box h4,
.eo-box .eo-box__title {
  font-family: var(--eo-sans) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.07em !important;
  text-transform: uppercase !important;
  margin: 0 0 10px !important;
}

/* ── Info (blå) ─────────────────────────────── */
.eo-box--info {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
}
.eo-box--info,
.eo-box--info p       { color: #1e3a5f !important; }
.eo-box--info h4,
.eo-box--info .eo-box__title { color: #1d4ed8 !important; }
.eo-box--info a       { color: #2563eb; }

/* ── Tip / Succes (grøn) ────────────────────── */
.eo-box--tip {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}
.eo-box--tip,
.eo-box--tip p       { color: #14532d !important; }
.eo-box--tip h4,
.eo-box--tip .eo-box__title { color: #15803d !important; }
.eo-box--tip a       { color: var(--eo-accent); }

/* ── Advarsel (gul) ─────────────────────────── */
.eo-box--warning {
  background: #fffbeb;
  border: 1px solid #fde68a;
}
.eo-box--warning,
.eo-box--warning p       { color: #78350f !important; }
.eo-box--warning h4,
.eo-box--warning .eo-box__title { color: #b45309 !important; }
.eo-box--warning a       { color: #d97706; }

/* ── Note / Neutral (grå) ───────────────────── */
.eo-box--note {
  background: var(--eo-paper);
  border: 1px solid var(--eo-rule-strong);
}
.eo-box--note,
.eo-box--note p       { color: var(--eo-ink-soft) !important; }
.eo-box--note h4,
.eo-box--note .eo-box__title { color: var(--eo-ink) !important; }
.eo-box--note a       { color: var(--eo-accent); }

/* ── Mørk (ink-farvet) ──────────────────────── */
.eo-box--dark {
  background: var(--eo-ink);
  border: 1px solid rgba(255,255,255,0.08);
}
.eo-box--dark,
.eo-box--dark p       { color: rgba(245,239,225,0.85) !important; }
.eo-box--dark h4,
.eo-box--dark .eo-box__title { color: var(--eo-accent-light) !important; }
.eo-box--dark a       { color: var(--eo-accent-light); }
.eo-box--dark strong  { color: #fff; }

/* ── Responsivt ─────────────────────────────── */
@media (max-width: 640px) {
  .eo-box { padding: 20px 20px; }
}

/* =============================================================
   STATISTIK-KORT — .eo-stat-grid med .eo-stat
   Brug: Gutenberg-gruppe med klassen "eo-stat-grid",
   med undergrupper der har klassen "eo-stat"
   ============================================================= */

.eo-stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin: 2em 0;
}
.eo-stat {
  background: var(--eo-paper);
  border: 1px solid var(--eo-rule);
  border-radius: var(--eo-radius);
  padding: 24px 20px;
  text-align: center;
}
.eo-stat__value {
  font-family: var(--eo-display);
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -1px;
  color: var(--eo-accent);
  display: block;
  margin-bottom: 8px;
}
.eo-stat__label {
  font-family: var(--eo-sans);
  font-size: 13px;
  color: var(--eo-muted);
  line-height: 1.4;
  display: block;
}

/* =============================================================
   TJEKLISTE — .eo-checklist
   En <ul> med klassen "eo-checklist" i custom HTML
   ============================================================= */

.eo-checklist {
  list-style: none !important;
  padding: 0 !important;
  margin: 1.5em 0 !important;
}
.eo-checklist li {
  position: relative;
  padding: 13px 0 13px 36px;
  border-bottom: 1px solid var(--eo-rule);
  font-family: var(--eo-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--eo-ink-soft);
}
.eo-checklist li:first-child { border-top: 1px solid var(--eo-rule); }
.eo-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 14px;
  color: var(--eo-accent);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
}
.eo-checklist li strong { color: var(--eo-ink); }

/* ─────────────────────────────────────────────
   SINGLE — AUTHOR BOX
──────────────────────────────────────────────*/
.eo-authorbox {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-top: 56px;
  padding: 32px 36px;
  background: var(--eo-paper);
  border: 1px solid var(--eo-rule);
  border-radius: var(--eo-radius);
}
.eo-authorbox__img {
  width: 72px !important;
  height: 72px !important;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}
.eo-authorbox__body {
  flex: 1;
  min-width: 0;
}
.eo-authorbox__eyebrow {
  font-family: var(--eo-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--eo-accent);
  margin-bottom: 4px;
}
.eo-authorbox__name {
  font-family: var(--eo-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.3px;
  color: var(--eo-ink);
  margin-bottom: 10px;
}
.eo-authorbox__bio {
  font-family: var(--eo-sans);
  font-size: 14px;
  line-height: 1.7;
  color: var(--eo-ink-soft);
  margin-bottom: 14px;
}
.eo-authorbox__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--eo-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--eo-accent);
  text-decoration: none;
  transition: gap .15s;
}
.eo-authorbox__link:hover { gap: 8px; }
.eo-authorbox__link svg { width: 13px; height: 13px; }

@media (max-width: 640px) {
  .eo-authorbox {
    flex-direction: column;
    gap: 16px;
    padding: 24px 20px;
  }
}

/* ─────────────────────────────────────────────
   SINGLE — RELATEREDE ARTIKLER
──────────────────────────────────────────────*/
.eo-single-related {
  border-top: 1px solid var(--eo-rule);
  margin-top: 64px;
  padding: 48px 0 80px;
}
.eo-single-related__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--eo-gutter);
}
.eo-single-related__heading {
  font-family: var(--eo-display);
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 32px;
  letter-spacing: -0.5px;
}
.eo-single-related__heading em {
  font-style: italic;
  color: var(--eo-accent);
}

/* Mobile */
@media (max-width: 768px) {
  .eo-single__eyebrow { flex-direction: column; align-items: flex-start; gap: 4px; }
  .eo-single__breadcrumb { font-size: 11.5px; }
  .eo-single__title { font-size: 32px; }
}

/* ─────────────────────────────────────────────
   KAMPAGNE-DISCLAIMER
──────────────────────────────────────────────*/
.eo-campaign-notice {
  display: flex;
  gap: 14px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 28px;
}
.eo-campaign-notice--expired {
  background: #fafafa;
  border-color: #d1d5db;
  border-left-color: #9ca3af;
}
.eo-campaign-notice__icon {
  color: #d97706;
  flex-shrink: 0;
  margin-top: 2px;
}
.eo-campaign-notice--expired .eo-campaign-notice__icon { color: #9ca3af; }
.eo-campaign-notice__body { display: flex; flex-direction: column; gap: 6px; }
.eo-campaign-notice__label { margin: 0; }
.eo-campaign-notice__badge {
  display: inline-block;
  font-family: var(--eo-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #92400e;
  background: #fde68a;
  border-radius: 999px;
  padding: 2px 10px;
}
.eo-campaign-notice__badge--expired {
  color: #6b7280;
  background: #e5e7eb;
}
.eo-campaign-notice__text {
  font-family: var(--eo-sans);
  font-size: 13.5px;
  line-height: 1.6;
  color: #78350f;
  margin: 0;
}
.eo-campaign-notice--expired .eo-campaign-notice__text { color: #6b7280; }
.eo-campaign-notice__text strong { font-weight: 600; }
.eo-campaign-notice__text a {
  color: #92400e;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.eo-campaign-notice__text a:hover { color: #78350f; }
.eo-campaign-notice--expired .eo-campaign-notice__text a { color: #6b7280; }

/* ── Advertorial-variant (rød) ──────────────────────────────── */
.eo-campaign-notice--advertorial {
  background: #fff5f5;
  border-color: #fecaca;
  border-left-color: #ef4444;
}
.eo-campaign-notice--advertorial .eo-campaign-notice__icon { color: #dc2626; }
.eo-campaign-notice__badge--advertorial {
  color: #7f1d1d;
  background: #fecaca;
}
.eo-campaign-notice--advertorial .eo-campaign-notice__text { color: #7f1d1d; }
.eo-campaign-notice--advertorial .eo-campaign-notice__text a { color: #991b1b; }
.eo-campaign-notice--advertorial .eo-campaign-notice__text a:hover { color: #7f1d1d; }

/* Advertorial-badge i nyhedskort */
.eo-news-card__cat--advertorial {
  background: rgba(239, 68, 68, 0.85) !important;
  color: #fff !important;
}


/* ─────────────────────────────────────────────
   AKTIVE TILBUD — BANNER
──────────────────────────────────────────────*/
.eo-offers-banner {
  max-width: var(--eo-content);
  margin: 56px auto;
  padding: 0 var(--eo-gutter);
}

/* Header-linje: titel + knap side om side */
.eo-offers-banner__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.eo-offers-banner__left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.eo-offers-banner__live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--eo-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--eo-accent);
}
.eo-offers-banner__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--eo-accent);
  animation: eo-pulse 2s ease-in-out infinite;
}
.eo-offers-banner__title {
  font-family: var(--eo-display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.3px;
  color: var(--eo-ink);
  margin: 0;
}
.eo-offers-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--eo-accent);
  color: #fff;
  font-family: var(--eo-sans);
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
}
.eo-offers-banner__btn:hover {
  background: #003a8c;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,74,173,0.22);
}
.eo-offers-banner__btn svg { width: 13px; height: 13px; }

/* Grid med tiles — auto-fit så de fylder bredt uanset antal */
.eo-offers-banner__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}

/* Individuel tile */
.eo-offers-tile {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--eo-rule);
  border-radius: 12px;
  text-decoration: none;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.eo-offers-tile:hover {
  border-color: var(--eo-accent);
  box-shadow: 0 4px 16px rgba(0,74,173,0.10);
  transform: translateY(-2px);
}
.eo-offers-tile__logo {
  width: 52px; height: 52px;
  border-radius: 10px;
  overflow: hidden;
  background: #f4f6fb;
  border: 1px solid var(--eo-rule);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.eo-offers-tile__logo img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 6px;
}
.eo-offers-tile__logo span {
  font-family: var(--eo-sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--eo-accent);
}
.eo-offers-tile__body { flex: 1; min-width: 0; }
.eo-offers-tile__name {
  font-family: var(--eo-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--eo-ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.eo-offers-tile__exp {
  font-family: var(--eo-sans);
  font-size: 12px;
  color: var(--eo-muted);
  margin-top: 3px;
}
.eo-offers-tile__arrow {
  color: var(--eo-accent);
  opacity: 0.35;
  flex-shrink: 0;
  transition: opacity 0.15s, transform 0.15s;
}
.eo-offers-tile__arrow svg { width: 15px; height: 15px; }
.eo-offers-tile:hover .eo-offers-tile__arrow {
  opacity: 1;
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .eo-offers-banner__title { font-size: 22px; }
  .eo-offers-banner__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .eo-offers-banner__grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────
   YOAST FAQ BLOCK
──────────────────────────────────────────────*/
.schema-faq {
  margin: 2.5em 0;
  border-radius: var(--eo-radius);
  border: 1px solid var(--eo-rule);
  overflow: hidden;
}
.schema-faq-section {
  padding: 20px 24px 20px 56px;
  border-bottom: 1px solid var(--eo-rule);
  position: relative;
  background: var(--eo-bg);
  transition: background .15s;
}
.schema-faq-section:last-child { border-bottom: none; }
.schema-faq-section:hover { background: var(--eo-paper); }

/* Spørgsmålstegn-ikon */
.schema-faq-section::before {
  content: "?";
  position: absolute;
  left: 18px;
  top: 20px;
  width: 22px;
  height: 22px;
  background: var(--eo-accent);
  color: #fff;
  border-radius: 50%;
  font-family: var(--eo-sans);
  font-size: 12px;
  font-weight: 700;
  line-height: 22px;
  text-align: center;
  flex-shrink: 0;
}
.schema-faq-question {
  display: block;
  font-family: var(--eo-sans);
  font-size: 15px;
  font-weight: 650;
  color: var(--eo-ink);
  margin-bottom: 6px;
  line-height: 1.4;
}
.schema-faq-answer {
  font-family: var(--eo-sans);
  font-size: 14px;
  line-height: 1.7;
  color: var(--eo-ink-soft);
  margin: 0;
}
@media (max-width: 640px) {
  .schema-faq-section { padding: 16px 18px 16px 46px; }
  .schema-faq-section::before { left: 14px; top: 16px; }
}
