:root {
  --purple: #785a9b;
  --purple-dark: #4d326f;
  --purple-soft: #f2edf7;
  --white: #ffffff;
  --ink: #21182f;
  --muted: #675d76;
  --line: rgba(120, 90, 155, 0.18);
  --shadow: 0 18px 50px rgba(45, 28, 70, 0.12);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  font-weight: 800;
  text-decoration: none;
  color: var(--purple-dark);
  letter-spacing: -0.02em;
}
.brand img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(120,90,155,.18);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.main-nav a {
  text-decoration: none;
  font-weight: 700;
  color: var(--ink);
  padding: 10px 13px;
  border-radius: 999px;
}
.main-nav a:hover { background: var(--purple-soft); color: var(--purple-dark); }
.nav-cta { background: var(--purple); color: #fff !important; }
.menu-button { display: none; }

.hero {
  background:
    radial-gradient(circle at 80% 10%, rgba(255,255,255,0.25), transparent 24rem),
    linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: #fff;
  padding: 86px 0 78px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: center;
  gap: 42px;
}
.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: rgba(255,255,255,.82);
}
.hero h1 {
  font-size: clamp(2.5rem, 5vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  margin: 0 0 22px;
  max-width: 850px;
}
.lead {
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  max-width: 710px;
  margin: 0 0 30px;
  color: rgba(255,255,255,.91);
}
.button-row { display: flex; flex-wrap: wrap; gap: 14px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}
.button.primary { background: #fff; color: var(--purple-dark); }
.button.secondary { background: transparent; border-color: currentColor; color: #fff; }
.button.small { min-height: 38px; padding: 8px 13px; font-size: .9rem; }
.hero-panel {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 32px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.hero-panel img {
  width: 100%;
  border-radius: 24px;
  background: var(--purple);
  border: 8px solid rgba(255,255,255,.22);
}
.hero-panel p {
  margin: 18px 0 0;
  font-size: 1.15rem;
  font-weight: 700;
}

.section { padding: 82px 0; }
.intro-section { background: #fff; }
.two-col {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: start;
}
.intro-section .section-kicker,
.split-section .section-kicker,
.values-section .section-kicker { color: var(--purple); }
h2 {
  font-size: clamp(2rem, 3.5vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 0 0 18px;
}
.section-text,
.split-content p,
.values-section p,
.cta-section p {
  font-size: 1.15rem;
  color: var(--muted);
  margin: 0;
}
.cards-section { background: var(--purple-soft); }
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 10px 26px rgba(45, 28, 70, 0.06);
}
.card-icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: var(--purple-soft);
  font-size: 1.65rem;
  margin-bottom: 18px;
}
.card h3 { margin: 0 0 9px; font-size: 1.35rem; color: var(--purple-dark); }
.card p { margin: 0; color: var(--muted); }

.split-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 30px;
  align-items: center;
}
.split-grid.reverse { grid-template-columns: 0.85fr 1fr; }
.light { background: #faf8fc; }
.quote-box {
  min-height: 260px;
  display: grid;
  place-items: center;
  padding: 36px;
  border-radius: 32px;
  background: var(--purple-soft);
  color: var(--purple-dark);
  border: 1px solid var(--line);
}
.quote-box.purple {
  background: var(--purple);
  color: #fff;
}
.quote-box p {
  margin: 0;
  font-size: clamp(1.45rem, 2.8vw, 2.35rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.04em;
}
.values-section {
  background: var(--purple-dark);
  color: #fff;
  text-align: center;
}
.values-section .section-kicker { color: rgba(255,255,255,.76); }
.values-section .narrow { max-width: 850px; }
.values-section p { color: rgba(255,255,255,.86); }

.practical-section { background: #fff; }
.practical-box {
  padding: 34px;
  border-radius: 32px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 18px;
  margin-top: 22px;
}
.info-grid div {
  background: #faf8fc;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
}
.info-grid strong { color: var(--purple-dark); }
.info-grid p { margin: 8px 0 0; color: var(--muted); }
.cta-section {
  padding: 74px 0;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: #fff;
  text-align: center;
}
.cta-box { max-width: 780px; }
.cta-section p { color: rgba(255,255,255,.88); margin: 0 auto 24px; }
.site-footer {
  background: #20162d;
  color: rgba(255,255,255,.82);
  padding: 22px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.footer-inner a { color: #fff; }

/* Admin */
.admin-body { background: #f8f5fb; }
.admin-login {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}
.admin-card,
.editor-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.admin-card {
  width: min(440px, 100%);
  padding: 28px;
}
.admin-logo {
  width: 96px;
  height: 96px;
  border-radius: 22px;
  object-fit: cover;
  margin-bottom: 20px;
}
.admin-card h1 { margin: 0 0 8px; color: var(--purple-dark); }
.admin-card p { color: var(--muted); }
.error { color: #b00020 !important; font-weight: 700; }
.notice {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--purple-dark);
  padding: 14px 18px;
  border-radius: 14px;
  margin-bottom: 16px;
  font-weight: 800;
}
.admin-topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 22px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.admin-topbar span { color: var(--muted); font-size: .92rem; }
.admin-actions { display: flex; gap: 10px; }
.admin-actions .button.secondary { color: var(--purple-dark); }
.admin-wrap { width: min(980px, calc(100% - 28px)); margin: 24px auto 80px; }
.editor-form { padding: 22px; }
.form-field { margin-bottom: 18px; }
label { display: block; font-weight: 800; color: var(--purple-dark); margin-bottom: 7px; }
input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}
textarea { resize: vertical; min-height: 130px; }
input:focus,
textarea:focus {
  outline: 3px solid rgba(120, 90, 155, .18);
  border-color: var(--purple);
}
.sticky-save {
  position: sticky;
  bottom: 12px;
  display: flex;
  justify-content: flex-end;
  padding-top: 8px;
}
.editor-form .button.primary { background: var(--purple); color: #fff; }
.admin-card .button.primary { background: var(--purple); color: #fff; width: 100%; margin-top: 14px; }

@media (max-width: 860px) {
  .menu-button {
    display: inline-flex;
    border: 0;
    background: var(--purple);
    color: #fff;
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 800;
  }
  .main-nav {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 82px;
    background: #fff;
    padding: 14px;
    border-radius: 18px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }
  .menu-open .main-nav { display: flex; }
  .main-nav a { padding: 13px 15px; }
  .hero-grid,
  .two-col,
  .split-grid,
  .split-grid.reverse { grid-template-columns: 1fr; }
  .card-grid,
  .info-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 58px 0; }
}

@media (max-width: 560px) {
  .brand span { display: none; }
  .hero { padding: 58px 0; }
  .card-grid,
  .info-grid { grid-template-columns: 1fr; }
  .footer-inner,
  .admin-topbar { flex-direction: column; align-items: flex-start; }
}

/* Billedfelter / egne billeder */
.hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
}
.hero-media { width: 100%; }
.image-box {
  width: 100%;
  min-height: 320px;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}
.image-box img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}
.hero-photo {
  min-height: 470px;
  border: 8px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.13);
}
.hero-photo img { min-height: 470px; }
.image-placeholder {
  min-height: inherit;
  height: 100%;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 8px;
  padding: 32px;
  color: var(--purple-dark);
  background:
    linear-gradient(135deg, rgba(120,90,155,.10), rgba(120,90,155,.02)),
    repeating-linear-gradient(45deg, rgba(120,90,155,.09), rgba(120,90,155,.09) 10px, rgba(255,255,255,.5) 10px, rgba(255,255,255,.5) 20px);
}
.image-placeholder span { font-size: 2.8rem; }
.image-placeholder strong { display: block; font-size: 1.3rem; }
.image-placeholder small { display: block; color: var(--muted); font-weight: 700; }
.with-image {
  grid-template-columns: 1fr .95fr;
  align-items: center;
}
.quote-line {
  margin-top: 24px;
  padding: 20px 22px;
  border-radius: 20px;
  background: var(--purple-soft);
  color: var(--purple-dark);
  font-weight: 800;
  font-size: 1.1rem;
}
.quote-line.purple {
  background: var(--purple);
  color: #fff;
}
.gallery-section { background: #fff; }
.section-head {
  max-width: 760px;
  margin-bottom: 30px;
}
.section-head .section-kicker { color: var(--purple); }
.section-head p { color: var(--muted); font-size: 1.1rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.gallery-grid figure {
  margin: 0;
}
.gallery-grid .image-box {
  min-height: 230px;
  border-radius: 24px;
}
.gallery-grid .image-box img { min-height: 230px; }
.gallery-grid figcaption {
  margin-top: 10px;
  font-weight: 800;
  color: var(--purple-dark);
}

/* Admin billedredigering */
.admin-section {
  padding: 6px 0 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}
.admin-section h2 {
  font-size: 1.6rem;
  margin-bottom: 6px;
  color: var(--purple-dark);
}
.admin-section p {
  color: var(--muted);
  margin: 0;
}
.image-editor-section { margin-top: 30px; }
.image-editor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}
.image-upload-card {
  background: #faf8fc;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px;
}
.admin-preview {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--line);
  margin-bottom: 10px;
}
.admin-image-placeholder {
  height: 180px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 16px;
  border: 2px dashed rgba(120,90,155,.35);
  color: var(--muted);
  font-weight: 800;
  background: #fff;
  margin-bottom: 10px;
}
.checkbox-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--muted);
  margin: 8px 0 12px;
}
.checkbox-line input { width: auto; }
.image-upload-card input[type="file"] {
  background: #fff;
}

@media (max-width: 860px) {
  .hero-grid,
  .with-image,
  .gallery-grid,
  .image-editor-grid { grid-template-columns: 1fr; }
  .hero-photo,
  .hero-photo img { min-height: 330px; }
  .image-box,
  .image-box img { min-height: 280px; }
}
 .card img.card-icon-img,
.cards-section .card img.card-icon-img,
img.card-icon-img {
  width: 48px !important;
  height: 48px !important;
  max-width: 48px !important;
  max-height: 48px !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 0 22px 0 !important;
  border-radius: 12px !important;
}/* Ens og mere systematiske forsideknapper */
.hero .button-row {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
  max-width: 760px !important;
  margin-top: 28px !important;
}

.hero .button-row .button {
  width: 100% !important;
  min-height: 62px !important;
  padding: 12px 18px !important;
  border-radius: 999px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  font-size: 1rem !important;
  line-height: 1.2 !important;
  white-space: normal !important;
}

/* På meget små skærme bliver de én under én */
@media (max-width: 360px) {
  .hero .button-row {
    grid-template-columns: 1fr !important;
  }
}

/* På større skærme kan de stå flot i række */
@media (min-width: 900px) {
  .hero .button-row {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    max-width: 980px !important;
  }
}
/* Lilla bølge-header som på billedet */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background:
    radial-gradient(circle at 78% 0%, rgba(120, 90, 155, 0.22) 0%, rgba(120, 90, 155, 0.08) 26%, transparent 48%),
    linear-gradient(165deg, #ffffff 0%, #ffffff 48%, #f1ecf7 49%, #ffffff 72%);
  border-bottom: 1px solid rgba(120, 90, 155, 0.16);
  overflow: hidden;
}

.site-header::after {
  content: "";
  position: absolute;
  right: 18%;
  top: 0;
  width: 520px;
  height: 120px;
  background: linear-gradient(90deg, rgba(120, 90, 155, 0.05), rgba(120, 90, 155, 0.45), rgba(120, 90, 155, 0.08));
  border-radius: 0 0 100% 100%;
  transform: skewX(-22deg) translateY(-26px);
  pointer-events: none;
  z-index: 0;
}

.header-inner,
.site-header .container,
.site-header .brand,
.site-header .main-nav,
.site-header .menu-toggle {
  position: relative;
  z-index: 2;
}

/* Logo og tekst pænere i headeren */
.brand img {
  width: 74px;
  height: 74px;
  border-radius: 18px;
}

.brand span,
.brand-title {
  font-weight: 800;
  color: #4d326f;
  font-size: clamp(1.1rem, 2.8vw, 1.8rem);
}

/* Menu-knap som lilla pille */
.menu-toggle,
.mobile-menu-button {
  background: #785a9b !important;
  color: #ffffff !important;
  border-radius: 999px !important;
  padding: 14px 26px !important;
  font-weight: 800 !important;
  border: none !important;
}

/* Mobiltilpasning */
@media (max-width: 700px) {
  .site-header::after {
    right: -60px;
    width: 360px;
    height: 95px;
    transform: skewX(-22deg) translateY(-18px);
  }

  .brand img {
    width: 64px;
    height: 64px;
  }

  .site-header {
    min-height: 96px;
  }
}/* Ret lilla bølge, så den ikke ligger bag teksten */
.site-header {
  background: #ffffff !important;
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(120, 90, 155, 0.18);
  overflow: hidden;
}

/* Lilla bølge starter først efter logo + tekst */
.site-header::after {
  content: "";
  position: absolute;
  left: 58%;
  top: -30px;
  width: 520px;
  height: 150px;
  background: linear-gradient(
    100deg,
    rgba(120, 90, 155, 0.08),
    rgba(120, 90, 155, 0.35),
    rgba(120, 90, 155, 0.12)
  );
  border-radius: 0 0 70% 70%;
  transform: skewX(-22deg);
  pointer-events: none;
  z-index: 0;
}

/* Sørger for at logo, tekst og menu ligger ovenpå */
.header-inner,
.site-header .container,
.brand,
.menu-toggle,
.mobile-menu-button {
  position: relative;
  z-index: 2;
}

/* På mobil skal bølgen næsten væk, så den ikke forstyrrer */
@media (max-width: 700px) {
  .site-header::after {
    left: 65%;
    top: -20px;
    width: 260px;
    height: 100px;
    opacity: 0.55;
  }
}/* FIX: Få Menu-knappen til at åbne dropdown-menuen */
.site-header {
  overflow: visible !important;
}

.header-inner {
  position: relative !important;
}

/* Menu-knappen */
.menu-button {
  background: #785a9b !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 999px !important;
  padding: 14px 26px !important;
  font-weight: 800 !important;
  font-size: 1rem !important;
  cursor: pointer !important;
}

/* Skjul menuen normalt */
.main-nav {
  display: none !important;
}

/* Vis menuen når man trykker på Menu */
body.menu-open .main-nav {
  display: flex !important;
  flex-direction: column !important;
  position: absolute !important;
  top: calc(100% + 12px) !important;
  right: 24px !important;
  width: min(320px, calc(100vw - 48px)) !important;
  background: #ffffff !important;
  border: 1px solid rgba(120, 90, 155, 0.22) !important;
  border-radius: 24px !important;
  box-shadow: 0 18px 50px rgba(45, 28, 70, 0.22) !important;
  padding: 14px !important;
  z-index: 9999 !important;
}

/* Menupunkter */
body.menu-open .main-nav a {
  display: block !important;
  padding: 14px 16px !important;
  color: #4d326f !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  border-radius: 14px !important;
}

body.menu-open .main-nav a:hover {
  background: #f2edf7 !important;
}

/* Kontakt-knap i menuen */
body.menu-open .main-nav .nav-cta {
  background: #785a9b !important;
  color: #ffffff !important;
  text-align: center !important;
  margin-top: 8px !important;
}
/* SIDSTE OVERRIDE: ret header, højre hvidt område og lilla bølge */

.site-header {
  width: 100% !important;
  background: #ffffff !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 9999 !important;
  overflow: visible !important;
  border-bottom: 1px solid rgba(120, 90, 155, 0.18) !important;
}

/* Sluk gammel bølge, hvis den ligger forkert */
.site-header::before {
  display: none !important;
  content: none !important;
}

/* Ny kortere lilla bølge */
.site-header::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  right: 90px !important;
  top: -35px !important;
  width: 360px !important;
  height: 70px !important;
  background: linear-gradient(
    100deg,
    rgba(120, 90, 155, 0.06),
    rgba(120, 90, 155, 0.24),
    rgba(120, 90, 155, 0.06)
  ) !important;
  border-radius: 0 0 70% 70% !important;
  transform: skewX(-22deg) !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

.header-inner,
.brand,
.menu-button,
.main-nav {
  position: relative !important;
  z-index: 2 !important;
}

/* Fjern hvidt hul til højre i hero-sektionen */
.hero {
  width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  background: linear-gradient(135deg, #785a9b 0%, #5b3b7d 100%) !important;
}

.hero .container,
.hero-grid {
  width: min(1180px, calc(100% - 32px)) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Menu dropdown */
.main-nav {
  display: none !important;
}

body.menu-open .main-nav {
  display: flex !important;
  flex-direction: column !important;
  position: absolute !important;
  top: calc(100% + 10px) !important;
  right: 0 !important;
  width: min(330px, calc(100vw - 32px)) !important;
  background: #ffffff !important;
  border: 1px solid rgba(120, 90, 155, 0.25) !important;
  border-radius: 22px !important;
  box-shadow: 0 18px 50px rgba(45, 28, 70, 0.22) !important;
  padding: 12px !important;
  z-index: 10000 !important;
}

body.menu-open .main-nav a {
  display: block !important;
  padding: 14px 16px !important;
  color: #4d326f !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  border-radius: 14px !important;
}

body.menu-open .main-nav a:hover {
  background: #f2edf7 !important;
}

body.menu-open .main-nav .nav-cta {
  background: #785a9b !important;
  color: #ffffff !important;
  text-align: center !important;
  margin-top: 8px !important;
}

/* Mobil */
@media (max-width: 700px) {
  .site-header::after {
    right: 70px !important;
    top: -28px !important;
    width: 240px !important;
    height: 55px !important;
    opacity: 0.5 !important;
  }
}/* RESPONSIVE BILLEDER - passer til mobil, tablet og PC/Mac */

/* Alle almindelige sektionsbilleder */
.image-box {
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden !important;
  border-radius: 28px !important;
}

.image-box img {
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
  display: block !important;
  object-fit: contain !important;
}

/* Forside-/hero-billedet */
.hero-media,
.hero .image-box,
.hero-photo {
  width: 100% !important;
  max-width: 720px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.hero .image-box {
  aspect-ratio: 16 / 9 !important;
  background: rgba(255,255,255,0.08) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.hero .image-box img,
.hero-photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
}

/* På mobil: billedet må ikke blive beskåret */
@media (max-width: 700px) {
  .hero {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .hero .image-box {
    aspect-ratio: 1 / 1 !important;
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    border-radius: 26px !important;
  }

  .hero .image-box img,
  .hero-photo img {
    object-fit: contain !important;
    object-position: center center !important;
  }
}

/* På PC/Mac: bredt og pænt */
@media (min-width: 900px) {
  .hero .image-box {
    aspect-ratio: 16 / 9 !important;
    max-width: 680px !important;
  }
}/* MOBIL FIX: vis hele forsidebilledet på højkant */
@media (max-width: 700px) {
  .hero-media,
  .hero .image-box,
  .hero-photo {
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    aspect-ratio: auto !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  .hero .image-box img,
  .hero-photo img,
  .hero-media img {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    aspect-ratio: auto !important;
    object-fit: contain !important;
    object-position: center center !important;
    display: block !important;
  }