/* ============================================================
   seksjoner.css — blokksystemets seksjonstyper på CMS-sider (/{slug}).
   svc-klassene er flyttet hit fra service.css (skadereparasjon/bilglass
   er konvertert til blokksystem-sider) — samme verdier, samme utseende.
   Lastes av Side.cshtml sammen med innhold.css.
   ============================================================ */

/* Ingress under H1 — samme uttrykk som originalsidenes svc-lead */
.side-ingress {
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  line-height: 1.6;
  color: var(--ink-700);
  max-width: 62ch;
  margin: 0 0 4px;
}

/* Vertikal rytme: containeren har .section--innhold (14px topp);
   strukturerte seksjoner først på siden kompenserer opp til original
   flush-top (28–40px), og naboer får tjenestesidenes mellomrom. */
.sek:first-child { padding-top: clamp(14px, 2vw, 26px); }

.sek + .sek,
.innhold + .sek,
.sek + .innhold { margin-top: clamp(34px, 4.5vw, 52px); }
/* CTA-båndet etter en annen seksjon: originalsidenes seksjons-padding (56–104px)
   + båndets egen margin (34–56px) — pikselverifisert mot skadereparasjon/bilglass */
.sek + .sek--cta { margin-top: calc(clamp(56px, 8vw, 104px) + clamp(34px, 5vw, 56px)); }
/* Om oss-rytmen: nøkkeltall/tidslinje/kortgrid var EGNE .section-blokker med
   padding i begge ender — naboavstanden speiler det (2 × section-padding) */
.sek--nokkeltall + .sek--tidslinje,
.sek--tidslinje + .sek--ikonkort { margin-top: calc(clamp(56px, 8vw, 104px) * 2); }
/* Seksjoner med innebygd toppmargin fra originalstilene: rytmen eies av .sek-reglene */
.sek .svc-band, .sek .about-band, .sek .season, .sek .channel-cta, .sek .terms { margin-top: 0; }
.sek .route-grid { margin-bottom: 0; }

.svc__h2 { font-size: clamp(1.35rem, 2.4vw, 1.8rem); margin: 0 0 6px; }
.svc__sub { color: var(--ink-500); margin: 0 0 24px; max-width: 60ch; }

/* Ikonkort (hva vi tilbyr) */
.svc-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.svc-feature {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: #fff;
  padding: 24px 22px;
}
.svc-feature__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--red-050);
  color: var(--red-600);
  margin-bottom: 14px;
}
.svc-feature__icon svg { width: 24px; height: 24px; }
.svc-feature h2, .svc-feature h3 { font-size: 1.08rem; margin: 0 0 6px; }
.svc-feature p { margin: 0; color: var(--ink-500); font-size: .96rem; line-height: 1.6; }

/* Trinnliste (prosess-steg) */
.svc-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
  display: grid;
  gap: 16px;
}
.svc-steps li {
  position: relative;
  padding-left: 52px;
  min-height: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  counter-increment: step;
}
.svc-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink-900);
  color: #fff;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.svc-steps li b { display: block; margin-bottom: 2px; }
.svc-steps li span { color: var(--ink-500); line-height: 1.55; }

