/* =========================
   Marie Design – Forside CSS
   Match til Forside.pdf:
   - Encode Sans Expanded
   - Ingen shadows
   - Stor radius (45px)
   ========================= */

/* Google Font */
@import url("https://fonts.googleapis.com/css2?family=Encode+Sans+Expanded:wght@300;400;500;600;700&display=swap");

/* =========================
   Tokens / theme
   ========================= */
:root {
  --bg: #ffffff;
  --text: #111111;
  --muted: #333333;
  --line: #d9d9d9;

  --yellow: #e6ff00; /* hero */
  --blue: #1e4dff; /* CTA */
  --green: #cfff52; /* forskningsboks */

  /* Forside.pdf tuning */
  --spray: #d2f12e;

  --radius: 45px;
  --wrap: 1120px;

  --fs-hero: clamp(34px, 4vw, 56px);
  --fs-nav: 12px;
  --fs-h2: 14px;
  --fs-h3: 14px;
  --fs-body: 12px;
}

/* =========================
   Base / reset
   ========================= */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    "Encode Sans Expanded",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Helvetica,
    Arial;
  line-height: 1.45;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  width: min(var(--wrap), calc(100% - 20px));
  margin: 0 auto;
}

/* =========================
header farveskift
   ========================= */




.color-shift-icon {
  height: ;
  animation: colorShift 10s infinite alternate;
}

@keyframes colorShift {
  0%   { color: #1e4dff; }   /* burgundy */
     30%   { color: #1e4dff; }   /* burgundy */
   
     50%   { color:#01E03D; }   /* burgundy */

   70% { color: #EBFF00; }   /* teal */
 100% { color: #EBFF00; }   /* teal */
 /* 100% { color: #EBFF00; }    neon */
}


.header-logo svg{
  height: 56px;
  width: auto;
  color: #5b2b2b;   /* logo farve */
}



/* =========================
   Top nav (fixed) + separators
   ========================= */

   .global-header {
  padding-top: 44px; /* plads til fixed top-nav */
}

.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  display: flex;
  justify-content: flex-end;
  gap: 18px;

  padding: 10px 16px;
  background: #ffffff;

  font-size: var(--fs-nav);
  font-weight: 400;
  z-index: 1000;
}

.top-link {
  text-decoration: none;
  position: relative;
  padding-right: 14px;
}

.top-link:hover {
  text-decoration: underline;
}

/* Separator efter alle links undtagen sidste */
.top-nav .top-link:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background: #2b2b2b;
  opacity: 0.6;
}

/* =========================
   Hero
   ========================= */
.hero {
  margin-bottom: 6px;
}

.hero-band {
  background: var(--yellow);
  border-radius: var(--radius);
  padding: 18px 22px 20px;
}

.hero-kicker {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 400;
  color: #1b1b1b;
}

.hero-title {
  margin: 0;
  font-size: var(--fs-hero);
  font-weight: 400; /* ingen bold */
  letter-spacing: 0.2px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 2px 0 6px;
  justify-content: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  border: 0;
  cursor: pointer;

  border-radius: 999px;
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 400;
  white-space: nowrap;

  box-shadow: none;
}

.btn-primary {
  background: var(--blue);
  color: #ffffff;
}

.btn-wide {
  width: min(520px, 100%);
}

/* Fixed blå pil */
.to-top {
  position: fixed;
  right: 22px;
  top: 154px;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 0;
  background: var(--blue);
  color: #ffffff;
  cursor: pointer;
  z-index: 1000;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* =========================
   Sections
   ========================= */
.section {
  padding: 0 0 26px;
}

.section-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 10px 0 12px;

  position: relative;
  isolation: isolate; /* så blur ikke “smitter” */
}

.section-title {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 6px 10px;
}

/* Spray-klat bag section titles */
.section-title::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -14px;
  top: 50%;
  width: 180px;
  height: 44px;

  background: var(--spray);
  border-radius: 999px 700px 900px 650px;
  filter: blur(10px);

  background-image:
    radial-gradient(
      closest-side,
      rgba(210, 241, 46, 1) 0%,
      rgba(210, 241, 46, 0.9) 55%,
      rgba(210, 241, 46, 0) 100%
    ),
    radial-gradient(
      closest-side,
      rgba(210, 241, 46, 1) 0%,
      rgba(210, 241, 46, 0.85) 60%,
      rgba(210, 241, 46, 0) 100%
    );
  background-size:
    100% 100%,
    85% 100%;
  background-position:
    center,
    60% 40%;
  background-repeat: no-repeat;
  opacity: 0.95;
}

/* Variation per sektion */
#design .section-title::before {
  transform: translateY(-50%) rotate(-7deg);
  width: 210px;
}
#digital .section-title::before {
  transform: translateY(-50%) rotate(-4deg);
  width: 255px;
}
#viden .section-title::before {
  transform: translateY(-50%);
  width: 200px;
}

/* “Regel” – kortere som i PDF */
.section-rule {
  flex: 0 0 auto;
  width: 220px;
  height: 2px;
  background: var(--line);
  transform: translateY(1px);
}

.divider {
  height: 1px;
  background: var(--line);
  margin: 8px 0 10px;
}

/* Neon highlight card – SIKKER blur-kant */
.highlight-card {
  position: relative;
  isolation: isolate; /* <-- VIGTIG: holder ::before/after “lokalt” */
  z-index: 0; /* <-- skaber stabil stacking context */
  overflow: visible; /* <-- må IKKE klippe blur */

  border-radius: var(--radius);
  background: var(--spray);

  padding: 48px 36px;
  min-height: 120px;

  display: flex;
  align-items: center;
}

/* Den brede, bløde blur-kant */
.highlight-card::before {
  content: "";
  position: absolute;
  border-radius: calc(var(--radius) + 32px);
  background: var(--spray);
  filter: blur(5px);
  opacity: 0.75;
  z-index: -1; /* bag boksen men stadig indenfor isolation */
  pointer-events: none;
}

/* En tættere halo for “neon-edge” */
.highlight-card::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: calc(var(--radius) + 14px);
  background: var(--spray);
  filter: blur(5px);
  opacity: 0.55;
  z-index: -1;
  pointer-events: none;
}

.highlight-title {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  color: #111;
}

/* =========================
   Cards
   ========================= */
.card-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 10px 0 6px;
}

.card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 0px 0px 14px 0px;
  min-height: 240px;
  border-left: 1px solid rgba(0, 0, 0, 0.06);
  border-right: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: none;
}

.card--green {
  background: var(--green);
  border-color: transparent;
}

.card-media {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 12px;

  background: transparent;
  border: 0px solid rgba(0, 0, 0, 0.06);
}

.card-media img {
  width: 100%;
  aspect-ratio: 4 / 2.5;
  object-fit: cover;
}

.card-title {
  margin: 0 0 8px;
  font-size: var(--fs-h3);
  font-weight: 400;
}

