html {
  height: auto;
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  box-sizing: border-box;
  height: auto;
  min-height: 100vh;
  color: var(--ui-ink);
  background: var(--ui-page);
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.app-shell {
  flex: 1 0 auto;
  display: flex;
  min-height: 0;
  flex-direction: column;
}

.app-shell > .content {
  flex: 1 0 auto;
}

::selection {
  color: var(--ui-ink-strong);
  background: rgba(78, 169, 90, 0.22);
}

body:not(.page-forside) .content {
  position: relative;
  isolation: isolate;
  padding: clamp(34px, 5vw, 70px) 0 clamp(68px, 8vw, 106px);
  background:
    radial-gradient(circle at 92% 3%, rgba(78, 169, 90, 0.11), transparent 24rem),
    radial-gradient(circle at 4% 50%, rgba(47, 111, 228, 0.055), transparent 24rem),
    var(--ui-page);
}

body:not(.page-forside) .content > section {
  width: min(100%, 1360px);
  min-width: 0;
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  padding-right: clamp(15px, 3vw, 30px);
  padding-left: clamp(15px, 3vw, 30px);
}

body:not(.page-forside) .section-title {
  left: auto;
  display: block;
  width: min(100%, var(--page-width-app));
  margin: 0 auto clamp(25px, 4vw, 40px);
  padding: 0 0 14px;
  transform: none;
  color: var(--ui-ink);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.1;
  text-align: left;
}

body:not(.page-forside) .section-title::before {
  content: "ELINDSIGT";
  display: block;
  margin-bottom: 8px;
  color: var(--ui-green-dark);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.13em;
}

body:not(.page-forside) .section-title::after {
  width: 42px;
  height: 3px;
  margin: 12px 0 0;
  background: var(--ui-green);
}