/* CTA-bånd */
.svc-band {
  border-radius: var(--r-lg);
  background: var(--ink-900);
  color: #fff;
  padding: clamp(28px, 4.5vw, 50px) clamp(24px, 4vw, 46px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px 28px;
}
.svc-band__text h2 { font-size: clamp(1.3rem, 2.6vw, 1.8rem); margin: 0 0 6px; }
.svc-band__text p { margin: 0; color: rgba(255,255,255,.75); }
.svc-band__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* Merknad — gul oppmerksomhetsboks (samme uttrykk som veibeskrivelsens gps-note) */
.merknad {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border: 1px solid #f3d9a8;
  border-left: 4px solid #e0a800;
  background: #fff8e8;
  border-radius: var(--r);
  padding: 18px 20px;
}
.merknad svg { flex: 0 0 auto; width: 24px; height: 24px; color: #b8860b; margin-top: 1px; }
.merknad p { margin: 0; line-height: 1.6; color: var(--ink-700); }
.merknad strong { color: var(--ink-900); }

/* ============ Flyttet fra om-oss.css (nokkeltall/tidslinje/cta-midtstilt) ============ */
.about__lead {
  font-size: clamp(1.1rem, 1.7vw, 1.32rem);
  line-height: 1.6;
  color: var(--ink-700);
  max-width: 60ch;
  margin: 0 0 6px;
}

/* Nøkkeltall */
.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  margin: 36px 0 8px;
}
.about-stat {
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px 20px;
  background: var(--surface);
}
.about-stat__num {
  font-family: var(--font-head, "Sora", sans-serif);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  line-height: 1;
  color: var(--red-600);
}
.about-stat__label { margin-top: 8px; color: var(--ink-500); font-size: .96rem; }

/* Seksjonsoverskrift internt */
.about__h2 {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  margin: 0 0 6px;
}
.about__sub { color: var(--ink-500); margin: 0 0 26px; max-width: 60ch; }

/* ---- Tidslinje ---- */
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(var(--red-600), var(--line));
}
.timeline__item {
  position: relative;
  padding: 0 0 30px 46px;
}
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--red-600);
  box-shadow: 0 0 0 4px #fff;
}
.timeline__year {
  display: inline-block;
  font-family: var(--font-head, "Sora", sans-serif);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--red-700);
  margin-bottom: 4px;
}
.timeline__item h3 { font-size: 1.12rem; margin: 0 0 6px; }
.timeline__item p { margin: 0; color: var(--ink-700); line-height: 1.65; max-width: 62ch; }