.card-text {
  margin: 0;
  font-size: var(--fs-body);
  font-weight: 400;
  color: var(--muted);
}

/* “Se mere” */
.section-actions {
  display: flex;
  justify-content: flex-end;
  padding-top: 6px;
}

.card-body {
  padding: 0px 10px 30px 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;

  padding: 10px 14px;
  border-radius: 14px; /* mere firkantet */
  border: 1px solid #7a7a7a;
  background: #ffffff;

  text-decoration: none;
  font-size: 12px;
  font-weight: 400;

  min-width: 110px;
}

.pill:hover {
  background: #f7f7f7;
  transform: translateX(2px);
}

.pill--yellow {
  background: var(--yellow);
  border-color: transparent;
}

/* =========================
   Viden
   ========================= */
.card-row--viden {
  align-items: start;
}

.viden-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.viden-text {
  margin: 0;
  padding: 0 2px;
  font-size: var(--fs-body);
  color: var(--muted);
}

/* =========================
   About (Om mig)
   ========================= */
.about {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  padding-top: 10px;
}

.about-title {
  margin: 0 0 12px;
  font-size: 20px;
  padding-left: 20px;
  /* font-weight: 400; */
}

.about-par {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: #2f2f2f;
  padding: 20px;
}

.about-media img {
  border-radius: var(--radius);
}

/* Grå flade på #om (som du havde) */
#om {
  background: #f2f2f2;
  border-radius: var(--radius);
  padding: 28px 22px;
}

#om.section {
  margin-top: 16px;
}

#kunder {
  padding: 28px 22px;
}

/* =========================
   Customers (uden bullets/ramme)
   ========================= */
.customers {
  background: transparent;
  border: 0;
  padding: 0;
  margin-top: 10px;
}

.customers-list {
  list-style: none;
  padding-left: 0;
  margin: 0;

  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.customers-list li {
  margin-bottom: 4px;
}

/* =========================
   Contact bar
   ========================= */
.contact-bar {
  margin: 48px 0 56px;
  padding: 34px;
  border: 1px solid #2b2b2b;
  border-radius: var(--radius);
  background: #fff;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 150px;
}

.contact-left {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-name {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.contact-meta {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
}

.contact-meta a {
  text-decoration: none;
}
.contact-meta a:hover {
  text-decoration: underline;
}

.contact-right {
  display: flex;
  justify-content: flex-end;
}

/* CTA i contact bar */
.contact-left .btn-primary {
  width: min(540px, 100%);
  justify-content: center;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 400;
  border-radius: 999px;
}

/* LinkedIn pill */
.contact-right .pill--yellow {
  min-width: 210px;
  justify-content: space-between;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 400;
  border: 0;
}

/* =========================
   Footer
   ========================= */
.footer {
  padding: 16px 0 28px;
  color: var(--muted);
}

.footer-inner {
  border-top: 1px solid var(--line);
  padding-top: 12px;
  font-size: 12px;
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 700px) {
  .card-row {
    grid-template-columns: 1fr 1fr;
  }
  .about {
    grid-template-columns: 1fr;
  }
  .contact-inner {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: auto;
  }
  .contact-right {
    justify-content: flex-start;
  }
  .to-top {
    top: 170px;
    right: 16px;
  }
}

@media (max-width: 680px) {
  .top-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px 14px;
  }

  .hero-ctas {
    flex-wrap: wrap;
  }
  .btn {
    width: 100%;
  }

  .card-row {
    grid-template-columns: 1fr;
  }
  .section-actions {
    justify-content: flex-end;
  }

  .section-rule {
    width: 140px;
  }

  .to-top {
    top: auto;
    bottom: 18px;
    right: 18px;
  }

  .contact-bar {
    padding: 26px 18px;
    margin: 40px 0 48px;
  }

  .contact-right .pill--yellow {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 400px) {
  .contact-left .btn-primary {
    font-size: 12px;
    padding: 10px 14px;
    line-height: 1.3;
    white-space: normal;
    text-align: center;
  }

  .contact-right .pill--yellow {
    font-size: 12px;
    padding: 10px 14px;
  }

  .card {
    border-radius: 0%;
    padding: 14px 0 14px 0;
    min-height: 240px;
    border: 0px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    box-shadow: none;
    margin: 0;
  }
}

/* =========================
   Forside: 3 kolonner (lanes)
   ========================= */

/* Selve 3-kolonne layoutet */
.home-lanes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0; /* separators håndterer “mellemrum” */
  margin-top: 25px;
}

/* Hver kolonne */
.lane {
  padding: 0 22px 20px;
  position: relative;
  border-right: 0.7px solid #333333;
}

/* Vertikale divider-linjer mellem kolonner */
.lane:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: var(--line);
}

/* Top “overskrift + pil” som link */
.lane-head {
  display: flex;
  align-items: center;
  justify-content: space-between;

  text-decoration: none;
  color: inherit;

  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 0px solid var(--line);
}

/* Titlen har din spray-klat */
.lane-title {
  margin: 0;
  /*font-size: var(--fs-h2); */
  font-size: 18px;
  font-weight: 400;
  position: relative;
  padding: 15px 10px 30px 10px;
}

/* Spray bag titlen – genbrug samme som section-title */
.lane-title::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -14px;
  top: 50%;
  transform: translateY(-50%);
  width: 190px;
  height: 44px;

  background: var(--spray);
  border-radius: 999px 700px 900px 650px;
  filter: blur(10px);
  opacity: 0.95;

  background-image:
    radial-gradient(
      closest-side,
      rgba(210, 241, 46, 1) 0%,
      rgba(210, 241, 46, 0.9) 55%,
      rgba(210, 241, 46, 0) 100%
    ),
    radial-gradient(
      closest-side,
      rgba(210, 241, 46, 1) 0%,
      rgba(210, 241, 46, 0.85) 60%,
      rgba(210, 241, 46, 0) 100%
    );
  background-size:
    100% 100%,
    85% 100%;
  background-position:
    center,
    60% 40%;
  background-repeat: no-repeat;
}

.lane-arrow {
  font-size: 18px;
  line-height: 1;
  transform: translateY(-1px);
}

/* Hover: lille “nudge” på pil */
.lane-head:hover .lane-arrow {
  transform: translate(3px, -1px);
  transition: transform 0.12s ease;
}

/* Indhold i kolonnen ligger i rows */
.lane-items {
  display: grid;
  gap: 18px;
}

/* “Se mere” i bunden af hver kolonne */
.lane-actions {
  display: flex;
  justify-content: end;
  padding-top: 25px;
}

/* =========================
   Forside: kort / blocks inde i lanes
   (fjern row-baseret 3-kolonne cards på forsiden)
   ========================= */

/* På forsiden vil vi ikke have .card-row til at lave 3 kolonner */
.home-lanes .card-row {
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 0;
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 980px) {
  .home-lanes {
    grid-template-columns: 1fr 1fr;
  }

  .lane-items p {
    font-size: 14px;
  }

  .lane:not(:last-child)::after {
    display: none;
  }

  .lane-head {
    margin-top: 10px;
  }
}

