/* Felles stil for bloggen: blogg.html og alle innlegg (blogg-*.html). Samme profilfarger som forsiden. */
:root {
  --teal: #215D6E;
  --rust: #CE8946;
  --teal-deep: #163d48;
  --teal-mid: #3a7c8c;
  --teal-soft: #c5d6db;
  --rust-soft: #e8c9a8;
  --rust-deep: #a86d33;
  --cream: #f4ede0;
  --cream-warm: #ebe2d0;
  --paper: #faf6ec;
  --ink: #11272a;
  --ink-soft: #2d4549;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', -apple-system, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--teal); color: var(--paper); }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 0;
  background: rgba(250, 246, 236, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(33, 93, 110, 0.08);
}
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.nav-inner { display: flex; justify-content: space-between; align-items: center; }
.logo-mark { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.logo-svg { width: 44px; height: 42px; color: var(--teal); flex-shrink: 0; }
.wordmark { font-family: 'Manrope', sans-serif; font-weight: 300; font-size: 22px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal); }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a { color: var(--ink-soft); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--teal); }
.nav-links a.active { color: var(--teal); font-weight: 600; }
.nav-links a.btn-primary, .nav-links a.btn-primary:hover { color: var(--paper); }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 11px 22px; border-radius: 100px; font-size: 14px; font-weight: 500; text-decoration: none; transition: all 0.25s; border: none; cursor: pointer; font-family: inherit; }
.btn-primary { background: var(--teal); color: var(--paper); }
.btn-primary:hover { background: var(--teal-deep); transform: translateY(-1px); box-shadow: 0 10px 30px -10px rgba(33,93,110,0.5); }

/* NAV END */
.nav-end { display: flex; align-items: center; gap: 12px; }

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transition: all 0.25s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* HERO (innlegg og oversikt) */
.blog-hero {
  padding: 140px 0 80px;
  background: var(--teal-deep);
  position: relative;
  overflow: hidden;
}
.blog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, var(--teal-mid) 0%, transparent 50%);
  opacity: 0.5;
}
.blog-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--teal-mid), var(--rust));
}
.blog-hero-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}
/* Oversiktssiden bruker full containerbredde, så heroen står i linje med kortene. */
.blog-hero-inner.wide { max-width: 1280px; }
.blog-hero-inner.wide .blog-hero-sub { margin-bottom: 0; }
.blog-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 28px;
  padding: 5px 14px;
  border: 1px solid rgba(206,137,70,0.35);
  border-radius: 100px;
}
.blog-hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 5.5vw, 58px);
  font-weight: 400;
  color: var(--paper);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  font-variation-settings: "opsz" 144;
}
.blog-hero h1 em {
  font-style: italic;
  color: var(--teal-soft);
}
.blog-hero-sub {
  font-size: 18px;
  color: rgba(244,237,224,0.7);
  font-weight: 400;
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.6;
}
.blog-meta {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(244,237,224,0.5);
}
.blog-meta span { display: flex; align-items: center; gap: 6px; }
.blog-meta strong { color: rgba(244,237,224,0.85); font-weight: 500; }

/* STATS BAR */
.stats-bar {
  background: var(--paper);
  border-bottom: 1px solid rgba(33,93,110,0.1);
}
.stats-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 28px 0;
  border-right: 1px solid rgba(33,93,110,0.1);
  text-align: center;
}
.stat:last-child { border-right: none; }
.stat-value {
  font-family: 'Fraunces', serif;
  font-size: 30px;
  font-weight: 500;
  color: var(--teal);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 12px; color: var(--ink-soft); font-weight: 400; letter-spacing: 0.3px; }

/* CONTENT */
.content {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 32px 80px;
}
.section { padding-top: 60px; }

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(206,137,70,0.2);
}

h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

p {
  font-size: 16px;
  color: var(--ink-soft);
  margin-bottom: 16px;
  font-weight: 400;
  line-height: 1.7;
}

em { font-style: italic; color: var(--ink); }

.section p a { color: var(--teal); font-weight: 600; text-underline-offset: 3px; }
.section p a:hover { color: var(--teal-deep); }

/* BILDE */
.post-figure { margin: 48px 0 0; }
.post-figure img { display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 16px; }
.post-figure figcaption { margin-top: 12px; font-size: 13px; font-style: italic; color: var(--ink-soft); }