/* ---- Tjeneste-grid ---- */
.about-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.svc-card {
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 24px 22px;
  background: #fff;
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.svc-card:hover {
  border-color: var(--red-200, #f3c6ca);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(14, 17, 22, .07);
}
.svc-card__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--red-050, #fdecee);
  color: var(--red-600);
  margin-bottom: 14px;
}
.svc-card__icon svg { width: 24px; height: 24px; }
.svc-card h3 { font-size: 1.08rem; margin: 0 0 6px; }
.svc-card p { margin: 0; color: var(--ink-500); font-size: .96rem; line-height: 1.6; }

/* ---- Verdibånd ---- */
.about-band {
  margin-top: clamp(36px, 5vw, 60px);
  border-radius: var(--r-lg);
  background: var(--ink-900);
  color: #fff;
  padding: clamp(30px, 5vw, 56px) clamp(24px, 4vw, 48px);
  text-align: center;
}
.about-band p {
  font-family: var(--font-head, "Sora", sans-serif);
  font-weight: 700;
  font-size: clamp(1.3rem, 3.2vw, 2.1rem);
  line-height: 1.2;
  margin: 0 0 22px;
  letter-spacing: .01em;
}
.about-band .btn { margin: 0 6px 8px; }


/* ============ Flyttet fra legal.css (paragrafliste/lenkekort-dokument) ============ */
.section--legal { padding-top: clamp(16px, 2vw, 24px); }

.legal { width: 100%; }

/* Innholdsfortegnelse */
.legal__toc {
  border: 1px solid var(--line, #e5e8ec);
  border-radius: var(--r, 14px);
  background: var(--surface, #f6f7f9);
  padding: 20px clamp(18px, 2vw, 26px) 22px;
  margin: 0 0 40px;
}
.legal__toc h2 {
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-400);
  margin: 0 0 14px;
}
.legal__toc ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 8px 28px;
  counter-reset: toc;
}
.legal__toc li { counter-increment: toc; }
.legal__toc a {
  display: flex;
  gap: 12px;
  align-items: baseline;
  padding: 7px 4px;
  text-decoration: none;
  color: var(--ink-900);
  border-radius: 8px;
  line-height: 1.4;
}
.legal__toc a::before {
  content: counter(toc);
  flex: 0 0 auto;
  font-weight: 700;
  color: var(--red-600);
  font-variant-numeric: tabular-nums;
  min-width: 1.2em;
}
.legal__toc a:hover { color: var(--red-700, #b3121f); text-decoration: underline; }

/* Klausuler / nummererte seksjoner */
.legal__clause {
  padding-top: clamp(26px, 3vw, 38px);
  margin-top: clamp(26px, 3vw, 38px);
  border-top: 1px solid var(--line, #e5e8ec);
  scroll-margin-top: 90px; /* sticky header ikke dekker overskrift ved anker-hopp */
}
.legal__clause:first-of-type { border-top: 0; margin-top: 0; padding-top: 0; }

.legal__clause > h2 {
  display: flex;
  gap: 14px;
  align-items: baseline;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.25;
  margin: 0 0 14px;
}
.clause-num {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.1rem;
  height: 2.1rem;
  padding: 0 .5rem;
  border-radius: var(--r-pill, 999px);
  background: var(--red-600);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  transform: translateY(2px);
}

/* Nedlasting/PDF-kort (gjenbrukes på dokumentsider, f.eks. Åpenhetsloven) */
.doc-download {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 22px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--red-600);
  border-radius: var(--r);
  background: var(--surface);
  padding: clamp(20px, 2.6vw, 28px);
  margin: 8px 0 4px;
}
.doc-download__icon {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--red-050);
  color: var(--red-600);
}
.doc-download__icon svg { width: 28px; height: 28px; }
.doc-download__text { flex: 1 1 240px; }
.doc-download .doc-download__text h3 { font-size: 1.12rem; margin: 0 0 3px; }
.doc-download__text p { margin: 0; color: var(--ink-500); font-size: .94rem; }
.doc-download .btn { flex: 0 0 auto; }

/* Brødtekst */
.legal__body p { margin: 0 0 16px; line-height: 1.7; }
.legal__body h3 {
  font-size: clamp(1.02rem, 1.4vw, 1.12rem);
  margin: 26px 0 10px;
}
.legal__intro-line { font-weight: 600; color: var(--ink-900); }

/* Punktlister i klausulene */
.legal-list {
  list-style: none;
  margin: 4px 0 18px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.legal-list li {
  position: relative;
  padding-left: 30px;
  line-height: 1.6;
}
.legal-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: .62em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red-600);
}

/* Avsluttende «dine rettigheter»-blokk kan framheves */
.legal__rights {
  margin-top: clamp(26px, 3vw, 38px);
  padding: clamp(20px, 2.4vw, 30px);
  border: 1px solid var(--line, #e5e8ec);
  border-left: 4px solid var(--red-600);
  border-radius: var(--r, 14px);
  background: var(--surface, #f6f7f9);
}
.legal__rights h2 { margin-top: 0; }
.legal__rights :last-child { margin-bottom: 0; }


/* ============ Flyttet fra garanti.css (tierkort/trekkspill) ============ */
/* Sammenligningskort */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
  margin: 4px 0 8px;
}
.tier-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: #fff;
  padding: clamp(22px, 2.6vw, 28px);
  display: flex;
  flex-direction: column;
}
.tier-card--featured {
  border-color: var(--red-600);
  box-shadow: 0 10px 30px rgba(216, 30, 44, .1);
}
.tier-card__flag {
  position: absolute;
  top: -11px;
  left: clamp(22px, 2.6vw, 28px);
  background: var(--red-600);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: var(--r-pill);
}
.tier-card__name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.18rem;
  margin: 0 0 4px;
}
.tier-card__sum {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  color: var(--red-600);
  line-height: 1.1;
  margin: 8px 0 2px;
}
.tier-card__sum span { font-size: .82rem; font-weight: 500; color: var(--ink-500); display: block; }
.tier-card__drive {
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: .92rem;
  color: var(--ink-500);
}
.tier-card__drive b { color: var(--ink-900); font-weight: 600; }
.tier-card__desc { margin: 12px 0 0; color: var(--ink-700); line-height: 1.6; font-size: .96rem; }

/* Sammenleggbare vilkår */
.terms { margin-top: clamp(34px, 4.5vw, 56px); }
.terms > h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin: 0 0 6px; }
.terms__intro { color: var(--ink-500); margin: 0 0 24px; max-width: 64ch; }

.term-doc {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: #fff;
  margin-bottom: 14px;
  overflow: hidden;
}
.term-doc > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: clamp(16px, 2vw, 22px) clamp(18px, 2.2vw, 26px);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.05rem, 1.6vw, 1.18rem);
}
.term-doc > summary::-webkit-details-marker { display: none; }
.term-doc > summary:hover { background: var(--surface); }
.term-doc > summary:focus-visible { outline: 3px solid var(--red-600); outline-offset: -3px; }
.term-doc__chevron {
  margin-left: auto;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  transition: transform .2s;
  color: var(--ink-500);
}
.term-doc[open] .term-doc__chevron { transform: rotate(180deg); }
.term-doc__sum {
  flex: 0 0 auto;
  font-size: .82rem;
  font-weight: 700;
  color: var(--red-700);
  background: var(--red-050);
  padding: 4px 11px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}

