/*
 * Däckpoint – design adjustments on top of BusiCare.
 * Loaded after the parent's style.css and default.css.
 * Tokens and rules follow docs/superpowers/specs/2026-09-25-dackpoint-polish-brief.md.
 */

:root {
	--dp-navy: #1c314c;
	--dp-navy-deep: #142538;
	--dp-blue: #22a2c4;
	--dp-blue-dark: #1b86a3;
	--dp-blue-ink: #177e9a; /* blue text on white or light: 4.7:1 */
	--dp-blue-tint: rgba(34, 162, 196, .12);
	--dp-paper: #ffffff;
	--dp-light: #f1f4f8;
	--dp-text: #3b4654;
	--dp-muted: #64717f;
	--dp-line: #dfe5ec;
	--dp-radius: 6px;
	--dp-measure: 720px;
	--dp-ease: .2s ease;
	--dp-gutter: 12px; /* Bootstrap's; the fluid rule below 1200px widens it */
}

/* Page ------------------------------------------------------------- */
/* The parent scales the root to 14px under 992px and 12px under 769px, which
   makes body copy about 13px on phones. One root size keeps the type scale. */
html {
	font-size: 100% !important;
}
/* Grid: below 1200px every container is fluid with one gutter, so the top
   bar, header, content and footer share a left edge. Bootstrap otherwise
   caps the header at 720/960px while the parent's content runs full width. */
@media (max-width: 1199px) {
	:root {
		--dp-gutter: 24px;
	}
	/* #content and the footer selectors match the parent's inline rules. */
	.container,
	#content .container,
	#wrapper .site-footer .container {
		max-width: none;
		padding-left: var(--dp-gutter);
		padding-right: var(--dp-gutter);
	}
}
@media (max-width: 575px) {
	:root {
		--dp-gutter: 16px;
	}
}
/* The parent paints #page grey; the light panels and hairline cards need white behind them. */
#page,
#wrapper {
	background: var(--dp-paper);
}

/* Focus and motion --------------------------------------------------- */
.dp-btn:focus-visible,
.wp-block-button__link:focus-visible,
.dp-card:focus-visible,
.dp-faq__item summary:focus-visible,
.dp-topbar a:focus-visible,
.dp-footer a:focus-visible,
.navbar-toggler:focus-visible,
.navbar .nav-link:focus-visible,
.navbar .dropdown-item:focus-visible {
	outline: 3px solid var(--dp-blue);
	outline-offset: 2px;
}
/* On the blue CTA panel a blue ring disappears. */
.dp-cta .wp-block-button__link:focus-visible {
	outline-color: #fff;
}
@media (prefers-reduced-motion: reduce) {
	.dp-btn,
	.wp-block-button__link,
	.dp-card,
	.dp-faq__item summary::after,
	.navbar-toggler-icon,
	.navbar-toggler-icon::before,
	.navbar-toggler-icon::after,
	.navbar-nav .sub-arrow::before {
		transition: none !important;
	}
}
/* Bootstrap's collapse runs 350ms; the house timing is 200ms. */
.collapsing {
	transition-duration: .2s;
}

/* Buttons ------------------------------------------------------------ */
/* Scoped to the link. The block wrapper carries the same classes, and an
   unscoped .dp-btn used to pad and colour both, which doubled the height. */
a.dp-btn,
.wp-block-button.dp-btn .wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .5em;
	height: 48px;
	padding: 0 24px;
	border: 2px solid transparent;
	border-radius: var(--dp-radius);
	font-size: 1rem;
	font-weight: 600;
	line-height: 1;
	white-space: nowrap;
	text-decoration: none;
	font-variant-numeric: tabular-nums;
	transition: background-color var(--dp-ease), color var(--dp-ease), border-color var(--dp-ease);
}
.wp-block-button.dp-btn .wp-block-button__link {
	margin-left: 0; /* the parent adds 3px */
}
a.dp-btn--primary,
.wp-block-button.dp-btn--primary .wp-block-button__link {
	background: var(--dp-blue);
	color: #fff;
}
a.dp-btn--primary:hover,
a.dp-btn--primary:focus,
.wp-block-button.dp-btn--primary .wp-block-button__link:hover,
.wp-block-button.dp-btn--primary .wp-block-button__link:focus {
	background: var(--dp-blue-dark);
	color: #fff;
}
a.dp-btn--secondary,
.wp-block-button.dp-btn--secondary .wp-block-button__link {
	background: transparent;
	color: var(--dp-navy) !important; /* the parent forces white on block buttons */
	border-color: var(--dp-navy);
}
a.dp-btn--secondary:hover,
a.dp-btn--secondary:focus,
.wp-block-button.dp-btn--secondary .wp-block-button__link:hover,
.wp-block-button.dp-btn--secondary .wp-block-button__link:focus {
	background: var(--dp-navy);
	color: #fff !important;
}
/* Number inside a call button: hidden on touch devices, shown on pointer devices. */
.dp-btn__num {
	display: none;
	font-weight: 500;
}
@media (hover: hover) and (pointer: fine) {
	.dp-btn__num { display: inline; }
}
@media (max-width: 575px) {
	.wp-block-buttons .wp-block-button.dp-btn,
	.wp-block-buttons .wp-block-button.dp-btn .wp-block-button__link {
		width: 100%;
	}
}

