/* ============================================================
   MOTIVATION.SE — Design System Stylesheet
   Display: Archivo (700, 800, 900) · Text: Inter (400, 500, 600)
   Import in <head>:
   <link href="https://fonts.googleapis.com/css2?family=Archivo:wght@400;700;800;900&family=Inter:wght@400;500;600&display=swap" rel="stylesheet">
   ============================================================ */


/* ── TOKENS ──────────────────────────────────────────────── */
:root {
  --ink:          #0A1A1F;   /* Bläck */
  --ink-light:    #243B47;
  --accent:       #1FA3B8;   /* Motivation Turkos */
  --accent-dark:  #157E90;
  --bg:           #FDFCFA;   /* Varm Papper (ljusare — client feedback v6) */
  --white:        #FFFFFF;
  --muted:        #6B818A;
  --border:       #DDD8CC;
  --tag-bg:       #E3F3F6;
  --sidebar-dark: #0E2A33;   /* Djup Marin */
  --lead-bg:      #EAF6F8;

  /* Category colours */
  --cat-ledarskap:  #1FA3B8;
  --cat-motivation: #E8765A;
  --cat-karriar:    #5B63C7;
  --cat-halsa:      #4E9E6B;
  --cat-coacha:     #D6A537;

  /* Pricing tier colours */
  --c-free:       #9A6B0A;   /* Bärnsten dark */
  --c-free-bg:    #FBF0D0;
  --c-plus:       #3D45A0;   /* Indigo dark */
  --c-plus-bg:    #ECEEFF;
  --c-premium:    #157E90;   /* Turkos dark */
  --c-premium-bg: #E3F3F6;
  --c-corp:       #0A2D38;   /* Djup Marin dark */
  --c-corp-bg:    #E0EDF0;
  --c-coach:      #B55740;   /* Korall dark */
  --c-coach-bg:   #FDEAE5;
}


/* ── RESET & BASE ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4,
.logo-name, .newsletter-logo, .footer-logo,
.hero-headline, .hero-title, .article-title, .featured-title, .category-title,
.card-name, .card-title, .list-title, .cta-nl-title, .cta-ak-title,
.cta-mb-title, .newsletter-headline, .pull-quote p {
  font-family: 'Archivo', sans-serif;
}

a { text-decoration: none; color: inherit; }

img { display: block; width: 100%; height: 100%; object-fit: cover; }


/* ── HEADER ──────────────────────────────────────────────── */
.site-header {
  background: var(--white);
  border-bottom: 1.5px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 64px;
}

.logo { display: flex; flex-direction: column; line-height: 1; }

.logo-name {
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.logo-name .dot { color: var(--accent); }

.logo-sub {
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}

nav { display: flex; align-items: center; gap: 4px; }

nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-light);
  padding: 8px 12px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

nav a:hover { color: var(--ink); background: var(--tag-bg); }

.btn-member {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--ink);
  padding: 10px 20px;
  border-radius: 6px;
  transition: background 0.2s, transform 0.15s;
  margin-left: 8px;
}

.btn-member:hover {
  background: var(--accent-dark);
  color: var(--white);
  transform: translateY(-1px);
}


/* ── BREADCRUMB ──────────────────────────────────────────── */
.breadcrumb-bar {
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--muted);
}

.breadcrumb-inner a { color: var(--muted); transition: color 0.2s; }
.breadcrumb-inner a:hover { color: var(--accent-dark); }
.breadcrumb-sep { color: var(--border); }


/* ── LAYOUT ──────────────────────────────────────────────── */
.page-wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Home: main + sidebar */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  padding: 36px 0 60px;
  align-items: start;
}

/* Article: main + sidebar */
.post-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  padding: 40px 0 60px;
  align-items: start;
}


/* ── SECTION LABEL ───────────────────────────────────────── */
.section-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section-see-all {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s;
}

.section-see-all:hover { gap: 9px; }
.section-see-all::after { content: '→'; }


