/* ==========================================================================
   WeContent — temaets designsystem
   Konverteret fra Lovable-projektet "Nye rettelser - wecontent".
   Farver, spacing, typografi og animationer svarer 1:1 til originalen.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */

:root {
	--wc-ink: #000000;
	--wc-paper: #f0f0f0;
	--wc-paper-dim: #e2e2e2;
	--wc-white: #ffffff;
	--wc-muted: #565656;
	--wc-blue: #1c5bd6;

	--wc-border: rgba(3, 3, 3, 0.1);
	--wc-input: rgba(3, 3, 3, 0.15);

	--wc-radius: 1rem;
	--wc-radius-lg: 1rem;
	--wc-radius-xl: 1.25rem;
	--wc-radius-2xl: 1.5rem;
	--wc-radius-3xl: 1.75rem;

	--wc-ease: cubic-bezier(0.16, 1, 0.3, 1);

	--wc-font: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	--wc-font-hand: "Caveat", cursive;

	--wc-container: 80rem;
	--wc-gutter: 1.5rem;
}

/* Præcis samme farverum som originalen, hvor browseren understøtter det. */
@supports (color: oklch(0.5 0.1 200)) {
	:root {
		--wc-ink: oklch(0 0 0);
		--wc-paper: oklch(0.96 0 0);
		--wc-paper-dim: oklch(0.91 0 0);
		--wc-white: oklch(1 0 0);
		--wc-muted: oklch(0.45 0 0);
		--wc-blue: oklch(0.51 0.2 262);
	}
}

@media (min-width: 768px) {
	:root {
		--wc-gutter: 2.5rem;
	}
}

/* --------------------------------------------------------------------------
   2. Reset og basis
   -------------------------------------------------------------------------- */

*,
*::before,
*::after {
	box-sizing: border-box;
	border-color: var(--wc-border);
}

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background-color: var(--wc-paper);
	color: var(--wc-ink);
	font-family: var(--wc-font);
	font-size: 1rem;
	line-height: 1.5;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

body.wc-no-scroll {
	overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
	margin: 0;
}

ul,
ol {
	margin: 0;
	padding: 0;
}

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

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

button {
	font: inherit;
	color: inherit;
}

address {
	font-style: normal;
}

::selection {
	background-color: var(--wc-blue);
	color: #fff;
}

:focus-visible {
	outline: 2px solid var(--wc-blue);
	outline-offset: 3px;
	border-radius: 4px;
}

.wc-sr-only,
.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	position: fixed;
	top: 1rem;
	left: 1rem;
	z-index: 1000;
	display: block;
	padding: 0.75rem 1.25rem;
	background: var(--wc-ink);
	color: #fff;
	border-radius: 999px;
	font-size: 0.875rem;
	font-weight: 600;
	width: auto;
	height: auto;
	clip: auto;
	margin: 0;
	overflow: visible;
	white-space: normal;
}

/* --------------------------------------------------------------------------
   3. Typografi
   -------------------------------------------------------------------------- */

.wc-display {
	font-family: var(--wc-font);
	font-weight: 600;
	letter-spacing: -0.02em;
	line-height: 1.15;
}

.wc-eyebrow {
	display: inline-block;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--wc-blue);
}

.wc-eyebrow--caps {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.wc-h1 {
	font-size: 1.5rem;
	line-height: 1.2;
}

.wc-h2 {
	font-size: 1.5rem;
	line-height: 1.25;
}

.wc-h3 {
	font-size: 1.25rem;
	line-height: 1.4;
}

.wc-lead {
	font-size: 1rem;
	line-height: 1.625;
	color: var(--wc-muted);
}

@media (min-width: 768px) {
	.wc-h1 {
		font-size: 2.25rem;
	}

	.wc-h2 {
		font-size: 2.25rem;
	}

	.wc-h3 {
		font-size: 1.5rem;
	}
}

/* --------------------------------------------------------------------------
   4. Layout
   -------------------------------------------------------------------------- */

.wc-container {
	width: 100%;
	max-width: var(--wc-container);
	margin-inline: auto;
}

.wc-container--5xl {
	max-width: 64rem;
}

.wc-container--6xl {
	max-width: 72rem;
}

.wc-container--wide {
	max-width: 90rem;
}

.wc-section {
	padding-inline: var(--wc-gutter);
	padding-block: 3.5rem;
}

@media (min-width: 768px) {
	.wc-section {
		padding-block: 5rem;
	}
}

.wc-section--paper {
	background-color: var(--wc-paper);
}

.wc-section--dim {
	background-color: var(--wc-paper-dim);
}

.wc-section--tight-top {
	padding-top: 2rem;
	padding-bottom: 3.5rem;
}

@media (min-width: 768px) {
	.wc-section--tight-top {
		padding-top: 2.5rem;
		padding-bottom: 5rem;
	}
}

.wc-section--flush-bottom {
	padding-bottom: 0;
}

.wc-measure {
	max-width: 48rem;
}

.wc-measure--sm {
	max-width: 42rem;
}

/* --------------------------------------------------------------------------
   5. Knapper
   -------------------------------------------------------------------------- */

.wc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	border-radius: 999px;
	border: 1px solid transparent;
	padding: 0.75rem 1.5rem;
	font-size: 0.875rem;
	font-weight: 600;
	cursor: pointer;
	text-align: center;
	transition:
		transform 0.25s var(--wc-ease),
		box-shadow 0.25s var(--wc-ease),
		background-color 0.25s,
		color 0.25s,
		border-color 0.25s;
}

.wc-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 24px -10px rgba(0, 0, 0, 0.35);
}

.wc-btn:active {
	transform: translateY(0);
	box-shadow: none;
}

.wc-btn--lg {
	padding: 1rem 2rem;
}

.wc-btn--ink {
	background-color: var(--wc-ink);
	color: #fff;
}

.wc-btn--ink:hover {
	background-color: rgba(0, 0, 0, 0.85);
}

.wc-btn--blue {
	background-color: var(--wc-blue);
	color: #fff;
}

.wc-btn--blue:hover {
	filter: brightness(1.12);
}

.wc-btn--white {
	background-color: #fff;
	color: var(--wc-ink);
}

.wc-btn--outline {
	border-color: var(--wc-input);
	color: var(--wc-ink);
	background-color: transparent;
}

.wc-btn--outline:hover {
	background-color: var(--wc-ink);
	color: #fff;
}

.wc-btn--outline-light {
	border-color: rgba(255, 255, 255, 0.3);
	color: #fff;
	background-color: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(4px);
}

.wc-btn--outline-light:hover {
	background-color: rgba(255, 255, 255, 0.2);
}

.wc-btn--square {
	border-radius: 0.75rem;
	height: 3rem;
	padding: 0 1.75rem;
	font-size: 1rem;
}

.wc-link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--wc-blue);
}

.wc-link-arrow:hover {
	text-decoration: underline;
}