/* SJEKKLISTE */
.checklist { list-style: none; margin: 8px 0 24px; }
.checklist li {
  position: relative;
  padding: 14px 0 14px 36px;
  border-bottom: 1px solid rgba(33,93,110,0.08);
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: ''; position: absolute; left: 0; top: 16px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--teal-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23215D6E' stroke-width='3'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.checklist strong { color: var(--ink); font-weight: 600; }

/* PERSONER */
.people { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 24px 0; }
.person { background: var(--cream); border: 1px solid rgba(33,93,110,0.1); border-radius: 12px; padding: 20px 22px; }
.person strong { display: block; font-family: 'Fraunces', serif; font-size: 18px; font-weight: 500; color: var(--ink); line-height: 1.25; margin-bottom: 6px; }
.person span { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--rust-deep); }

/* STEG (nummerert flyt) */
.steps { list-style: none; counter-reset: steg; margin: 32px 0; padding: 28px; background: var(--cream); border: 1px solid rgba(33,93,110,0.1); border-radius: 12px; }
.steps li { counter-increment: steg; position: relative; padding: 0 0 22px 48px; }
.steps li:last-child { padding-bottom: 0; }
.steps li::before {
  content: counter(steg); position: absolute; left: 0; top: 0;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--teal); color: var(--paper);
  font-family: 'Fraunces', serif; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
}
.steps li::after { content: ''; position: absolute; left: 15px; top: 36px; bottom: 6px; width: 1px; background: rgba(33,93,110,0.2); }
.steps li:last-child::after { display: none; }
.steps strong { display: block; font-size: 16px; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
.steps span { display: block; font-size: 15px; color: var(--ink-soft); line-height: 1.6; }

/* Tallrad med tre tall: beholder tre kolonner også på mobil. */
.stats-inner.three { grid-template-columns: repeat(3, 1fr); }
.stats-inner.three .stat { border-bottom: none; }
.stats-inner.three .stat:nth-child(2) { border-right: 1px solid rgba(33,93,110,0.1); }

/* QUOTE */
.quote {
  margin: 40px 0;
  padding: 28px 32px;
  border-left: 4px solid var(--rust);
  background: rgba(206,137,70,0.07);
  border-radius: 0 8px 8px 0;
}
.quote p {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-style: italic;
  color: var(--teal);
  margin-bottom: 12px;
  line-height: 1.6;
  font-weight: 400;
}
.quote cite { font-size: 13px; color: var(--ink-soft); font-style: normal; font-weight: 500; }

/* HIGHLIGHT */
.highlight {
  background: rgba(33,93,110,0.06);
  border: 1px solid var(--teal-soft);
  padding: 24px 28px;
  margin: 32px 0;
  border-radius: 12px;
}
.highlight p { color: var(--teal); font-weight: 500; margin: 0; font-size: 15px; line-height: 1.7; }

/* TABLE */
.ticket-table { width: 100%; border-collapse: collapse; margin: 28px 0; font-size: 14px; }
.ticket-table th { background: var(--teal); color: var(--paper); padding: 12px 16px; text-align: left; font-weight: 500; font-size: 12px; letter-spacing: 0.5px; }
.ticket-table th:first-child { border-radius: 8px 0 0 0; }
.ticket-table th:last-child { border-radius: 0 8px 0 0; }
.ticket-table td { padding: 12px 16px; border-bottom: 1px solid rgba(33,93,110,0.08); color: var(--ink-soft); }
.ticket-table tr:nth-child(even) td { background: rgba(33,93,110,0.03); }
.ticket-table tr.total td { background: rgba(33,93,110,0.07); font-weight: 600; color: var(--teal); border-bottom: none; }

/* SOCIAL CARDS */
.social-section { padding-top: 60px; }
.social-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 24px 0; }
.social-card { background: var(--cream); border: 1px solid rgba(33,93,110,0.1); border-radius: 14px; padding: 24px; }
.platform { font-weight: 600; font-size: 14px; margin-bottom: 10px; color: var(--ink); }
.platform.fb { color: #1877F2; }
.platform.ig { color: var(--rust-deep); }
.social-card p { font-size: 14px; margin-bottom: 10px; }
.tag { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal); background: var(--teal-soft); padding: 3px 10px; border-radius: 100px; }

/* HONEST BOX */
.honest-box { background: var(--cream); border-radius: 12px; padding: 24px 28px; margin: 28px 0; }
.honest-box h4 { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--rust); margin-bottom: 10px; }
.honest-box p { font-size: 15px; color: var(--ink-soft); margin: 0; }

