/* ============================================================
   TRÄNINGSGLÄDJE.SE — DESIGNSYSTEM
   Inspirerat av redaktionell magasin-layout med koral accent
   ============================================================ */

/* Self-hosted variable fonts (WOFF2) */
@font-face {
  font-family: 'Fraunces';
  src: url('/fonts/fraunces-variable.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('/fonts/fraunces-variable-italic.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/fonts/inter-variable.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-serif: 'Fraunces', 'Source Serif 4', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --coral: #FF6B6B;
  --coral-dark: #E94F4F;
  --coral-soft: #FFE8E4;
  --ink: #111111;
  --charcoal: #2D3436;
  --body: #3A3A3A;
  --muted: #6B6B6B;
  --paper: #FFFFFF;
  --warm: #FAF6F0;
  --grey-soft: #EFEBE4;
  --grey-line: #DCD7CE;
  --forest: #2F6B4F;
  --warm-orange: #F97316;
  --teal: #6B9BA0;

  --maxw: 1280px;
  --gap: 2px;
  --header-height: 76px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--warm);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--coral); color: #fff; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* Accessibility skip link */
.skip-to-content {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--ink);
  color: #fff;
  padding: 8px 16px;
  z-index: 1000;
  text-decoration: none;
}
.skip-to-content:focus { top: 0; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--paper);
  border-bottom: 4px solid var(--coral);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.header-inner {
  max-width: var(--maxw); margin: 0 auto;
  height: var(--header-height); padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.logo {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}
.logo em {
  font-style: italic;
  font-weight: 700;
  color: var(--coral);
}
.logo small {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.25em;
  color: var(--muted);
  display: block;
  margin-top: 4px;
  text-transform: uppercase;
}

.main-nav { display: flex; gap: 28px; }
.main-nav a {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--charcoal);
  padding: 8px 0;
  position: relative;
  transition: color 0.2s;
}
.main-nav a::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 3px; background: var(--coral);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s ease;
}
.main-nav a:hover { color: var(--coral); }
.main-nav a:hover::after,
.main-nav a.is-active::after { transform: scaleX(1); }
.main-nav a.is-active { color: var(--coral); }

.header-right { display: flex; align-items: center; gap: 14px; }
.btn-subscribe {
  background: var(--ink); color: var(--paper);
  font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.2em;
  padding: 11px 20px; border: none;
  transition: background 0.2s;
}
.btn-subscribe:hover { background: var(--coral); }
.icon-btn {
  width: 40px; height: 40px;
  background: transparent; border: none;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink);
  transition: color 0.2s;
}
.icon-btn:hover { color: var(--coral); }
.hamburger { display: none; }

/* Mobile nav */
.mobile-nav-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s;
  z-index: 200;
}
.mobile-nav-overlay.open { opacity: 1; visibility: visible; }
.mobile-nav {
  position: fixed;
  top: 0; right: -320px;
  width: 320px; height: 100vh;
  background: var(--paper);
  z-index: 300;
  padding: 80px 28px 40px;
  display: flex; flex-direction: column; gap: 12px;
  transition: right 0.3s;
  box-shadow: -4px 0 12px rgba(0,0,0,0.1);
}
.mobile-nav.open { right: 0; }
.mobile-nav a {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 14px 0;
  border-bottom: 1px solid var(--grey-line);
  color: var(--ink);
}
.mobile-nav a:hover { color: var(--coral); }

/* ============================================================
   KICKER (snabblänkar under header)
   ============================================================ */