/* Page title on pages the build does not own ------------------------- */
/* Built pages carry their own h1 (inc/page-title.php turns the banner off). */
.page-title-section,
.page-title-section .overlay {
	background: var(--dp-light) !important;
	background-image: none !important;
}
.page-title-section .breadcrumb-overlay {
	padding: 40px 0;
}
.page-title-section .page-title.text-white h1 {
	text-align: left;
	color: var(--dp-navy) !important; /* the parent prints an inline !important white */
	font-size: clamp(1.75rem, .5rem + 3vw, 2.75rem);
	letter-spacing: -.02em;
	line-height: 1.1;
}
.page-title-section .page-breadcrumb {
	text-align: left;
	color: var(--dp-muted);
}
.page-title-section .page-breadcrumb a {
	color: var(--dp-navy);
}
/* The parent's drop-shadow strip under the banner (and under the header when the banner is off). */
.page-seperate {
	display: none;
}

/* Hero --------------------------------------------------------------- */
.dp-hero {
	position: relative;
	background: var(--dp-navy);
}
.dp-hero__slide {
	position: relative;
	display: flex;
	align-items: center;
	min-height: min(78vh, 720px);
	background-size: cover;
	background-position: center;
	color: #fff;
}
/* Before Owl initialises, only the first slide is visible. */
.dp-hero__slides:not(.owl-loaded) .dp-hero__slide:not(:first-child) {
	display: none;
}
.dp-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(28, 49, 76, .62), rgba(28, 49, 76, .85));
}
.dp-hero__content {
	position: relative;
	z-index: 1;
	text-align: center;
	padding: 96px 16px;
}
.dp-hero .dp-hero__title {
	color: #fff;
	font-size: clamp(1.875rem, .75rem + 3.75vw, 3.5rem); /* 30px at 390, 42 at 800, 56 from 1173 */
	font-weight: 700;
	line-height: 1.1;
	margin: 0 0 16px;
	text-shadow: 0 2px 12px rgba(0, 0, 0, .35);
}
/* Two classes so it beats the parent's inline p:not(...) { color:#777 }. */
.dp-hero .dp-hero__text {
	font-size: 1.25rem;
	line-height: 1.5;
	max-width: 640px;
	margin: 0 auto 32px;
	color: rgba(255, 255, 255, .92);
	text-shadow: 0 2px 12px rgba(0, 0, 0, .35);
}
.dp-hero .owl-dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 20px;
	text-align: center;
}
/* Each dot is a 24px target around a 10px mark. */
.dp-hero .owl-dots .owl-dot {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
}
.dp-hero .owl-dots .owl-dot span {
	display: inline-block;
	width: 10px;
	height: 10px;
	margin: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, .5);
}
.dp-hero .owl-dots .owl-dot.active span {
	background: #fff;
}
@media (max-width: 991px) {
	.dp-hero__slide {
		min-height: min(60vh, 560px);
		min-height: min(60svh, 560px);
	}
	.dp-hero__content { padding: 64px 16px; }
}
@media (max-width: 575px) {
	.dp-hero__slide {
		min-height: min(60vh, 480px);
		min-height: min(60svh, 480px);
	}
	.dp-hero__content { padding: 48px 16px; }
	.dp-hero .dp-hero__title { margin-bottom: 12px; }
	.dp-hero .dp-hero__text { margin-bottom: 24px; }
}