.wc-icon {
	width: 1rem;
	height: 1rem;
	flex: none;
	stroke: currentColor;
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.wc-icon--lg {
	width: 1.25rem;
	height: 1.25rem;
}

/* --------------------------------------------------------------------------
   6. Header / navigation
   -------------------------------------------------------------------------- */

.wc-header {
	position: fixed;
	inset-inline: 0;
	top: 0;
	z-index: 50;
	background-color: var(--wc-paper);
	transition:
		background-color 0.3s,
		box-shadow 0.3s;
}

.wc-header.is-home {
	background-color: #fff;
}

.wc-header.is-transparent {
	background-color: transparent;
}

.wc-header.is-scrolled {
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.wc-topbar {
	border-bottom: 1px solid var(--wc-border);
	padding: 0.625rem var(--wc-gutter);
}

.wc-header.is-transparent .wc-topbar {
	border-bottom-color: rgba(255, 255, 255, 0.1);
}

.wc-topbar__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	font-size: 12px;
	color: rgba(0, 0, 0, 0.7);
}

.wc-header.is-transparent .wc-topbar__inner {
	color: rgba(255, 255, 255, 0.7);
}

.wc-topbar__group {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.wc-topbar__sep {
	display: none;
	color: rgba(0, 0, 0, 0.3);
}

.wc-header.is-transparent .wc-topbar__sep {
	color: rgba(255, 255, 255, 0.3);
}

.wc-topbar a {
	transition: color 0.2s;
}

.wc-topbar a:hover {
	color: var(--wc-ink);
}

.wc-header.is-transparent .wc-topbar a:hover {
	color: #fff;
}

.wc-topbar__meta {
	display: none;
	align-items: center;
	gap: 1.5rem;
}

.wc-topbar__mail {
	display: none;
}

@media (min-width: 640px) {
	.wc-topbar__sep,
	.wc-topbar__mail {
		display: inline;
	}
}

@media (min-width: 768px) {
	.wc-topbar__meta {
		display: flex;
	}
}

.wc-nav {
	padding: 1.25rem var(--wc-gutter);
}

.wc-nav__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.wc-nav__burger {
	display: flex;
	align-items: center;
	margin-left: -0.25rem;
	padding: 0.25rem;
	background: none;
	border: 0;
	cursor: pointer;
	color: var(--wc-ink);
	transition: opacity 0.2s;
}

.wc-header.is-transparent .wc-nav__burger {
	color: #fff;
}

.wc-nav__burger:hover {
	opacity: 0.8;
}

.wc-nav__burger svg {
	width: 1.75rem;
	height: 1.75rem;
}

.wc-nav__logo {
	display: flex;
	align-items: center;
	margin-right: auto;
}

.wc-nav__logo img {
	height: 2.25rem;
	width: auto;
	transition:
		transform 0.3s,
		filter 0.3s;
}

.wc-nav__logo:hover img {
	transform: scale(1.05);
}

/* Logoet er hvidt — gøres sort når headeren ikke ligger over hero-videoen. */
.wc-header:not(.is-transparent) .wc-nav__logo img.wc-logo--invertible {
	filter: brightness(0);
}

.wc-nav__links {
	display: none;
	align-items: center;
	gap: 2rem;
	font-size: 0.75rem;
	font-weight: 500;
	color: rgba(0, 0, 0, 0.85);
	transition: color 0.3s;
	list-style: none;
}

.wc-header.is-transparent .wc-nav__links {
	color: rgba(255, 255, 255, 0.85);
}

.wc-nav__links a {
	position: relative;
	transition: color 0.2s;
}

.wc-nav__links a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -4px;
	height: 2px;
	width: 100%;
	border-radius: 999px;
	background: var(--wc-blue);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.3s var(--wc-ease);
}

.wc-nav__links a:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}

.wc-nav__links a:hover {
	color: var(--wc-ink);
}

.wc-header.is-transparent .wc-nav__links a:hover {
	color: #fff;
}

.wc-nav__links .current-menu-item > a,
.wc-nav__links .current_page_item > a,
.wc-nav__links .current-menu-ancestor > a {
	font-weight: 600;
}

.wc-nav__actions {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.wc-nav__cta {
	display: none;
	padding: 0.75rem 1.5rem;
	font-size: 0.75rem;
}

@media (min-width: 640px) {
	.wc-nav__cta {
		display: inline-flex;
	}
}

.wc-nav__cta--secondary {
	display: inline-flex;
	padding: 0.75rem 1.5rem;
	font-size: 0.75rem;
	border: 1px solid var(--wc-input);
}

.wc-header.is-transparent .wc-nav__cta--primary {
	background-color: #fff;
	color: var(--wc-ink);
}

.wc-header.is-transparent .wc-nav__cta--secondary {
	border-color: rgba(255, 255, 255, 0.3);
	color: #fff;
}

.wc-header.is-transparent .wc-nav__cta--secondary:hover {
	background-color: #fff;
	color: var(--wc-ink);
}

@media (min-width: 1024px) {
	.wc-nav__burger {
		display: none;
	}

	.wc-nav__logo {
		margin-right: 0;
	}

	.wc-nav__links {
		display: flex;
	}
}

/* Mobil-drawer */
.wc-drawer {
	position: fixed;
	inset: 0;
	z-index: 60;
	pointer-events: none;
}

.wc-drawer.is-open {
	pointer-events: auto;
}

@media (min-width: 1024px) {
	.wc-drawer {
		display: none;
	}
}

.wc-drawer__backdrop {
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.6);
	opacity: 0;
	transition: opacity 0.3s;
}

.wc-drawer.is-open .wc-drawer__backdrop {
	opacity: 1;
}

.wc-drawer__panel {
	position: absolute;
	inset-block: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	width: 82%;
	max-width: 24rem;
	background-color: #fff;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	transform: translateX(-100%);
	transition: transform 0.3s ease-out;
}

.wc-drawer.is-open .wc-drawer__panel {
	transform: translateX(0);
}

.wc-drawer__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid var(--wc-border);
	padding: 1.25rem 1.5rem;
}

.wc-drawer__head img {
	height: 2rem;
	width: auto;
}

.wc-drawer__close {
	border: 0;
	background: none;
	border-radius: 999px;
	padding: 0.5rem;
	cursor: pointer;
	color: var(--wc-ink);
	transition: background-color 0.2s;
}

.wc-drawer__close:hover {
	background-color: rgba(0, 0, 0, 0.05);
}

.wc-drawer__close svg {
	width: 1.25rem;
	height: 1.25rem;
}

.wc-drawer__nav {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 0.25rem;
	padding: 1.5rem;
	list-style: none;
	overflow-y: auto;
}

.wc-drawer__nav a {
	display: block;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	padding-block: 1rem;
	font-size: 1.125rem;
	font-weight: 600;
	transition: color 0.2s;
}

.wc-drawer__nav a:hover {
	color: rgba(0, 0, 0, 0.7);
}

.wc-drawer__foot {
	margin-top: auto;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	border-top: 1px solid var(--wc-border);
	padding: 1.5rem;
}