.kicker {
  background: var(--paper);
  border-bottom: 1px solid var(--grey-line);
  font-size: 12px;
}
.kicker-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 10px 24px;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.kicker-label {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--coral);
  font-size: 11px;
}
.kicker a {
  color: var(--charcoal);
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.kicker a:hover { color: var(--ink); border-bottom-color: var(--ink); }

/* ============================================================
   SHELL
   ============================================================ */
.shell {
  max-width: var(--maxw);
  margin: 0 auto;
  background: var(--grey-line);
  display: grid;
  gap: var(--gap);
}
.shell > section { background: var(--paper); }
.shell > section.tema-dark { background: var(--ink); }
.shell > section.newsletter { background: var(--coral); }
.shell > section.toplist-section { background: var(--warm); }

/* ============================================================
   HERO
   ============================================================ */
.hero-row {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--gap);
  background: var(--grey-line);
}
.hero-row > * { background: var(--paper); }
.hero-main { padding: 40px; }
.hero-link { display: block; color: inherit; }
.hero-figure {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--grey-soft);
  margin-bottom: 28px;
}
.hero-figure img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s ease;
}
.hero-link:hover .hero-figure img { transform: scale(1.03); }
.kicker-tag {
  position: absolute; top: 0; left: 0;
  background: var(--coral); color: #fff;
  padding: 10px 14px;
  font-size: 10px; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.25em;
}
.kicker-tag.is-dark { background: var(--ink); }
.kicker-tag.is-warm { background: var(--warm-orange); }
.kicker-tag.is-forest { background: var(--forest); }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--coral);
}
.eyebrow.is-warm { color: #D15D1B; }
.eyebrow.is-forest { color: var(--forest); }
.eyebrow.is-ink { color: var(--ink); }

.hero-title {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 14px 0 20px;
}
.hero-link:hover .hero-title { color: var(--coral); }
.hero-lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--body);
  font-weight: 400;
  max-width: 680px;
  margin-bottom: 20px;
}
.byline {
  display: flex; align-items: center; gap: 12px;
  font-size: 12px; color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.byline strong { color: var(--ink); font-weight: 800; }
.byline-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--muted); }

/* Side panel */
.side-panel { padding: 36px 28px; background: var(--warm); display: flex; flex-direction: column; gap: 28px; }
.panel-title {
  font-family: var(--font-sans);
  font-size: 14px; font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--ink);
  border-bottom: 3px solid var(--ink);
  padding-bottom: 10px; margin-bottom: 0;
  display: flex; justify-content: space-between; align-items: baseline;
}
.panel-title .panel-count {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.2em;
  font-weight: 700;
}
.side-panel ul { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.side-panel li a {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  align-items: start;
}
.side-panel .thumb {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--grey-soft);
}
.side-panel .thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.side-panel li a:hover .thumb img { transform: scale(1.08); }
.side-panel .eyebrow { font-size: 10px; }
.side-panel h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.25;
  color: var(--ink);
  margin-top: 4px;
  transition: color 0.2s;
}
.side-panel li a:hover h4 { color: var(--coral); }

/* ============================================================
   SECTION HEAD
   ============================================================ */
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  border-bottom: 4px solid var(--ink);
  padding-bottom: 16px; margin-bottom: 32px;
}
.section-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}
.section-head h2 .and { color: var(--coral); font-style: italic; font-weight: 700; }
.see-all {
  font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.22em;
  color: var(--ink);
  border-bottom: 2px solid var(--coral);
  padding-bottom: 4px;
  transition: color 0.2s;
}
.see-all:hover { color: var(--coral); }

.section-pad { padding: 56px 40px; }

/* ============================================================
   CARDS
   ============================================================ */
.grid-3 {
  display: grid; gap: 40px;
  grid-template-columns: repeat(3, 1fr);
}
.card { display: block; color: inherit; }
.card-figure {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--grey-soft);
  margin-bottom: 18px;
}
.card-figure img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.card:hover .card-figure img { transform: scale(1.05); }
.card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 10px 0 10px;
  transition: color 0.2s;
}
.card:hover h3 { color: var(--coral); }
.card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--body);
  margin-bottom: 14px;
}
.meta {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  display: flex; gap: 10px;
}
.meta span + span::before {
  content: '·';
  margin-right: 10px;
  color: var(--grey-line);
}