/* Service section ---------------------------------------------------- */
.section-space.services {
	background: var(--dp-light);
	padding: 80px 0 64px;
}
.services .section-header {
	text-align: left;
	margin: 0 0 32px;
}
.services .section-header .section-title {
	color: var(--dp-navy);
	font-size: 1.75rem;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -.01em;
}
.services .title_seprater {
	display: none;
}
.services .dp-card {
	display: block;
	height: 100%;
	margin: 0;
	padding: 28px;
	border: 1px solid var(--dp-line);
	border-radius: var(--dp-radius);
	background: var(--dp-paper);
	color: inherit;
	text-align: left;
	text-decoration: none;
	transform: none;
	box-shadow: none;
	transition: border-color var(--dp-ease);
}
.services .dp-card:hover,
.services .dp-card--link:hover,
.services .dp-card--link:focus {
	background: var(--dp-paper);
	border-color: var(--dp-blue);
	transform: none;
	box-shadow: none;
}
.services .dp-card .post-thumbnail {
	margin: 0 0 20px;
	text-align: left;
}
.services .dp-card .post-thumbnail i.fa {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: var(--dp-blue-tint);
	color: var(--dp-blue);
	font-size: 1.75rem;
	line-height: 1;
}
.services .dp-card:hover .post-thumbnail i.fa {
	background: var(--dp-blue-tint);
	color: var(--dp-blue);
	border: 0;
}
.services .dp-card .entry-header {
	margin: 0 0 8px;
}
.services .dp-card .entry-title {
	color: var(--dp-navy);
	font-size: 1.25rem;
	margin: 0;
	transition: color var(--dp-ease);
}
.services .dp-card--link:hover .entry-title {
	color: var(--dp-blue);
}
.services .dp-card .entry-content p {
	color: var(--dp-muted);
	font-size: 1rem;
	line-height: 1.6;
	margin: 0;
}
.services .col-md-4 {
	margin-bottom: 24px;
}
@media (max-width: 991px) {
	.section-space.services {
		padding: 64px 0 48px;
	}
	.services .dp-card {
		padding: 24px;
	}
	.services .dp-card .post-thumbnail i.fa {
		width: 56px;
		height: 56px;
		font-size: 1.5rem;
	}
}
@media (max-width: 575px) {
	.services .dp-card {
		display: grid;
		grid-template-columns: 48px 1fr;
		column-gap: 16px;
		padding: 16px 20px;
	}
	.services .dp-card .post-thumbnail {
		grid-row: 1 / 3;
		margin: 0;
	}
	.services .dp-card .post-thumbnail i.fa {
		width: 48px;
		height: 48px;
		font-size: 1.375rem;
	}
	.services .col-md-4 {
		margin-bottom: 12px;
	}
	.section-space.services {
		padding: 48px 0 32px;
	}
}

/* Header top bar ----------------------------------------------------- */
.dp-topbar {
	background: var(--dp-navy);
	color: #fff;
	font-size: .9rem;
}
.dp-topbar__inner {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 24px;
	min-height: 44px;
}
.dp-topbar__phone {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	color: #fff;
	font-weight: 600;
	font-size: .95rem;
	font-variant-numeric: tabular-nums;
	text-decoration: none;
	white-space: nowrap;
}
.dp-topbar__phone:hover,
.dp-topbar__phone:focus {
	color: var(--dp-blue);
}
.dp-topbar__phone .fa {
	margin-right: 6px;
}
/* Booking button: phone and tablet only, where the menu CTA sits behind the toggler. */
a.dp-topbar__cta {
	display: none;
	height: 32px;
	padding: 0 14px;
	font-size: .875rem;
}
@media (max-width: 991px) {
	.dp-topbar__inner { min-height: 48px; }
	a.dp-topbar__cta { display: inline-flex; height: 40px; }
}
@media (max-width: 767px) {
	.dp-topbar__text { display: none; }
	/* Phone left, button right: the same split as the logo and Meny under it. */
	.dp-topbar__inner { justify-content: space-between; gap: 16px; }
}

/* Header row --------------------------------------------------------- */
/* The parent floats the logo and blocks the container, which leaves the
   title and the links on different centre lines. Flex aligns them. */