/* NEXT EVENT */
.next-event {
  background: var(--teal);
  padding: 40px;
  margin: 56px -32px 0;
  position: relative;
  border-radius: 0;
}
.next-event::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--rust), var(--rust-soft));
}
.next-event-label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rust); font-weight: 600; margin-bottom: 10px; }
.next-event h3 { font-family: 'Fraunces', serif; font-size: 26px; font-weight: 400; color: var(--paper); margin-bottom: 28px; letter-spacing: -0.02em; }
.next-event-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 24px; }
.next-event-stat { text-align: center; }
.val { font-family: 'Fraunces', serif; font-size: 32px; font-weight: 500; color: var(--paper); display: block; line-height: 1; margin-bottom: 6px; }
.lbl { font-size: 12px; color: rgba(244,237,224,0.6); }
.next-event p { color: rgba(244,237,224,0.75); font-size: 15px; margin: 0; }

/* DASHBORD-ILLUSTRASJON: gjenskaper bedriftsdashbordet i HTML, med fiktive tilbud og tall. */
.dash-mock { margin: 40px 0; }
.dm-frame {
  display: grid; grid-template-columns: 190px 1fr;
  border: 1px solid rgba(33,93,110,0.12); border-radius: 14px; overflow: hidden;
  background: var(--cream);
  box-shadow: 0 30px 70px -30px rgba(17,39,42,0.35);
  font-size: 12px; line-height: 1.4; color: var(--ink);
}
.dm-side { background: var(--teal-deep); color: rgba(244,237,224,0.85); padding: 16px 0; }
.dm-item { padding: 6px 16px; font-weight: 500; }
.dm-item.active { background: rgba(244,237,224,0.1); color: var(--paper); box-shadow: inset 3px 0 0 var(--rust); }
.dm-group { padding: 14px 16px 4px; font-size: 9.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(244,237,224,0.45); }
.dm-offer { position: relative; padding: 5px 16px 5px 28px; }
.dm-offer::before { content: ''; position: absolute; left: 17px; top: 11px; width: 5px; height: 5px; border-radius: 50%; background: var(--teal-mid); }
.dm-offer span { display: block; color: var(--paper); }
.dm-offer em { display: block; font-style: normal; font-size: 10px; color: var(--rust-soft); }
.dm-main { min-width: 0; padding: 20px 22px 18px; }
.dm-title { font-family: 'Fraunces', serif; font-size: 20px; margin-bottom: 14px; }
.dm-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 12px; }
.dm-card { min-width: 0; background: #fff; border-top: 2px solid var(--teal); border-radius: 8px; padding: 10px 11px; box-shadow: 0 2px 8px -4px rgba(17,39,42,0.15); }
.dm-card.rust { border-top-color: var(--rust); }
.dm-card.muted { border-top-color: var(--teal-soft); }
.dm-label { display: block; margin-bottom: 4px; font-size: 8.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }
.dm-card strong { display: block; font-size: 17px; font-weight: 700; line-height: 1.2; }
.dm-card strong.dm-link { font-size: 12px; color: var(--rust-deep); }
.dm-card strong.dm-small { font-size: 12px; }
.dm-card small { display: block; margin-top: 2px; font-size: 9.5px; color: var(--ink-soft); }
.dm-card.rust small { color: var(--rust-deep); }
.dm-chart { background: #fff; border-radius: 8px; padding: 12px 14px 10px; box-shadow: 0 2px 8px -4px rgba(17,39,42,0.15); }
.dm-chart-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 8px; font-weight: 600; }
.dm-chart-head span { font-weight: 500; color: var(--ink-soft); }
.dm-chart svg { display: block; width: 100%; height: 120px; }
.dm-axis { display: flex; justify-content: space-between; margin-top: 4px; font-size: 9px; color: var(--ink-soft); }
.dm-chart-foot { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 10px; font-size: 10.5px; color: var(--ink-soft); }
.dm-toggle { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--ink); }
.dm-toggle::before { content: ''; width: 20px; height: 11px; box-sizing: border-box; border: 1.5px solid var(--ink-soft); border-radius: 10px; background: radial-gradient(circle at 4px 50%, var(--ink-soft) 2.5px, transparent 3px); }
.dash-mock figcaption { margin-top: 14px; font-size: 13px; font-style: italic; color: var(--ink-soft); }