/* ── HOME HERO ───────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  height: 320px;
  margin: 32px 0 40px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(10,26,31,0.1);
}

.hero-image-wrap {
  position: relative;
  overflow: hidden;
  height: 320px;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}

.hero:hover .hero-image-wrap img { transform: scale(1.03); }

.hero-content {
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1.5px solid var(--border);
}

.hero-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 14px;
  display: inline-block;
}

.hero-headline {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 16px;
}

.hero-excerpt {
  font-size: 0.93rem;
  line-height: 1.65;
  color: var(--ink-light);
  margin-bottom: 24px;
}

.hero-read-more {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}

.hero-read-more:hover { gap: 14px; }
.hero-read-more::after { content: '→'; }


/* ── LIST ARTICLES ───────────────────────────────────────── */
.list-article {
  display: grid;
  grid-template-columns: 200px 1fr;
  background: var(--white);
  border-radius: 10px;
  border: 1.5px solid var(--border);
  overflow: hidden;
  margin-bottom: 14px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.list-article:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10,26,31,0.07);
}

.list-article-img { overflow: hidden; min-height: 140px; }

.list-article-img img { transition: transform 0.4s ease; }

.list-article:hover .list-article-img img { transform: scale(1.06); }

.list-article-body {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1.5px solid var(--border);
}

.list-divider {
  height: 3px;
  width: 36px;
  background: var(--accent);
  margin-bottom: 10px;
  border-radius: 2px;
}

.list-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 7px; }
.list-tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
}
.list-meta-sep { color: var(--border); font-size: 0.7rem; }
.list-author { font-size: 0.72rem; color: var(--muted); font-weight: 500; }
.list-title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 7px;
}
.list-excerpt { font-size: 0.82rem; line-height: 1.55; color: var(--muted); }


/* ── CARD GRID ───────────────────────────────────────────── */
.card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }

.article-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.article-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(10,26,31,0.08);
}

.card-image { height: 168px; overflow: hidden; }
.card-image img { transition: transform 0.4s ease; }
.article-card:hover .card-image img { transform: scale(1.05); }

.card-body { padding: 18px 20px; }
.card-tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 7px;
  display: block;
}
.card-title {
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 8px;
}
.card-excerpt { font-size: 0.79rem; line-height: 1.6; color: var(--muted); }
.card-author { font-size: 0.7rem; color: var(--muted); margin-top: 10px; font-weight: 500; }


/* ── CTA: NEWSLETTER BAND ────────────────────────────────── */
.cta-newsletter {
  background: var(--sidebar-dark);
  border-radius: 10px;
  padding: 26px 28px;
  margin: 28px 0;
  display: flex;
  align-items: center;
  gap: 28px;
}