@media (max-width: 8000px) {
  .lane-items p {
    font-size: 12px;
  }
}

@media (max-width: 600px) {
  .home-lanes {
    grid-template-columns: 1fr;
  }

  .lane-items p {
    font-size: 14px;
  }

  .about-par {
    padding: 0;
  }
}

/* ===== underside - Design & visuel identitet (som screenshot) ===== */
/* ===== Section: Side 2 - underside  ===== */

.category-section {
  padding: 36px 0 0px;
}

/* Overskrift */
.category-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.category-title {
  margin: 0;
  font-size: 30px;
  font-weight: 400; /* ingen bold */
  letter-spacing: 0.2px;
}

/* Linje under overskrift */
.category-rule {
  height: 2px;
  background: #2b2b2b;
  opacity: 0.8;
  margin: 10px 0 10px;
}

/* Grid med tre store cards */
.category-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.category-grid-design {
  display: grid;
  grid-template-columns: 1fr;
}

/* Card styling: stor radius, tynd sort streg, ingen shadow */
.category-card {
  border: 1px solid #2b2b2b;
  border-radius: 45px;
  padding: 44px 44px 40px;
  display: flex;
  flex-direction: column;
}

/* Titler i card */
.category-card .card-title {
  margin: 0 0 18px;
  font-size: 24px;
  font-weight: 400; /* ingen bold */
  line-height: 1.12;
}

/* Brødtekst i card */
.category-card .card-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  max-width: 32ch;
  margin-bottom: 5px;
}

/* CTA “chip” nede i card */
.card-chip {
  margin-top: auto; /* skubber chip ned */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  text-decoration: none;
  border-right: 1px solid rgb(123, 123, 123);
  padding: 0px 20px;

  font-size: 14px;
  font-weight: 400; /* ingen bold */
}

/* Responsiv */

@media (max-width: 1100px) {
  .category-grid {
    gap: 10px;
  }
}

@media (max-width: 900px) {
  .category-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  .category-card {
    min-height: auto;
    padding: 34px 28px;
    border-radius: 40px;
  }
  .category-card .card-title {
    font-size: 24px;
  }
  .category-card .card-text {
    font-size: 16px;
    max-width: none;
  }
}

@media (max-width: 700px) {
  .category-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .category-card {
    min-height: auto;
    padding: 34px 28px;
    border-radius: 40px;
  }
  .category-card .card-title {
    font-size: 24px;
  }
  .category-card .card-text {
    font-size: 16px;
    max-width: none;
  }

  .category-rule {
    margin: 5px 0 5px;
  }

  .category-section {
    padding: 0px 0 0px;
  }

  .category-title {
    font-size: 24px;
  }
}

/* ===== Art Direction section (match til screenshot) ===== */

.ad-section {
  padding: 28px 0 40px;
  background-color: #f2f2f2;
  border-radius: 45px;
  margin-bottom: 20px;
}

/* Overskrift + neon spray */
.ad-head {
  position: relative;
  padding-top: 0px;
}

.ad-title {
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 400; /* ingen bold */
  position: relative;
  display: inline-block;
  padding: 6px 10px;
  z-index: 1;
}

/* Neon “spray” bag titlen */
.ad-title::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -14px;
  top: 50%;
  transform: translateY(-50%);
  width: 175px;
  height: 44px;

  background: #d2f12e;
  border-radius: 999px 700px 900px 650px;
  filter: blur(10px);
  opacity: 0.95;

  background-image:
    radial-gradient(
      closest-side,
      rgba(210, 241, 46, 1) 0%,
      rgba(210, 241, 46, 0.9) 55%,
      rgba(210, 241, 46, 0) 100%
    ),
    radial-gradient(
      closest-side,
      rgba(210, 241, 46, 1) 0%,
      rgba(210, 241, 46, 0.85) 60%,
      rgba(210, 241, 46, 0) 100%
    );
  background-size:
    100% 100%,
    85% 100%;
  background-position:
    center,
    60% 40%;
  background-repeat: no-repeat;
}

/* Linje under overskrift (kort, som i screenshot) */
.ad-rule {
  height: 1px;
  width: 20%;
  background: #333;
  opacity: 0.7;
}

/* Intro-tekst */
.ad-intro {
  margin: 22px 0 20px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
  max-width: 95ch;
}

/* Divider over indholdsrækken */
.ad-divider {
  height: 2px;
  background: #2b2b2b;
  opacity: 0.7;
  margin: 22px 0 26px;
}

/* 2 billeder + tekst kolonne */
.ad-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.05fr;
  gap: 36px;
  align-items: start;
}

/* Billedkort med stor radius (ingen shadow) */
.ad-media {
  border-radius: 45px;
  overflow: hidden;
  background: #f2f2f2; /* neutral baggrund som i screenshot */
}

/* Billederne skal føles “store” */
.ad-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16/16;
}

/* Caption under billeder */
.ad-caption {
  margin-top: 12px;
  font-size: 12px;
  line-height: 1.5;
}

/* Højre tekst */
.ad-text {
  font-size: 14px;
  line-height: 1.7;
  max-width: 40ch;
}
.ad-text p {
  margin: 0 0 14px;
}

/* Responsiv */

@media (max-width: 900px) {
  .ad-grid {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
}

@media (max-width: 680px) {
  .ad-intro {
    font-size: 14px;
  }
  .ad-caption {
    font-size: 12px;
  }
  .ad-text {
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .ad-rule {
    width: 100%;
  }
  .ad-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .ad-text {
    max-width: none;
    font-size: 16px;
  }
  .ad-intro {
    font-size: 16px;
  }
}

.ad-figure {
  margin: 0;
}

.ls-figure {
  margin: 0;
}

/* =========================
   Logo & skriftdesign sections
   ========================= */

.ls-section {
  padding: 22px 0 0px;
}

/* Overskrift med spray + kort linje */
.ls-head {
  padding-top: 6px;
}
.ls-title {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 400;
  position: relative;
  display: inline-block;
  padding: 6px 10px;
}
.ls-title::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 44px;
  background: #d2f12e;
  border-radius: 999px 700px 900px 650px;
  filter: blur(10px);
  opacity: 0.95;
  background-image:
    radial-gradient(
      closest-side,
      rgba(210, 241, 46, 1) 0%,
      rgba(210, 241, 46, 0.9) 55%,
      rgba(210, 241, 46, 0) 100%
    ),
    radial-gradient(
      closest-side,
      rgba(210, 241, 46, 1) 0%,
      rgba(210, 241, 46, 0.85) 60%,
      rgba(210, 241, 46, 0) 100%
    );
  background-size:
    100% 100%,
    85% 100%;
  background-position:
    center,
    60% 40%;
  background-repeat: no-repeat;
}
.ls-rule {
  height: 2px;
  width: 340px; /* kort linje */
  background: #2b2b2b;
  opacity: 0.7;
}

.ls-intro {
  margin: 16px 0 18px;
  font-size: 12px;
  line-height: 1.75;
  max-width: 110ch;
}

.ls-divider {
  height: 2px;
  background: #2b2b2b;
  opacity: 0.35;
  margin: 20px 0 40px;
}

/* 2 visual cards + tekst */
.ls-feature {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 24px;
  align-items: center;
  margin: 10px 0 10px 0;
}

.img-why {
padding: 0 50px 20px 0;
}

.ls-media--rounded {
  border-radius: 28px;
  overflow: hidden; 
}

.ls-media--rounded--outline {
  border-radius: 28px;
  overflow: hidden;
  padding-left: 4vw ;
}

.ls-media img {
  height: auto;
  display: block;
  max-height: 600px;
width: auto;
}
}
.ls-caption {
  margin-top: 10px;
  font-size: 12px;
}