/* Arrow link */
.arrow-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.22em;
  color: var(--ink);
  padding-bottom: 6px;
  border-bottom: 2px solid var(--coral);
  width: fit-content;
  transition: gap 0.25s;
}
.arrow-link:hover { gap: 16px; color: var(--coral); }

/* ============================================================
   HUB CARDS (category nav)
   ============================================================ */
.hub-grid {
  display: grid; gap: 2px;
  grid-template-columns: repeat(4, 1fr);
  background: var(--grey-line);
}
.hub-card {
  position: relative;
  background: var(--paper);
  overflow: hidden;
  aspect-ratio: 3/4;
  display: flex; flex-direction: column;
  transition: transform 0.3s;
}
.hub-card .hub-img { flex: 1; overflow: hidden; background: var(--grey-soft); }
.hub-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s, filter 0.4s;
}
.hub-card:hover img { transform: scale(1.06); }
.hub-body {
  padding: 22px 22px 26px;
  background: var(--paper);
  border-top: 3px solid var(--coral);
}
.hub-card[data-accent="forest"] .hub-body { border-top-color: var(--forest); }
.hub-card[data-accent="warm"] .hub-body { border-top-color: var(--warm-orange); }
.hub-card[data-accent="teal"] .hub-body { border-top-color: var(--teal); }
.hub-body h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.hub-body p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 14px;
}
.hub-count {
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--ink);
}
.hub-count .arrow { color: var(--coral); margin-left: 4px; }

/* ============================================================
   NEWSLETTER BLOCK
   ============================================================ */
.newsletter {
  background: var(--coral);
  color: #fff;
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: 'TG';
  position: absolute;
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 560px;
  color: rgba(255,255,255,0.08);
  top: -180px; right: -60px;
  line-height: 1;
  letter-spacing: -0.05em;
  pointer-events: none;
}
.newsletter-inner {
  position: relative; z-index: 2;
  max-width: 640px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 18px; align-items: center;
}
.newsletter .eyebrow {
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  letter-spacing: 0.3em;
}
.newsletter h2 {
  font-family: var(--font-serif);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
}
.newsletter h2 em { font-style: italic; font-weight: 700; }
.newsletter p {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  max-width: 480px;
}
.nl-form {
  display: flex; gap: 6px; width: 100%; max-width: 520px;
  margin-top: 14px;
  background: #fff;
  padding: 6px;
}
.nl-form input {
  flex: 1;
  border: none; outline: none;
  padding: 14px 16px;
  font-family: inherit; font-size: 14px;
  background: transparent;
  color: var(--ink);
}
.nl-form input::placeholder {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  font-size: 12px;
}
.nl-form button {
  background: var(--ink);
  color: #fff;
  border: none;
  padding: 0 28px;
  font-size: 11px; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.22em;
  transition: background 0.2s;
}
.nl-form button:hover { background: var(--charcoal); }
.nl-fine {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 8px;
}

/* ============================================================
   AD SLOTS
   ============================================================ */
.ad-slot {
  background: var(--grey-soft);
  border: 1px dashed var(--grey-line);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 4px;
  color: var(--muted);
  font-family: var(--font-sans);
  text-align: center;
  position: relative;
}
.ad-slot::before {
  content: 'Annons';
  position: absolute;
  top: 8px; left: 10px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.65;
}
.ad-slot .ad-size {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.5;
}
.ad-leaderboard {
  max-width: var(--maxw); margin: 0 auto;
  padding: 16px 24px;
  background: var(--warm);
  border-bottom: 1px solid var(--grey-line);
}
.ad-leaderboard .ad-slot { height: 120px; min-height: 90px; }
.ad-sidebar .ad-slot { aspect-ratio: 300/250; width: 100%; }
.ad-billboard { padding: 36px 40px; background: var(--warm); }
.ad-billboard .ad-slot { height: 120px; max-width: 970px; margin: 0 auto; }

/* ============================================================
   ARTICLE TYPOGRAPHY
   ============================================================ */