.wc-drawer__foot a:not(.wc-btn) {
	text-align: center;
	font-size: 0.875rem;
	color: rgba(0, 0, 0, 0.7);
}

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */

.wc-hero {
	position: relative;
	isolation: isolate;
	display: flex;
	align-items: center;
	min-height: 620px;
	overflow: hidden;
	padding: 9rem var(--wc-gutter) 2.5rem;
}

@media (min-width: 768px) {
	.wc-hero {
		padding-bottom: 3.5rem;
	}
}

@media (min-width: 1024px) {
	.wc-hero {
		min-height: 720px;
	}
}

.wc-hero__media {
	pointer-events: none;
	position: absolute;
	inset: 0;
	z-index: 0;
}

.wc-hero__media video,
.wc-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Styrken sættes under WeContent → Indstillinger og skrives som
   CSS-variabler på .wc-hero. Værdierne her er blot et fallback. */
.wc-hero__scrim {
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, var(--wc-scrim, 0.2));
}

.wc-hero__scrim--grad {
	background-color: transparent;
	background-image: linear-gradient(
		to top,
		rgba(0, 0, 0, var(--wc-scrim-bottom, 0.45)),
		rgba(0, 0, 0, var(--wc-scrim-middle, 0)) 50%,
		rgba(0, 0, 0, var(--wc-scrim-top, 0.2))
	);
}

.wc-hero__inner {
	position: relative;
	z-index: 10;
	width: 100%;
}

.wc-hero__title {
	font-size: 1.875rem;
	font-weight: 600;
	line-height: 1.08;
	color: #fff;
}

.wc-hero__text {
	margin-top: 1.5rem;
	max-width: 36rem;
	font-size: 1rem;
	line-height: 1.625;
	color: rgba(255, 255, 255, 0.8);
}