.ls-text {
  font-size: 14px;
  line-height: 1.75;
  max-width: 45ch;
}
.ls-text p {
  margin: 0 0 12px;
}

/* Logo række */
.ls-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: end;
}

.ls-logo img {
  width: 100%;
  max-width: 240px;
  height: auto;
  display: block;
  margin-top: 30px;
}


.ls-logo figcaption {
  margin-top: 8px;
  font-size: 10.5px;
  line-height: 1.5;
  color: #333;
  max-width: 32ch;
}




/* =========================
   Udvikling af skrift
   ========================= */

.type-section {
  padding: 30px 0 40px;
  margin-bottom: 10px;
  background-color: #f2f2f2;
  border-radius: 45px;
}

.type-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.type-media {
  border-radius: 45px;
  overflow: hidden;
  background: #ededed;
}
.type-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16/12;
}

.type-text {
  font-size: 14px;
  line-height: 1.75;
  max-width: 42ch;
}
.type-title {
  margin: 6px 0 10px;
  font-size: 18px;
  font-weight: 400;
}

.type-divider {
  height: 2px;
  background: #2b2b2b;
  opacity: 0.35;
  margin: 22px 0 18px;
}

/* =========================
   Skrift-eksperimenter (tekst + galleri)
   ========================= */

.exp-grid {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 22px;
  align-items: start;
}

.exp-title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 400;
}
.exp-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  max-width: 50ch;
}

/* Thumbs */
.exp-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: start;
}

.exp-thumb {
  display: block;
  border-radius: 28px; /* små thumbnails har lidt mindre radius end 45 */
  overflow: hidden;
  /*background: #eaeaea; */
  border: 0;
}
.exp-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

/* Aktiv “markeret” thumb (blå outline som i screenshot) */
.exp-thumb--active {
  outline: 2px solid #1e4dff;
  outline-offset: -2px;
  border-radius: 28px;
}

.exp-thumb_2 {
  display: block;
  border-radius: 28px; /* små thumbnails har lidt mindre radius end 45 */
  overflow: hidden;
  /*background: #eaeaea; */
border: 1px solid rgb(219, 219, 219);
padding: 1vw 5vw 2vw;
min-height: 270px;
margin: 10px;
}


.exp-thumb_2 img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.exp-thumb_3 {
  display: block;
  border-radius: 28px; /* små thumbnails har lidt mindre radius end 45 */
  overflow: hidden;
  /*background: #eaeaea; */
border: 1px solid rgb(219, 219, 219);
padding: 1vw 7vw 2vw;
min-height: 270px;
margin: 10px;
}


.exp-thumb_3 img {
  width: 100%;
  object-fit: cover;
  display: block;
}



/* Responsive */
@media (max-width: 900px) {
  .ls-feature {
    grid-template-columns: 1fr 1fr;
  }
  .ls-text {
    max-width: none;
  }
  .ls-logos {
    grid-template-columns: 1fr 1fr;
  }

  .type-grid {
    grid-template-columns: 1fr 1fr;
  }
  .type-text {
    max-width: none;
  }

  .exp-grid {
    grid-template-columns: 1fr;
  }
  .exp-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 700px) {
  .ls-feature {
    grid-template-columns: 1fr;
  }
  .ls-text {
    max-width: none;
  }

  .type-text {
    max-width: none;
  }

  .exp-grid {
    grid-template-columns: 1fr;
  }
  .exp-gallery {
    grid-template-columns: repeat(3, 1fr);
  }


.exp-thumb_3 {
padding: 1vw 20vw 2vw;

}
}

@media (max-width: 680px) {
  .ls-rule {
    width: 220px;
  }
  .exp-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .type-grid {
    grid-template-columns: 1fr;
  }

}


/* ny Responsive */

@media (max-width: 700px){
  .ls-logos{
    grid-template-columns: 1fr;   /* 1 kolonne */
    justify-items: center;        /* centrer items i grid */
  }

  .ls-logo{      
    width: min(420px, 100%);      /* pæn max-bredde */
  }

  .ls-logo img{
    display: block;
    margin: 0 auto;               /* centrer billedet */
    max-width: 100%;
    height: auto;
  }

  .ls-logo figcaption{
    margin-top: 10px;
  }
}

/* ===== Slideshows grid (6 cards) ===== */

.slides-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 46px 70px; /* luft som i screenshot */
  padding: 18px 0 10px;
}

/* Card: ingen boks, kun indhold (som i dit eksempel) */
.slide-card {
  overflow: visible; /* vigtigt: ellers kan dots blive klippet */
}

.card-illu {
  margin: 20px;
}

/* Track (slides) */
.slide-track {
  display: flex;
  /* transform: translateX(0%);*/
  transition: transform 320ms ease;
  will-change: transform;
}

/* Hvert billede fylder hele rammen */
.slide-track img {
  width: 100%;
  flex: 0 0 100%;
  aspect-ratio: 1 / 1; /* kvadrat som screenshot */
  object-fit: cover;
  display: block;
}

/* Dots under slideshow */
.slide-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 12px 0 14px;
}

.slide-dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: #1e4dff;
  opacity: 0.35;
  padding: 0;
  cursor: pointer;
}

.slide-dots button.is-active {
  opacity: 1;
}

/* Titel + tekst */
.slide-title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 400; /* ingen bold */
}

.slide-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  max-width: 62ch;
}

/* Responsiv */

@media (max-width: 1100px) {
  .slides-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 700px) {
  .slides-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}

@media (max-width: 500px) {
  .slide-title {
    font-size: 16px;
  }
  .slide-text {
    font-size: 13px;
  }

  .card-illu {
    margin: 0px;
  }
}

/* ===== Børnebøger sektion (match til screenshot) ===== */

.book-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: start;
  padding: 10px 0 8px;
}

/* Venstre */
.book-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 45px;
}

.book-undertext {
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 1.65;
  max-width: 62ch;
}

/* Højre tekst */
.book-lead {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.45;
}

/* Du bruger bold i brødtekst her (som i screenshot) */