@media (min-width: 992px) {
	.navbar > .container {
		display: flex;
		align-items: center;
		justify-content: space-between;
		flex-wrap: nowrap;
	}
	.navbar .header-logo {
		float: none;
		display: flex;
		align-items: center;
	}
	.navbar .navbar-collapse {
		flex-grow: 0;
		margin-top: 0; /* the parent's 10px pushed the links below the title's centre line */
	}
	.navbar .header-logo {
		flex-shrink: 0;
	}
	/* One row: never wrap the links under the title. */
	.navbar .navbar-nav {
		flex-wrap: nowrap;
	}
	/* The parent gives every item a right margin; the last real item
	   (Boka tid) sits on the container's right edge like the top bar. */
	.navbar .nav > .nav-item.dp-menu-cta {
		margin-right: 0;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	.navbar .nav > .nav-item {
		margin-right: 18px;
	}
}
.navbar .site-title {
	line-height: 1;
}
.navbar .nav .nav-item .nav-link {
	font-weight: 500;
}

/* Dropdown (desktop). The parent unsets only the bottom border with
   !important, which left Bootstrap's hairline on three sides. */
@media (min-width: 992px) {
	.navbar .nav .dropdown-menu {
		min-width: 220px;
		margin-top: 8px;
		padding: 8px 0;
		border: 1px solid var(--dp-line) !important;
		border-radius: var(--dp-radius);
		background: var(--dp-paper);
		box-shadow: 0 12px 32px rgba(28, 49, 76, .14);
	}
	.navbar .nav .dropdown-menu .dropdown-item,
	.navbar .nav .dropdown-menu li > a {
		padding: 6px 20px;
		color: var(--dp-navy);
		font-weight: 400;
		white-space: nowrap;
	}
	.navbar .nav .dropdown-menu li > a:hover,
	.navbar .nav .dropdown-menu li > a:focus {
		color: var(--dp-blue-ink);
		background: var(--dp-light);
	}
}

/* Menu CTA ----------------------------------------------------------- */
.navbar .nav-item.dp-menu-cta > a {
	display: inline-flex;
	align-items: center;
	height: 44px;
	background: var(--dp-blue);
	color: #fff !important;
	border-radius: var(--dp-radius);
	padding: 0 20px !important;
	margin-left: 12px;
	font-weight: 600;
}
.navbar .nav-item.dp-menu-cta > a:hover,
.navbar .nav-item.dp-menu-cta > a:focus {
	background: var(--dp-blue-dark);
}

/* Header row and menu below 992px ------------------------------------ */
/* Bootstrap collapses the menu behind the toggler here and SmartMenus runs
   it in collapsible mode. The parent leaves Bootstrap's grey toggler, a
   boxed "+" for submenus and an inset list; this restyles all of it. */
@media (max-width: 991px) {
	.navbar {
		padding: 12px 0;
	}
	.navbar > .container {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: space-between;
	}
	.navbar .header-logo {
		float: none;
		display: flex;
		align-items: center;
	}
	.navbar .site-title {
		margin: 0;
		font-size: 1.625rem;
	}

	/* Toggler: "Meny" and three bars that turn into an X. */
	.navbar .navbar-toggler {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		height: 44px;
		margin: 0;
		padding: 0 0 0 8px;
		border: 0;
		border-radius: var(--dp-radius);
		background: transparent;
		box-shadow: none;
		color: var(--dp-navy);
		font-size: .875rem;
		font-weight: 600;
		line-height: 1;
	}
	.navbar .navbar-toggler:hover,
	.navbar .navbar-toggler:focus {
		background: transparent;
		box-shadow: none;
		color: var(--dp-navy);
	}
	.navbar .navbar-toggler-icon {
		position: relative;
		width: 20px;
		height: 14px;
		background: linear-gradient(var(--dp-navy), var(--dp-navy)) center / 20px 2px no-repeat;
		transition: background-size var(--dp-ease);
	}
	.navbar .navbar-toggler-icon::before,
	.navbar .navbar-toggler-icon::after {
		content: "";
		position: absolute;
		left: 0;
		width: 20px;
		height: 2px;
		background: var(--dp-navy);
		transition: transform var(--dp-ease);
	}
	.navbar .navbar-toggler-icon::before { top: 0; }
	.navbar .navbar-toggler-icon::after { bottom: 0; }
	.navbar .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
		background-size: 0 2px;
	}
	.navbar .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
		transform: translateY(6px) rotate(45deg);
	}
	.navbar .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
		transform: translateY(-6px) rotate(-45deg);
	}

	/* Panel: in flow under the header row, on the container's left edge. */
	.navbar .navbar-collapse {
		flex-basis: 100%;
		margin-top: 12px;
		padding: 4px 0 24px;
		border-top: 1px solid var(--dp-line);
	}
	.navbar .navbar-collapse ul,
	.navbar .navbar-collapse ol {
		margin: 0; /* the parent insets the list by 1.125em */
	}
	.navbar .navbar-nav {
		padding: 0;
	}
	/* The parent's empty search and cart slot after the items. */
	.navbar .navbar-nav > .nav-item:not(.menu-item) {
		display: none;
	}
	.navbar .nav .nav-item .nav-link {
		display: block;
		padding: 14px 0;
		border-bottom: 1px solid var(--dp-line);
		border-radius: 0;
		color: var(--dp-navy);
		font-size: 1.0625rem;
		font-weight: 600;
		line-height: 1.3;
		transition: color var(--dp-ease);
	}
	.navbar .nav .nav-item .nav-link:hover,
	.navbar .nav .nav-item .nav-link:focus,
	.navbar .nav .nav-item.active > .nav-link,
	.navbar .nav .nav-item.current-menu-item > .nav-link,
	.navbar .nav .nav-item.current-menu-ancestor > .nav-link,
	.navbar .nav .nav-item.show > .nav-link {
		color: var(--dp-blue-ink);
	}

	/* Submenu toggle: the whole row toggles (SmartMenus); the chevron is decoration. */
	.navbar .navbar-nav.sm-collapsible .has-submenu {
		padding-right: 44px;
	}
	.navbar .navbar-nav.sm-collapsible .sub-arrow {
		position: absolute;
		top: 50%;
		right: -12px;
		width: 44px;
		height: 44px;
		margin: -22px 0 0;
		border: 0;
		border-radius: 0;
		background: none;
		font-size: 0;
		line-height: 0;
	}
	.navbar .navbar-nav.sm-collapsible .sub-arrow::before {
		content: "";
		position: absolute;
		left: 50%;
		top: 50%;
		width: 10px;
		height: 10px;
		margin: -8px 0 0 -5px;
		border-right: 2px solid var(--dp-blue);
		border-bottom: 2px solid var(--dp-blue);
		transform: rotate(45deg);
		transition: transform var(--dp-ease);
	}
	.navbar .navbar-nav.sm-collapsible .show > a > .sub-arrow::before {
		content: "";
		margin-top: -3px;
		transform: rotate(225deg);
	}

	/* Open submenu: a light stretch of the list, edge to edge, no box. */
	.navbar .navbar-nav.sm-collapsible .dropdown-menu {
		position: static;
		float: none;
		width: auto !important;
		margin: 0 calc(-1 * var(--dp-gutter)) !important;
		padding: 8px 0;
		border: 0 !important;
		border-bottom: 1px solid var(--dp-line) !important;
		border-radius: 0;
		background: var(--dp-light);
		box-shadow: none;
	}
	.navbar .navbar-nav.sm-collapsible .dropdown-menu .dropdown-item {
		display: flex;
		align-items: center;
		min-height: 44px;
		padding: 10px calc(var(--dp-gutter) + 16px);
		background: none;
		color: var(--dp-navy);
		font-size: 1rem;
		font-weight: 400;
		line-height: 1.5;
		white-space: normal;
		transition: color var(--dp-ease);
	}
	.navbar .navbar-nav.sm-collapsible .dropdown-menu .dropdown-item:hover,
	.navbar .navbar-nav.sm-collapsible .dropdown-menu .dropdown-item:focus,
	.navbar .navbar-nav.sm-collapsible .dropdown-menu .current-menu-item > .dropdown-item {
		color: var(--dp-blue-ink);
		background: none;
	}

	/* Booking item: a full-width button, unless the top bar already shows one. */
	.navbar .nav-item.dp-menu-cta > a {
		display: inline-flex;
		justify-content: center;
		width: 100%;
		height: 48px;
		margin: 16px 0 0;
		border-bottom: 0;
		font-size: 1rem;
	}
	.navbar.dp-has-topbar-cta .nav-item.dp-menu-cta {
		display: none;
	}
}

