/* ── Reset & tokens ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy:     #0A192F;
  --navy-mid: #0c1e35;
  --navy-dark:#060f1c;
  --gold:     #C5A059;
  --gold-dim: rgba(197,160,89,0.12);
  --white:    #F4F6FA;
  --dim:      rgba(244,246,250,0.45);
  --dimmer:   rgba(244,246,250,0.28);
  --green:    #2ecc71;
  --red-live: #c0392b;
  --shadow:   0 2px 12px rgba(0,0,0,0.18);
  --radius:   8px;
  --display:  'Bebas Neue', sans-serif;
  --condensed:'Barlow Condensed', sans-serif;
  --body-font:'DM Sans', sans-serif;
}
html { scroll-behavior: smooth; }
body { background: var(--navy); color: var(--white); font-family: var(--body-font); font-size: 14px; line-height: 1.5; min-height: 100vh; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── Ticker ─────────────────────────────────────────────────── */
.ticker-bar { display: flex; align-items: center; background: var(--navy-dark); height: 32px; overflow: hidden; border-bottom: 1px solid rgba(197,160,89,0.15); }
.ticker-label { flex-shrink: 0; padding: 0 12px; font-family: var(--condensed); font-size: 11px; font-weight: 700; letter-spacing: 1.5px; color: var(--gold); background: var(--navy-dark); border-right: 1px solid rgba(197,160,89,0.2); height: 100%; display: flex; align-items: center; }
.ticker-wrap { flex: 1; overflow: hidden; position: relative; }
.ticker-track { display: flex; white-space: nowrap; animation: ticker-scroll 40s linear infinite; }
.ticker-item { padding: 0 32px; font-size: 12px; color: var(--dim); border-right: 1px solid rgba(255,255,255,0.06); }
.ticker-item:hover { color: var(--white); }
@keyframes ticker-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── Site Header ────────────────────────────────────────────── */
.site-header { background: var(--navy-mid); height: 64px; display: flex; align-items: center; padding: 0 24px; gap: 24px; position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(197,160,89,0.12); }
.site-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.site-logo img { height: 44px; width: 44px; }
.logo-wordmark { display: flex; flex-direction: column; line-height: 1; }
.logo-brand { font-family: var(--display); font-size: 20px; letter-spacing: 1px; color: var(--white); }
.logo-brand span { color: var(--gold); }
.logo-tagline { font-family: var(--condensed); font-size: 9px; letter-spacing: 2px; color: var(--dim); text-transform: uppercase; }
.site-nav { display: flex; gap: 4px; flex: 1; }
.nav-link { font-family: var(--condensed); font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--dim); padding: 6px 12px; border-radius: 4px; transition: color .15s, background .15s; }
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-link.active { color: var(--gold); }
.search-btn { margin-left: auto; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); color: var(--dim); padding: 6px 14px; border-radius: 20px; font-family: var(--body-font); font-size: 12px; cursor: pointer; transition: all .15s; display: flex; align-items: center; gap: 6px; }
.search-btn:hover { background: rgba(255,255,255,0.1); color: var(--white); }
.hamburger-btn { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.hamburger-btn span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all .2s; }

/* ── Live Ring ──────────────────────────────────────────────── */
.live-ring { background: var(--navy-dark); border-bottom: 1px solid rgba(255,255,255,0.05); padding: 8px 24px; display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.live-ring::-webkit-scrollbar { display: none; }
.match-chip { display: flex; align-items: center; gap: 8px; background: var(--navy-mid); border: 1px solid rgba(255,255,255,0.07); border-radius: 20px; padding: 5px 12px; white-space: nowrap; font-size: 12px; flex-shrink: 0; cursor: pointer; transition: border-color .15s; }
.match-chip:hover { border-color: rgba(197,160,89,0.4); }
.match-chip.live { border-color: rgba(192,57,43,0.4); }
.chip-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.chip-dot.live { background: var(--red-live); animation: pulse-live 1.5s infinite; }
.chip-dot.upcoming { background: var(--gold); }
.chip-dot.finished { background: var(--dim); }
.chip-teams { font-family: var(--condensed); font-weight: 700; font-size: 13px; color: var(--white); }
.chip-score { font-family: var(--display); font-size: 15px; color: var(--gold); }
.chip-time { font-size: 11px; color: var(--dim); }
@keyframes pulse-live { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.3)} }