@media (max-width: 600px) {
  /* På mobil vises bare tilbudslisten fra menyen, som brikker over oversikten. */
  .dm-frame { grid-template-columns: 1fr; }
  .dm-side { display: flex; flex-wrap: wrap; gap: 6px; padding: 14px; }
  .dm-side > :not(.dm-offer):not(.dm-group-offers) { display: none; }
  .dm-group-offers { width: 100%; padding: 0 0 2px; }
  .dm-offer { padding: 6px 10px; background: rgba(244,237,224,0.08); border-radius: 8px; }
  .dm-offer::before { display: none; }
  .dm-main { padding: 16px 14px 14px; }
  .dm-cards { grid-template-columns: 1fr 1fr; }
  .dm-chart svg { height: 100px; }
}

/* KALENDER-ILLUSTRASJON: kommunekalender med arrangementer fra to kilder. Fiktive navn og arrangementer. */
.cal-mock { margin: 40px 0; }
.cm-frame {
  border: 1px solid rgba(33,93,110,0.12); border-radius: 14px; overflow: hidden;
  background: #eef5f5;
  box-shadow: 0 30px 70px -30px rgba(17,39,42,0.35);
  font-size: 12px; line-height: 1.4; color: var(--ink);
}
.cm-bar { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 12px 18px; background: var(--teal); color: var(--paper); }
.cm-brand { font-family: 'Fraunces', serif; font-style: italic; font-size: 16px; }
.cm-nav { display: flex; gap: 16px; font-size: 11px; font-weight: 600; }
.cm-nav span { opacity: 0.75; }
.cm-nav .on { opacity: 1; box-shadow: 0 2px 0 var(--rust); }
.cm-body { padding: 20px 18px 18px; }
.cm-kicker { font-size: 9.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal-mid); }
.cm-title { font-family: 'Fraunces', serif; font-size: 22px; margin: 2px 0 12px; }
.cm-filters { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 12px; }
.cm-filters span { padding: 3px 10px; background: #fff; border: 1px solid rgba(33,93,110,0.2); border-radius: 100px; font-size: 10.5px; font-weight: 600; color: var(--ink-soft); }
.cm-filters .on { background: var(--teal); border-color: var(--teal); color: var(--paper); }
.cm-month { margin-bottom: 8px; text-align: center; font-family: 'Fraunces', serif; font-size: 14px; }
.cm-grid { display: grid; grid-template-columns: repeat(7, 1fr); background: #fff; border: 1px solid rgba(33,93,110,0.12); border-radius: 8px; overflow: hidden; }
.cm-dow { padding: 5px 0; text-align: center; font-size: 9px; font-weight: 700; letter-spacing: 0.08em; color: var(--ink-soft); background: rgba(33,93,110,0.05); }
.cm-day { min-width: 0; min-height: 54px; padding: 4px 5px; border-top: 1px solid rgba(33,93,110,0.08); border-left: 1px solid rgba(33,93,110,0.08); font-size: 10px; color: var(--ink-soft); }
.cm-day:nth-child(7n+1) { border-left: none; }
.cm-day.we { background: rgba(33,93,110,0.03); }
.cm-ev { display: block; margin-top: 3px; padding: 2px 5px; border-radius: 4px; font-size: 9.5px; font-weight: 600; line-height: 1.25; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cm-ev.hf { background: var(--teal-soft); color: var(--teal-deep); }
.cm-ev.inn { background: rgba(206,137,70,0.2); color: var(--rust-deep); }
.cm-legend { display: flex; flex-wrap: wrap; gap: 6px 16px; margin: 10px 0 14px; font-size: 10.5px; color: var(--ink-soft); }
.cm-legend span::before { content: ''; display: inline-block; width: 8px; height: 8px; margin-right: 6px; border-radius: 2px; vertical-align: -1px; }
.cm-legend .hf::before { background: var(--teal-soft); }
.cm-legend .inn::before { background: rgba(206,137,70,0.35); }
.cm-cta { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 12px 14px; background: #fff; border: 1px solid rgba(33,93,110,0.12); border-radius: 8px; }
.cm-cta strong { display: block; font-size: 12.5px; }
.cm-cta small { font-size: 10.5px; color: var(--ink-soft); }
.cm-btn { flex-shrink: 0; padding: 7px 12px; border-radius: 6px; background: var(--teal); color: var(--paper); font-size: 11px; font-weight: 600; }
.cal-mock figcaption { margin-top: 14px; font-size: 13px; font-style: italic; color: var(--ink-soft); }

@media (max-width: 600px) {
  /* På mobil blir arrangementene prikker i rutene, slik mobilkalendere ofte viser dem. */
  .cm-nav { display: none; }
  .cm-body { padding: 16px 12px 14px; }
  .cm-day { min-height: 40px; padding: 3px; }
  .cm-ev { display: inline-block; width: 6px; height: 6px; margin: 4px 2px 0 0; padding: 0; border-radius: 50%; font-size: 0; }
  .cm-ev.hf, .cm-legend .hf::before { background: var(--teal); }
  .cm-ev.inn, .cm-legend .inn::before { background: var(--rust); }
  .cm-legend span::before { border-radius: 50%; }
  .cm-cta { flex-direction: column; align-items: stretch; }
  .cm-btn { text-align: center; }
}

/* LES OGSÅ */
.read-next {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  margin: 56px 0;
  padding: 24px 28px;
  background: var(--paper);
  border: 1px solid rgba(33,93,110,0.12);
  border-radius: 14px;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
}
.read-next:hover { border-color: var(--teal); transform: translateY(-2px); }
.read-next:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }
.read-next-label { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rust); margin-bottom: 6px; }
.read-next-title { font-family: 'Fraunces', serif; font-size: 21px; color: var(--ink); line-height: 1.25; letter-spacing: -0.01em; }
.read-next svg { flex-shrink: 0; color: var(--teal); }

/* CTA */
.cta {
  background: var(--ink);
  padding: 56px 40px;
  margin: 0 -32px -80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, var(--teal) 0%, transparent 50%);
  opacity: 0.4;
}
.cta-inner { position: relative; z-index: 1; }
.cta h3 { font-family: 'Fraunces', serif; font-size: 32px; font-weight: 400; color: var(--paper); margin-bottom: 14px; letter-spacing: -0.02em; }
.cta h3 em { font-style: italic; color: var(--teal-mid); }
.cta p { color: rgba(244,237,224,0.65); margin-bottom: 32px; font-size: 16px; }
.cta a { display: inline-flex; align-items: center; gap: 8px; background: var(--teal); color: var(--paper); text-decoration: none; padding: 16px 32px; font-weight: 500; font-size: 15px; border-radius: 100px; transition: all 0.25s; }
.cta a:hover { background: var(--teal-mid); transform: translateY(-1px); box-shadow: 0 10px 30px -10px rgba(33,93,110,0.6); }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta a.cta-ghost { background: transparent; box-shadow: inset 0 0 0 1px rgba(244,237,224,0.3); }
.cta a.cta-ghost:hover { background: rgba(244,237,224,0.08); box-shadow: inset 0 0 0 1px var(--paper); }

/* BACK LINK */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(244,237,224,0.5);
  text-decoration: none;
  margin-bottom: 32px;
  transition: color 0.2s;
}
.back-link:hover { color: rgba(244,237,224,0.9); }