/* Service and home page content ------------------------------------- */
.dp-page {
	padding: 40px 0 8px;
}
.dp-page .wp-block-heading {
	color: var(--dp-navy);
	font-weight: 700;
	font-size: 1.75rem;
	line-height: 1.2;
	letter-spacing: -.01em;
	margin-top: 48px;
	margin-bottom: 12px;
}
.dp-page p {
	color: var(--dp-text);
	font-size: 1.0625rem;
	line-height: 1.65;
}
.dp-page ul {
	color: var(--dp-text);
	font-size: 1.0625rem;
	line-height: 1.65;
}
/* Measure: page-level text and the FAQ list, not the intro row or the CTA panel. */
.dp-page > .wp-block-group__inner-container > p,
.dp-page > .wp-block-group__inner-container > ul,
.dp-page > .wp-block-group__inner-container > .wp-block-heading,
.dp-page > .wp-block-group__inner-container > .dp-faq {
	max-width: var(--dp-measure);
}
.dp-intro {
	gap: 40px;
	margin-bottom: 24px;
}
/* Declared after .dp-page p / .dp-page .wp-block-heading, so these win on order. */
.dp-page .dp-intro__title {
	margin-top: 0;
	font-size: clamp(1.75rem, .5rem + 3vw, 2.75rem); /* 28px to 667, 32 at 800, 44 from 1200 */
	line-height: 1.1;
	letter-spacing: -.02em;
}
.dp-page .dp-lead {
	font-size: 1.25rem;
	line-height: 1.5;
	color: var(--dp-navy);
}
.dp-intro__image img {
	border-radius: var(--dp-radius);
	width: 100%;
	height: auto;
}
.dp-faq {
	margin-top: 64px;
	padding: 0;
	border-radius: 0;
	background: transparent;
}
.dp-faq .wp-block-heading {
	margin-top: 0;
	margin-bottom: 8px;
}
.dp-faq__item {
	border-bottom: 1px solid var(--dp-line);
	padding: 20px 0;
}
.dp-faq__item summary {
	cursor: pointer;
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.3;
	color: var(--dp-navy);
	list-style: none;
	position: relative;
	padding-right: 40px;
	transition: color var(--dp-ease);
}
.dp-faq__item summary::-webkit-details-marker {
	display: none;
}
/* Chevron drawn with two borders; rotates when the item is open. */
.dp-faq__item summary::after {
	content: "";
	position: absolute;
	right: 6px;
	top: .45em;
	width: 10px;
	height: 10px;
	border-right: 2px solid var(--dp-blue);
	border-bottom: 2px solid var(--dp-blue);
	transform: rotate(45deg);
	transition: transform var(--dp-ease);
}
.dp-faq__item[open] summary {
	color: var(--dp-blue-ink);
}
.dp-faq__item[open] summary::after {
	transform: rotate(225deg);
	top: .7em;
}
.dp-faq__item summary:hover {
	color: var(--dp-blue-ink);
}
.dp-faq__item p {
	margin: 12px 0 0;
}
.dp-cta {
	position: relative;
	overflow: hidden;
	margin: 64px 0 32px;
	padding: 40px;
	border-radius: var(--dp-radius);
	background: linear-gradient(105deg, var(--dp-blue-dark), var(--dp-blue) 60%);
	color: #fff;
	text-align: left;
}
/* Tyre tread: one even set of diagonal stripes, fading in from the right. */
.dp-cta::before {
	content: "";
	position: absolute;
	inset: 0 0 0 auto;
	width: 46%;
	background-image: repeating-linear-gradient(-55deg, rgba(255, 255, 255, .14) 0 12px, transparent 12px 24px);
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 45%);
	mask-image: linear-gradient(90deg, transparent, #000 45%);
	pointer-events: none;
}
.dp-cta > .wp-block-group__inner-container {
	position: relative;
}
.dp-cta .wp-block-heading {
	color: #fff;
	margin: 0 0 20px;
	text-align: left;
}
.dp-cta .wp-block-buttons {
	justify-content: flex-start;
	gap: 12px;
}
.dp-cta .wp-block-button.dp-btn--primary .wp-block-button__link {
	background: #fff;
	color: var(--dp-navy) !important;
}
.dp-cta .wp-block-button.dp-btn--primary .wp-block-button__link:hover,
.dp-cta .wp-block-button.dp-btn--primary .wp-block-button__link:focus {
	background: var(--dp-navy);
	color: #fff !important;
}
.dp-cta .wp-block-button.dp-btn--secondary .wp-block-button__link {
	color: #fff !important;
	border-color: rgba(255, 255, 255, .85);
}
.dp-cta .wp-block-button.dp-btn--secondary .wp-block-button__link:hover,
.dp-cta .wp-block-button.dp-btn--secondary .wp-block-button__link:focus {
	background: #fff;
	color: var(--dp-navy) !important;
}
@media (max-width: 575px) {
	.dp-cta::before {
		width: 60%;
		opacity: .6;
	}
}
.dp-page--home .dp-intro {
	margin-top: 24px;
}