.book-mention-01 {
  font-size: 22px;
}

.book-mention {
  margin: 8px 0 18px;
  font-size: 16px;
  line-height: 1.6;
}

/* Gul CTA (mere firkantet og med kant/ramme som i screenshot) */
.cta-yellow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;

  margin-top: 18px;
  padding: 18px 22px;

  border-radius: var(--radius); /* 45px */
  background: var(--yellow);
  text-decoration: none;

  /* blå “ramme” omkring knappen som i screenshot */
  outline: 3px solid #1e4dff;
  outline-offset: 4px;
}

/* Den stiplede fokusmarkering i dit screenshot ligner browser-focus.
   Vi giver en bevidst focus-state der matcher. */
.cta-yellow:focus-visible {
  outline: 3px solid #1e4dff;
  outline-offset: 4px;
}

/* Tekst + pil */
.cta-yellow__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.25;
}

.cta-yellow__arrow {
  font-size: 22px;
  line-height: 1;
}

/* Responsive */
@media (max-width: 700px) {
  .book-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .book-lead {
    font-size: 18px;
  }
  .cta-yellow__text {
    font-size: 16px;
  }
}

@media (max-width: 400px) {
  .cta-yellow {
    padding: 14px 16px;
  }
  .cta-yellow__text {
    font-size: 14px;
  }
  .cta-yellow__arrow {
    font-size: 18px;
  }
}

/* ===== Wide slideshow (bogopslag) – genbruger slideshow-styling ===== */

/* Ramme: blå outline + radius, ingen padding */
.slide-frame--wide {
  border-radius: 45px;
  overflow: hidden;
  background: #d9d9d9; /* hvis billedet ikke fylder helt */
}

/* Slides: 16/9-ish og går til kant */
.slide-frame--wide .slide-track img {
  aspect-ratio: 16 / 9;
  object-fit: cover; /* går til kant */
}

/* Dots under rammen */
.slide-dots--outside {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}

.slide-dots--outside button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(30, 77, 255, 0.25);
  cursor: pointer;
}

.slide-dots--outside button.is-active {
  background: rgba(30, 77, 255, 1); /* “tændt” */
}

/* Caption under dots */
.slide-caption {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  color: #2b2b2b;
}

/* Responsiv */
@media (max-width: 680px) {
  .slide-frame--wide {
    border-width: 3px;
  }
  .slide-frame--wide .slide-track img {
    aspect-ratio: 4 / 3; /* lidt højere på mobil */
  }
}

/* ===== 3-billedsektion (cover + 2 opslag) ===== */

.image-row {
  display: grid;
  grid-template-columns: 0.9fr 1fr 1.35fr; /* venstre lidt smallere, højre lidt bredere */
  gap: 26px;
  align-items: start;
  padding: 10px 0 14px;
}

.image-card {
  border-radius: 45px; /* samme radius */
  overflow: hidden;
  background: transparent;
  border: 0;
  margin: 0;
  border: 1px solid #2b2b2b;
}

.image-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Gør coveret mere “lodret” i layoutet */
.image-card--tall img {
  aspect-ratio: 3 / 4; /* cover-format-ish */
  object-fit: contain; /* bevar hele coveret */
  background: #fff;
}

/* Højre opslag er bredere og får et mere “landscape” feel */
.image-card--wide img {
  aspect-ratio: 16 / 12;
}

/* Teksten under billeder: genbrug, men small variant */
.text-block--small {
  line-height: 1.65;
  max-width: 80ch;
  margin: 0;
}

/* Responsiv */
@media (max-width: 600px) {
  .image-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .image-card--tall img,
  .image-card--wide img {
    aspect-ratio: auto;
    object-fit: cover;
  }
}

/* ===== PR section (genbrug: wrap + section + variabler) ===== */

.pr-grid {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 48px;
  align-items: start;
  padding: 10px 0 8px; /* matcher tone i fx .book-grid */
  margin-top: 20px;
}

.pr-grid-01 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
  padding: 10px 0 8px; /* matcher tone i fx .book-grid */
  margin-top: 20px;
}

.pr-figure {
  margin: 0;
}

figure {
  margin: -2px;
}

.pr-image {
  /* width: min(360px, 100%); '/
  height: auto;
  display: block;
  border-radius: var(--radius);
  /* Hvis du vil holde alt 100% shadow-frit, så fjern næste linje 
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.14));*/
}

.pr-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px;
  align-items: start;
}

.pr-columns-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px;
  align-items: start;
}

.pr-text {
  margin: 0;
  line-height: 1.75;
  color: var(--muted);
}


.pr-list {
  margin: 12px 0 0;
  padding-left: 16px;
  line-height: 1.75;
  color: var(--muted);
}

.pr-list li + li {
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 930px) {
.pr-columns-2 {
  grid-template-columns: 1fr;
}
}

@media (max-width: 700px) {
  .pr-grid {
    grid-template-columns: 1fr 1fr;
    gap: 26px;
  }

  .pr-image {
    width: min(420px, 100%);
  }
      .pr-columns {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 600px) {
  .pr-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

}

/* ===== Video slideshow: phone-format (genbrug af .slide-*) ===== */

/* Telefon-ramme */
.slide-frame--phone {
  position: relative;
  border-radius: 45px;
  overflow: hidden;
  background: #000;
}

/* VIGTIGT: gør alle slides til 100% bredde (så video-wrapper virker som img) */
.slide-track > * {
  display: flex;
  transform: translateX(0%);
  transition: transform 320ms ease;
  will-change: transform;
}

/* Videoen */
.video-slide {
  position: relative;
  width: 100%;
}

.video-media {
  width: 100%;
  height: 100%;
  aspect-ratio: 9 / 16; /* til shortform */
  object-fit: cover;
  display: block;
  background: #000;
}

.video-media-reklame {
  width: 100%;
  aspect-ratio: 16 / 12;
  object-fit: cover;
  display: block;
  background: #000;
}

/* Knapper/overlay */
.video-ui {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 5;
}

.video-btn {
  appearance: none;
  border: 0;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 18px;
}

.video-btn:hover {
  background: rgba(0, 0, 0, 0.72);
}

.video-ic {
  display: none;
}

/* Sound state */
.video-btn--sound.is-muted .video-ic--off {
  display: inline;
}
.video-btn--sound:not(.is-muted) .video-ic--on {
  display: inline;
}

/* Play state */
.video-btn--play.is-paused .video-ic--play {
  display: inline;
}
.video-btn--play:not(.is-paused) .video-ic--pause {
  display: inline;
}

/* Layout: hold det “telefon-smalt” som i dit design */
.video-card {
  max-width: 460px;
  margin-inline: auto;
}

@media (max-width: 680px) {
  .video-card {
    max-width: 100%;
  }
  .slide-frame--phone {
    border-radius: 45px;
  }
}

/* ===== Case (3 sektioner / samme CSS) ===== */

.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding: 10px 0 8px;
}