.cta-nl-text { flex: 1; }
.cta-nl-eyebrow {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 7px;
}
.cta-nl-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 5px;
  letter-spacing: -0.02em;
}
.cta-nl-sub { font-size: 0.8rem; color: #7ABBC8; line-height: 1.5; }

.cta-nl-form { display: flex; gap: 8px; flex-shrink: 0; }
.cta-nl-form input {
  font-family: 'Inter', sans-serif;
  font-size: 0.83rem;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.15);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 7px;
  outline: none;
  width: 210px;
  transition: border-color 0.2s;
}
.cta-nl-form input::placeholder { color: #4A8D9B; }
.cta-nl-form input:focus { border-color: var(--accent); }
.cta-nl-form button {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--ink);
  border: none;
  padding: 10px 18px;
  border-radius: 7px;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.cta-nl-form button:hover { background: var(--accent-dark); color: var(--white); }


/* ── CTA: MEMBER BAND ────────────────────────────────────── */
.cta-member-band {
  border: 1.5px solid var(--border);
  background: var(--white);
  border-radius: 10px;
  padding: 22px 26px;
  margin: 28px 0;
  display: flex;
  align-items: center;
  gap: 20px;
}

.cta-mb-icon { font-size: 1.9rem; flex-shrink: 0; }
.cta-mb-text { flex: 1; }
.cta-mb-title {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.cta-mb-sub { font-size: 0.8rem; color: var(--muted); line-height: 1.5; }

.cta-mb-perks {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.cta-mb-perk {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--accent-dark);
  background: var(--tag-bg);
  padding: 3px 9px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.cta-mb-perk::before { content: '✓'; }

.cta-mb-btn {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--ink);
  padding: 11px 20px;
  border-radius: 7px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
}
.cta-mb-btn:hover { background: var(--accent-dark); color: var(--white); transform: translateY(-1px); }


/* ── CTA: AKADEMIN PROMO ─────────────────────────────────── */
.cta-akademi {
  background: var(--ink);
  border-radius: 10px;
  overflow: hidden;
  margin: 28px 0;
  display: grid;
  grid-template-columns: 1fr 180px;
}

.cta-ak-body { padding: 24px 26px; }
.cta-ak-eyebrow {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 7px;
}
.cta-ak-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 7px;
  letter-spacing: -0.02em;
}
.cta-ak-sub {
  font-size: 0.78rem;
  color: #7ABBC8;
  line-height: 1.5;
  margin-bottom: 16px;
}
.cta-ak-btn {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--ink);
  padding: 9px 16px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s;
}
.cta-ak-btn:hover { background: var(--accent-dark); color: var(--white); }
.cta-ak-btn::after { content: '→'; }
.cta-ak-img { overflow: hidden; }
.cta-ak-img img { width: 100%; height: 100%; }


/* ── CTA: ÅRETS VD STRIP ─────────────────────────────────── */
.cta-arets-vd {
  border: 1.5px solid var(--border);
  border-left: 4px solid #D6A537;
  background: var(--white);
  border-radius: 10px;
  padding: 18px 22px;
  margin: 28px 0;
  display: flex;
  align-items: center;
  gap: 18px;
}

.cta-vd-icon { font-size: 1.7rem; flex-shrink: 0; }
.cta-vd-body { flex: 1; }
.cta-vd-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9A6B0A;
  margin-bottom: 3px;
}
.cta-vd-title {
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 3px;
}
.cta-vd-sub { font-size: 0.75rem; color: var(--muted); }

.cta-vd-btn {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1.5px solid #D6A537;
  color: #9A6B0A;
  padding: 8px 14px;
  border-radius: 6px;
  white-space: nowrap;
  transition: all 0.2s;
  flex-shrink: 0;
}
.cta-vd-btn:hover { background: #FBF0D0; }


/* ── CTA: QUOTE ──────────────────────────────────────────── */
.cta-quote {
  background: var(--tag-bg);
  border: 1.5px solid rgba(31,163,184,0.2);
  border-radius: 10px;
  padding: 22px 26px;
  margin: 28px 0;
  position: relative;
}

.cta-quote::before {
  content: '"';
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.25;
  position: absolute;
  top: 6px;
  left: 16px;
  line-height: 1;
}

.cta-quote-text {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.55;
  letter-spacing: -0.01em;
  padding-left: 6px;
}

.cta-quote-attr { font-size: 0.72rem; color: var(--muted); margin-top: 10px; padding-left: 6px; }


/* ── SIDEBAR ─────────────────────────────────────────────── */
.side-col,
.sidebar { position: sticky; top: 84px; }

.sidebar-block {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 22px;
}

.sidebar-block-header {
  padding: 13px 20px;
  border-bottom: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sidebar-block-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}

.sidebar-block-link {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

/* Sidebar: newsletter */
.newsletter-block {
  background: var(--sidebar-dark);
  border-radius: 10px;
  padding: 22px 20px;
  margin-bottom: 22px;
}

.newsletter-logo { font-weight: 800; font-size: 1rem; color: var(--white); margin-bottom: 3px; }
.newsletter-logo .dot { color: var(--accent); }
.newsletter-sub-label {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.newsletter-headline {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 7px;
}
.newsletter-desc { font-size: 0.77rem; color: #7ABBC8; line-height: 1.55; margin-bottom: 14px; }

.newsletter-form { display: flex; flex-direction: column; gap: 7px; }
.newsletter-form input {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.15);
  color: var(--white);
  padding: 9px 13px;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-form input::placeholder { color: #4A8D9B; }
.newsletter-form input:focus { border-color: var(--accent); }
.newsletter-form button {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--ink);
  border: none;
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}
.newsletter-form button:hover { background: var(--accent-dark); color: var(--white); }

/* Sidebar: most read */
.most-read-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 11px 18px;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.most-read-item:last-child { border-bottom: none; }
.most-read-item:hover { background: var(--bg); }
.most-read-num {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--accent);
  min-width: 20px;
  line-height: 1;
  margin-top: 2px;
}
.most-read-title { font-size: 0.81rem; font-weight: 500; line-height: 1.4; color: var(--ink); }

/* Sidebar: akademi card */
.akademi-card { position: relative; overflow: hidden; height: 148px; }
.akademi-card img { width: 100%; height: 100%; }
.akademi-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,26,31,0.9) 40%, transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
}
.akademi-badge {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--ink);
  padding: 3px 8px;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 5px;
  width: fit-content;
}
.akademi-title { font-size: 0.88rem; font-weight: 700; color: var(--white); line-height: 1.25; }
.akademi-footer { padding: 12px 18px; display: flex; justify-content: flex-end; }
.akademi-link {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s;
}
.akademi-link:hover { gap: 9px; }
.akademi-link::after { content: '→'; }