.term-doc__body {
  padding: 4px clamp(18px, 2.2vw, 26px) clamp(20px, 2.4vw, 28px);
  border-top: 1px solid var(--line);
}
.term-doc__body h3 {
  font-size: 1.04rem;
  margin: 22px 0 8px;
  color: var(--ink-900);
}
.term-doc__body h3:first-child { margin-top: 16px; }
.term-doc__body p { margin: 0 0 12px; line-height: 1.7; }
.term-doc__body p strong { color: var(--ink-900); }
.term-doc__body ul {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: grid;
  gap: 8px;
}
.term-doc__body ul li {
  position: relative;
  padding-left: 24px;
  line-height: 1.6;
  color: var(--ink-700);
}
.term-doc__body ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: .6em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red-600);
}

/* Liten kontaktboks for skademelding */
.claim-box {
  margin-top: 6px;
  border-left: 3px solid var(--red-600);
  background: var(--surface);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 14px 18px;
}
.claim-box p { margin: 0 0 4px; }
.claim-box a { color: var(--red-700); font-weight: 600; }

/* Avsluttende notis (samme verdier som .hours-foot i aapningstider.css —
   garantivilkaar.html laster ikke den fila) */
.hours-foot {
  margin-top: 26px;
  color: var(--ink-500);
  font-size: .95rem;
  line-height: 1.6;
}
.hours-foot a { color: var(--red-700); }


/* ============ Flyttet fra veibeskrivelse.css (stegkort/kart) ============ */
/* GPS-merknad (viktig praktisk info) */
.gps-note {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border: 1px solid #f3d9a8;
  border-left: 4px solid #e0a800;
  background: #fff8e8;
  border-radius: var(--r);
  padding: 18px 20px;
  margin-bottom: 30px;
}
.gps-note svg { flex: 0 0 auto; width: 24px; height: 24px; color: #b8860b; margin-top: 1px; }
.gps-note p { margin: 0; line-height: 1.6; color: var(--ink-700); }
.gps-note strong { color: var(--ink-900); }

/* Ruter */
.route-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-bottom: clamp(30px, 4vw, 48px);
}
.route-card {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: #fff;
  padding: clamp(22px, 2.6vw, 30px);
}
.route-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.route-card__badge {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--red-050);
  color: var(--red-600);
}
.route-card__badge svg { width: 22px; height: 22px; }
.route-card__head h2 { font-size: 1.18rem; margin: 0; }
.route-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
  display: grid;
  gap: 14px;
}
.route-steps li {
  position: relative;
  padding-left: 38px;
  line-height: 1.6;
  color: var(--ink-700);
  counter-increment: step;
}
.route-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: -1px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink-900);
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

/* Kart + adresse */
.dir-split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(18px, 2.5vw, 30px);
  align-items: stretch;
}
@media (max-width: 760px) { .dir-split { grid-template-columns: 1fr; } }

.dir-info {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface);
  padding: clamp(22px, 2.6vw, 30px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.dir-info h2 { font-size: 1.18rem; margin: 0; }
.dir-info__addr { font-style: normal; line-height: 1.6; color: var(--ink-700); }
.dir-info__addr b { color: var(--ink-900); display: block; font-size: 1.05rem; margin-bottom: 2px; }
.dir-info__kontakt { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.dir-info__kontakt li { display: flex; align-items: center; gap: 10px; }
.dir-info__kontakt svg { width: 18px; height: 18px; flex: 0 0 auto; color: var(--red-600); }
.dir-info .btn { align-self: flex-start; margin-top: auto; }

/* Kart — samkjørt med .map-wrap/.map-embed i kontakt.css (identiske verdier) */
.map-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--sh-1);
  min-height: 360px;
}
.map-embed { border: 0; width: 100%; height: 100%; min-height: 360px; display: block; }

/* Flyfoto */
.aerial {
  margin: clamp(30px, 4vw, 48px) 0 0;
}
.aerial img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
}
.aerial figcaption {
  margin-top: 12px;
  color: var(--ink-500);
  font-size: .92rem;
}