/* ── Category Band ──────────────────────────────────────────── */
.cat-band { background: var(--navy-mid); border-bottom: 1px solid rgba(255,255,255,0.05); padding: 0 24px; display: flex; gap: 0; overflow-x: auto; scrollbar-width: none; }
.cat-band::-webkit-scrollbar { display: none; }
.cat-pill { font-family: var(--condensed); font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--dim); padding: 10px 14px; border-bottom: 2px solid transparent; white-space: nowrap; cursor: pointer; transition: color .15s, border-color .15s; }
.cat-pill:hover { color: var(--white); }
.cat-pill.active { color: var(--gold); border-bottom-color: var(--gold); }

/* ── Ad slot ────────────────────────────────────────────────── */
.ad-slot { display: flex; justify-content: center; padding: 12px 0; }

/* ── Main layout ────────────────────────────────────────────── */
.page-wrap { max-width: 1080px; margin: 0 auto; padding: 24px 20px 60px; }
.main-grid { display: grid; grid-template-columns: 1fr 292px; gap: 28px; align-items: start; }
.sidebar { display: flex; flex-direction: column; gap: 20px; }

/* ── Hero card ──────────────────────────────────────────────── */
.hero-card { background: var(--navy-mid); border-radius: var(--radius); overflow: hidden; cursor: pointer; transition: transform .15s; margin-bottom: 2px; }
.hero-card:hover { transform: translateY(-2px); }
.hero-img { height: 200px; background: linear-gradient(135deg, #0d2540 0%, #1a3a5c 100%); position: relative; display: flex; align-items: flex-end; }
.hero-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,25,47,.9) 0%, transparent 60%); }
.hero-badges { position: absolute; bottom: 10px; left: 12px; right: 12px; display: flex; justify-content: space-between; align-items: flex-end; z-index: 1; }
.cat-badge { font-family: var(--condensed); font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--navy); background: var(--gold); padding: 3px 8px; border-radius: 3px; }
.buzz-badge { font-family: var(--condensed); font-size: 11px; font-weight: 700; color: var(--gold); background: var(--navy-dark); border: 1px solid rgba(197,160,89,0.4); padding: 2px 7px; border-radius: 3px; }
.hero-body { padding: 14px 16px 16px; }
.hero-title { font-family: var(--condensed); font-size: 22px; font-weight: 700; line-height: 1.25; color: var(--white); margin-bottom: 8px; }
.hero-ingress { font-size: 12px; color: var(--dim); line-height: 1.5; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.hero-meta { font-size: 11px; color: var(--dimmer); display: flex; gap: 8px; }

/* ── Sub-grid ───────────────────────────────────────────────── */
.sub-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-bottom: 2px; }
.sub-card { background: var(--navy-mid); padding: 12px 14px; cursor: pointer; transition: background .15s; }
.sub-card:hover { background: #0e2240; }
.sub-tag { font-family: var(--condensed); font-size: 10px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; }
.sub-title { font-family: var(--condensed); font-size: 15px; font-weight: 700; line-height: 1.3; color: var(--white); margin-bottom: 6px; }
.sub-meta { font-size: 10px; color: var(--dimmer); }

/* ── News rows ──────────────────────────────────────────────── */
.news-list { display: flex; flex-direction: column; }
.news-row { display: flex; align-items: flex-start; gap: 14px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05); cursor: pointer; transition: background .1s; }
.news-row:hover { background: rgba(255,255,255,0.02); margin: 0 -8px; padding: 12px 8px; border-radius: 4px; }
.news-num { font-family: var(--display); font-size: 22px; color: rgba(197,160,89,0.35); min-width: 28px; line-height: 1; padding-top: 2px; }
.news-content { flex: 1; }
.news-tag { font-family: var(--condensed); font-size: 10px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--gold); margin-bottom: 3px; }
.news-title { font-family: var(--condensed); font-size: 15px; font-weight: 700; line-height: 1.3; color: var(--white); margin-bottom: 4px; }
.news-meta { font-size: 10px; color: var(--dimmer); }