/* Sidebar: topics */
.topic-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.topic-item:last-child { border-bottom: none; }
.topic-item:hover { background: var(--bg); }
.topic-name { font-size: 0.83rem; font-weight: 600; color: var(--ink); }
.topic-count { font-size: 0.68rem; color: var(--muted); background: var(--bg); padding: 2px 8px; border-radius: 10px; }

/* Sidebar: mini articles */
.mini-article {
  display: flex;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.mini-article:last-child { border-bottom: none; }
.mini-article:hover { background: var(--bg); }
.mini-thumb { width: 52px; height: 52px; border-radius: 6px; overflow: hidden; flex-shrink: 0; }
.mini-thumb img { width: 100%; height: 100%; }
.mini-tag {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 3px;
}
.mini-title { font-size: 0.79rem; font-weight: 600; line-height: 1.35; color: var(--ink); }


/* ── CATEGORY GRID ───────────────────────────────────────── */
.full-width-section { padding: 0 0 52px; }

.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }

.cat-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.cat-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(10,26,31,0.07);
}
.cat-count { font-size: 0.68rem; color: var(--muted); margin-bottom: 12px; text-align: right; }
.cat-icon { font-size: 1.25rem; margin-bottom: 6px; line-height: 1; }
.cat-name { font-size: 0.88rem; font-weight: 700; color: var(--ink); margin-top: auto; }


/* ── ARTICLE PAGE ────────────────────────────────────────── */
.article-header { margin-bottom: 28px; }

.article-meta-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.meta-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: var(--tag-bg);
  padding: 4px 10px;
  border-radius: 4px;
}
.meta-divider { color: var(--border); }
.meta-format {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.meta-date { font-size: 0.78rem; color: var(--muted); font-weight: 400; }

.article-title {
  font-size: 2.75rem;   /* client feedback v6 */
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 16px;
}

.article-subtitle {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink-light);
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  margin-bottom: 24px;
}

.author-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--border);
}
.author-avatar img { width: 100%; height: 100%; }
.author-name { font-size: 0.88rem; font-weight: 600; color: var(--ink); }
.author-title-text { font-size: 0.75rem; color: var(--muted); font-weight: 400; }

