/* ==========================================================================
   veteranbilsförsäkring.se – designen "Krom" (projektbrief avsnitt 6)
   Varm och tidlös, som en gammal bilbroschyr eller en instrumentpanel.
   Djärvheten ligger i jämförelsetabellen, allt annat hålls lugnt.
   ========================================================================== */

/* ---------- Typsnitt (självhostade) ---------- */
@font-face { font-family: "Inter"; font-style: normal; font-weight: 400; font-display: swap; src: url("/assets/fonts/inter-latin-400-normal.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: italic; font-weight: 400; font-display: swap; src: url("/assets/fonts/inter-latin-400-italic.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 500; font-display: swap; src: url("/assets/fonts/inter-latin-500-normal.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 600; font-display: swap; src: url("/assets/fonts/inter-latin-600-normal.woff2") format("woff2"); }
@font-face { font-family: "Fraunces"; font-style: normal; font-weight: 600; font-display: swap; src: url("/assets/fonts/fraunces-latin-600-normal.woff2") format("woff2"); }

/* ---------- Tokens ---------- */
:root {
  /* Färger enligt briefen */
  --wine: #5E1A28;        /* rubriker, länkar, logga. På vitt 12,7:1 */
  --wine-dark: #4A1420;   /* hover och text på sand. På sand 12,0:1 */
  --sand: #F1E6D2;        /* snabbsvar, tabellhuvud, försäkringsruta */
  --brass: #D4A93A;       /* knappar – alltid mörk text (7,8:1), aldrig vit */
  --bg: #F8F4EC;          /* krämvit sidbakgrund */
  --surface: #FFFFFF;
  --text: #221A16;        /* brödtext. På bakgrunden 15,6:1 */
  --text-muted: #5C5048;

  /* Härledda hjälpfärger */
  --brass-hover: #C79C2F;   /* mörk text på denna: 6,7:1 */
  --brass-light: #F7EDD2;   /* bakgrund bakom bästa värde */
  --brass-line: #C9A860;    /* tunna dekorativa mässingslinjer */
  --line: #E6DCCB;          /* rutnät */
  --line-strong: #8A7867;   /* kanter på knappar och filter: 4,2:1 mot vitt */
  --cream-on-wine: #F4E9E0; /* text på vinrött: 10,6:1 */

  /* Typografi */
  --font-head: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --text-base: 1.0625rem;
  --leading: 1.65;
  --measure: 66ch;

  /* Mått */
  --wrap: 72rem;
  --wrap-bred: 86rem;
  --gutter: 1rem;
  --radius: 10px;
  --radius-sm: 6px;
  --focus: 3px solid var(--wine-dark);
}
@media (min-width: 48rem) { :root { --text-base: 1.125rem; --gutter: 1.5rem; } }

/* ---------- Grund ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
[hidden] { display: none !important; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font-family: var(--font-body); font-size: var(--text-base); line-height: var(--leading);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; height: auto; }

h1, h2, h3, h4 {
  font-family: var(--font-head); font-weight: 600; color: var(--wine);
  line-height: 1.18; letter-spacing: -0.01em; margin: 0 0 .5em; text-wrap: balance;
}
h1 { font-size: clamp(2rem, 1.55rem + 2vw, 2.9rem); }
h2 { font-size: clamp(1.45rem, 1.25rem + .9vw, 1.85rem); margin-top: 2em; }
h3 { font-size: 1.25rem; margin-top: 1.6em; color: var(--text); }

p, ul, ol, dl, table, figure, details { margin: 0 0 1.1em; }
ul, ol { padding-left: 1.3em; }
li + li { margin-top: .3em; }
strong, b { font-weight: 600; }
a { color: var(--wine); text-decoration-thickness: 1px; text-underline-offset: .2em; }
a:hover { color: var(--wine-dark); text-decoration-thickness: 2px; }
:focus-visible { outline: var(--focus); outline-offset: 2px; border-radius: 2px; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }

.vh { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-bred { max-width: var(--wrap-bred); }

.hoppa { position: absolute; left: var(--gutter); top: -6rem; z-index: 10; background: var(--brass); color: var(--text); padding: .6rem 1rem; border-radius: var(--radius-sm); font-weight: 600; text-decoration: none; }
.hoppa:focus { top: .75rem; }
main:focus { outline: none; }

/* ---------- Sidhuvud ---------- */
.sidhuvud { background: var(--surface); }
.sidhuvud-inre { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .25rem 2rem; padding-block: .8rem; }
.logga { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--wine); }
.logga:hover { color: var(--wine-dark); }
.logga-symbol { width: 36px; height: 36px; flex: none; }
.logga-text { font-family: var(--font-head); font-weight: 600; font-size: 1.35rem; letter-spacing: -0.01em; line-height: 1; }
.logga-tld { color: var(--text-muted); }

.huvudmeny { width: calc(100% + 2 * var(--gutter)); margin-inline: calc(var(--gutter) * -1); overflow-x: auto; scrollbar-width: none; }
.huvudmeny::-webkit-scrollbar { display: none; }
.huvudmeny ul { display: flex; gap: .15rem; list-style: none; margin: 0; padding: .1rem var(--gutter); white-space: nowrap; }
.huvudmeny li + li { margin-top: 0; }
.huvudmeny a { display: block; padding: .5rem .7rem; color: var(--text); text-decoration: none; font-size: .95rem; font-weight: 500; border-radius: var(--radius-sm); }
.huvudmeny a:hover { color: var(--wine); background: var(--bg); }
.huvudmeny a[aria-current] { color: var(--wine); box-shadow: inset 0 -3px 0 var(--brass); border-radius: 0; }
/* Menyn får plats bredvid loggan först på riktigt breda skärmar. Under det ligger den på en egen rad. */
@media (min-width: 90rem) {
  .sidhuvud-inre { flex-wrap: nowrap; }
  .huvudmeny { width: auto; margin: 0; overflow: visible; }
  .huvudmeny ul { padding: 0; }
}

/* Kromlisten: en mässingslinje och en tunn vinröd linje, som listen på en gammal bil */
.kromlist { height: 5px; background:
  linear-gradient(var(--brass-line), var(--brass-line)) top / 100% 2px no-repeat,
  linear-gradient(var(--wine), var(--wine)) bottom / 100% 1px no-repeat; }

/* ---------- Startsidans topp ---------- */
.hem-topp { background: var(--sand); padding-block: 2.25rem 2.5rem; border-bottom: 1px solid var(--brass-line); }
.hem-topp h1 { max-width: 26ch; margin-bottom: .4em; }
.hem-ingress { font-size: 1.1em; max-width: 60ch; color: var(--text); }
.hem-topp .fortroende { color: var(--text-muted); margin-bottom: 0; }
.hem-topp .fortroende a { color: var(--wine-dark); }
.hem-jamfor { margin-top: 2rem; }
@media (min-width: 48rem) { .hem-topp { padding-block: 3rem 3.25rem; } }

/* ---------- Artikel ---------- */
.artikel-wrap { padding-block: 1.25rem 4rem; }
.artikel > :not(.prosa), .prosa > * { max-width: var(--measure); }
.prosa > .tidtabell, .prosa > .bred, .artikel > .tidtabell { max-width: none; }
.artikel-huvud { margin-top: 1.25rem; }
.artikel-huvud h1 { margin-bottom: .35em; }

.fortroende { display: flex; flex-wrap: wrap; gap: .2rem 0; color: var(--text-muted); font-size: .875rem; margin: 0 0 1.5rem; font-variant-numeric: tabular-nums; }
.fortroende-del { display: inline-flex; align-items: center; gap: .35rem; }
.fortroende-del + .fortroende-del::before { content: "·"; margin: 0 .6rem; color: var(--brass-line); font-weight: 700; }
.fortroende a { color: inherit; }
.ikon { flex: none; }

.brodsmulor { font-size: .875rem; color: var(--text-muted); }
.brodsmulor ol { display: flex; flex-wrap: wrap; list-style: none; padding: 0; margin: 0; }
.brodsmulor li + li { margin-top: 0; }
.brodsmulor li + li::before { content: "/"; margin: 0 .5em; color: var(--brass-line); }
.brodsmulor a { color: var(--text-muted); }
.brodsmulor [aria-current] { color: var(--text); }

.snabbsvar { background: var(--sand); border-radius: var(--radius); padding: 1.1rem 1.3rem 1.2rem; margin: 0 0 2rem; box-shadow: inset 0 0 0 1px var(--brass-line); }
.snabbsvar-rubrik { font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--wine-dark); margin: 0 0 .25rem; }
.snabbsvar p:last-child { margin-bottom: 0; }
.snabbsvar p:not(.snabbsvar-rubrik) { font-size: 1.05em; }

.utkast { border: 2px dashed var(--brass-line); border-radius: var(--radius); padding: .8rem 1rem; margin: 0 0 2rem; background: var(--surface); color: var(--text-muted); font-size: .95rem; }
.utkast p { margin: 0; }
.utkast strong { color: var(--text); }

.toc { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: .9rem 1.1rem; margin: 0 0 2rem; }
.toc-rubrik { font-family: var(--font-head); font-weight: 600; color: var(--wine); margin: 0 0 .4rem; }
.toc ol { margin: 0; padding-left: 1.3em; font-size: .95rem; }
.toc li::marker { color: var(--text-muted); font-variant-numeric: tabular-nums; }
.toc li + li { margin-top: .2rem; }

.ruta { border-radius: var(--radius); padding: 1rem 1.2rem; margin: 1.5rem 0; }
.ruta > :last-child { margin-bottom: 0; }
.ruta-rubrik { font-family: var(--font-head); font-weight: 600; font-size: 1.1rem; color: var(--wine); margin: 0 0 .35rem; }
.ruta-fakta { background: var(--surface); border: 1px solid var(--line); }
.ruta-tips { background: var(--brass-light); border: 1px solid var(--brass-line); }

/* Rutan "Så påverkar det din försäkring" */
.paverkan { background: var(--sand); border-radius: var(--radius); padding: 1.2rem 1.3rem 1.3rem; margin: 2.5rem 0; border-top: 3px double var(--wine); }
.paverkan-huvud { display: flex; align-items: center; gap: .6rem; margin-bottom: .5rem; color: var(--wine-dark); }
.paverkan-ikon { flex: none; width: 28px; height: 28px; }
.paverkan h2 { margin: 0; font-size: 1.3rem; color: var(--wine-dark); }
.paverkan-text > :last-child { margin-bottom: .75rem; }
.paverkan-punkter { list-style: none; padding: 0; margin: 0 0 1rem; }
.paverkan-punkter li { position: relative; padding-left: 1.3rem; }
.paverkan-punkter li::before { content: ""; position: absolute; left: .15rem; top: .55em; width: .5rem; height: .5rem; border-radius: 50%; background: var(--brass); box-shadow: 0 0 0 2px var(--wine-dark); }
.paverkan-lankar { display: flex; flex-wrap: wrap; gap: .5rem .9rem; margin: 0; }
.paverkan-lankar a { color: var(--wine-dark); font-weight: 500; }
.paverkan-lankar .paverkan-jamfor { display: inline-block; background: var(--brass); color: var(--text); text-decoration: none; font-weight: 600; padding: .4rem .85rem; border-radius: 999px; }
.paverkan-lankar .paverkan-jamfor:hover { background: var(--brass-hover); color: var(--text); }

/* Knapp (CTA): mörk text på mässing */
.cta { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem .9rem; margin: 1.5rem 0; }
.knapp { display: inline-block; background: var(--brass); color: var(--text); font-weight: 600; font-size: 1rem; line-height: 1.3; padding: .8rem 1.35rem; border-radius: 999px; text-decoration: none; box-shadow: inset 0 -2px 0 rgb(0 0 0 / .12); }
.knapp:hover { background: var(--brass-hover); color: var(--text); }
.knapp:focus-visible { outline-offset: 3px; }
.annons { font-size: .8rem; color: var(--text-muted); border: 1px solid var(--line); padding: .1rem .5rem; border-radius: 999px; background: var(--surface); }

.faq { margin-top: 3rem; }
.faq h2 { margin-top: 0; }
.faq-fraga { border-top: 1px solid var(--line); margin: 0; }
.faq-fraga:last-of-type { border-bottom: 1px solid var(--line); }
.faq-fraga summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; padding: 1rem 0; font-weight: 600; font-size: 1.05rem; line-height: 1.4; }
.faq-fraga summary::-webkit-details-marker { display: none; }
.faq-fraga summary::after { content: "+"; flex: none; font-family: var(--font-head); font-size: 1.5rem; line-height: 1; color: var(--wine); }
.faq-fraga[open] summary::after { content: "–"; }
.faq-fraga summary:hover { color: var(--wine); }
.faq-svar { padding: 0 0 1rem; }
.faq-svar > :last-child { margin-bottom: 0; }