/* ── Columnist band ─────────────────────────────────────────── */
.kronikor-band { margin: 2px 0; }
.band-header { display: flex; align-items: baseline; gap: 10px; padding: 14px 0 10px; }
.band-header h2 { font-family: var(--condensed); font-size: 18px; font-weight: 700; letter-spacing: .5px; color: var(--white); }
.band-sub { font-size: 11px; color: var(--dim); }
.kronikor-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.col-card { background: var(--navy-mid); border-radius: 4px; overflow: hidden; cursor: pointer; transition: transform .15s; }
.col-card:hover { transform: translateY(-2px); }
.col-photo { aspect-ratio: 4/3; background: linear-gradient(135deg, #1a3a5c, #0d2540); position: relative; overflow: hidden; display: flex; align-items: flex-end; }
.col-photo-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,25,47,.85) 0%, transparent 50%); }
.col-photo-info { position: absolute; bottom: 8px; left: 10px; right: 10px; z-index: 1; }
.col-name { font-family: var(--condensed); font-size: 14px; font-weight: 700; color: var(--white); line-height: 1.2; }
.col-role { font-size: 10px; color: var(--gold); }
.col-initials { font-family: var(--display); font-size: 36px; color: rgba(197,160,89,0.3); position: absolute; top: 50%; left: 50%; transform: translate(-50%,-60%); }
.col-body { padding: 10px; }
.col-ktag { font-family: var(--condensed); font-size: 9px; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); margin-bottom: 3px; }
.col-title { font-family: var(--condensed); font-size: 13px; font-weight: 700; color: var(--white); line-height: 1.3; margin-bottom: 4px; }
.col-read { font-size: 10px; color: var(--gold); }

/* ── Sidebar widgets ────────────────────────────────────────── */
.widget { background: var(--navy-mid); border-radius: var(--radius); overflow: hidden; }
.widget-header { font-family: var(--condensed); font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--dim); padding: 10px 14px; border-bottom: 1px solid rgba(255,255,255,0.05); }