.divider { height: 1px; background: rgba(33,93,110,0.1); margin: 56px 0; }

/* BLOGGOVERSIKT */
.post-index { max-width: 1280px; margin: 0 auto; padding: 64px 32px 120px; }

/* FOOTER */
.site-foot {
  background: var(--ink);
  border-top: 1px solid rgba(244,237,224,0.08);
  color: rgba(244,237,224,0.5);
  padding: 40px 0;
  font-size: 13px;
}
.foot-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.foot-links { display: flex; gap: 24px; flex-wrap: wrap; }
.foot-links a { color: rgba(244,237,224,0.7); text-decoration: none; transition: color 0.2s; }
.foot-links a:hover { color: var(--rust); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(250, 246, 236, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 20px;
    gap: 4px;
    border-bottom: 1px solid rgba(33, 93, 110, 0.1);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; font-size: 16px; border-bottom: 1px solid rgba(33,93,110,0.06); }
  .nav-links a:last-child { border-bottom: none; }
}

@media (max-width: 600px) {
  .stats-inner, .next-event-stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2n) { border-right: none; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(33,93,110,0.1); }
  .social-cards, .people { grid-template-columns: 1fr; }
  .next-event, .cta { margin-left: -24px; margin-right: -24px; padding-left: 24px; padding-right: 24px; }
  .content { padding: 0 24px 80px; }
  .blog-hero-inner { padding: 0 24px; }
  .stats-inner { padding: 0 24px; }
  .container { padding: 0 24px; }
  .post-index { padding: 48px 24px 96px; }
}