.kallor { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line); font-size: .9rem; color: var(--text-muted); }
.kallor h2 { font-size: 1.15rem; margin-top: 0; color: var(--text); }
.kallor ul { padding-left: 1.1em; }
.disclaimer { font-style: italic; }

.prosa table { width: 100%; border-collapse: collapse; background: var(--surface); font-size: .95rem; font-variant-numeric: tabular-nums; }
@media (max-width: 47.99rem) { .prosa table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; font-size: .875rem; } }
.prosa table th, .prosa table td { text-align: left; padding: .55rem .7rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.prosa table thead th { background: var(--sand); color: var(--wine-dark); font-weight: 600; }

/* ==========================================================================
   Jämförelsetabellen – sajtens signatur
   Mätartavla och registreringsskylt: vinröd list med skylt för datumet,
   tunna mässingslinjer, tabulära siffror och mässingsmarkering för bästa värde.
   ========================================================================== */
.tidtabell { margin: 2rem 0 2.5rem; background: var(--surface); border-radius: var(--radius); overflow: hidden; font-variant-numeric: tabular-nums; box-shadow: 0 0 0 1px var(--brass-line), 0 8px 24px -16px rgb(74 20 32 / .45); }

.tt-huvud { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .6rem 1rem; background: var(--wine); color: var(--cream-on-wine); padding: .8rem 1rem; border-bottom: 2px solid var(--brass); }
.tt-rubrik { font-family: var(--font-head); font-weight: 600; font-size: 1.25rem; line-height: 1.2; color: #fff; }

/* Registreringsskylten */
.tt-skylt { display: inline-flex; align-items: stretch; background: #fff; color: var(--text); border-radius: 4px; box-shadow: 0 0 0 1.5px var(--text), 0 0 0 3px #fff; font-size: .8rem; font-weight: 600; letter-spacing: .02em; overflow: hidden; }
.tt-skylt-band { display: grid; place-items: center; background: var(--wine-dark); color: var(--brass); font-size: .7rem; padding: 0 .35rem; }
.tt-skylt-text { padding: .2rem .55rem; }

.tt-verktyg { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem .75rem; padding: .85rem 1rem; border-bottom: 1px solid var(--line); background: var(--surface); }
.tt-filter { display: flex; flex-wrap: wrap; gap: .4rem; }
.tt-filterknapp, .tt-fler { font: 600 .92rem/1.2 var(--font-body); padding: .5rem .9rem; margin: 0; cursor: pointer; background: var(--surface); color: var(--text); border: 1px solid var(--line-strong); border-radius: 999px; }
.tt-filterknapp:hover, .tt-fler:hover { border-color: var(--wine); color: var(--wine); }
.tt-filterknapp[aria-pressed="true"] { background: var(--wine); border-color: var(--wine); color: #fff; box-shadow: inset 0 0 0 2px var(--brass); }
.tt-filterknapp[aria-pressed="true"]:hover { color: #fff; }
.tt-fler::before { content: "+ "; color: var(--wine); }
.tt-fler[aria-pressed="true"]::before { content: "– "; }
.tt-status { flex: 1 1 100%; margin: 0; font-size: .85rem; color: var(--text-muted); }
.tt-status [data-filterantal] { font-weight: 600; color: var(--text); }
@media (min-width: 64rem) { .tt-fler { margin-left: auto; } }

.tt-tabell { position: relative; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.tt-tabell:focus-visible { outline-offset: -3px; }
.tt-tabell table { width: 100%; margin: 0; border-collapse: separate; border-spacing: 0; font-size: .875rem; line-height: 1.45; }
.tt-tabell thead th { background: var(--sand); color: var(--wine-dark); font-weight: 600; font-size: .8rem; line-height: 1.3; text-align: left; vertical-align: bottom; padding: .65rem .75rem; border-bottom: 2px solid var(--brass-line); min-width: 8.5rem; }
.tt-tabell tbody th, .tt-tabell tbody td { text-align: left; vertical-align: top; padding: .75rem; border-bottom: 1px solid var(--line); font-weight: 400; }
.tt-tabell tbody td + td, .tt-tabell thead th + th { border-left: 1px solid rgb(201 168 96 / .35); }
.tt-tabell tbody tr:last-child > * { border-bottom: 0; }
.tt-tabell tbody tr:hover > * { background-color: #FCF9F3; }
.tt-tabell tbody td { hyphens: auto; -webkit-hyphens: auto; }
.tt-k-forvaring, .tt-k-renovering, .tt-k-vardering { min-width: 11rem; }
.tidtabell:not(.visar-alla) .is-extra { display: none; }
.tt-visning-tabell:not(.visar-alla) .tt-tabell .tt-not { display: none; }

.tt-bolagkol { position: sticky; left: 0; z-index: 1; width: 14rem; min-width: 12rem; background: var(--surface); box-shadow: inset -2px 0 0 var(--brass-line); }
.tt-tabell thead .tt-bolagkol { background: var(--sand); z-index: 2; }

.tt-namn { display: block; font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--wine); line-height: 1.25; margin: 0; }
.tt-namn a { color: inherit; text-decoration-color: var(--brass-line); }
.tt-namn a:hover { color: var(--wine-dark); }
.tt-produkt { display: block; font-size: .85rem; font-weight: 500; color: var(--text); margin: .15rem 0 0; }
.tt-taggar { display: flex; flex-wrap: wrap; gap: .25rem; margin-top: .35rem; }
.tt-tagg { font-size: .7rem; font-weight: 600; color: var(--wine-dark); background: var(--sand); border-radius: 999px; padding: .05rem .5rem; }
.tt-kalla { display: block; font-size: .75rem; color: var(--text-muted); margin: .4rem 0 0; }
.tt-kalla a { color: var(--text-muted); }
.tt-not { display: block; font-size: .75rem; color: var(--text-muted); margin-top: .3rem; line-height: 1.4; }
.tt-tom, .is-tom { color: var(--text-muted); }
.is-overifierad .tt-namn { color: var(--text-muted); }

/* Bästa värde: mässingsbotten och en nål under värdet, som på en mätare */
.is-bast { background-color: var(--brass-light) !important; }
.is-bast .tt-varde { font-weight: 600; color: var(--wine-dark); border-bottom: 3px solid var(--brass); padding-bottom: 1px; }
.tt-bast-vh { display: none; }
.is-bast .tt-bast-vh { display: inline; }

.tt-fot { border-top: 1px solid var(--line); background: #FDFBF6; padding: .75rem 1rem; font-size: .8rem; color: var(--text-muted); }
.tt-fot p { margin: 0; }
.tt-fot p + p { margin-top: .3rem; }
.tt-fot a { color: var(--wine); font-weight: 600; }
.tt-markor-exempel { display: inline-block; width: 1.3rem; height: .85rem; vertical-align: -.1rem; margin-right: .45rem; background: var(--brass-light); border-bottom: 3px solid var(--brass); }
.tt-streck { font-weight: 700; color: var(--text); margin-right: .2rem; }

.tt-kortlista { list-style: none; margin: 0; padding: 0; }
.tt-kort { padding: 1rem; border-bottom: 1px solid var(--line); margin: 0; }
.tt-kort + .tt-kort { margin-top: 0; }
.tt-kort:last-child { border-bottom: 0; }
.tt-kort-huvud { padding-bottom: .5rem; border-bottom: 1px solid var(--brass-line); }
.tt-kort dl { display: grid; grid-template-columns: minmax(7.5rem, 38%) 1fr; margin: .75rem 0 0; font-size: .9rem; line-height: 1.4; }
.tt-rad { display: contents; }
.tt-rad dt, .tt-rad dd { overflow-wrap: anywhere; padding: .5rem .6rem; border-bottom: 1px dotted var(--line-strong); margin: 0; }
.tt-rad dt { overflow-wrap: break-word; hyphens: auto; -webkit-hyphens: auto; }
.tt-rad:last-child dt, .tt-rad:last-child dd { border-bottom: 0; }
.tt-rad dt { color: var(--wine-dark); font-weight: 600; font-size: .82rem; padding-left: 0; }
.tidtabell:not(.visar-alla) .tt-rad.is-extra { display: none; }
.tt-granskas { margin: .6rem 0 0; font-size: .9rem; color: var(--text-muted); }

.tt-visning-tabell .tt-kortlista { display: none; }
@media (max-width: 47.99rem) {
  .tt-visning-tabell .tt-tabell { display: none; }
  .tt-visning-tabell .tt-kortlista { display: block; }
  .tt-skylt { order: 3; }
}
@media (min-width: 48rem) {
  .tt-visning-kort .tt-kortlista { display: grid; grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr)); }
  .tt-visning-kort .tt-kort { border-right: 1px solid var(--line); }
}

/* ---------- För och emot ---------- */
.for-mot { display: grid; gap: 1rem 2rem; max-width: var(--measure); }
@media (min-width: 40rem) { .for-mot { grid-template-columns: 1fr 1fr; } }
.for-mot h3 { margin-top: 0; font-size: 1.1rem; }
.lista-for, .lista-mot { list-style: none; padding: 0; }
.lista-for li, .lista-mot li { position: relative; padding-left: 1.5rem; }
.lista-for li::before { content: "+"; position: absolute; left: .1rem; top: 0; font-weight: 700; color: var(--wine); }
.lista-mot li::before { content: "–"; position: absolute; left: .1rem; top: 0; font-weight: 700; color: var(--text-muted); }

/* ---------- Ingångar ---------- */
.ingangar { list-style: none; padding: 0; display: grid; gap: .6rem; max-width: none; }
@media (min-width: 40rem) { .ingangar { grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr)); } }
.ingangar li { margin: 0; }
.ingangar a { display: block; height: 100%; padding: .9rem 1.1rem; text-decoration: none; color: var(--text); background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.ingangar a:hover { border-color: var(--brass-line); box-shadow: 0 4px 14px -10px rgb(74 20 32 / .5); }
.ingangar a:hover .ingang-rubrik { color: var(--wine-dark); text-decoration: underline; }
.ingang-rubrik { display: block; font-family: var(--font-head); font-weight: 600; color: var(--wine); font-size: 1.1rem; line-height: 1.25; }
.ingang-text { display: block; color: var(--text-muted); font-size: .95rem; margin-top: .25rem; }

.las-vidare { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.las-vidare h2 { margin-top: 0; }
.las-vidare .ingangar { margin-bottom: 1rem; }
.las-vidare-bolag { font-size: .95rem; color: var(--text-muted); }
.las-vidare-bolag span:first-child { font-weight: 600; color: var(--text); margin-right: .25rem; }
.las-vidare .cta { margin-bottom: 0; }
.guider { margin-top: 2.5rem; }
.guider h3 { margin: 1.75rem 0 .75rem; }

/* ---------- Sidfot ---------- */
.sidfot { background: var(--wine-dark); color: var(--cream-on-wine); padding-block: 2.5rem; font-size: .95rem; border-top: 3px solid var(--brass); }
.sidfot a { color: #fff; }
.sidfot-inre { display: grid; gap: 1.5rem; }
.sidfot-namn, .sidfot-rubrik { font-family: var(--font-head); font-weight: 600; font-size: 1.15rem; color: #fff; margin-bottom: .4rem; }
.sidfot-rubrik { font-size: 1rem; color: var(--brass); }
.sidfot-om p { max-width: 46ch; }
.sidfot-meny ul { list-style: none; padding: 0; margin: 0; }
.sidfot-meny li + li { margin-top: .35rem; }
.sidfot-disclaimer { font-size: .85rem; margin: 0; padding-top: 1.25rem; border-top: 1px solid rgb(255 255 255 / .18); max-width: 70ch; }
.sidfot :focus-visible { outline-color: #fff; }
@media (min-width: 48rem) { .sidfot-inre { grid-template-columns: 2fr 1fr 1fr; } .sidfot-disclaimer { grid-column: 1 / -1; } }

@media (prefers-reduced-motion: reduce) { *, *::before, *::after { transition: none !important; animation: none !important; scroll-behavior: auto !important; } }

@media print {
  .sidhuvud, .sidfot, .hoppa, .toc, .tt-verktyg, .las-vidare { display: none !important; }
  body { background: #fff; }
  .tt-tabell { display: block !important; overflow: visible; }
  .tt-kortlista { display: none !important; }
  .tidtabell .is-extra { display: table-cell !important; }
}