/* Kontakta oss ------------------------------------------------------- */
.dp-page--contact .dp-lead {
	max-width: var(--dp-measure);
}
.dp-contact {
	gap: 40px;
	margin-top: 40px;
}
/* Both boxes the same height: stretch the columns instead of centring them. */
.dp-contact.are-vertically-aligned-center {
	align-items: stretch;
}
.dp-contact.are-vertically-aligned-center > .wp-block-column {
	align-self: stretch;
}
.dp-contact > .wp-block-column > .dp-contact__map-wrap {
	height: 100%;
	min-height: 320px;
}
.dp-contact__details {
	padding: 32px;
	border-radius: var(--dp-radius);
	background: var(--dp-light);
}
.dp-contact__list {
	margin: 0;
}
.dp-contact__list > div {
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: 12px;
	padding: 10px 0;
	border-bottom: 1px solid var(--dp-line);
	font-size: 1.0625rem;
	line-height: 1.5;
}
.dp-contact__list > div:last-child {
	border-bottom: 0;
}
.dp-contact__list dt {
	color: var(--dp-muted);
	font-weight: 400;
}
.dp-contact__list dd {
	margin: 0;
	color: var(--dp-navy);
	font-weight: 600;
	font-variant-numeric: tabular-nums;
	overflow-wrap: anywhere;
}
/* Beats the parent's article a { underline !important } on specificity. */
.dp-page .dp-contact__list dd a:not(.x) {
	color: var(--dp-navy);
	text-decoration: none !important;
}
.dp-page .dp-contact__list dd a:hover,
.dp-page .dp-contact__list dd a:focus {
	color: var(--dp-blue-ink);
}
.dp-contact__hours > div {
	grid-template-columns: 1fr auto;
}
.dp-contact__heading {
	color: var(--dp-navy);
	font-size: 1.125rem;
	font-weight: 700;
	margin: 28px 0 4px;
}
.dp-contact__map-wrap {
	border-radius: var(--dp-radius);
	overflow: hidden;
	background: var(--dp-light);
}
.dp-contact__map {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}
.dp-page .dp-contact__facebook {
	max-width: var(--dp-measure);
	margin-top: 40px;
}
@media (max-width: 781px) {
	.dp-contact { gap: 24px; margin-top: 24px; }
	.dp-contact__details { padding: 20px; }
	.dp-contact__list > div { grid-template-columns: 1fr; gap: 2px; font-size: 1rem; }
	.dp-contact__hours > div { grid-template-columns: 1fr auto; gap: 12px; }
	.dp-contact > .wp-block-column > .dp-contact__map-wrap { height: auto; min-height: 0; aspect-ratio: 16 / 10; }
}
@media (max-width: 781px) {
	.dp-intro { gap: 24px; }
}