.case-grid-midt {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px;
  align-items: start;
  padding: 10px 0 8px;
}

/* Tekst */
.case-text p {
  margin: 0 0 14px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 62ch;
}
.case-text p:last-child {
  margin-bottom: 0;
}

/* Medie-boks (stor, afrundet, med diskret outline som i dine andre sektioner) */
.case-media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: #ededed;
}

.case-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Midterste “stribe”: 2 billeder uden gap */
.case-strip {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0; /* vigtigt: ingen mellemrum */
  overflow: hidden;
  background: #ededed;
}

/* Sikr at de to billeder fylder ens og beskæres pænt */
.case-strip img {
  width: 100%;
  height: 100%;
  aspect-ratio: 12 / 9; /* giver stabil højde på desktop */
  object-fit: cover;
  display: block;
}

/* Responsive */
@media (max-width: 700px) {
  .case-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .case-grid-midt {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  /* Når vi stacker, giver reverse ikke mening – så slår vi det fra */
  .case-grid--reverse {
    direction: ltr;
  }

  .case-strip img {
    aspect-ratio: auto;
  }
}

/* ===== Video thumbnail / manual play ===== */

/* ===== Manual video (klik = play/pause) ===== */

.video-slide {
  position: relative;
}

.video-media {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
}

/* ===== Video med klik-play ===== */

/* Play overlay */
.video-play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 64px;
  color: white;
  background: rgba(0, 0, 0, 0.25);
  transition: opacity 0.2s ease;
}

/* Når video spiller → skjul overlay */
.video-slide.is-playing .video-play-overlay {
  opacity: 0;
}

/* ===== Spildesign-sektion (slideshow + tekst) ===== */

.gs-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 48px;
  align-items: start;
  margin-top: 15px;
}

/* Sørg for alle track-items fylder 100% bredde (vigtigt når slides er wrappers) */
.slide-track > * {
  flex: 0 0 100%;
  width: 100%;
}

/* 16/9 video og fuld kant */
.gs-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  background:;
}

/* Tekst i højre side – brug dine tokens/typografi */
.gs-text p {
  margin: 0 0 14px;
  /* font-size: var(--fs-body); */
  line-height: 1.75;
  color: var(--muted);
}
.gs-text p:last-child {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 700px) {
  .gs-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

/* =========================
   Sektion-menu (Grid)
   ========================= */

.subnav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;

  padding: 10px 0 30px;
  margin: 0;

  /* så links “fylder” hver celle pænt */
  gap: 0;
}

.subnav-design {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;

  padding: 10px 0 20px;
  margin: 0;

  /* så links “fylder” hver celle pænt */
  gap: 0;
}

.subnav__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  color: var(--text);

  font-size: 12px;
  font-weight: 400;
  white-space: nowrap;

  padding: 0px 8px 0px 8px;
}

/* Desktop separator: | mellem links */
.subnav__link:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
  color: #2b2b2b;
  opacity: 0.55;
  pointer-events: none;
}

.subnav__link:hover {
  text-decoration: underline;
}

.subnav__link:focus-visible {
  outline: 2px solid rgba(30, 77, 255, 0.45);
  outline-offset: 3px;
}

/* =========================
   Mobil: 2 kolonner + separators under hinanden
   ========================= */
@media (max-width: 820px) {
  .subnav {
    grid-template-columns: 1fr 1fr;
    row-gap: 8px;
    column-gap: 0;
    margin-bottom: 15px;
  }

  .subnav-design {
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 8px;
    column-gap: 0;
    margin-bottom: 15px;
  }

  /* Venstre kolonne: separator i midten (højre kant) */
  .subnav__link::after {
    content: none;
  }

  .subnav__link:nth-child(odd)::after {
    content: "|";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(50%, -50%);
    color: #2b2b2b;
    opacity: 0.55;
    pointer-events: none;
  }

  /* sidste item (5) ligger alene i venstre kolonne, så den må ikke have separator */
  .subnav__link:last-child::after {
    content: none;
  }

  .subnav__link {
    justify-content: flex-start; /* ligner typisk layoutet bedre på mobil */
    font-size: 12px;
  }
}

/* Små skærme */
@media (max-width: 480px) {
  .subnav__link {
    font-size: 12px;
  }
}

/*Lottiefiles*/
/* Sørg for at ALLE slides har samme “frame” størrelse */
.gs-slide {
  width: 100%;
  aspect-ratio: 16 / 9; /* samme som dit slideshow */
  overflow: hidden;
  position: relative;
}

/* Video fylder slidet */
.gs-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Lottie fylder slidet (fjerner luft) */
.gs-lottie,
.gs-lottie dotlottie-wc {
  width: 100%;
  height: 100%;
  display: block; /* <-- fjerner baseline/inline-luft */
}

/* Nogle gange ligger dotlottie i en intern container – vi “tvinger” den til at fylde */
.gs-lottie dotlottie-wc {
  margin: 0;
  padding: 0;
}

.gs-lottie-player {
  width: 100%;
  height: 100%;
  display: block;
}

.slide-track {
  align-items: stretch; /* hvis track er flex */
}

/* =========================
   3-kolonne "Viden" sektion
   ========================= */

.k3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  align-items: start;
}

/* Kolonne-stacks */
.k3-col {
  display: grid;
  gap: 34px;
}

/* Generelle blokke */
.k-block {
}

/* Tekst */
.k-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.k-text p {
  margin: 0 0 12px;
}
.k-text p:last-child {
  margin-bottom: 0;
}

.k-title {
  margin: 10px 0 8px;
  font-size: var(--fs-h3);
  font-weight: 400;
  color: var(--text);
}

/* Media (billeder) */
.k-media {
  border-radius: var(--radius);
  overflow: hidden;
  background: #efefef;
}

.k-media {
  margin-bottom: 10px;
  margin-top: 10px;
}

.k-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* "Book" billedet er lidt smallere i dit screenshot */
.k-media--book img {
  max-width: 360px;
  border-radius: var(--radius);
}

/* Badge cards (blå bokse) */
.k-badge {
  border-radius: var(--radius);
  padding: 18px 18px;
}

.k-badge--blue {
  background: var(--blue);
  color: #fff;
  margin: 10px 0 10px 0;
}

.k-badge--wide {
  padding: 20px 20px;
  min-height: 110px;
  display: flex;
  align-items: center;
}