.article-share { margin-left: auto; display: flex; gap: 8px; }
.share-btn {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 6px;
  border: 1.5px solid var(--border);
  color: var(--ink-light);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
}
.share-btn:hover { border-color: var(--accent); color: var(--accent-dark); background: var(--tag-bg); }

.article-hero-image {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 8px;
  height: 420px;
}
.article-hero-image img { height: 100%; width: 100%; }

.image-caption {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 400;
  margin-bottom: 32px;
  padding-left: 4px;
  font-style: italic;
}

/* Article body typography */
.article-body { font-size: 1rem; line-height: 1.8; color: var(--ink-light); }
.article-body p { margin-bottom: 20px; }
.article-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin: 36px 0 14px;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.article-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin: 28px 0 10px;
}

.article-body .lead {
  /* client feedback v6: renare ingress — ingen bakgrund, ingen kursiv,
     större text, avgränsad med en tunn underkant istället för vänsterkant */
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--ink);
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1.5px solid var(--border);
}

.pull-quote {
  margin: 36px 0;
  padding: 24px 28px;
  background: var(--sidebar-dark);
  border-radius: 10px;
  position: relative;
}
.pull-quote::before {
  content: '"';
  font-size: 5rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.4;
  position: absolute;
  top: -10px;
  left: 20px;
  line-height: 1;
}
.pull-quote p {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 0;
  font-style: italic;
}

.stats-list {
  list-style: none;
  padding: 0;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  margin: 28px 0;
  overflow: hidden;
}
.stats-list li {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-light);
  line-height: 1.5;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.stats-list li:last-child { border-bottom: none; }
.stats-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 7px;
}

/* Article tags */
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 28px 0;
  border-top: 1.5px solid var(--border);
  margin-top: 36px;
}
.tag-chip {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1.5px solid var(--border);
  color: var(--ink-light);
  background: var(--white);
  transition: all 0.2s;
}
.tag-chip:hover { border-color: var(--accent); color: var(--accent-dark); background: var(--tag-bg); }

/* Author bio */
.author-bio {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  display: flex;
  gap: 20px;
  margin-top: 32px;
}
.bio-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--border);
}
.bio-avatar img { width: 100%; height: 100%; }
.bio-name { font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.bio-role { font-size: 0.78rem; color: var(--accent-dark); font-weight: 600; margin-bottom: 10px; }
.bio-text { font-size: 0.83rem; line-height: 1.6; color: var(--muted); }
.bio-contact { font-size: 0.78rem; color: var(--accent-dark); margin-top: 8px; }

/* Article newsletter */
.article-newsletter {
  background: var(--sidebar-dark);
  border-radius: 10px;
  padding: 28px;
  margin-top: 36px;
  text-align: center;
}
.article-newsletter h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.article-newsletter p { font-size: 0.85rem; color: #7ABBC8; margin-bottom: 18px; line-height: 1.5; }

.newsletter-inline-form { display: flex; gap: 8px; max-width: 420px; margin: 0 auto; }
.newsletter-inline-form input {
  flex: 1;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.15);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-inline-form input::placeholder { color: #4A8D9B; }
.newsletter-inline-form input:focus { border-color: var(--accent); }
.newsletter-inline-form button {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--ink);
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.newsletter-inline-form button:hover { background: var(--accent-dark); color: var(--white); }

/* Sidebar member CTA (article page) */
.member-cta {
  background: var(--sidebar-dark);
  border-radius: 10px;
  padding: 26px 22px;
  margin-bottom: 24px;
}
.member-cta-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.member-cta h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 14px;
}
.member-benefits { list-style: none; padding: 0; margin-bottom: 18px; }
.member-benefits li {
  font-size: 0.82rem;
  color: #7ABBC8;
  padding: 5px 0;
  display: flex;
  gap: 8px;
  align-items: center;
}
.member-benefits li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; }

.btn-join {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--ink);
  padding: 12px;
  border-radius: 6px;
  transition: background 0.2s;
}
.btn-join:hover { background: var(--accent-dark); color: var(--white); }