/* Type scale on tablet and phone ------------------------------------- */
/* Body copy is 16px on both; headings, lead and FAQ questions step down
   more, so each step is visible. The display and hero sizes are clamps. */
@media (max-width: 991px) {
	.dp-page p,
	.dp-page ul {
		font-size: 1rem;
		line-height: 1.6;
	}
	.dp-page .dp-lead {
		font-size: 1.125rem;
		line-height: 1.45;
	}
	.dp-page .wp-block-heading:not(.dp-intro__title),
	.services .section-header .section-title {
		font-size: 1.5rem;
	}
	.dp-faq__item summary {
		font-size: 1.125rem;
	}
	.services .dp-card .entry-title {
		font-size: 1.125rem;
	}
	.services .dp-card .entry-content p {
		font-size: .9375rem;
	}
	.dp-hero .dp-hero__text {
		font-size: 1.125rem;
	}
}
@media (max-width: 575px) {
	.dp-page .wp-block-heading:not(.dp-intro__title),
	.services .section-header .section-title {
		font-size: 1.375rem;
	}
	.dp-faq__item summary {
		font-size: 1rem;
		line-height: 1.35;
	}
	.services .dp-card .entry-title {
		font-size: 1.0625rem;
	}
	.dp-hero .dp-hero__text {
		font-size: 1rem;
	}
}