.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--body);
}
.article-body h1 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 24px;
}
.article-body h2 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 48px 0 16px;
  padding-top: 16px;
  border-top: 3px solid var(--ink);
}
.article-body h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin: 32px 0 12px;
}
.article-body p { margin-bottom: 20px; }
.article-body a {
  color: var(--ink);
  border-bottom: 2px solid var(--coral);
  transition: background 0.2s;
}
.article-body a:hover { background: var(--coral-soft); }
.article-body ul, .article-body ol {
  margin: 0 0 20px 24px;
  padding-left: 0;
}
.article-body li { margin-bottom: 8px; }
.article-body img {
  width: 100%;
  border-radius: 0;
  margin: 32px 0;
}
.article-body blockquote {
  border-left: 4px solid var(--coral);
  padding: 16px 24px;
  margin: 32px 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: var(--ink);
}
.article-body strong { color: var(--ink); font-weight: 700; }
.article-body hr {
  border: 0;
  border-top: 1px solid var(--grey-line);
  margin: 48px 0;
}
.article-list {
  list-style: none;
  margin: 24px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.article-list li {
  background: var(--warm);
  border-left: 4px solid var(--coral);
  padding: 20px 24px;
  margin: 0;
}
.article-list a {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: inherit;
  border-bottom: none;
  background: transparent;
}
.article-list a:hover { background: transparent; }
.article-list a strong {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  transition: color 0.2s;
}
.article-list a:hover strong { color: var(--coral); }
.article-list a span {
  font-size: 14.5px;
  color: var(--body);
  line-height: 1.5;
}

.article-hero {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 32px 24px 24px;
}
.article-hero .kicker-tag { position: relative; display: inline-block; margin-bottom: 16px; }
.article-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 20px;
  max-width: 1000px;
}
.article-hero .byline { margin-bottom: 24px; }
.article-hero figure {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--grey-soft);
  margin-bottom: 32px;
}
.article-hero figure img {
  width: 100%; height: 100%; object-fit: cover;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px 24px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: var(--muted);
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--coral); }
.breadcrumb span.sep { color: var(--grey-line); }
.breadcrumb [aria-current="page"] { color: var(--ink); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: #EDE8DE;
  padding: 72px 0 32px;
  border-top: 6px solid var(--coral);
}
.footer-grid {
  max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand .logo { color: #fff; font-size: 30px; }
.footer-brand .logo small { color: rgba(255,255,255,0.5); }
.footer-brand p {
  margin-top: 18px;
  font-size: 14.5px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 340px;
}
.footer-social {
  display: flex; gap: 8px; margin-top: 20px;
}
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.18);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 900;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.75);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.footer-social a:hover {
  background: var(--coral);
  color: #fff;
  border-color: var(--coral);
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: #fff;
  padding-left: 14px;
  border-left: 3px solid var(--coral);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--coral); }
.footer-bar {
  max-width: var(--maxw); margin: 48px auto 0; padding: 28px 24px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
}
.footer-bar a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-bar a:hover { color: #fff; }

/* ============================================================
   RESPONSIVITET
   ============================================================ */
@media (max-width: 1100px) {
  .hero-row { grid-template-columns: 1fr; }
  .hub-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 780px) {
  .main-nav { display: none; }
  .hamburger { display: inline-flex; }
  .btn-subscribe { display: none; }
  .logo { font-size: 22px; }
  .logo small { display: none; }
  .hero-main { padding: 24px 20px; }
  .section-pad { padding: 40px 20px; }
  .newsletter { padding: 56px 24px; }
  .grid-3 { grid-template-columns: 1fr; gap: 32px; }
  .hub-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nl-form { flex-direction: column; padding: 8px; }
  .nl-form button { padding: 14px; }
  .kicker { display: none; }
  .ad-billboard { padding: 24px 20px; }
  .article-body { padding: 32px 20px; font-size: 16px; }
  .article-hero { padding: 24px 20px 16px; }
}