.k-badge-title {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.k-badge-sub {
  margin: 6px 0 0;
  font-size: 12px;
  opacity: 0.9;
}

/* Responsiv */
@media (max-width: 980px) {
  .k3 {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

@media (max-width: 680px) {
  .k3 {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .k3-col {
    gap: 26px;
  }
  .k-block-mobile {
  border-bottom: 1px solid black;
  padding-bottom: 35px;
}

}


@media (max-width: 500px) {
 .k3-col {
    gap: 10px;
  }

  }

/* ===== Global hero ===== */

.global-hero {
  padding: 10px 0 18px;
}

.hero-svg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--yellow);
}

/* Desktop visning */
.hero-desktop {
  display: block;
}

.hero-mobile {
  display: none;
}

/* Mobil: skift grafik */
@media (max-width: 820px) {
  .hero-desktop {
    display: none;
    border-radius: var(--radius);
  }

  .hero-mobile {
    display: grid;
    gap: 8px; /* luft mellem de to SVG’er */
  }
}

/* Undertitel */
.hero-sub {
  margin: 10px 0 0;
  font-size: 14px;
  margin-left: 25px;
}

@media (max-width: 500px) {
  /* Undertitel */
  .hero-sub {
    margin-left: 10px;
    font-size: 12px;
  }
}

/* =========================
   Podcast sektion
   ========================= */

.podcast-section .wrap {
  padding-top: 6px;
}

.pod-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr; /* venstre media lidt bredere */
  gap: 28px;
  align-items: start;
  margin-top: 15px;
}

.pod-grid-01 {
  display: grid;
  grid-template-columns: 0.7fr 1fr; /* venstre media lidt bredere */
  gap: 28px;
  align-items: start;
}

/* Divider linje mellem top og mid */
.pod-divider {
  height: 1px;
  background: var(--line);
  margin: 18px 0 18px;
}

/* Media blocks */
.pod-media {
  border-radius: var(--radius);
  overflow: hidden;
  background: #efefef;
}

.pod-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Top logo-billede ser “lavere” ud */
.pod-media--logo img {
  aspect-ratio: 16 / 9;
  /*  object-fit: contain; */
  background: #f3f3f3;
}

/* Midt “timeline” billede */
.pod-grid--mid .pod-media img {
  aspect-ratio: 16 / 6;
  object-fit: cover;
}

/* Stor bund-media */
.pod-media--big img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* Tekst */
.pod-text {
  font-size: 14px; /* lidt større end var(--fs-body) som i screenshot */
  line-height: 1.75;
  color: var(--text);
}

.pod-text p {
  margin: 0 0 14px;
}

.pod-text p:last-child {
  margin-bottom: 0;
}

/* Caption under billeder */
.pod-caption {
  margin: 10px 0 0;
  font-size: 12px;
  color: var(--muted);
}

/* Layout helpers */
.pod-left {
  display: grid;
}

/* CTA-boks (grøn) */
.pod-cta {
  position: relative;
  border-radius: var(--radius);
  background: #1f7f67; /* tæt på din grønne */
  color: #fff;
  padding: 26px 24px 26px;
  min-height: 240px;

  display: grid;
  gap: 14px;
  align-content: start;
}

.pod-cta-title {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 400;
}

.pod-cta-link {
  color: inherit;
  text-decoration: underline;
  font-size: 18px;
  line-height: 1.35;
  word-break: break-word;
}

.pod-cta-note {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  opacity: 0.95;
  max-width: 22ch; /* hjælper med “kolonne” looket */
}

.pod-cta-arrow {
  position: absolute;
  right: 22px;
  bottom: 18px;
  font-size: 28px;
  line-height: 1;
  opacity: 0.95;
}

/* =========================
   Responsiv
   ========================= */
@media (max-width: 980px) {
  .pod-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .pod-grid-01 {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .pod-cta {
    min-height: 200px;
  }

  .pod-cta-note {
    max-width: none;
  }
}

/* =========================
   Typografi-sektion - undervisningsforløb
   ========================= */

.course {
  background: #f1f1f1; /* lys grå baggrund bag hele sektionen */
  border-radius: var(--radius);
  padding: 26px 22px 26px;
}

/* Gul titelbar */
.course-head {
  background: var(--yellow);
  border-radius: var(--radius);
  padding: 26px 28px;
}

.course-title {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 56px);
  font-weight: 400;
  line-height: 1.05;
}

/* 3 thumbnails */
.course-media {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding: 22px 0 10px;
}

.course-thumb {
  margin: 0;
  border-radius: 34px;
  overflow: hidden;
  background: #e6e6e6;
}

.course-thumb img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

/* divider */
.course-rule {
  height: 1px;
  background: rgba(0, 0, 0, 0.55);
  margin: 12px 0 18px;
}

/* 2 kolonner intro */
.course-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  padding: 0 6px 18px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
}

.course-intro p {
  margin: 0;
}

/* Grå content-boks */
.course-box {
  background: #dcdcdc;
  border-radius: var(--radius);
  padding: 26px 26px 22px;
}

.course-box-title {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
}

/* 3 kolonner lister */
.course-box-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.course-list {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--text);
  font-size: 14px;
  line-height: 1.65;
}

.course-list li {
  margin: 0 0 14px;
}

/* Understregede keywords */
.course-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.course-link:hover {
  opacity: 0.85;
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 700px) {
  .course-media {
    grid-template-columns: 1fr;
  }

  .course-intro {
    grid-template-columns: 1fr;
    gap: 16px;
    font-size: 15px;
  }

  .course-box-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* =========================
   Modul-sektion (tekst + billede + grå boks)
   ========================= */

.module-title {
  margin: 0 0 18px;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 400;
  color: var(--text);
}

/* 2 kolonner */
.module-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: start;
}

/* Tekst */
.module-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
}

.module-text p {
  margin: 0 0 16px;
}
.module-text p:last-child {
  margin-bottom: 0;
}

/* Billede */
.module-figure {
  margin: 0;
}

.module-media {
  border-radius: 34px; /* match screenshot (lidt mindre end 45) */
  overflow: hidden;
  background: #e9e9e9;
}

.module-media img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.module-caption {
  margin: 10px 0 0;
  font-size: 12px;
  color: var(--muted);
}

/* Grå boks */
.module-box {
  margin-top: 28px;
  background: #dcdcdc;
  border-radius: var(--radius);
  padding: 26px 26px 22px;
}

.module-box-title {
  margin: 0 0 18px;
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
}

/* 3 kolonner inde i boksen */
.module-box-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

/* Lister */
.module-list {
  margin: 0;
  padding-left: 18px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.65;
}

.module-list li {
  margin: 0 0 12px;
}

/* Understregede nøglepunkter (som i screenshot) */

/* =========================
   Responsive
   ========================= */
@media (max-width: 980px) {
  .module-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .module-media img {
    aspect-ratio: 16 / 10; /* bedre på mobil end helt kvadratisk */
  }

  .module-box-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* =========================
   Spildesign modul-sektion
   ========================= */

.game {
  background: #f1f1f1;
  border-radius: var(--radius);
  padding: 26px 22px 26px;
}

/* Gul titelbar */
.game-head {
  background: var(--yellow);
  border-radius: var(--radius);
  padding: 26px 28px;
}

.game-title {
  margin: 0;
  font-size: clamp(34px, 4vw, 64px);
  font-weight: 400;
  line-height: 1.05;
}

/* Top grid */
.game-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: start;
  padding-top: 22px;
}

/* Media */
.game-figure {
  margin: 0;
}