/* Standings widget */
.sw-row { display: grid; grid-template-columns: 20px 20px 1fr auto auto; align-items: center; gap: 6px; padding: 7px 14px; border-bottom: 1px solid rgba(255,255,255,0.04); font-size: 12px; cursor: pointer; transition: background .1s; }
.sw-row:last-child { border-bottom: none; }
.sw-row:hover { background: rgba(255,255,255,0.04); }
.sw-pos { font-family: var(--condensed); font-size: 11px; color: var(--dimmer); text-align: center; }
.sw-name { color: var(--white); font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sw-pts { font-family: var(--display); font-size: 15px; color: var(--gold); text-align: right; }
.sw-footer { padding: 8px 14px; text-align: center; border-top: 1px solid rgba(255,255,255,0.05); }
.sw-footer a { font-family: var(--condensed); font-size: 11px; color: var(--gold); letter-spacing: .5px; }

/* ── Form dots ──────────────────────────────────────────────── */
.form-row { display: flex; gap: 3px; }
.fd { width: 7px; height: 7px; border-radius: 50%; }
.fw  { background: #2ecc71; }
.fdr { background: var(--gold); }
.fl  { background: rgba(244,246,250,0.14); }

/* ── Match card ─────────────────────────────────────────────── */
.mc { background: var(--navy-mid); border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(255,255,255,0.06); transition: border-color .15s; cursor: pointer; }
.mc:hover { border-color: rgba(197,160,89,0.3); }
.mc-top { padding: 10px 14px 0; display: flex; justify-content: space-between; align-items: center; }
.mc-liga { font-family: var(--condensed); font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--dimmer); }
.mc-status { font-family: var(--condensed); font-size: 10px; font-weight: 700; letter-spacing: .5px; }
.mc-status.live { color: var(--red-live); }
.mc-status.upcoming { color: var(--gold); }
.mc-status.finished { color: var(--dimmer); }
.mc-live-badge { display: inline-flex; align-items: center; gap: 4px; }
.mc-live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red-live); animation: pulse-live 1.5s infinite; }
.mc-teams { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 8px; padding: 10px 14px; }
.mc-team { display: flex; align-items: center; gap: 8px; }
.mc-team.away { flex-direction: row-reverse; }
.mc-team-name { font-family: var(--condensed); font-size: 15px; font-weight: 700; color: var(--white); }
.mc-center { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.mc-score { font-family: var(--display); font-size: 26px; color: var(--white); letter-spacing: 2px; }
.mc-vs { font-family: var(--condensed); font-size: 16px; color: var(--dim); }
.mc-time { font-family: var(--condensed); font-size: 14px; color: var(--gold); }
.mc-bottom { padding: 6px 14px 10px; display: flex; justify-content: space-between; align-items: center; font-size: 11px; color: var(--dimmer); border-top: 1px solid rgba(255,255,255,0.05); }
.mc-arena { display: flex; align-items: center; gap: 4px; }
.mc-buzz { color: var(--gold); font-family: var(--condensed); font-size: 11px; font-weight: 700; }
.momentum-bar { height: 3px; display: grid; grid-template-columns: 1fr 4px 1fr; margin: 0 14px 4px; }
.mom-home { background: #2563eb; border-radius: 2px 0 0 2px; }
.mom-gap { background: var(--navy); }
.mom-away { background: var(--red-live); border-radius: 0 2px 2px 0; }
.mc-scorers { padding: 0 14px 10px; display: flex; flex-wrap: wrap; gap: 4px; }
.scorer-chip { font-size: 10px; color: var(--dim); background: var(--gold-dim); border: 1px solid rgba(197,160,89,0.2); border-radius: 20px; padding: 2px 8px; }

/* ── Article page ───────────────────────────────────────────── */
.article-page { max-width: 1080px; margin: 0 auto; padding: 24px 20px 60px; }
.article-grid { display: grid; grid-template-columns: 1fr 240px; gap: 28px; align-items: start; }
.article-hero { height: 180px; background: linear-gradient(135deg, #0d2540, #1a3a5c); border-radius: var(--radius); position: relative; margin-bottom: 16px; display: flex; align-items: flex-end; overflow: hidden; }
.article-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,25,47,.8) 0%, transparent 60%); }
.article-hero-badges { position: absolute; bottom: 12px; left: 14px; right: 14px; display: flex; justify-content: space-between; z-index: 1; }
.breadcrumbs { font-size: 11px; color: var(--dimmer); margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.breadcrumbs a { color: var(--gold); }
.breadcrumbs span { color: var(--dimmer); }
.article-title { font-family: var(--condensed); font-size: 26px; font-weight: 700; line-height: 1.2; color: var(--white); margin-bottom: 10px; }
.article-byline { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.byline-name { font-family: var(--condensed); font-size: 14px; font-weight: 700; color: var(--gold); }
.byline-role { font-size: 11px; color: var(--dim); }
.article-ingress { font-size: 14px; color: var(--white); line-height: 1.65; border-left: 2px solid var(--gold); padding-left: 14px; margin-bottom: 14px; }
.article-meta { font-size: 11px; color: var(--dimmer); display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 12px; }
.source-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.source-chip { font-size: 10px; font-family: var(--condensed); font-weight: 700; letter-spacing: .5px; color: var(--gold); background: var(--gold-dim); border: 1px solid rgba(197,160,89,0.25); border-radius: 20px; padding: 3px 10px; }
.article-body { font-size: 14px; color: rgba(244,246,250,0.7); line-height: 1.75; }
.article-body p { margin-bottom: 1em; }
.article-body strong, .article-body b { color: var(--white); }
.source-refs { margin-top: 20px; border-top: 1px solid rgba(255,255,255,0.07); padding-top: 14px; }
.source-ref { display: flex; align-items: center; gap: 8px; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.04); font-size: 11px; color: var(--dim); }
.source-ref a { color: var(--gold); flex: 1; }

/* ── Sidebar article ────────────────────────────────────────── */
.related-list { display: flex; flex-direction: column; gap: 0; }
.related-item { display: flex; gap: 10px; padding: 10px 14px; border-bottom: 1px solid rgba(255,255,255,0.05); cursor: pointer; transition: background .1s; }
.related-item:hover { background: rgba(255,255,255,0.04); }
.related-item:last-child { border-bottom: none; }
.related-tag { font-family: var(--condensed); font-size: 9px; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); margin-bottom: 2px; }
.related-title { font-family: var(--condensed); font-size: 13px; font-weight: 700; color: var(--white); line-height: 1.3; }

/* ── Columnist profile ──────────────────────────────────────── */
.col-hero-banner { background: var(--navy-mid); border-radius: var(--radius); padding: 24px; display: flex; align-items: center; gap: 20px; margin-bottom: 24px; }
.col-avatar { width: 90px; height: 90px; border-radius: 50%; background: linear-gradient(135deg, #1a3a5c, #0d2540); display: flex; align-items: center; justify-content: center; font-family: var(--display); font-size: 36px; color: var(--gold); flex-shrink: 0; border: 2px solid rgba(197,160,89,0.3); }
.col-badge { display: inline-block; font-family: var(--condensed); font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--navy); background: var(--gold); padding: 2px 7px; border-radius: 3px; margin-bottom: 6px; }
.col-hero-name { font-family: var(--display); font-size: 28px; letter-spacing: .5px; color: var(--white); }
.col-hero-bio { font-size: 12px; color: var(--dim); line-height: 1.6; max-width: 460px; margin-top: 6px; }
.col-article-count { font-family: var(--display); font-size: 18px; color: var(--gold); }
.col-article-count span { font-family: var(--body-font); font-size: 11px; color: var(--dim); }

/* ── Match page (redesign layer) ────────────────────────────── */
.match-hero { background: var(--navy-mid); border-radius: var(--radius) var(--radius) 0 0; padding: 20px 24px; }
.match-meta-row { font-family: var(--condensed); font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--dim); margin-bottom: 14px; text-align: center; }
.match-teams-row { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 12px; margin-bottom: 12px; }
.match-team-block { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.match-team-name { font-family: var(--condensed); font-size: 20px; font-weight: 700; color: var(--white); text-align: center; }
.match-team-label { font-size: 10px; color: var(--dim); }
.match-center-block { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.match-big-score { font-family: var(--display); font-size: 48px; color: var(--white); letter-spacing: 4px; }
.match-big-vs { font-family: var(--display); font-size: 28px; color: var(--dim); }
.match-big-time { font-family: var(--display); font-size: 28px; color: var(--gold); }
.match-status-pill { font-family: var(--condensed); font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 3px 10px; border-radius: 20px; }
.pill-upcoming { color: var(--gold); border: 1px solid rgba(197,160,89,0.4); }
.pill-live { color: var(--red-live); border: 1px solid rgba(192,57,43,0.4); animation: pulse-border 2s infinite; }
.pill-finished { color: var(--dim); border: 1px solid rgba(255,255,255,0.1); }
@keyframes pulse-border { 0%,100%{border-color:rgba(192,57,43,0.4)} 50%{border-color:rgba(192,57,43,0.8)} }
.match-arena-row { display: flex; justify-content: space-between; align-items: center; font-size: 11px; color: var(--dimmer); padding-top: 8px; border-top: 1px solid rgba(255,255,255,0.06); }

/* ── Tabell page ────────────────────────────────────────────── */
.tabell-full { max-width: 860px; margin: 0 auto; padding: 24px 20px 60px; }
.tabell-h1 { font-family: var(--display); font-size: 32px; letter-spacing: .5px; color: var(--white); margin-bottom: 4px; }
.standings-tbl { width: 100%; border-collapse: collapse; background: var(--navy-mid); border-radius: var(--radius); overflow: hidden; }
.standings-tbl thead { background: var(--navy-dark); }
.standings-tbl thead th { font-family: var(--condensed); font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--dimmer); padding: 10px 8px; text-align: right; }
.standings-tbl thead th:nth-child(2) { text-align: left; }
.standings-tbl thead th.col-p { color: var(--gold); }
.standings-tbl tbody tr { border-bottom: 1px solid rgba(255,255,255,0.04); transition: background .1s; cursor: pointer; }
.standings-tbl tbody tr:hover { background: rgba(255,255,255,0.03); }
.standings-tbl td { padding: 9px 8px; text-align: right; font-size: 13px; color: var(--white); }
.standings-tbl td:first-child { font-family: var(--condensed); font-size: 11px; color: var(--dimmer); text-align: center; width: 28px; }
.standings-tbl td:nth-child(2) { text-align: left; }
.tbl-team-cell { display: flex; align-items: center; gap: 8px; }
.tbl-pts { font-family: var(--display); font-size: 16px; color: var(--gold); }
.zone-euro { border-left: 3px solid #2563eb; }
.zone-conf { border-left: 3px solid #16a34a; }
.zone-rel { border-left: 3px solid var(--red-live); }

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer { background: var(--navy-dark); border-top: 1px solid rgba(255,255,255,0.06); padding: 24px; text-align: center; }
.footer-logo { font-family: var(--display); font-size: 20px; letter-spacing: 1px; color: var(--dim); }
.footer-logo span { color: var(--gold); }
.footer-txt { font-size: 11px; color: var(--dimmer); margin-top: 4px; }

/* ── Bottom nav (mobile) ────────────────────────────────────── */
.bottom-nav { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--navy-mid); border-top: 1px solid rgba(255,255,255,0.08); z-index: 200; }
.bottom-nav-inner { display: flex; }
.bn-item { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 8px 4px 10px; color: var(--dim); font-family: var(--condensed); font-size: 10px; letter-spacing: .5px; text-transform: uppercase; text-decoration: none; cursor: pointer; transition: color .15s; }
.bn-item:hover, .bn-item.active { color: var(--gold); }
.bn-icon { font-size: 20px; line-height: 1; }

/* ── Drawer ─────────────────────────────────────────────────── */
.drawer-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 300; }
.drawer-overlay.open { display: block; }
.drawer-panel { position: fixed; top: 0; right: -280px; width: 280px; height: 100%; background: var(--navy-mid); z-index: 301; transition: right .25s ease; overflow-y: auto; }
.drawer-panel.open { right: 0; }
.drawer-top { padding: 16px; border-bottom: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; align-items: center; }
.drawer-close { background: none; border: none; color: var(--dim); font-size: 24px; cursor: pointer; }
.drawer-section { padding: 8px 0; }
.drawer-section-title { font-family: var(--condensed); font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--dimmer); padding: 8px 20px 4px; }
.drawer-item { display: block; padding: 10px 20px; color: var(--dim); font-size: 14px; border-bottom: 1px solid rgba(255,255,255,0.04); transition: color .1s; }
.drawer-item:hover, .drawer-item.active { color: var(--white); }
.drawer-item.highlight { color: #FFD700; }

/* ── Tabs (match page / tabell) ─────────────────────────────── */
.tabs-bar { background: var(--navy-mid); border-bottom: 1px solid rgba(255,255,255,0.06); }
.tabs-inner { display: flex; max-width: 860px; margin: 0 auto; padding: 0 20px; }
.tab-btn { font-family: var(--condensed); font-size: 12px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--dim); padding: 12px 16px; cursor: pointer; border-bottom: 2px solid transparent; transition: color .15s, border-color .15s; background: none; border-top: none; border-left: none; border-right: none; }
.tab-btn:hover:not(.active):not(.disabled) { color: var(--white); }
.tab-btn.active { color: var(--white); border-bottom-color: var(--gold); }
.tab-btn.disabled { opacity: .35; cursor: default; pointer-events: none; }
.tab-badge { display: inline-flex; align-items: center; justify-content: center; width: 17px; height: 17px; background: var(--gold-dim); color: var(--gold); border-radius: 9px; font-size: 9px; margin-left: 5px; }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ── Mini table (match page) ────────────────────────────────── */
.mini-tbl-wrap { max-width: 860px; margin: 0 auto; padding: 0 20px 40px; }
.mini-tbl-title { font-family: var(--condensed); font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--dimmer); margin-bottom: 8px; }
.mini-tbl { width: 100%; border-collapse: collapse; background: var(--navy-mid); border-radius: 6px; overflow: hidden; font-size: 12px; }
.mini-tbl thead { background: var(--navy-dark); }
.mini-tbl thead th { font-family: var(--condensed); font-size: 9px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--dimmer); padding: 7px 7px; text-align: right; }
.mini-tbl thead th:nth-child(2) { text-align: left; }
.mini-tbl td { padding: 6px 7px; text-align: right; color: var(--white); border-bottom: 1px solid rgba(255,255,255,0.04); }
.mini-tbl td:first-child { color: var(--dimmer); font-family: var(--condensed); font-size: 10px; text-align: center; width: 22px; }
.mini-tbl td:nth-child(2) { text-align: left; font-weight: 500; }
.mini-tbl .mini-pts { font-family: var(--display); font-size: 14px; color: var(--gold); }
.mini-tbl tr.hi-home { background: rgba(37,99,235,0.12); }
.mini-tbl tr.hi-away { background: rgba(197,160,89,0.08); }
.mini-tbl-link { display: inline-block; margin-top: 8px; font-size: 11px; color: var(--gold); font-family: var(--condensed); letter-spacing: .5px; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .site-header { height: 50px; padding: 0 14px; gap: 12px; }
  .site-logo img { height: 36px; width: 36px; }
  .logo-brand { font-size: 16px; }
  .logo-tagline { display: none; }
  .site-nav { display: none; }
  .search-btn { display: none; }
  .hamburger-btn { display: flex; }
  .main-grid { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .article-grid { grid-template-columns: 1fr; }
  .article-sidebar { display: none; }
  .kronikor-grid { grid-template-columns: 1fr 1fr; }
  .bottom-nav { display: block; }
  body { padding-bottom: 56px; }
  .live-ring { padding: 6px 14px; }
  .cat-band { padding: 0 14px; }
  .page-wrap { padding: 16px 14px 40px; }
  .sub-grid { grid-template-columns: 1fr; }
  .tabell-full { padding: 16px 14px 40px; }
}
@media (max-width: 480px) {
  .kronikor-grid { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 18px; }
}