.wc-hero__actions {
	margin-top: 2rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

@media (min-width: 640px) {
	.wc-hero__title {
		font-size: 2.25rem;
	}
}

@media (min-width: 768px) {
	.wc-hero__title {
		font-size: 3rem;
	}
}

/* Banner-video øverst på undersider */
.wc-pagebanner {
	position: relative;
	isolation: isolate;
	width: 100%;
	overflow: hidden;
	background-color: var(--wc-paper);
	padding-top: 5rem;
}

.wc-pagebanner video,
.wc-pagebanner img {
	width: 100%;
	aspect-ratio: 16 / 9;
	max-height: 540px;
	object-fit: cover;
}

.wc-strip video,
.wc-strip img {
	width: 100%;
	aspect-ratio: 21 / 9;
	object-fit: cover;
}

@media (min-width: 768px) {
	.wc-strip video,
	.wc-strip img {
		aspect-ratio: 3 / 1;
	}
}

.wc-strip--short video,
.wc-strip--short img {
	aspect-ratio: auto;
	height: 10rem;
}

@media (min-width: 640px) {
	.wc-strip--short video,
	.wc-strip--short img {
		height: 12rem;
	}
}

@media (min-width: 768px) {
	.wc-strip--short video,
	.wc-strip--short img {
		height: 14rem;
	}
}

@media (min-width: 1024px) {
	.wc-strip--short video,
	.wc-strip--short img {
		height: 16rem;
	}
}

/* --------------------------------------------------------------------------
   8. Kunde-marquee
   -------------------------------------------------------------------------- */

.wc-marquee {
	overflow: hidden;
	border-bottom: 1px solid var(--wc-border);
	background-color: #fff;
	padding-block: 2.5rem;
}

.wc-marquee__track {
	display: flex;
	width: max-content;
	animation: wc-marquee 42s linear infinite;
}

.wc-marquee__group {
	display: flex;
	align-items: center;
	gap: 3.5rem;
	padding-inline: 1.5rem;
}

.wc-marquee__group img {
	height: 1.5rem;
	width: auto;
	opacity: 0.5;
	transition: opacity 0.3s;
}

.wc-marquee__group img:hover {
	opacity: 1;
}

.wc-marquee__group img.is-small {
	height: 0.75rem;
}

.wc-marquee__group img.is-inverted {
	filter: invert(1);
}

.wc-marquee:hover .wc-marquee__track {
	animation-play-state: paused;
}

@keyframes wc-marquee {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}

/* Logo-grid på Om os */
.wc-logogrid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.wc-logogrid__item {
	display: flex;
	aspect-ratio: 3 / 2;
	align-items: center;
	justify-content: center;
	border-radius: var(--wc-radius-2xl);
	background-color: #fff;
	padding: 1rem;
}

.wc-logogrid__item img {
	max-height: 2.5rem;
	width: auto;
	max-width: 100%;
	object-fit: contain;
}

.wc-logogrid__item img.is-inverted {
	filter: invert(1);
}

@media (min-width: 640px) {
	.wc-logogrid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (min-width: 768px) {
	.wc-logogrid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 1.25rem;
	}

	.wc-logogrid__item {
		padding: 1.25rem;
	}

	.wc-logogrid__item img {
		max-height: 3rem;
	}
}

@media (min-width: 1024px) {
	.wc-logogrid {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}
}

/* --------------------------------------------------------------------------
   9. Cases
   -------------------------------------------------------------------------- */

.wc-groupheading {
	margin-bottom: 1.5rem;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 0.75rem;
}

@media (min-width: 768px) {
	.wc-groupheading {
		margin-bottom: 2rem;
	}
}

.wc-groupheading h3 {
	font-size: 1.25rem;
}

@media (min-width: 768px) {
	.wc-groupheading h3 {
		font-size: 1.5rem;
	}
}

/* Vandret slideshow på mobil, grid på desktop — som originalen. */
.wc-cardrow {
	display: flex;
	gap: 1.5rem;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-padding-inline: var(--wc-gutter);
	margin-inline: calc(var(--wc-gutter) * -1);
	padding-inline: var(--wc-gutter);
	padding-bottom: 0.5rem;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.wc-cardrow::-webkit-scrollbar {
	display: none;
}

.wc-cardrow > * {
	width: 78vw;
	flex: none;
	scroll-snap-align: start;
}

@media (min-width: 768px) {
	.wc-cardrow > * {
		width: 42vw;
	}
}

@media (min-width: 1024px) {
	.wc-cardrow {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		margin-inline: 0;
		padding-inline: 0;
		padding-bottom: 0;
		overflow: visible;
	}

	.wc-cardrow > * {
		width: auto;
	}
}

.wc-cardgrid {
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	gap: 1.5rem;
}

@media (min-width: 768px) {
	.wc-cardgrid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.wc-cardgrid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.wc-cardrow + .wc-cardrow,
.wc-cardgrid + .wc-cardgrid {
	margin-top: 1.5rem;
}

.wc-card {
	display: flex;
	height: 100%;
	flex-direction: column;
	overflow: hidden;
	border-radius: var(--wc-radius-2xl);
	background-color: #fff;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	transition:
		transform 0.3s var(--wc-ease),
		box-shadow 0.3s var(--wc-ease);
}

.wc-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.wc-card__media {
	position: relative;
	display: block;
	width: 100%;
	flex: none;
	overflow: hidden;
	background-color: var(--wc-ink);
	border: 0;
	padding: 0;
	cursor: pointer;
	aspect-ratio: 1 / 1;
}

.wc-card__media--portrait {
	aspect-ratio: 4 / 5;
}

.wc-card__media video,
.wc-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s var(--wc-ease);
}

.wc-card:hover .wc-card__media video,
.wc-card:hover .wc-card__media img {
	transform: scale(1.05);
}

.wc-card__play {
	pointer-events: none;
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.wc-card__play span {
	display: flex;
	width: 3.5rem;
	height: 3.5rem;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background-color: rgba(255, 255, 255, 0.85);
	color: var(--wc-ink);
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s;
}

.wc-card:hover .wc-card__play span {
	transform: scale(1.1);
}

.wc-card__play svg {
	width: 1.25rem;
	height: 1.25rem;
	transform: translateX(1px);
	fill: currentColor;
	stroke: none;
}

.wc-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 1.5rem;
}

.wc-card__title {
	font-size: 1.25rem;
}

.wc-card__kind {
	margin-top: 0.25rem;
	font-size: 1rem;
	color: var(--wc-muted);
}

/* Lightbox */
.wc-lightbox {
	position: fixed;
	inset: 0;
	z-index: 100;
	display: none;
	align-items: center;
	justify-content: center;
	background-color: rgba(0, 0, 0, 0.9);
	backdrop-filter: blur(4px);
	padding: 1rem;
}

.wc-lightbox.is-open {
	display: flex;
}

.wc-lightbox__close {
	position: absolute;
	top: 1.25rem;
	right: 1.25rem;
	display: flex;
	width: 2.75rem;
	height: 2.75rem;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 999px;
	background-color: rgba(255, 255, 255, 0.1);
	color: #fff;
	cursor: pointer;
	transition: background-color 0.2s;
}

.wc-lightbox__close:hover {
	background-color: rgba(255, 255, 255, 0.2);
}

.wc-lightbox__close svg {
	width: 1.25rem;
	height: 1.25rem;
}

.wc-lightbox video {
	max-height: 85vh;
	width: auto;
	max-width: 100%;
	border-radius: var(--wc-radius-2xl);
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* --------------------------------------------------------------------------
   10. Ydelser
   -------------------------------------------------------------------------- */

.wc-services {
	margin-top: 2.5rem;
	display: grid;
	grid-auto-rows: 1fr;
	gap: 1.5rem;
}

@media (min-width: 768px) {
	.wc-services {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.wc-service {
	display: flex;
	height: 100%;
	flex-direction: column;
	border-radius: var(--wc-radius-2xl);
	background-color: #fff;
	padding: 2rem;
	transition:
		transform 0.3s var(--wc-ease),
		box-shadow 0.3s var(--wc-ease);
}

.wc-service:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 45px -18px rgba(0, 0, 0, 0.18);
}

@media (min-width: 768px) {
	.wc-service {
		padding: 2.5rem;
	}
}

.wc-service__head {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.wc-service__no {
	display: flex;
	width: 2.75rem;
	height: 2.75rem;
	flex: none;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background-color: var(--wc-ink);
	font-size: 0.875rem;
	font-weight: 600;
	color: #fff;
	transition: background-color 0.3s;
}

.wc-service:hover .wc-service__no {
	background-color: var(--wc-blue);
}

.wc-service__lead {
	margin-top: 1.25rem;
	font-size: 1rem;
	color: var(--wc-muted);
}

.wc-service__list {
	margin-top: 1.75rem;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.wc-service__list li {
	display: flex;
	gap: 0.75rem;
	font-size: 0.875rem;
	color: rgba(0, 0, 0, 0.8);
}

.wc-service__list li::before {
	content: "";
	margin-top: 0.5rem;
	width: 0.375rem;
	height: 0.375rem;
	flex: none;
	border-radius: 999px;
	background-color: var(--wc-ink);
}

.wc-service__note {
	margin-top: auto;
	padding-top: 1.5rem;
	font-size: 1rem;
	line-height: 1.625;
	color: var(--wc-muted);
}

.wc-inlinecta {
	margin-top: 3rem;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	border-radius: var(--wc-radius-2xl);
	background-color: var(--wc-paper-dim);
	padding: 2rem;
}

@media (min-width: 768px) {
	.wc-inlinecta {
		margin-top: 4rem;
		padding: 2.5rem;
	}
}

.wc-inlinecta p {
	max-width: 36rem;
	font-weight: 600;
	letter-spacing: -0.02em;
	font-size: 1.125rem;
}

@media (min-width: 768px) {
	.wc-inlinecta p {
		font-size: 1.25rem;
	}
}

/* --------------------------------------------------------------------------
   11. Telefon-mockup med statistik
   -------------------------------------------------------------------------- */

.wc-phone {
	position: relative;
	background-color: var(--wc-paper);
	padding: 3rem 0;
}

@media (min-width: 768px) {
	.wc-phone {
		padding: 4rem 0;
	}
}

.wc-phone__inner {
	position: relative;
	margin-inline: auto;
	display: flex;
	max-width: 72rem;
	flex-direction: column;
	align-items: stretch;
	gap: 2rem;
}

@media (min-width: 768px) {
	.wc-phone__inner {
		flex-direction: row;
		align-items: center;
		justify-content: center;
		gap: 1.5rem;
	}
}

@media (min-width: 1024px) {
	.wc-phone__inner {
		gap: 3rem;
	}
}

.wc-phone__text {
	order: 2;
	display: flex;
	width: 100%;
	align-items: center;
	font-size: 1rem;
	line-height: 1.625;
	color: var(--wc-muted);
}

.wc-phone__device {
	position: relative;
	order: 1;
	display: flex;
	justify-content: center;
}

.wc-phone__stats {
	order: 3;
	width: 100%;
	border: 1px solid var(--wc-border);
	border-radius: var(--wc-radius-3xl);
	background-color: #fff;
	padding: 1.25rem;
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
	.wc-phone__text {
		order: 1;
		width: 13rem;
	}

	.wc-phone__device {
		order: 2;
	}

	.wc-phone__stats {
		width: 13rem;
		padding: 1rem;
	}
}

@media (min-width: 1024px) {
	.wc-phone__text,
	.wc-phone__stats {
		width: 18rem;
	}

	.wc-phone__stats {
		padding: 1.5rem;
	}
}

.wc-phone__frame {
	position: relative;
	width: 200px;
	border-radius: 2.5rem;
	background-color: #1a1a1a;
	padding: 0.375rem;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (min-width: 640px) {
	.wc-phone__frame {
		width: 220px;
	}
}

@media (min-width: 768px) {
	.wc-phone__frame {
		width: 200px;
	}
}

@media (min-width: 1024px) {
	.wc-phone__frame {
		width: 260px;
	}
}

.wc-phone__btn {
	position: absolute;
	width: 3px;
	background-color: #2d2d2d;
}

.wc-phone__btn--a {
	left: -3px;
	top: 18%;
	height: 1.75rem;
	border-radius: 2px 0 0 2px;
}

.wc-phone__btn--b {
	left: -3px;
	top: 32%;
	height: 3rem;
	border-radius: 2px 0 0 2px;
}

.wc-phone__btn--c {
	right: -3px;
	top: 28%;
	height: 4rem;
	border-radius: 0 2px 2px 0;
}

.wc-phone__screen {
	position: relative;
	overflow: hidden;
	border-radius: 2rem;
	background-color: #000;
	/* Holder formen også før der er valgt en video. */
	aspect-ratio: 9 / 19;
}

.wc-phone__notch {
	position: absolute;
	left: 50%;
	top: 0.5rem;
	z-index: 10;
	height: 1rem;
	width: 4rem;
	transform: translateX(-50%);
	border-radius: 999px;
	background-color: #1a1a1a;
}

.wc-phone__screen video,
.wc-phone__screen img {
	aspect-ratio: 9 / 19;
	width: 100%;
	object-fit: cover;
}

.wc-phone__statgrid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem;
}

@media (min-width: 768px) {
	.wc-phone__statgrid {
		gap: 0.5rem;
	}
}

@media (min-width: 1024px) {
	.wc-phone__statgrid {
		gap: 1rem;
	}
}

.wc-stat {
	border-radius: var(--wc-radius-2xl);
	background-color: var(--wc-paper);
	padding: 1rem;
}

.wc-stat svg {
	margin-bottom: 0.5rem;
	width: 1.25rem;
	height: 1.25rem;
	stroke: var(--wc-ink);
	stroke-width: 1.5;
	fill: none;
}

.wc-stat__value {
	font-weight: 600;
	letter-spacing: -0.02em;
	font-size: 1.125rem;
	line-height: 1;
}

.wc-stat__label {
	margin-top: 0.25rem;
	font-size: 0.75rem;
	color: var(--wc-muted);
}

/* --------------------------------------------------------------------------
   12. Procestidslinje
   -------------------------------------------------------------------------- */

.wc-timeline {
	margin-top: 3rem;
}

@media (min-width: 768px) {
	.wc-timeline {
		margin-top: 4rem;
	}
}

.wc-timeline__intro {
	margin-bottom: 2rem;
	max-width: 42rem;
}

@media (min-width: 768px) {
	.wc-timeline__intro {
		margin-bottom: 3rem;
	}
}

.wc-timeline__track {
	position: relative;
}

.wc-timeline__line,
.wc-timeline__progress {
	position: absolute;
	left: 17px;
	top: 0.25rem;
	width: 1px;
}

.wc-timeline__line {
	bottom: 1rem;
	background-color: rgba(0, 0, 0, 0.1);
}

.wc-timeline__progress {
	height: calc(100% - 1.25rem);
	transform-origin: top;
	transform: scaleY(0);
	background-color: var(--wc-blue);
	transition: transform 0.15s linear;
}

@media (min-width: 768px) {
	.wc-timeline__line,
	.wc-timeline__progress {
		left: 50%;
		transform-origin: top;
		margin-left: -0.5px;
	}
}

.wc-timeline__list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

@media (min-width: 768px) {
	.wc-timeline__list {
		gap: 3rem;
	}
}

.wc-step {
	position: relative;
	padding-left: 3.5rem;
	opacity: 0;
	transform: translateY(2rem);
	transition:
		opacity 0.7s ease-out,
		transform 0.7s ease-out;
}

.wc-step.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (min-width: 768px) {
	.wc-step {
		padding-left: 0;
	}
}

.wc-step__node {
	position: absolute;
	left: 0;
	top: 0.25rem;
	z-index: 10;
	display: flex;
	width: 2.25rem;
	height: 2.25rem;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--wc-input);
	border-radius: 999px;
	background-color: var(--wc-paper);
	color: var(--wc-muted);
	font-size: 0.75rem;
	font-weight: 700;
	transform: scale(0.75);
	transition: all 0.5s;
}

.wc-step.is-visible .wc-step__node {
	border-color: var(--wc-blue);
	background-color: var(--wc-blue);
	color: #fff;
	transform: scale(1);
}

@media (min-width: 768px) {
	.wc-step__node {
		left: 50%;
		margin-left: -1.125rem;
	}
}

.wc-step__cols {
	display: block;
}

@media (min-width: 768px) {
	.wc-step__cols {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 4rem;
	}

	.wc-step--right .wc-step__cols > div {
		grid-column-start: 2;
	}
}

.wc-step__card {
	position: relative;
	height: 100%;
	border-radius: var(--wc-radius-2xl);
	background-color: #fff;
	padding: 1.75rem;
	transition:
		transform 0.3s ease-out,
		box-shadow 0.3s ease-out;
	overflow: hidden;
}

.wc-step__card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 45px -18px rgba(0, 0, 0, 0.22);
}

@media (min-width: 768px) {
	.wc-step__card {
		padding: 2rem;
	}
}

.wc-step__label {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: var(--wc-muted);
	transition: color 0.3s;
}

.wc-step__card:hover .wc-step__label {
	color: var(--wc-blue);
}

.wc-step__title {
	margin-top: 0.5rem;
	font-size: 1.125rem;
}

@media (min-width: 768px) {
	.wc-step__title {
		font-size: 1.25rem;
	}
}

.wc-step__text {
	margin-top: 0.75rem;
	font-size: 0.875rem;
	line-height: 1.625;
	color: var(--wc-muted);
}

@media (min-width: 768px) {
	.wc-step__text {
		font-size: 1rem;
	}
}

.wc-step__underline {
	position: absolute;
	left: 1.75rem;
	right: 1.75rem;
	bottom: 0;
	height: 2px;
	transform-origin: left;
	transform: scaleX(0);
	border-radius: 999px;
	background-color: var(--wc-blue);
	transition: transform 0.3s ease-out;
}

.wc-step__card:hover .wc-step__underline {
	transform: scaleX(1);
}

@media (min-width: 768px) {
	.wc-step__underline {
		left: 2rem;
		right: 2rem;
	}
}

/* --------------------------------------------------------------------------
   13. Video-CTA
   -------------------------------------------------------------------------- */

.wc-videocta {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.wc-videocta video,
.wc-videocta > img {
	height: 16rem;
	width: 100%;
	object-fit: cover;
}

@media (min-width: 640px) {
	.wc-videocta video,
	.wc-videocta > img {
		height: 20rem;
	}
}

@media (min-width: 768px) {
	.wc-videocta video,
	.wc-videocta > img {
		height: 24rem;
	}
}

@media (min-width: 1024px) {
	.wc-videocta video,
	.wc-videocta > img {
		height: 28rem;
	}
}

.wc-videocta--short video,
.wc-videocta--short > img {
	height: 10rem;
}

@media (min-width: 640px) {
	.wc-videocta--short video,
	.wc-videocta--short > img {
		height: 12rem;
	}
}

@media (min-width: 768px) {
	.wc-videocta--short video,
	.wc-videocta--short > img {
		height: 14rem;
	}
}

@media (min-width: 1024px) {
	.wc-videocta--short video,
	.wc-videocta--short > img {
		height: 16rem;
	}
}

.wc-videocta__scrim {
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.55);
}

.wc-videocta__inner {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-inline: 1.5rem;
	text-align: center;
}

.wc-videocta__box {
	max-width: 42rem;
}

.wc-videocta h2 {
	font-size: 1.5rem;
	color: #fff;
}

@media (min-width: 768px) {
	.wc-videocta h2 {
		font-size: 2.25rem;
	}
}

.wc-videocta p {
	margin-top: 1rem;
	font-size: 1rem;
	line-height: 1.625;
	color: rgba(255, 255, 255, 0.8);
}

.wc-videocta .wc-btn {
	margin-top: 1.75rem;
}

/* --------------------------------------------------------------------------
   14. Studio / Om os-blok
   -------------------------------------------------------------------------- */

.wc-studio {
	background-color: var(--wc-paper-dim);
	padding: 4rem var(--wc-gutter);
}

@media (min-width: 768px) {
	.wc-studio {
		padding-block: 5rem;
	}
}

.wc-studio__grid {
	display: grid;
	gap: 2rem;
}

@media (min-width: 1024px) {
	.wc-studio__grid {
		grid-template-columns: repeat(12, minmax(0, 1fr));
		gap: 3.5rem;
	}

	.wc-studio__intro {
		grid-column: span 5 / span 5;
		justify-content: center;
	}

	.wc-studio__people {
		grid-column: span 7 / span 7;
	}
}

.wc-studio__intro {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.wc-studio__intro h2 {
	margin-top: 0.75rem;
}

.wc-studio__intro p {
	margin-top: 1.5rem;
	max-width: 28rem;
}

.wc-studio__numbers {
	display: grid;
	gap: 1rem;
	margin: 0;
}

@media (min-width: 640px) {
	.wc-studio__numbers {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.wc-studio__number {
	border-radius: var(--wc-radius-2xl);
	background-color: #fff;
	padding: 1.5rem;
	text-align: center;
}

@media (min-width: 640px) {
	.wc-studio__number {
		text-align: left;
	}
}

.wc-studio__number dd {
	margin: 0;
	font-weight: 600;
	letter-spacing: -0.02em;
	font-size: 1.875rem;
}

.wc-studio__number dt {
	margin-top: 0.5rem;
	font-size: 0.875rem;
}

.wc-studio__people {
	display: grid;
	align-items: start;
	gap: 1.5rem;
}

@media (min-width: 640px) {
	.wc-studio__people {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.wc-person {
	overflow: hidden;
	border-radius: var(--wc-radius-2xl);
	background-color: #fff;
	transition:
		transform 0.3s var(--wc-ease),
		box-shadow 0.3s var(--wc-ease);
}

.wc-person:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 45px -18px rgba(0, 0, 0, 0.18);
}

.wc-person__media {
	aspect-ratio: 4 / 5;
	width: 100%;
	overflow: hidden;
	background-color: var(--wc-paper-dim);
}

/* Udsnittet sættes pr. medarbejder med object-position (feltet "Billedudsnit"). */
.wc-person__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	transition: transform 0.7s var(--wc-ease);
}

.wc-person:hover .wc-person__media img {
	transform: scale(1.05);
}

.wc-person__body {
	padding: 1.5rem;
}

.wc-person__name {
	font-size: 1.25rem;
}

.wc-person__role {
	margin-top: 0.25rem;
	font-size: 0.875rem;
	color: var(--wc-muted);
}

.wc-person__contact {
	margin-top: 1rem;
	font-size: 0.875rem;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.wc-person__contact a:hover {
	color: rgba(0, 0, 0, 0.7);
}

.wc-person__contact a + a {
	color: var(--wc-muted);
}

/* Team-grid på Om os */
.wc-team {
	display: grid;
	gap: 1.25rem;
}

@media (min-width: 640px) {
	.wc-team {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 768px) {
	.wc-team {
		gap: 1.5rem;
	}
}

@media (min-width: 1024px) {
	.wc-team {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.wc-team .wc-person__body {
	padding: 1.25rem;
}

.wc-team .wc-person__name {
	font-size: 1.125rem;
}

/* --------------------------------------------------------------------------
   15. Bundkontakt og footer
   -------------------------------------------------------------------------- */

.wc-bottomcontact {
	border-top: 1px solid var(--wc-border);
	background-color: var(--wc-paper);
	padding: 2rem var(--wc-gutter);
}

@media (min-width: 768px) {
	.wc-bottomcontact {
		padding-block: 2.5rem;
	}
}

.wc-bottomcontact__mail {
	margin-top: 1.5rem;
	display: block;
	width: 100%;
	border: 2px solid var(--wc-ink);
	border-radius: 999px;
	background-color: var(--wc-paper);
	padding-block: 2rem;
	text-align: center;
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--wc-ink);
	transition:
		background-color 0.25s,
		color 0.25s;
	word-break: break-word;
}

.wc-bottomcontact__mail:hover {
	background-color: var(--wc-ink);
	color: #fff;
}

@media (min-width: 768px) {
	.wc-bottomcontact__mail {
		margin-top: 2rem;
		padding-block: 3.5rem;
		font-size: 3rem;
	}
}

.wc-footer {
	background-color: var(--wc-paper);
	padding: 3.5rem var(--wc-gutter) 2.5rem;
	color: var(--wc-ink);
}

@media (min-width: 768px) {
	.wc-footer {
		padding-top: 5rem;
	}
}

.wc-footer__cta {
	border-radius: var(--wc-radius-2xl);
	background-color: var(--wc-paper-dim);
	padding: 2rem;
}

@media (min-width: 768px) {
	.wc-footer__cta {
		padding: 3rem;
	}
}

.wc-footer__cta h2 {
	max-width: 42rem;
	font-size: 1.5rem;
	line-height: 1.2;
}

@media (min-width: 768px) {
	.wc-footer__cta h2 {
		font-size: 2.25rem;
	}
}

.wc-footer__cta p {
	margin-top: 1.25rem;
	max-width: 36rem;
	font-size: 1rem;
	color: rgba(0, 0, 0, 0.7);
}

.wc-footer__cta-actions {
	margin-top: 2rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.wc-footer__cols {
	margin-top: 3rem;
	display: grid;
	gap: 2.5rem;
}

@media (min-width: 768px) {
	.wc-footer__cols {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.wc-footer__brand {
		grid-column: span 2 / span 2;
	}
}

.wc-footer__brand img {
	height: 2.5rem;
	width: auto;
	margin-bottom: 1.25rem;
}

.wc-footer__brand img.wc-logo--invertible {
	filter: brightness(0);
}

.wc-footer__brand p {
	max-width: 20rem;
	font-size: 0.875rem;
	line-height: 1.625;
	color: rgba(0, 0, 0, 0.6);
}

.wc-footer h3 {
	margin-bottom: 1.25rem;
	font-size: 0.875rem;
	font-weight: 600;
}

.wc-footer ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	font-size: 0.875rem;
	color: rgba(0, 0, 0, 0.6);
}

.wc-footer address,
.wc-footer address p {
	font-size: 0.875rem;
	line-height: 1.7;
	color: rgba(0, 0, 0, 0.6);
}

.wc-footer a:hover {
	color: var(--wc-ink);
}

.wc-footer__bottom {
	margin-top: 2.5rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 1rem;
	border-top: 1px solid var(--wc-border);
	padding-top: 2rem;
	font-size: 0.75rem;
	color: rgba(0, 0, 0, 0.4);
}

/* --------------------------------------------------------------------------
   16. Formularer
   -------------------------------------------------------------------------- */

.wc-form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.wc-field {
	display: flex;
	flex-direction: column;
	gap: 0.375rem;
}

.wc-field label {
	font-size: 0.875rem;
	font-weight: 500;
}

.wc-input,
.wc-textarea {
	width: 100%;
	font-family: inherit;
	font-size: 1rem;
	color: var(--wc-ink);
	background-color: #fff;
	border: 1px solid var(--wc-input);
	border-radius: 0.75rem;
	padding: 0 1rem;
	height: 3rem;
	transition:
		border-color 0.2s,
		box-shadow 0.2s;
}

.wc-textarea {
	min-height: 120px;
	height: auto;
	padding: 0.75rem 1rem;
	resize: vertical;
	line-height: 1.6;
}

.wc-input::placeholder,
.wc-textarea::placeholder {
	color: rgba(86, 86, 86, 0.6);
}

.wc-input:focus,
.wc-textarea:focus {
	outline: none;
	border-color: var(--wc-ink);
	box-shadow: 0 0 0 1px var(--wc-ink);
}

.wc-form__submit {
	height: 3rem;
	width: 100%;
	border-radius: 0.75rem;
	font-size: 1rem;
}

.wc-consent {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
}

.wc-consent input[type="checkbox"] {
	margin-top: 0.2rem;
	width: 1rem;
	height: 1rem;
	flex: none;
	accent-color: var(--wc-ink);
}

.wc-consent label {
	font-size: 0.875rem;
	line-height: 1.4;
	color: var(--wc-muted);
	font-weight: 400;
}

.wc-honeypot {
	position: absolute !important;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.wc-notice {
	border-radius: 0.75rem;
	padding: 0.875rem 1rem;
	font-size: 0.875rem;
	line-height: 1.5;
}

.wc-notice--ok {
	background-color: rgba(28, 91, 214, 0.08);
	color: var(--wc-ink);
	border: 1px solid rgba(28, 91, 214, 0.25);
}

.wc-notice--error {
	background-color: rgba(214, 28, 28, 0.08);
	color: #7a1010;
	border: 1px solid rgba(214, 28, 28, 0.25);
}

.wc-formcard {
	border-radius: var(--wc-radius-2xl);
	background-color: #fff;
	padding: 1.5rem;
}

@media (min-width: 768px) {
	.wc-formcard {
		padding: 2.5rem;
	}
}

.wc-formcard h2 {
	text-align: center;
	font-size: 1.25rem;
}

@media (min-width: 768px) {
	.wc-formcard h2 {
		font-size: 1.5rem;
	}
}

.wc-formcard .wc-form {
	margin-top: 1.5rem;
}

/* Bundkontaktens variant med understregede felter */
.wc-form--underline .wc-input,
.wc-form--underline .wc-textarea {
	border: 0;
	border-bottom: 1px solid var(--wc-input);
	border-radius: 0;
	background-color: transparent;
	padding-inline: 0;
}

.wc-form--underline .wc-input:focus,
.wc-form--underline .wc-textarea:focus {
	box-shadow: none;
	border-bottom-color: var(--wc-ink);
}

.wc-form--underline .wc-grid2 {
	display: grid;
	gap: 2rem;
}

@media (min-width: 768px) {
	.wc-form--underline .wc-grid2 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.wc-form--underline .wc-form__submit {
	width: auto;
	border-radius: 999px;
	padding-inline: 2rem;
}

/* --------------------------------------------------------------------------
   17. Kontaktside
   -------------------------------------------------------------------------- */

.wc-contact-hero {
	background-color: var(--wc-paper);
	padding: 9rem var(--wc-gutter) 3.5rem;
	text-align: center;
}

@media (min-width: 768px) {
	.wc-contact-hero {
		padding-top: 11rem;
		padding-bottom: 5rem;
	}
}

.wc-contact-hero h1 {
	margin-top: 0.75rem;
	font-size: 1.875rem;
	line-height: 1.2;
}

@media (min-width: 768px) {
	.wc-contact-hero h1 {
		font-size: 3rem;
	}
}

.wc-contact-hero p {
	margin: 1.25rem auto 0;
	max-width: 36rem;
	font-size: 1.125rem;
	line-height: 1.625;
	color: var(--wc-muted);
}

.wc-contact-hero__actions {
	margin-top: 2rem;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
}

.wc-infogrid {
	display: grid;
	gap: 1rem;
}

@media (min-width: 640px) {
	.wc-infogrid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.wc-infogrid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

.wc-infocard {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	border-radius: var(--wc-radius-2xl);
	background-color: #fff;
	padding: 1rem;
	transition: box-shadow 0.3s;
}

a.wc-infocard:hover {
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.wc-infocard__icon {
	display: flex;
	width: 2.5rem;
	height: 2.5rem;
	flex: none;
	align-items: center;
	justify-content: center;
	border-radius: 0.75rem;
	background-color: rgba(28, 91, 214, 0.1);
	color: var(--wc-blue);
	transition:
		background-color 0.25s,
		color 0.25s;
}

a.wc-infocard:hover .wc-infocard__icon {
	background-color: var(--wc-blue);
	color: #fff;
}

.wc-infocard__label {
	display: block;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--wc-muted);
}

.wc-infocard__value {
	display: block;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.35;
}

.wc-howto {
	margin-top: 2rem;
	display: grid;
	gap: 1.5rem;
}

@media (min-width: 768px) {
	.wc-howto {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.wc-howto__card {
	height: 100%;
	border-radius: var(--wc-radius-2xl);
	background-color: #fff;
	padding: 1.5rem;
	transition: box-shadow 0.3s;
}

.wc-howto__card:hover {
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
	.wc-howto__card {
		padding: 1.75rem;
	}
}

.wc-howto__no {
	font-size: 1.875rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--wc-blue);
}

.wc-howto__card h3 {
	margin-top: 0.75rem;
	font-size: 1rem;
	font-weight: 600;
}

@media (min-width: 768px) {
	.wc-howto__card h3 {
		font-size: 1.125rem;
	}
}

.wc-howto__card p {
	margin-top: 0.375rem;
	font-size: 0.875rem;
	line-height: 1.625;
	color: var(--wc-muted);
}

.wc-darkcta {
	border-radius: var(--wc-radius-3xl);
	background-color: var(--wc-ink);
	padding: 3rem 1.5rem;
	text-align: center;
	color: #fff;
}

@media (min-width: 768px) {
	.wc-darkcta {
		padding: 4rem 3rem;
	}
}

.wc-darkcta h2 {
	font-size: 1.5rem;
	line-height: 1.2;
}

@media (min-width: 768px) {
	.wc-darkcta h2 {
		font-size: 2.25rem;
	}
}

.wc-darkcta p {
	margin: 0.75rem auto 0;
	max-width: 32rem;
	font-size: 1rem;
	line-height: 1.625;
	color: rgba(255, 255, 255, 0.7);
}

.wc-darkcta__actions {
	margin-top: 1.75rem;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
}

.wc-darkcta .wc-btn--outline {
	border-color: rgba(255, 255, 255, 0.2);
	color: #fff;
}

.wc-darkcta .wc-btn--outline:hover {
	background-color: rgba(255, 255, 255, 0.1);
	color: #fff;
}

/* --------------------------------------------------------------------------
   18. Vision-sektion (Om os)
   -------------------------------------------------------------------------- */

.wc-vision {
	display: grid;
	align-items: center;
	gap: 2rem;
}

@media (min-width: 768px) {
	.wc-vision {
		grid-template-columns: repeat(12, minmax(0, 1fr));
		gap: 3rem;
	}

	.wc-vision__media {
		grid-column: span 6 / span 6;
	}

	.wc-vision__body {
		grid-column: 8 / span 5;
	}
}

.wc-vision__phone {
	position: relative;
	width: 220px;
	margin-inline: auto;
	overflow: hidden;
	border-radius: 2rem;
	background-color: #000;
	box-shadow: 0 28px 70px -18px rgba(0, 0, 0, 0.35);
	aspect-ratio: 9 / 19;
}

@media (min-width: 640px) {
	.wc-vision__phone {
		width: 260px;
	}
}

@media (min-width: 768px) {
	.wc-vision__phone {
		width: 280px;
	}
}

.wc-vision__phone video,
.wc-vision__phone img {
	aspect-ratio: 9 / 19;
	width: 100%;
	object-fit: cover;
}

.wc-vision__body h2 {
	font-size: 1.5rem;
	line-height: 1.2;
}

@media (min-width: 768px) {
	.wc-vision__body h2 {
		font-size: 2.25rem;
	}
}

.wc-prose {
	margin-top: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	font-size: 1rem;
	line-height: 1.7;
	color: var(--wc-muted);
}

/* --------------------------------------------------------------------------
   19. Reveal-animationer
   -------------------------------------------------------------------------- */

.wc-reveal {
	opacity: 0;
	transform: translateY(1.5rem);
	transition:
		opacity 0.7s var(--wc-ease),
		transform 0.7s var(--wc-ease);
}

.wc-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@keyframes wc-reveal-in {
	from {
		opacity: 0;
		transform: translateY(24px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.wc-animate-in {
	animation: wc-reveal-in 0.9s var(--wc-ease) both;
}

/* Fallback hvis JavaScript er slået fra — indhold skal altid kunne ses. */
.no-js .wc-reveal,
.no-js .wc-step {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}

	.wc-reveal,
	.wc-step {
		opacity: 1;
		transform: none;
	}
}

/* --------------------------------------------------------------------------
   20. Standardsider, indlæg, 404 og blokindhold
   -------------------------------------------------------------------------- */

.wc-page {
	padding-top: 9rem;
}

.wc-entry {
	max-width: 48rem;
	margin-inline: auto;
}

.wc-entry__title {
	font-size: 1.875rem;
	line-height: 1.2;
}

@media (min-width: 768px) {
	.wc-entry__title {
		font-size: 2.25rem;
	}
}

.wc-entry__thumb {
	margin-top: 2rem;
	border-radius: var(--wc-radius-2xl);
	overflow: hidden;
}

.wc-entry__content {
	margin-top: 2rem;
	font-size: 1rem;
	line-height: 1.75;
	color: var(--wc-ink);
}

.wc-entry__content > * + * {
	margin-top: 1.25rem;
}

.wc-entry__content h2,
.wc-entry__content h3,
.wc-entry__content h4 {
	font-weight: 600;
	letter-spacing: -0.02em;
	margin-top: 2.5rem;
}

.wc-entry__content h2 {
	font-size: 1.5rem;
}

.wc-entry__content h3 {
	font-size: 1.25rem;
}

.wc-entry__content ul,
.wc-entry__content ol {
	padding-left: 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.wc-entry__content ul {
	list-style: disc;
}

.wc-entry__content ol {
	list-style: decimal;
}

.wc-entry__content a {
	color: var(--wc-blue);
	text-decoration: underline;
}

.wc-entry__content img,
.wc-entry__content .wp-block-image img {
	border-radius: var(--wc-radius);
}

.wc-entry__content blockquote {
	border-left: 3px solid var(--wc-blue);
	padding-left: 1.25rem;
	color: var(--wc-muted);
}

.wc-entry__content .alignwide {
	max-width: none;
}

.wc-404 {
	display: flex;
	min-height: 70vh;
	align-items: center;
	justify-content: center;
	padding-inline: 1rem;
	text-align: center;
}

.wc-404 h1 {
	font-size: 4.5rem;
	font-weight: 700;
	line-height: 1;
}

.wc-404 h2 {
	margin-top: 1rem;
	font-size: 1.25rem;
	font-weight: 600;
}

.wc-404 p {
	margin-top: 0.5rem;
	font-size: 0.875rem;
	color: var(--wc-muted);
}

.wc-404 .wc-btn {
	margin-top: 1.5rem;
}

.wc-archive {
	display: grid;
	gap: 1.5rem;
	margin-top: 2.5rem;
}

@media (min-width: 768px) {
	.wc-archive {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.wc-archive {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.wc-pagination {
	margin-top: 3rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	justify-content: center;
}

.wc-pagination .page-numbers {
	display: inline-flex;
	min-width: 2.5rem;
	height: 2.5rem;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background-color: #fff;
	padding-inline: 0.75rem;
	font-size: 0.875rem;
	font-weight: 600;
}

.wc-pagination .page-numbers.current {
	background-color: var(--wc-ink);
	color: #fff;
}

/* Hjælpeklasser brugt i skabelonerne */
.wc-mt-sm {
	margin-top: 1rem;
}

.wc-mt {
	margin-top: 1.5rem;
}

.wc-mt-lg {
	margin-top: 2rem;
}

.wc-mt-xl {
	margin-top: 3rem;
}

@media (min-width: 768px) {
	.wc-mt-xl {
		margin-top: 4rem;
	}
}

.wc-text-center {
	text-align: center;
}

.wc-flex-start {
	display: flex;
	justify-content: flex-start;
}

.wc-headrow {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
	.wc-headrow {
		margin-bottom: 2rem;
	}
}