.game-media {
  border-radius: 34px;
  overflow: hidden;
  background: #e7e7e7;
}

.game-media img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 5; /* tæt på screenshot */
  object-fit: cover;
}

.game-caption {
  margin: 10px 0 0;
  font-size: 12px;
  color: var(--muted);
}

/* Text */
.game-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
}

.game-subtitle {
  margin: 0 0 10px;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.15;
}

.game-text p {
  margin: 0 0 16px;
}
.game-text p:last-child {
  margin-bottom: 0;
}

/* Grå boks */
.game-box {
  margin-top: 24px;
  background: #dcdcdc;
  border-radius: var(--radius);
  padding: 24px 24px 18px;
}

.game-box-title {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
}

/* 3 kolonner i boksen */
.game-box-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

/* Lister */
.game-list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text);
}

.game-list li {
  margin: 0 0 14px;
}

/* Understregede nøgleord */

/* =========================
   Responsive
   ========================= */
@media (max-width: 980px) {
  .game-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .game-subtitle {
    font-size: 26px;
  }

  .game-media img {
    aspect-ratio: 16 / 10;
  }

  .game-box-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* =========================
   Animation section
   ========================= */

.anim-title {
  margin: 0 0 16px;
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
}

.anim-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: start;
}

/* tekst */
.anim-text {
  margin: 0;
  font-size: 18px;
  line-height: 1.75;
  color: var(--text);
  max-width: 52ch;
}

/* billede */
.anim-figure {
  margin: 0;
}

.anim-media {
  border-radius: 34px;
  overflow: hidden;
  background: #e7e7e7;
}

.anim-media img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* Grå boks */
.anim-box {
  margin-top: 26px;
  background: #dcdcdc;
  border-radius: var(--radius);
  padding: 26px 26px 22px;
}

.anim-box-title {
  margin: 0 0 18px;
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
}

/* 3 kolonner */
.anim-box-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.anim-col p {
  margin: 0;
}

.anim-label {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 8px;
}

.anim-body {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text);
}

/* Understregede labels */
.anim-underline {
  font-weight: 500;
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 980px) {
  .anim-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .anim-text {
    font-size: 16px;
    max-width: none;
  }

  .anim-box-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* =========================
   UX – brugeroplevelse
   ========================= */

.section-band--neon {
  background: var(--yellow);
  border-radius: var(--radius);
  padding: 26px 28px;
  margin-bottom: 26px;
}

.section-band-title {
  margin: 0;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 400;
}

/* Top grid */
.ux-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: start;
}

.ux-text p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  max-width: 60ch;
}

.ux-media img {
  width: 100%;
  display: block;
  border-radius: 32px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

/* Grå boks */
.ux-box {
  margin-top: 28px;
  background: #dedede;
  border-radius: var(--radius);
  padding: 26px 28px;
}

.ux-box-title {
  margin: 0 0 18px;
  font-size: 20px;
  font-weight: 400;
}

/* 3 kolonner */
.ux-box-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.ux-col p {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.65;
}

.ux-col strong {
  font-weight: 500;
}

/* Liste */
.ux-list {
  margin: 0;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.7;
}

.ux-list li {
  margin-bottom: 6px;
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 980px) {
  .ux-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ux-text p {
    max-width: none;
  }

  .ux-box-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
@media (max-width: 500px) {
.section-band-title {

  font-size: 22px;

}
}

/* =========================
   Andre undervisningsforløb (masonry columns)
   ========================= */

.other-courses .section-band--neon {
  margin-bottom: 20px;
}

/* Masonry uden JS: CSS columns */
.oc-grid {
  column-count: 4;
  column-gap: 26px;
}

/* hvert card må ikke splittes mellem columns */
.oc-card {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;

  display: grid;
  gap: 10px;
  margin: 0 0 22px;
}

/* Grå “pill” header */
.oc-pill {
  background: #cfcfcf;
  border-radius: 26px;
  padding: 18px 18px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  min-height: 88px;

  display: flex;
  align-items: center;
}

/* tekst under pill */
.oc-text {
  margin: 0;
  font-size: 12px;
  line-height: 1.7;
  color: var(--text);
}

/* mini cards (kun badge) */
.oc-card--mini {
  gap: 0;
}

.oc-pill--mini {
  min-height: 92px;
  justify-content: center;
  text-align: center;
  line-height: 1.25;
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 1100px) {
  .oc-grid {
    column-count: 3;
  }
}

@media (max-width: 820px) {
  .oc-grid {
    column-count: 2;
    column-gap: 18px;
  }
}

@media (max-width: 520px) {
  .oc-grid {
    column-count: 1;
  }
}

/* ---------- Slideshow frame ---------- */
.slide-frame {
  border-radius: 45px;
  overflow: hidden;
  background: #f1f1f1;
}

.slide-frame-1 {
  border: 1px solid gray;
}

/* ---------- Track ---------- */
.slide-track {
  display: flex;
  transform: translateX(0%);
  transition: transform 320ms ease;
  will-change: transform;
}

.slide-track > * {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
}

/* ---------- Game slideshow frame ---------- */
.gs-frame {
  border-radius: 36px;
  overflow: hidden;
  background: transparent;
  padding: 0;
}

/* Hver slide skal have en stabil højde */
.gs-slide {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
}

/* Videoen skal fylde sliden */
.gs-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.slide-track,
.slide-track * {
  -webkit-user-select: none;
  user-select: none;
  border-radius: 45px;
}

/* Swipe-fix til billedsliders: undgå at browseren dragger billedet */
.slide-track img {
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none; /* så swipe events rammer tracken */
}

.slide-track {
  touch-action: pan-y;
}

/* Overlay play-ikon */
.video-play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 64px;
  color: #fff;
  background: rgba(0, 0, 0, 0.25);
  z-index: 5;
  cursor: pointer;
  transition: opacity 180ms ease;
}

/* Når video spiller: skjul overlay (og gør den ikke klikbar) */
.video-slide.is-playing .video-play-overlay {
  opacity: 0;
}

/* Sørg for at overlay/ting ikke stjæler klik fra knapperne */
.video-ui {
  pointer-events: auto;
}
.video-btn {
  pointer-events: auto;
  z-index: 10;
}

/* Hvis du har et play-overlay i andre videoer, må det ikke blokere */
.video-play-overlay {
}

/* short form video knapper*/

/* Sørg for at UI ligger over video og kan klikkes */
.video-slide {
  position: relative;
}

.video-ui {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 50;
  pointer-events: auto;
}

.video-btn {
  pointer-events: auto;
  position: relative;
  z-index: 60;
}

html {
  scroll-behavior: smooth;
}


/*ekstra header */


/* Hvis din hero før havde fast højde/overflow, så fjern/overstyr den her */
.global-hero{
  overflow: visible; /* vigtig hvis undertitel blev klippet */
}

/* to-top kan evt. være fixed, så den ikke ødelægger flow */
.to-top{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 50;
}