/* ============ Flyttet fra aapningstider.css (timetabeller) ============ */
.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.dept-card {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: #fff;
  padding: clamp(22px, 2.6vw, 28px);
}
.dept-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.dept-card__icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--red-050);
  color: var(--red-600);
}
.dept-card__icon svg { width: 22px; height: 22px; }
.dept-card__head h2 { font-size: 1.14rem; margin: 0; }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table th, .hours-table td {
  text-align: left;
  padding: 8px 0;
  line-height: 1.4;
  vertical-align: baseline;
}
.hours-table th {
  font-weight: 500;
  color: var(--ink-500);
}
.hours-table td {
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  color: var(--ink-900);
  white-space: nowrap;
}
.hours-table tr + tr th, .hours-table tr + tr td { border-top: 1px solid var(--line); }
.hours-table .is-closed { color: var(--ink-400); font-weight: 500; }

/* Sommertid-blokk */
.season {
  margin-top: clamp(30px, 4vw, 46px);
  border: 1px solid var(--line);
  border-left: 4px solid var(--red-600);
  border-radius: var(--r);
  background: var(--surface);
  padding: clamp(24px, 3vw, 34px);
}
.season__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--red-700);
  background: var(--red-050);
  padding: 5px 12px;
  border-radius: var(--r-pill);
  margin-bottom: 14px;
}
.season h2 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); margin: 0 0 6px; }
.season > p { margin: 0 0 22px; color: var(--ink-500); max-width: 60ch; }
.season__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px 40px;
}
.season__col h3 { font-size: 1.02rem; margin: 0 0 10px; }
.season__col .hours-table td { background: transparent; }

.hours-foot {
  margin-top: 26px;
  color: var(--ink-500);
  font-size: .95rem;
  line-height: 1.6;
}
.hours-foot a { color: var(--red-700); }


/* ============ Flyttet fra video.css (video/lenkekort-kanal) ============ */
.video-embed { margin: 0; }

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #000;
  border: 1px solid var(--line);
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Fasade-knapp */
.yt-facade {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: #000;
}
.yt-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .9;
  transition: opacity .2s, transform .3s;
}
.yt-facade:hover img,
.yt-facade:focus-visible img { opacity: 1; transform: scale(1.02); }

.yt-facade__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(64px, 9vw, 88px);
  height: clamp(64px, 9vw, 88px);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red-600);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .4);
  transition: transform .2s, background .2s;
}
.yt-facade:hover .yt-facade__play,
.yt-facade:focus-visible .yt-facade__play { transform: translate(-50%, -50%) scale(1.08); background: var(--red-700); }
.yt-facade__play svg { width: 40%; height: 40%; fill: #fff; margin-left: 4px; }

.yt-facade:focus-visible { outline: 3px solid var(--ink-900); outline-offset: 3px; }

.video-caption {
  margin-top: 14px;
  color: var(--ink-500);
  font-size: .95rem;
}

/* Lenkekort til YouTube-kanal */
.channel-cta {
  margin-top: clamp(30px, 4vw, 46px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 22px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface);
  padding: clamp(20px, 2.6vw, 28px);
}
.channel-cta__icon {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #ff0000;
  color: #fff;
}
.channel-cta__icon svg { width: 30px; height: 30px; }
.channel-cta__text { flex: 1 1 240px; }
.channel-cta__text h2 { font-size: 1.12rem; margin: 0 0 2px; }
.channel-cta__text p { margin: 0; color: var(--ink-500); font-size: .96rem; }
.channel-cta .btn { flex: 0 0 auto; }

/* btn--ghost er tegnet for mørke bånd (hvit tekst/kant) — på de lyse
   lenkekortene gis omriss-stilen mørk kant og tekst så den ikke forsvinner */
.doc-download .btn--ghost,
.channel-cta .btn--ghost {
  color: var(--ink-900);
  background: transparent;
  box-shadow: inset 0 0 0 1.5px var(--ink-900);
}
.doc-download .btn--ghost:hover,
.channel-cta .btn--ghost:hover {
  background: rgba(14, 17, 22, .06);
  transform: translateY(-2px);
}

/* Sanitizeren stripper klasser — punktlister i paragraflister styles via forelderen
   (samme uttrykk som gamle .legal-list) */
.legal__body ul { list-style: none; margin: 4px 0 18px; padding: 0; display: grid; gap: 10px; }
.legal__body ul li { position: relative; padding-left: 30px; line-height: 1.6; }
.legal__body ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: .62em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red-600);
}