/* Related articles (sidebar) */
.related-item {
  display: flex;
  gap: 14px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.related-item:last-child { border-bottom: none; }
.related-item:hover { background: var(--bg); }
.related-thumb { width: 56px; height: 56px; border-radius: 6px; overflow: hidden; flex-shrink: 0; }
.related-thumb img { width: 100%; height: 100%; }
.related-tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 4px;
}
.related-title { font-size: 0.82rem; font-weight: 600; line-height: 1.35; color: var(--ink); }


/* ── PRICING PAGE ────────────────────────────────────────── */
.pricing-hero {
  background: var(--sidebar-dark);
  padding: 56px 24px 52px;
  text-align: center;
}

.hero-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  display: block;
}

.hero-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--white);
  max-width: 640px;
  margin: 0 auto 16px;
}
.hero-title em { font-style: normal; color: var(--accent); }

.hero-sub {
  font-size: 0.95rem;
  color: #7ABBC8;
  line-height: 1.65;
  max-width: 480px;
  margin: 0 auto 28px;
}

/* Billing toggle */
.billing-toggle {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 4px;
  gap: 2px;
}
.toggle-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  background: transparent;
  color: #4A8D9B;
}
.toggle-btn.active { background: var(--accent); color: var(--ink); }

.save-badge {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(31,163,184,0.2);
  color: var(--accent);
  padding: 3px 9px;
  border-radius: 20px;
  margin-left: 4px;
}

/* Pricing grid */
.pricing-wrap { max-width: 1200px; margin: 0 auto; padding: 48px 24px 72px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: start;
}

/* Pricing cards */
.card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  overflow: visible;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(10,26,31,0.1); }

.card.featured {
  border-color: var(--accent);
  border-width: 2px;
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(31,163,184,0.2);
}
.card.featured:hover { transform: translateY(-10px); }

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--ink);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.card-strip { height: 4px; border-radius: 10px 10px 0 0; }