/* Spacing on tablet and phone ---------------------------------------- */
/* Desktop 48/64/96 becomes 40/48/64 on the tablet and 32/40/48 on the phone. */
@media (max-width: 991px) {
	.section-space-page.page {
		padding: 24px 0; /* the parent's 32 top and 50 bottom */
	}
	.dp-page {
		padding: 16px 0 0;
	}
	.dp-page .wp-block-heading:not(.dp-intro__title) {
		margin-top: 40px;
	}
	/* Top-align the intro row beside its image; the home's was centred, the service pages' not. */
	.dp-intro.are-vertically-aligned-center {
		align-items: flex-start;
	}
	.dp-intro.are-vertically-aligned-center > .wp-block-column {
		align-self: flex-start;
	}
	.dp-page--home .dp-intro {
		margin-top: 48px;
	}
	.dp-faq {
		margin-top: 48px;
	}
	.dp-faq__item {
		padding: 16px 0;
	}
	.dp-cta {
		margin: 48px 0 24px;
		padding: 32px;
	}
}
@media (max-width: 575px) {
	.dp-page .wp-block-heading:not(.dp-intro__title) {
		margin-top: 32px;
		margin-bottom: 8px;
	}
	.dp-cta {
		margin: 40px 0 16px;
		padding: 24px 20px;
	}
	.dp-page--home .dp-intro {
		margin-top: 32px;
	}
	.dp-faq {
		margin-top: 40px;
	}
}

/* Footer ------------------------------------------------------------- */
.dp-footer {
	background: var(--dp-navy);
	color: rgba(255, 255, 255, .78);
	font-size: .9375rem;
	line-height: 1.6;
	margin-top: 24px;
}
.dp-footer__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	padding: 64px 0 56px;
}
.dp-footer__contact {
	justify-self: end;
	width: 100%;
	max-width: 320px;
}
.dp-footer p,
.dp-footer address {
	margin: 0 0 8px;
	font-size: .9375rem;
	font-style: normal;
	line-height: 1.6;
	color: rgba(255, 255, 255, .78);
}
.dp-footer a {
	color: #fff;
	text-decoration: none;
	transition: color var(--dp-ease);
}
.dp-footer a:hover,
.dp-footer a:focus {
	color: #fff;
	text-decoration: underline;
}
.dp-footer .dp-footer__name {
	color: #fff;
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: -.01em;
	margin-bottom: 8px;
}
.dp-footer .dp-footer__tagline {
	margin-bottom: 20px;
}
.dp-footer .dp-footer__heading {
	color: #fff;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.4;
	margin: 0 0 8px;
}
.dp-footer .dp-footer__heading + .dp-footer__heading,
.dp-footer .dp-footer__phone + .dp-footer__heading,
.dp-footer .dp-footer__hours + .dp-footer__heading {
	margin-top: 24px;
}
.dp-footer .dp-footer__phone {
	display: inline-block;
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: -.01em;
	font-variant-numeric: tabular-nums;
	margin-bottom: 24px;
}
.dp-footer__hours {
	margin: 0;
}
.dp-footer__hours > div {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding: 4px 0;
	border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.dp-footer__hours > div:last-child {
	border-bottom: 0;
}
.dp-footer__hours dt {
	font-weight: 400;
}
.dp-footer__hours dd {
	margin: 0;
	color: #fff;
	font-variant-numeric: tabular-nums;
	white-space: nowrap;
}
.dp-footer__bar {
	background: var(--dp-navy-deep);
	font-size: .875rem;
}
.dp-footer__bar-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	min-height: 52px;
}
.dp-footer__bar .fab {
	margin-right: 4px;
}
@media (max-width: 991px) {
	.dp-footer {
		margin-top: 0; /* the parent section's 24px bottom padding is the gap */
	}
	.dp-footer__grid {
		padding: 48px 0 40px;
	}
}
@media (max-width: 575px) {
	.dp-footer__grid {
		grid-template-columns: 1fr;
		gap: 28px;
		padding: 40px 0 32px;
	}
	/* The emergency number comes before the address and e-mail. */
	.dp-footer__contact {
		order: -1;
		justify-self: start;
		max-width: none;
	}
	/* 40px rows for the e-mail, Hitta hit and Facebook links. */
	.dp-footer .dp-footer__line {
		margin: 0;
	}
	.dp-footer .dp-footer__line a,
	.dp-footer__bar a {
		display: inline-block;
		padding: 8px 0;
	}
	.dp-footer__hours {
		max-width: 320px;
	}
	.dp-footer__bar-inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
		padding-top: 14px;
		padding-bottom: 14px;
	}
}