.card-head { padding: 22px 20px 18px; }
.card-tier {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.card-name {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 4px;
}
.card-tagline { font-size: 0.78rem; color: var(--muted); font-weight: 400; margin-bottom: 18px; line-height: 1.4; }

.card-price-wrap { margin-bottom: 4px; }
.card-price {
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}
.card-price .currency { font-size: 1rem; font-weight: 600; vertical-align: top; margin-top: 4px; display: inline-block; }
.card-price .period { font-size: 0.75rem; font-weight: 400; color: var(--muted); margin-left: 2px; }
.card-vat { font-size: 0.68rem; color: var(--muted); margin-bottom: 20px; }

.card-cta {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 12px 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.cta-outline { background: transparent; border: 1.5px solid var(--border); color: var(--ink-light); }
.cta-outline:hover { border-color: var(--accent); color: var(--accent-dark); background: var(--tag-bg); }
.cta-solid { background: var(--accent); color: var(--ink); }
.cta-solid:hover { background: var(--accent-dark); color: var(--white); }

.card-divider { height: 1px; background: var(--border); margin: 0 20px; }

.card-features { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }

.feat-section-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
  margin-bottom: 2px;
}
.feat { display: flex; align-items: flex-start; gap: 9px; font-size: 0.8rem; line-height: 1.4; color: var(--ink-light); }

.feat-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 0.6rem;
}
.feat-icon.yes { background: var(--tag-bg); color: var(--accent-dark); font-weight: 900; }
.feat-icon.no  { background: #EEE9E0; color: #B4AFA5; }
.feat-icon.badge-icon { background: transparent; }

.feat.feat-muted { color: var(--muted); }

.feat-badge {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: #EDE8DC;
  color: var(--muted);
  padding: 2px 7px;
  border-radius: 4px;
  white-space: nowrap;
  margin-left: 2px;
  align-self: flex-start;
  margin-top: 1px;
}

.card-persona {
  padding: 14px 20px 22px;
  font-size: 0.75rem;
  font-style: italic;
  color: var(--muted);
  line-height: 1.45;
  border-top: 1px dashed var(--border);
  margin-top: auto;
}

/* Pricing card colour themes */
.c-free    { --strip: #D6A537; --tier-color: #9A6B0A; }  /* Bärnsten */
.c-plus    { --strip: #5B63C7; --tier-color: #3D45A0; }  /* Indigo */
.c-premium { --strip: var(--accent); --tier-color: var(--accent-dark); }  /* Turkos */
.c-corp    { --strip: #0E2A33; --tier-color: #0A2D38; }  /* Djup Marin */
.c-coach   { --strip: #E8765A; --tier-color: #B55740; }  /* Korall */

.card-strip { background: var(--strip); }
.card-tier  { color: var(--tier-color); }

/* Comparison table */
.compare-section { max-width: 1200px; margin: 0 auto; padding: 0 24px 64px; }
.compare-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 1.5px solid var(--border);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1.5px solid var(--border);
}
.compare-table th,
.compare-table td {
  padding: 13px 16px;
  text-align: center;
  font-size: 0.82rem;
  border-bottom: 1px solid var(--border);
}
.compare-table th {
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--bg);
  color: var(--muted);
}
.compare-table th:first-child,
.compare-table td:first-child { text-align: left; font-weight: 500; color: var(--ink); padding-left: 20px; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: #F8F4EC; }
.compare-table td.featured-col { background: #E3F3F6; }
.check { color: var(--accent-dark); font-weight: 800; font-size: 0.9rem; }
.cross { color: #D1D5D3; font-weight: 700; }
.partial { font-size: 0.7rem; color: var(--muted); font-weight: 500; }

.footnote {
  text-align: center;
  padding: 20px 24px 40px;
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.6;
}


/* ── FOOTER ──────────────────────────────────────────────── */
.footer-strip {
  background: var(--sidebar-dark);
  border-top: 1.5px solid rgba(255,255,255,0.07);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 26px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo { font-weight: 800; font-size: 1.05rem; color: var(--white); }
.footer-logo .dot { color: var(--accent); }
.footer-tagline {
  font-size: 0.7rem;
  color: #4A8D9B;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}

.footer-links { display: flex; gap: 22px; }
.footer-links a { font-size: 0.78rem; color: #4A8D9B; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }


/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero         { animation: fadeUp 0.4s ease both 0.05s; }
.side-col     { animation: fadeUp 0.4s ease both 0.15s; }
.pricing-hero { animation: fadeUp 0.4s ease both 0.00s; }

.pricing-grid .card:nth-child(1) { animation: fadeUp 0.4s ease both 0.07s; }
.pricing-grid .card:nth-child(2) { animation: fadeUp 0.4s ease both 0.12s; }
.pricing-grid .card:nth-child(3) { animation: fadeUp 0.4s ease both 0.17s; }
.pricing-grid .card:nth-child(4) { animation: fadeUp 0.4s ease both 0.22s; }
.pricing-grid .card:nth-child(5) { animation: fadeUp 0.4s ease both 0.27s; }


/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .content-grid,
  .post-grid { grid-template-columns: 1fr; }
  .side-col,
  .sidebar { position: static; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 960px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .card.featured { transform: none; }
}

@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; height: auto; }
  .hero-image-wrap { height: 220px; }
  .hero-content { padding: 28px 24px; border-left: none; border-top: 1.5px solid var(--border); }
  .hero-headline { font-size: 1.6rem; }

  .list-article { grid-template-columns: 120px 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }

  .cta-newsletter { flex-direction: column; align-items: flex-start; }
  .cta-nl-form { flex-direction: column; width: 100%; }
  .cta-nl-form input { width: 100%; }

  nav { display: none; }
}

@media (max-width: 640px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .article-title { font-size: 1.8rem; }
  .article-hero-image { height: 240px; }
}

@media (max-width: 400px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr; }
}
