@font-face {
  font-family: "Myriad Pro";
  font-style: normal;
  font-weight: 300;
  src: url("../Fonts/MyriadPro/MyriadPro-Light.otf") format("opentype");
}

@font-face {
  font-family: "Myriad Pro";
  font-style: normal;
  font-weight: 400;
  src: url("../Fonts/MyriadPro/MYRIADPRO-REGULAR.OTF") format("opentype");
}

@font-face {
  font-family: "Myriad Pro";
  font-style: normal;
  font-weight: 600;
  src: url("../Fonts/MyriadPro/MYRIADPRO-SEMIBOLD.OTF") format("opentype");
}

@font-face {
  font-family: "Myriad Pro";
  font-style: normal;
  font-weight: 700;
  src: url("../Fonts/MyriadPro/MYRIADPRO-BOLD.OTF") format("opentype");
}

@font-face {
  font-family: "Myriad Pro";
  font-style: normal;
  font-weight: 800;
  src: url("../Fonts/MyriadPro/MYRIADPRO-BOLD.OTF") format("opentype");
}

em,
i,
cite,
dfn,
address,
var {
  font-style: normal;
}

:root {
  --mh-blue: #064d98;
  --mh-blue-dark: #003a78;
  --mh-gray: #6f6f6f;
  --mh-light-blue: #dfe6f0;
  --mh-light-blue-strong: #cfd9e8;
  --mh-gold: #a38c4b;
  --mh-gold-light: #bea86b;
  --mh-gold-aa: #806830;
  --mh-gold-aa-light: #8a743b;
  --mh-black: #000;
  --mh-white: #fff;
  --mh-border: #9a9a9a;
  --mh-muted: #777;
  --font-sans: "Myriad Pro", Arial, Helvetica, sans-serif;
  --font-serif: "Myriad Pro", Arial, Helvetica, sans-serif;
  --type-h1: 4.55rem;
  --type-h2: 2.75rem;
  --type-body: 1.12rem;
  --type-button: 0.92rem;
  --line-body: 1.26;
  --line-nav: 1.2;
  --nav-link-gap: 0.34rem;
  --container: 76rem;
  --gutter: clamp(1.25rem, 3vw, 3rem);
  --content-edge: max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
  --section-y: 4.6rem;
  --header-h: 6.25rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color: var(--mh-black);
  font-family: var(--font-sans);
  font-size: 100%;
  letter-spacing: 0;
  line-height: 1.45;
  overflow-y: scroll;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body.manhagen-site {
  background: var(--mh-white);
  font-size: var(--type-body);
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
}

body.is-menu-open {
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

h2 {
  font-weight: 600;
}

button,
a,
input,
select,
textarea {
  font-family: var(--font-sans);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--mh-gold-aa);
  outline-offset: 4px;
}

main:focus {
  outline: none;
}

.skip-link {
  background: var(--mh-blue);
  color: var(--mh-white);
  font-weight: 700;
  left: 1rem;
  padding: 0.75rem 1rem;
  position: fixed;
  top: 1rem;
  transform: translateY(-160%);
  z-index: 1000;
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.site-header {
  background: var(--mh-white);
  border-bottom: 1px solid var(--mh-border);
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 100;
}

main {
  padding-top: var(--header-h);
}

section[id],
#appointment,
#emergency {
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.site-header__inner {
  align-items: center;
  display: flex;
  gap: 2rem;
  height: var(--header-h);
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--container);
  padding: 0 var(--gutter);
}

.brand {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand img {
  height: auto;
  width: 16.55rem;
}

.brand img[src*="manhagen-dachmarke.svg"] {
  width: 12rem;
}

.site-header__actions {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  gap: 0.875rem;
}

.button {
  align-items: center;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  display: inline-flex;
  font-size: var(--type-body);
  font-weight: 800;
  gap: 0.65rem;
  justify-content: center;
  min-height: 3.55rem;
  min-width: 14rem;
  padding: 0.68rem 1.35rem;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.site-header__actions .button {
  font-size: var(--type-button);
}

.button--small {
  min-height: 2.35rem;
  min-width: 7.5rem;
  padding: 0.34rem 0.85rem;
}

.button--primary {
  background: linear-gradient(90deg, var(--mh-gold), var(--mh-gold-light));
  color: var(--mh-white);
}

.button--primary:hover {
  background: linear-gradient(90deg, var(--mh-gold-light), var(--mh-gold));
}

.button--blue {
  background: var(--mh-blue);
  color: var(--mh-white);
}

.button--blue:hover {
  background: var(--mh-blue-dark);
}

.button--soft {
  background: var(--mh-light-blue);
  color: var(--mh-blue);
}

.button--soft:hover {
  background: var(--mh-light-blue-strong);
}

.button--outline {
  background: var(--mh-white);
  border: 2px solid var(--mh-blue);
  color: var(--mh-blue);
}

.button--outline:hover {
  background: var(--mh-light-blue);
}

.button--icon {
  min-width: 6.9rem;
}

.button--control {
  min-height: 2.75rem;
  min-width: 3.35rem;
  padding: 0;
  width: 3.35rem;
}

.button--control svg {
  height: 1.45rem;
  width: 1.45rem;
}

.button--control path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.button__icon {
  align-items: center;
  border: 2px solid currentColor;
  display: inline-grid;
  flex: 0 0 auto;
  font-size: 0;
  height: 1.05rem;
  justify-content: center;
  line-height: 0;
  place-items: center;
  position: relative;
  width: 1.05rem;
}

.button__icon::before,
.button__icon::after {
  background: currentColor;
  content: "";
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.button__icon::before {
  height: 2px;
  width: 0.58rem;
}

.button__icon::after {
  height: 0.58rem;
  width: 2px;
}

.menu-toggle {
  appearance: none;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: var(--mh-blue);
  cursor: pointer;
  font: inherit;
}

.menu-toggle {
  align-items: center;
  display: inline-flex;
  height: 3.5rem;
  justify-content: center;
  width: 3.5rem;
}

.menu-toggle__label {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.menu-toggle__bars {
  display: block;
  height: 1.5rem;
  position: relative;
  width: 1.9rem;
}

.menu-toggle__bars span {
  background: currentColor;
  border-radius: 999px;
  height: 0.18rem;
  left: 0;
  position: absolute;
  right: 0;
  transition: opacity 160ms ease, transform 160ms ease;
}

.menu-toggle__bars span:nth-child(1) {
  top: 0;
}

.menu-toggle__bars span:nth-child(2) {
  top: 0.65rem;
}

.menu-toggle__bars span:nth-child(3) {
  top: 1.3rem;
}

.site-header.is-menu-open .menu-toggle__bars span {
  top: 50%;
}

.site-header.is-menu-open .menu-toggle__bars span:nth-child(1) {
  transform: translateY(-50%) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle__bars span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle__bars span:nth-child(3) {
  transform: translateY(-50%) rotate(-45deg);
}

.site-menu {
  background: var(--mh-white);
  border-bottom: 1px solid var(--mh-border);
  left: 0;
  min-height: calc(100vh - var(--header-h));
  position: absolute;
  right: 0;
  top: 100%;
}

.site-menu__inner {
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  max-width: var(--container);
  padding: 5rem var(--gutter);
}

.site-menu__actions {
  display: none;
}

.link-column {
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.type-h3,
.link-column h3,
.link-column summary,
.legal__content h3 {
  color: var(--mh-black);
  display: block;
  font-size: var(--type-body);
  font-weight: 800;
  line-height: var(--line-nav);
  list-style: none;
  margin: 0 0 0.58rem;
  min-height: calc(var(--type-body) * var(--line-nav));
}

.link-column summary {
  cursor: default;
}

.link-column summary::-webkit-details-marker {
  display: none;
}

.link-column__links {
  display: flex;
  flex-direction: column;
  gap: var(--nav-link-gap);
  align-items: flex-start;
}

.link-column a {
  font-size: var(--type-body);
  line-height: var(--line-nav);
  text-decoration: none;
}

.link-column__disabled {
  color: var(--mh-muted);
  cursor: default;
  font-size: var(--type-body);
  line-height: var(--line-nav);
}

.link-column a:hover {
  color: var(--mh-blue);
  text-decoration: underline;
}

.hero {
  padding: 0;
}

.hero__inner {
  align-items: stretch;
  display: grid;
  gap: 0;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  margin: 0 auto;
  max-width: 100vw;
  min-height: calc(100vh - var(--header-h));
  padding: 0;
  width: 100%;
}

.hero__copy {
  align-self: center;
  min-width: 0;
  padding: 5rem var(--gutter);
  padding-left: var(--content-edge);
}

.hero h1 {
  color: var(--mh-blue);
  font-family: var(--font-sans);
  font-size: var(--type-h1);
  font-weight: 700;
  line-height: 0.96;
  margin: 0 0 2.25rem;
  max-width: 9ch;
}

.hero p {
  font-size: var(--type-body);
  font-weight: 400;
  line-height: var(--line-body);
  margin: 0 0 2rem;
  max-width: 34rem;
  overflow-wrap: anywhere;
}

.hero__media {
  align-self: stretch;
  display: block;
  min-height: calc(100vh - var(--header-h));
  overflow: hidden;
}

.hero__media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.values-hero {
  padding: clamp(3.4rem, 7vw, 6rem) 0 clamp(2.2rem, 4vw, 3.8rem);
}

.values-hero__inner {
  display: grid;
  justify-items: center;
}

.values-hero__image {
  height: auto;
  max-width: min(100%, 56rem);
  width: 100%;
}

.section {
  padding: var(--section-y) 0;
}

.section--quicklinks {
  padding-top: 7.4rem;
}

.section__inner {
  margin: 0 auto;
  max-width: var(--container);
  padding: 0 var(--gutter);
}

.section h2 {
  color: var(--mh-blue);
  font-size: var(--type-h2);
  font-weight: 600;
  line-height: 1.08;
  margin: 0 0 2.8rem;
}

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

.quick-card {
  align-items: center;
  background: var(--mh-light-blue);
  color: var(--mh-black);
  display: grid;
  font-size: var(--type-body);
  font-weight: 800;
  gap: 1rem;
  grid-template-columns: 3.9rem minmax(0, 1fr) auto;
  min-height: 4.45rem;
  padding: 0.58rem 1.1rem;
  text-decoration: none;
  transition: background-color 160ms ease, transform 160ms ease;
}

.quick-card:hover {
  background: var(--mh-light-blue-strong);
  transform: translateY(-2px);
}

.quick-card--static {
  grid-template-columns: 3.9rem minmax(0, 1fr);
}

.quick-card--static:hover {
  background: var(--mh-light-blue);
  transform: none;
}

.quick-card__icon {
  align-items: center;
  color: var(--mh-blue);
  display: inline-flex;
  height: 3.25rem;
  justify-content: center;
  width: 3.25rem;
}

.quick-card__icon svg {
  height: 100%;
  width: 100%;
}

.quick-card__icon img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.quick-card__icon path,
.quick-card__icon circle {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
}

.quick-card__arrow {
  align-items: center;
  color: var(--mh-blue);
  display: inline-flex;
  justify-content: center;
}

.quick-card__arrow svg {
  height: 1.5rem;
  width: 1.5rem;
}

.quick-card__arrow path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.split__inner {
  align-items: center;
  display: grid;
  gap: 7.2rem;
  grid-template-columns: 0.78fr 1.22fr;
}

.split--reverse .split__inner {
  grid-template-columns: 1.22fr 0.78fr;
}

.split--reverse .split__copy {
  order: 2;
}

.split--reverse .split__image,
.split--reverse .split__media {
  order: 1;
}

.split__copy {
  align-self: center;
}

.split h2 {
  margin-bottom: 1rem;
}

.split__copy p {
  font-size: var(--type-body);
  line-height: var(--line-body);
  margin: 0 0 2rem;
}

.split__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.4rem;
}

.split__mobile-header-ctas {
  display: none;
}

.split__actions--mobile-header-only {
  display: none;
}

.split__actions:empty {
  display: none;
}

.split__image {
  aspect-ratio: 997 / 610;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.split__media {
  aspect-ratio: 997 / 610;
  background: var(--mh-light-blue);
  overflow: hidden;
  width: 100%;
}

.video-teaser {
  position: relative;
}

.video-teaser__button {
  appearance: none;
  background: var(--mh-blue);
  border: 0;
  color: var(--mh-white);
  cursor: pointer;
  display: block;
  height: 100%;
  padding: 0;
  position: relative;
  width: 100%;
}

.video-teaser__button img,
.video-teaser iframe {
  display: block;
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.video-teaser iframe {
  border: 0;
}

.video-teaser__overlay {
  align-items: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.38));
  display: flex;
  inset: 0;
  justify-content: center;
  position: absolute;
  transition: background-color 160ms ease;
}

.video-teaser__button:hover .video-teaser__overlay {
  background-color: rgba(0, 0, 0, 0.14);
}

.video-teaser__play {
  align-items: center;
  background: var(--mh-blue);
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
  display: inline-flex;
  height: 5.35rem;
  justify-content: center;
  width: 5.35rem;
}

.video-teaser__play::before {
  border-bottom: 1.02rem solid transparent;
  border-left: 1.55rem solid var(--mh-white);
  border-top: 1.02rem solid transparent;
  content: "";
  margin-left: 0.28rem;
}

.section--values-split {
  padding-bottom: 4.8rem;
  padding-top: 4.8rem;
}

.values-hero + .section--values-split {
  padding-top: 3rem;
}

.image-slider {
  padding-top: 4rem;
  position: relative;
}

.image-slider__header {
  align-items: center;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  margin-bottom: 1.75rem;
}

.image-slider__header h2 {
  margin-bottom: 0;
}

.image-slider__controls {
  display: flex;
  gap: 0.75rem;
}

.image-slider__track {
  display: flex;
  margin: 0 auto -1.9rem;
  max-width: var(--container);
  overflow: hidden;
  padding: 0 var(--gutter) 2.8rem;
  position: relative;
  width: 100%;
}

.image-slide {
  aspect-ratio: 16 / 9;
  box-sizing: border-box;
  display: none;
  flex: 0 0 100%;
  margin: 0;
  min-height: 0;
  overflow: hidden;
  padding: 0 0.95rem;
  position: relative;
}

.image-slide.is-active {
  display: block;
}

.image-slide img {
  aspect-ratio: 16 / 9;
  background: var(--mh-light-blue);
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.image-slider--contain .image-slide {
  background: var(--mh-light-blue);
}

.image-slider--contain .image-slide img {
  object-fit: contain;
}

.image-slide figcaption {
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.image-slider__controls {
  bottom: 2.8rem;
  display: flex;
  gap: 0;
  position: absolute;
  right: var(--content-edge);
  z-index: 2;
}

.image-slider__controls .button {
  background: #f7f7f7;
  color: var(--mh-black);
  min-height: 2.5rem;
  min-width: 2.5rem;
  width: 2.5rem;
}

.image-slider__controls .button:hover {
  background: var(--mh-light-blue);
}

.image-slider__dots {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.47rem 0.94rem;
  justify-content: center;
  list-style: none;
  margin: 1.1rem auto 0;
  max-width: min(42rem, calc(100% - 2 * var(--gutter)));
  padding: 0;
}

.image-slider__dot {
  appearance: none;
  background: var(--mh-light-blue);
  border: 0;
  border-radius: 0;
  cursor: pointer;
  display: block;
  height: 0.94rem;
  overflow: hidden;
  padding: 0;
  text-indent: -9999px;
  width: 0.94rem;
}

.image-slider__dot.is-active {
  background: var(--mh-blue);
}

.faq h2 {
  border-bottom: 1px solid var(--mh-border);
  margin-bottom: 0;
  padding-bottom: 1.4rem;
}

.faq__list {
  border-bottom: 1px solid var(--mh-border);
}

.faq details {
  border-top: 1px solid var(--mh-border);
  padding: 0;
}

.faq summary {
  cursor: pointer;
  font-size: var(--type-body);
  font-weight: 800;
  list-style: none;
  padding: 1.7rem 3rem 1.7rem 0;
  position: relative;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  border-bottom: 3px solid var(--mh-black);
  border-right: 3px solid var(--mh-black);
  content: "";
  height: 0.9rem;
  position: absolute;
  right: 1rem;
  top: 2rem;
  transform: rotate(45deg);
  width: 0.9rem;
}

.faq details[open] summary::after {
  top: 2.35rem;
  transform: rotate(225deg);
}

.faq__content,
.faq details > p,
.faq details > ul,
.faq details > ol,
.faq details > figure {
  font-size: var(--type-body);
  line-height: var(--line-body);
  margin: 0;
  max-width: 62rem;
  padding: 0 3rem 1.8rem 0;
}

.faq__content {
  display: grid;
  gap: 1.2rem;
}

.faq__content p,
.faq__content ul,
.faq__content ol,
.faq__content figure,
.faq__content .ce-gallery {
  margin: 0;
}

.faq__content ul,
.faq__content ol {
  list-style-position: outside;
  padding-left: 1.35rem;
}

.faq details > ul,
.faq details > ol {
  list-style-position: outside;
  padding-left: 1.35rem;
}

.faq__content li + li,
.faq details > ul li + li,
.faq details > ol li + li {
  margin-top: 0.35rem;
}

.faq__content img,
.faq details > img,
.faq details > figure img,
.faq details > .ce-gallery img {
  display: block;
  height: auto;
  max-width: min(100%, 44rem);
  object-fit: cover;
}

.faq__content figure,
.faq details > figure {
  display: grid;
  gap: 0.7rem;
}

.faq__content figcaption,
.faq details > figure figcaption {
  color: var(--mh-gray);
  font-size: calc(var(--type-body) * 0.92);
  line-height: var(--line-body);
}

.faq__content h3 {
  font-size: var(--type-body);
  line-height: var(--line-body);
  margin: 0;
}

.faq__media-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(14rem, 100%), 1fr));
  max-width: 44rem;
}

.section--location-map {
  padding: 4.6rem 0 2.4rem;
}

.section--location-map h2 {
  margin-bottom: 1.5rem;
}

.location-map {
  border: 1px solid var(--mh-border);
  display: grid;
  max-width: 100%;
  width: 100%;
}

.location-map__filters {
  background: var(--mh-white);
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0.9rem 1rem;
}

.location-map__filter {
  appearance: none;
  background: var(--mh-light-blue);
  border: 0;
  color: var(--mh-blue);
  cursor: pointer;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.15;
  min-height: 2.55rem;
  padding: 0.48rem 0.85rem;
  text-align: center;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
  white-space: normal;
}

.location-map__filter:hover,
.location-map__filter:focus-visible {
  background: #d8e4ef;
}

.location-map__filter:focus-visible {
  outline: 2px solid var(--mh-blue);
  outline-offset: 0.18rem;
}

.location-map__filter[aria-pressed="true"] {
  background: var(--mh-blue);
  color: var(--mh-white);
}

.location-map__canvas {
  background: var(--mh-light-blue);
  height: clamp(21rem, 30vw, 31rem);
  overflow: hidden;
  position: relative;
}

.location-map__google {
  height: 100%;
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 180ms ease;
  width: 100%;
}

.location-map.is-loaded .location-map__google {
  opacity: 1;
}

.location-map__loader {
  align-items: center;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.58), transparent 33%),
    linear-gradient(135deg, #dfe6f0 0%, #edf2f7 100%);
  color: var(--mh-black);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 1.5rem;
  position: absolute;
  text-align: center;
}

.location-map.is-loaded .location-map__loader {
  display: none;
}

.location-map__loader-inner {
  max-width: 26rem;
}

.location-map__loader p {
  font-size: var(--type-body);
  line-height: var(--line-body);
  margin: 0 0 1rem;
}

.location-map__loader a {
  color: var(--mh-blue);
  font-weight: 700;
}

.location-map__consent {
  margin: 0 auto;
  min-width: 12rem;
}

.location-map.is-loading .location-map__consent {
  display: none;
}

.location-map__status {
  color: var(--mh-muted);
  margin-top: 0.9rem;
}

.map-water,
.map-road,
.map-label {
  pointer-events: none;
  position: absolute;
}

.map-water {
  background: #9ed9ef;
  opacity: 0.78;
}

.map-water--elbe {
  border-radius: 999px;
  height: 3.8rem;
  left: -5%;
  top: 74%;
  transform: rotate(-10deg);
  width: 54%;
}

.map-water--alster {
  border-radius: 55% 45% 50% 50%;
  height: 5rem;
  left: 39%;
  top: 64%;
  width: 5.5rem;
}

.map-road {
  background: rgba(120, 132, 160, 0.42);
  border-radius: 999px;
  height: 0.28rem;
  transform-origin: left center;
}

.map-road::after {
  background: var(--mh-white);
  border-radius: inherit;
  content: "";
  inset: 0.08rem 0;
  position: absolute;
}

.map-road--a7 {
  left: 39%;
  top: 8%;
  transform: rotate(87deg);
  width: 55%;
}

.map-road--a1 {
  left: 52%;
  top: 28%;
  transform: rotate(37deg);
  width: 42%;
}

.map-road--a24 {
  left: 54%;
  top: 73%;
  transform: rotate(8deg);
  width: 36%;
}

.map-road--city {
  left: 34%;
  top: 67%;
  transform: rotate(-25deg);
  width: 32%;
}

.map-label {
  color: rgba(0, 0, 0, 0.72);
  font-size: var(--type-body);
  font-weight: 800;
  text-shadow: 0 1px 0 var(--mh-white);
}

.map-label--hamburg {
  font-size: calc(var(--type-body) * 1.25);
  left: 36%;
  top: 76%;
}

.map-label--luebeck {
  left: 66%;
  top: 22%;
}

.map-label--kaltenkirchen {
  left: 36%;
  top: 26%;
}

.map-label--grosshansdorf {
  left: 54%;
  top: 55%;
}

.location-map__pins {
  inset: 0;
  position: absolute;
}

.map-pin {
  appearance: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  height: 2.55rem;
  padding: 0;
  position: absolute;
  transform: translate(-50%, -100%);
  width: 1.9rem;
  z-index: 2;
}

.map-pin__drop {
  background: var(--mh-blue);
  border-radius: 50% 50% 50% 0;
  box-shadow: none;
  height: 1.9rem;
  left: 50%;
  position: absolute;
  top: 0.1rem;
  transform: translateX(-50%) rotate(-45deg);
  width: 1.9rem;
}

.map-pin__logo {
  align-items: center;
  background: var(--mh-white) url("../Images/Favicons/favicon-96x96.png") center / 92% 92% no-repeat;
  border: 0;
  border-radius: 50%;
  color: var(--mh-blue);
  display: inline-flex;
  font-family: var(--font-serif);
  font-size: 0;
  font-weight: 700;
  height: 1.38rem;
  justify-content: center;
  left: 50%;
  line-height: 1;
  position: absolute;
  top: 0.34rem;
  transform: translateX(-50%);
  width: 1.38rem;
}

.map-pin:hover .map-pin__drop,
.map-pin:focus-visible .map-pin__drop,
.map-pin.is-active .map-pin__drop {
  background: var(--mh-blue-dark);
  box-shadow: none;
}

.map-pin:focus-visible {
  outline-offset: 0.35rem;
}

.location-map__panel {
  align-items: center;
  background: var(--mh-white);
  border-top: 1px solid var(--mh-border);
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 8rem;
  padding: 1.25rem 1.8rem;
}

.location-map__panel h3 {
  color: var(--mh-black);
  font-size: var(--type-body);
  font-weight: 800;
  line-height: var(--line-body);
  margin: 0 0 0.25rem;
}

.location-map__panel p,
.location-map__panel address,
.location-map__website {
  font-size: var(--type-body);
  line-height: var(--line-body);
  margin: 0;
}

.location-map__panel address {
  font-style: normal;
}

.location-map__website {
  color: var(--mh-blue);
  display: inline-block;
  text-decoration: none;
}

.location-map__website:hover {
  text-decoration: underline;
}

.location-map__panel .button {
  min-height: 3rem;
  min-width: 12.5rem;
  padding: 0.55rem 1rem;
}

.section--location-cards {
  padding-top: 2.6rem;
}

.location-faq .location-faq__content {
  max-width: none;
}

.location-faq__item[hidden] {
  display: none;
}

.location-faq address {
  font-style: normal;
}

.location-faq .faq__content a:not(.button) {
  color: var(--mh-blue);
  text-decoration: none;
}

.location-faq .faq__content a:not(.button):hover {
  text-decoration: underline;
}

.location-faq__disabled {
  color: var(--mh-muted);
}

.location-faq .button {
  justify-self: start;
  margin-top: 0.35rem;
  min-width: 0;
}

.location-grid {
  display: grid;
  gap: 4.25rem 5.2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.location-card {
  border: 1px solid var(--mh-border);
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 28rem;
}

.location-card__head {
  align-items: center;
  background: var(--mh-light-blue);
  border-bottom: 1px solid var(--mh-border);
  display: grid;
  gap: 1rem;
  grid-template-columns: 3.4rem minmax(0, 1fr);
  min-height: 7.5rem;
  padding: 1.5rem 1.9rem;
}

.location-card--owned .location-card__head {
  background: var(--mh-blue);
}

.location-card__head h3 {
  color: var(--mh-blue);
  font-size: var(--type-body);
  font-weight: 800;
  line-height: 1.18;
  margin: 0;
  overflow-wrap: anywhere;
}

.location-card--owned .location-card__head h3 {
  color: var(--mh-white);
}

.location-card__mark {
  align-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  color: var(--mh-white);
  display: inline-flex;
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 700;
  height: 3.2rem;
  justify-content: center;
  line-height: 1;
  width: 3.2rem;
}

.location-card__pin {
  border: 2px solid var(--mh-blue);
  border-radius: 50% 50% 50% 0;
  height: 2.7rem;
  margin-left: 0.25rem;
  position: relative;
  transform: rotate(-45deg);
  width: 2.7rem;
}

.location-card__pin::after {
  background: var(--mh-blue);
  border-radius: 50%;
  content: "";
  height: 0.82rem;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0.82rem;
}

.location-card__body {
  align-content: start;
  display: grid;
  gap: 1rem;
  padding: 1.8rem 1.9rem 2rem;
}

.location-card__body p,
.location-card__body address,
.location-card__body a:not(.button),
.location-card__disabled {
  font-size: var(--type-body);
  line-height: var(--line-body);
  margin: 0;
}

.location-card__body address {
  font-style: normal;
}

.location-card__body a:not(.button) {
  color: var(--mh-blue);
  text-decoration: none;
}

.location-card__body a:not(.button):hover {
  text-decoration: underline;
}

.location-card__disabled {
  color: var(--mh-muted);
}

.location-card__body .button {
  align-self: end;
  margin-top: 2.2rem;
  min-width: 0;
}

.section--inquiry {
  padding: 5.65rem 0 4.9rem;
}

.appointment-portal__inner {
  display: grid;
  gap: 2rem;
}

.appointment-portal__copy {
  max-width: 54rem;
}

.appointment-portal__copy h2 {
  margin-bottom: 1rem;
}

.appointment-portal__copy p {
  color: var(--mh-black);
  font-size: var(--type-body);
  line-height: var(--line-body);
  margin: 0;
}

.appointment-portal__embed {
  background: var(--mh-light-blue);
  min-height: 18rem;
  padding: clamp(1.4rem, 3vw, 2.4rem);
}

.appointment-portal--split .appointment-portal__embed {
  align-self: stretch;
  background: transparent;
  display: block;
  min-height: 0;
  overflow: visible;
  padding: 0;
}

.appointment-portal__placeholder {
  align-items: flex-start;
  display: grid;
  gap: 0.9rem;
  max-width: 42rem;
}

.appointment-portal__placeholder strong {
  color: var(--mh-black);
  font-size: var(--type-body);
  font-weight: 800;
}

.appointment-portal__placeholder p,
.appointment-portal__status {
  color: var(--mh-gray);
  font-size: var(--type-body);
  line-height: var(--line-body);
  margin: 0;
}

.appointment-portal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.appointment-portal__widget {
  min-height: 16rem;
}

.appointment-portal--direct .appointment-portal__widget {
  min-height: 34rem;
  width: 100%;
}

.appointment-portal--split .appointment-portal__widget {
  min-height: 44rem;
  width: 100%;
}

.inquiry h1 {
  color: var(--mh-blue);
  font-size: var(--type-h2);
  font-weight: 600;
  line-height: 1.08;
  margin: 0 0 1rem;
}

.inquiry-form {
  display: grid;
  gap: 0.9rem;
}

.inquiry-form__row {
  display: grid;
  gap: 1.35rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.inquiry-form__full {
  grid-column: 1 / -1;
}

.inquiry-form--contact:not(.shows-appointment) .inquiry-form__appointment-fields {
  display: none;
}

.form-field {
  min-width: 0;
  position: relative;
}

.form-field label {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.inquiry-form input[type="email"],
.inquiry-form input[type="tel"],
.inquiry-form input[type="text"],
.inquiry-form select,
.inquiry-form textarea {
  appearance: none;
  background: var(--mh-light-blue);
  border: 0;
  border-radius: 0;
  color: var(--mh-black);
  display: block;
  font: inherit;
  font-size: var(--type-body);
  font-weight: 400;
  line-height: var(--line-body);
  min-height: 3.65rem;
  padding: 0 1.35rem;
  width: 100%;
}

.inquiry-form textarea {
  min-height: 8.75rem;
  padding-top: 1.05rem;
  resize: vertical;
}

.form-field--file p {
  color: var(--mh-gray);
  font-size: calc(var(--type-body) * 0.9);
  line-height: var(--line-body);
  margin: 0.45rem 0 0;
}

.file-upload {
  align-items: stretch;
  background: var(--mh-light-blue);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  min-height: 3.65rem;
  position: relative;
}

.file-upload input[type="file"] {
  cursor: pointer;
  height: 100%;
  inset: 0;
  opacity: 0;
  position: absolute;
  width: 100%;
  z-index: 2;
}

.file-upload__button {
  align-items: center;
  background: var(--mh-blue);
  color: var(--mh-white);
  display: inline-flex;
  font-size: var(--type-body);
  font-weight: 700;
  line-height: var(--line-body);
  padding: 0 1.25rem;
}

.file-upload__name {
  align-items: center;
  color: var(--mh-gray);
  display: inline-flex;
  font-size: var(--type-body);
  line-height: var(--line-body);
  min-width: 0;
  overflow: hidden;
  padding: 0 1.25rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-upload:focus-within {
  outline: 2px solid var(--mh-blue);
  outline-offset: 2px;
}

.inquiry-form ::placeholder {
  color: var(--mh-gray);
  font-weight: 400;
  opacity: 1;
}

.inquiry-form select {
  cursor: pointer;
  padding-right: 4rem;
}

.inquiry-form select:required:invalid {
  color: var(--mh-gray);
}

.inquiry-form select option {
  color: var(--mh-black);
}

.inquiry-form select:disabled {
  color: var(--mh-gray);
  cursor: not-allowed;
  opacity: 0.68;
}

.form-field--select::after {
  border-left: 0.3rem solid transparent;
  border-right: 0.3rem solid transparent;
  border-top: 0.52rem solid var(--mh-blue);
  content: "";
  pointer-events: none;
  position: absolute;
  right: 1.45rem;
  top: 50%;
  transform: translateY(-42%);
}

.form-field--select:has(select:disabled)::after {
  opacity: 0.36;
}

.privacy-consent {
  align-items: start;
  display: grid;
  font-size: var(--type-body);
  font-weight: 400;
  gap: 0.7rem;
  grid-template-columns: 1.4rem minmax(0, 1fr);
  line-height: var(--line-body);
  margin: 0.95rem 0 0.5rem;
}

.privacy-consent input {
  appearance: none;
  background: var(--mh-light-blue);
  border: 0;
  border-radius: 0;
  height: 1.4rem;
  margin: 0.15rem 0 0;
  width: 1.4rem;
}

.privacy-consent input:checked {
  background: var(--mh-blue);
  box-shadow: inset 0 0 0 0.34rem var(--mh-light-blue);
}

.privacy-consent a {
  text-decoration: underline;
}

.privacy-consent p {
  margin: 0;
}

.form-required-note {
  color: var(--mh-gray);
  font-size: calc(var(--type-body) * 0.9);
  line-height: var(--line-body);
  margin: 0.1rem 0 0.35rem;
}

.inquiry-form__submit {
  background: var(--mh-blue);
  color: var(--mh-white);
  font-size: var(--type-body);
  font-weight: 400;
  justify-self: start;
  min-height: 3rem;
  min-width: 13rem;
}

.inquiry-form__submit:hover {
  background: var(--mh-blue-dark);
}

.inquiry-form--appointment .inquiry-form__submit {
  background: linear-gradient(90deg, var(--mh-gold), var(--mh-gold-light));
}

.inquiry-form--appointment .inquiry-form__submit:hover {
  background: linear-gradient(90deg, var(--mh-gold-light), var(--mh-gold));
}

.section--contact {
  background: var(--mh-light-blue);
  padding: 4.4rem 0;
}

.section--contact h2 {
  margin-bottom: 1.5rem;
}

.contact-layout {
  display: grid;
  gap: 4rem;
  grid-template-columns: minmax(16rem, 0.8fr) minmax(20rem, 1.2fr);
}

.contact-info {
  display: grid;
  align-content: start;
  gap: 1.8rem;
}

.contact-card {
  color: var(--mh-black);
  font-size: var(--type-body);
  font-style: normal;
  line-height: var(--line-body);
}

.contact-card strong {
  display: block;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.contact-list {
  display: grid;
  font-size: var(--type-body);
  gap: 1rem 3rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
}

.contact-list div {
  min-width: 0;
}

.contact-list dt {
  font-weight: 800;
}

.contact-list dd {
  margin: 0.15rem 0 0;
}

.contact-card a,
.contact-list a,
.contact-social a {
  text-decoration: none;
}

.contact-card a:hover,
.contact-list a:hover,
.contact-social a:hover {
  color: var(--mh-blue);
  text-decoration: underline;
}

.contact-social {
  border-top: 1px solid var(--mh-border);
  display: grid;
  font-size: var(--type-body);
  gap: 1.1rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
}

.contact-social__group {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.5rem;
}

.contact-social strong {
  display: block;
  min-width: 7.5rem;
}

.contact-social ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.section--legal {
  padding: calc(var(--section-y) + 1rem) 0 var(--section-y);
}

.legal__inner {
  max-width: var(--container);
}

.legal__inner > h2 {
  margin: 0 0 3rem;
}

.legal__content {
  display: grid;
  gap: 2.4rem;
  max-width: 58rem;
}

.legal__content h2 {
  margin-bottom: 0.85rem;
}

.legal__content p {
  font-size: var(--type-body);
  line-height: var(--line-body);
  margin: 0;
}

.legal__content p + p {
  margin-top: 0.45rem;
}

.legal__content a:not(.button) {
  color: var(--mh-blue);
}

.text-block h1,
.text-block h2.text-block__title {
  color: var(--mh-blue);
  font-size: var(--type-h2);
  font-weight: 600;
  line-height: 1.08;
  margin: 0 0 2.8rem;
  max-width: var(--container);
}

.text-block h2,
.text-block h3,
.text-block__content h2 {
  color: var(--mh-black);
  font-size: var(--type-body);
  font-weight: 600;
  line-height: var(--line-body);
  margin: 1.35rem 0 0.45rem;
}

.text-block h1 + h2 {
  margin-top: 0;
}

.text-block--news-intro {
  padding-bottom: 1.2rem;
}

.text-block--news-intro h1 {
  margin-bottom: 0.45rem;
}

.text-block--news-intro .news-filter {
  margin-top: 0;
}

[data-bite-jobs-api-listing] h1,
[data-bite-jobs-api-listing] h2,
[data-bite-jobs-api-listing] h3 {
  color: var(--mh-black) !important;
  font-size: var(--type-body) !important;
  font-weight: 600 !important;
  line-height: var(--line-body) !important;
  margin: 1.35rem 0 0.45rem !important;
}

[data-bite-jobs-api-listing] h1 a,
[data-bite-jobs-api-listing] h2 a,
[data-bite-jobs-api-listing] h3 a {
  color: inherit !important;
}

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

.text-block__content p,
.text-block__content ul,
.text-block__content ol,
.text-block__content figure {
  font-size: var(--type-body);
  line-height: var(--line-body);
  margin: 0;
}

.text-block__content p + p,
.text-block__content p + ul,
.text-block__content p + ol,
.text-block__content ul + p,
.text-block__content ol + p,
.text-block__content figure + p {
  margin-top: 0.72rem;
}

.text-block__content ul,
.text-block__content ol {
  padding-left: 1.35rem;
}

.text-block__content li + li {
  margin-top: 0.3rem;
}

.text-block__content a:not(.button) {
  color: var(--mh-blue);
}

.text-block__content .button {
  margin-top: 0.45rem;
}

.menu-list {
  display: grid;
  gap: 1rem;
}

.menu-list__item {
  border-top: 1px solid rgba(0, 57, 96, 0.16);
  padding-top: 1rem;
}

.menu-list__heading {
  align-items: baseline;
  color: var(--mh-black);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.menu-list__name {
  font-weight: 600;
}

.menu-list__price {
  font-weight: 600;
  white-space: nowrap;
}

.text-block__content .menu-list__item p {
  margin-top: 0.35rem;
}

.text-block__content .menu-list__note {
  color: var(--mh-blue);
  font-weight: 600;
  margin-top: 1.2rem;
}

.text-block__content figure {
  margin-top: 1.3rem;
}

.text-block__content figure img {
  height: auto;
  max-width: min(100%, 34rem);
}

.cookie-consent {
  background: rgba(0, 32, 65, 0.22);
  display: grid;
  inset: 0;
  padding: 1rem;
  place-items: center;
  position: fixed;
  z-index: 1200;
}

.cookie-consent-trigger {
  align-items: center;
  background: var(--mh-white);
  border: 0;
  border-radius: 50%;
  bottom: 1.2rem;
  box-shadow: 0 0.55rem 1.5rem rgba(0, 32, 65, 0.24);
  color: var(--mh-blue);
  cursor: pointer;
  display: inline-flex;
  height: 3.35rem;
  justify-content: center;
  left: 1.2rem;
  padding: 0;
  position: fixed;
  transition: background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
  width: 3.35rem;
  z-index: 1100;
}

.cookie-consent-trigger:hover,
.cookie-consent-trigger:focus-visible {
  background: var(--mh-white);
  color: var(--mh-blue-dark);
  box-shadow: 0 0.75rem 1.8rem rgba(0, 32, 65, 0.32);
  transform: translateY(-1px);
}

.cookie-consent-trigger svg {
  display: block;
  height: 2.15rem;
  width: 2.15rem;
}

.cookie-consent-trigger svg path {
  fill: currentColor;
}

.has-cookie-consent-open .cookie-consent-trigger {
  opacity: 0;
  pointer-events: none;
}

.cookie-consent__panel {
  background: var(--mh-white);
}

.cookie-consent__panel {
  box-shadow: none;
  display: grid;
  gap: 1rem;
  max-height: calc(100vh - 2rem);
  max-width: min(43rem, 100%);
  overflow: auto;
  padding: 1.35rem;
  width: 100%;
}

.cookie-consent__panel:focus,
.cookie-consent__panel:focus-visible {
  outline: none;
}

.cookie-consent__close {
  align-items: center;
  background: var(--mh-white);
  border: 0;
  color: var(--mh-blue);
  cursor: pointer;
  display: inline-flex;
  height: 2.75rem;
  justify-content: center;
  justify-self: end;
  margin: -0.35rem -0.35rem -0.35rem 0;
  padding: 0;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
  width: 2.75rem;
}

.cookie-consent__close:hover,
.cookie-consent__close:focus-visible {
  background: var(--mh-light-blue);
  color: var(--mh-blue-dark);
}

.cookie-consent__close svg {
  height: 1.55rem;
  width: 1.55rem;
}

.cookie-consent__close path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}

.cookie-consent h2 {
  color: var(--mh-blue);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.15;
  margin: 0;
}

.cookie-settings-page h2 {
  color: var(--mh-blue);
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 0.75rem;
}

.cookie-consent p {
  font-size: calc(var(--type-body) * 0.95);
  line-height: 1.5;
  margin: 0;
}

.cookie-settings-page p {
  font-size: var(--type-body);
  line-height: var(--line-body);
  margin: 0;
}

.cookie-consent__settings,
.cookie-settings-page__inner {
  display: grid;
  gap: 1rem;
}

.cookie-consent__summary {
  display: grid;
  gap: 0.45rem;
}

.cookie-consent__details {
  background: var(--mh-light-blue);
}

.cookie-consent__details summary {
  align-items: center;
  color: var(--mh-blue);
  cursor: pointer;
  display: flex;
  font-size: calc(var(--type-body) * 0.95);
  font-weight: 800;
  gap: 1rem;
  justify-content: space-between;
  line-height: var(--line-body);
  list-style: none;
  padding: 0.85rem 0.95rem;
}

.cookie-consent__details summary::-webkit-details-marker {
  display: none;
}

.cookie-consent__details summary::after {
  content: "+";
  flex: 0 0 auto;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1;
}

.cookie-consent__details[open] summary::after {
  content: "-";
}

.cookie-consent .cookie-category-list {
  gap: 0.6rem;
  padding: 0 0.85rem 0.85rem;
}

.cookie-consent .cookie-category {
  background: var(--mh-white);
  border: 0;
}

.cookie-consent .cookie-category__toggle {
  gap: 0.75rem;
  padding: 0.75rem 0.8rem;
}

.cookie-consent .cookie-category__toggle small {
  font-size: calc(var(--type-body) * 0.86);
}

.cookie-consent .cookie-category__details {
  border-top: 0;
  padding: 0.65rem 0.8rem 0.75rem;
}

.cookie-consent .cookie-consent__actions {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cookie-consent .cookie-consent__actions .button {
  font-size: calc(var(--type-body) * 0.92);
  min-height: 2.9rem;
  min-width: 0;
  padding: 0.5rem 0.75rem;
}

.cookie-settings-page .cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cookie-settings-page .cookie-consent__actions .button {
  font-size: var(--type-body);
  min-height: 3rem;
  min-width: 12rem;
  padding: 0.55rem 1rem;
}

.cookie-consent__links {
  color: var(--mh-blue);
  display: flex;
  flex-wrap: wrap;
  font-size: calc(var(--type-body) * 0.88);
  gap: 0.75rem;
  justify-content: center;
  line-height: 1.35;
}

.cookie-consent__links a {
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.cookie-category-list {
  display: grid;
  gap: 0.8rem;
}

.cookie-category {
  border: 1px solid var(--mh-border);
  display: grid;
  gap: 0;
}

.cookie-category__toggle {
  align-items: center;
  cursor: pointer;
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 1rem;
}

.cookie-category__toggle strong,
.cookie-category__toggle small {
  display: block;
}

.cookie-category__toggle strong {
  color: var(--mh-blue);
  font-size: var(--type-body);
  line-height: var(--line-body);
}

.cookie-category__toggle small {
  color: var(--mh-black);
  font-size: calc(var(--type-body) * 0.92);
  line-height: var(--line-body);
  margin-top: 0.25rem;
}

.cookie-category__toggle input {
  accent-color: var(--mh-blue);
  height: 1.35rem;
  width: 1.35rem;
}

.cookie-category__details {
  border-top: 1px solid var(--mh-border);
  padding: 0.85rem 1rem 1rem;
}

.cookie-category__details summary {
  color: var(--mh-blue);
  cursor: pointer;
  font-size: calc(var(--type-body) * 0.92);
  font-weight: 800;
  line-height: var(--line-body);
}

.cookie-category__details p {
  font-size: calc(var(--type-body) * 0.9);
  margin-top: 0.4rem;
}

.cookie-consent__status {
  color: var(--mh-blue);
  font-weight: 700;
}

.cookie-settings-page {
  padding: 0 0 var(--section-y);
}

.cookie-settings-page__inner {
  padding-bottom: 2rem;
  padding-top: 2rem;
}

.news-section {
  padding-top: calc(var(--section-y) + 0.6rem);
}

.news-section__header {
  margin-bottom: 2.8rem;
}

.news-section__header h1 {
  color: var(--mh-blue);
  font-size: var(--type-h2);
  font-weight: 600;
  line-height: 1.08;
  margin: 0 0 0.7rem;
}

.news-section__header h2 {
  color: var(--mh-blue);
  font-size: var(--type-body);
  font-weight: 600;
  line-height: var(--line-body);
  margin: 0;
}

.news-section__content {
  display: grid;
  gap: 2.4rem;
}

.news-layout {
  align-items: start;
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
  grid-template-columns: minmax(11rem, 0.26fr) minmax(0, 1fr);
}

.news-categories {
  border-bottom: 1px solid var(--mh-border);
  border-top: 1px solid var(--mh-border);
  display: grid;
  gap: 1rem;
  padding: 1.25rem 0 1.35rem;
}

.news-categories h3 {
  color: var(--mh-blue);
  font-size: calc(var(--type-body) * 0.92);
  font-weight: 800;
  line-height: var(--line-body);
  margin: 0;
}

.news-categories ul {
  display: grid;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-categories li {
  line-height: var(--line-body);
}

.news-categories a,
.news-categories__all {
  color: var(--mh-black);
  display: inline-flex;
  gap: 0.3rem;
  text-decoration: none;
}

.news-categories a:hover,
.news-categories__all:hover {
  color: var(--mh-blue);
  text-decoration: underline;
}

.news-categories__count {
  color: var(--mh-muted);
  white-space: nowrap;
}

.news-list {
  display: grid;
  gap: 0;
}

.news-filter-section {
  padding-bottom: 1.6rem;
  padding-top: 0;
}

.news-filter {
  display: grid;
  gap: 0.7rem;
  padding-bottom: 0;
  padding-top: 0;
}

.news-filter__label {
  color: var(--mh-blue);
  font-size: calc(var(--type-body) * 0.92);
  font-weight: 800;
  line-height: var(--line-body);
  margin: 0;
}

.news-filter__list {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-filter__list button {
  align-items: center;
  appearance: none;
  background: var(--mh-white);
  border: 1px solid var(--mh-border);
  color: var(--mh-black);
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: calc(var(--type-body) * 0.9);
  font-weight: 600;
  gap: 0.3rem;
  line-height: 1.2;
  min-height: 2.35rem;
  padding: 0.42rem 0.7rem;
  text-align: left;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.news-filter__list button:hover,
.news-filter__list button[aria-pressed="true"] {
  background: var(--mh-blue);
  border-color: var(--mh-blue);
  color: var(--mh-white);
}

.news-filter__count {
  opacity: 0.72;
}

.news-filter__status {
  color: var(--mh-gray);
  font-size: calc(var(--type-body) * 0.9);
  line-height: var(--line-body);
  margin: 0;
}

.news-card-section {
  padding: 0;
}

.news-card-section + .news-card-section .news-card {
  border-top: 0;
}

.news-card {
  border-top: 1px solid var(--mh-border);
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  grid-template-columns: minmax(0, 1fr) minmax(15rem, 22rem);
  padding: 2rem 0;
}

.news-card:last-child {
  border-bottom: 1px solid var(--mh-border);
}

.news-card--no-image {
  grid-template-columns: minmax(0, 1fr);
}

.news-card__content {
  display: grid;
  gap: 0.72rem;
  min-width: 0;
}

.news-card__meta {
  align-items: center;
  color: var(--mh-gray);
  display: flex;
  flex-wrap: wrap;
  font-size: calc(var(--type-body) * 0.86);
  gap: 0.4rem 0.8rem;
  line-height: var(--line-body);
  margin: 0;
}

.news-card__category {
  color: var(--mh-blue);
  font-weight: 800;
}

.news-card__title {
  color: var(--mh-blue);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 600;
  line-height: 1.12;
  margin: 0;
}

.news-card__title a {
  text-decoration: none;
}

.news-card__title a:hover {
  text-decoration: underline;
}

.news-card__teaser,
.news-card__author {
  font-size: var(--type-body);
  line-height: var(--line-body);
  margin: 0;
}

.news-card__teaser p {
  margin: 0;
}

.news-card__teaser p + p {
  margin-top: 0.6rem;
}

.news-card__author {
  color: var(--mh-gray);
  font-size: calc(var(--type-body) * 0.86);
}

.news-card__more,
.event-card__more {
  color: var(--mh-blue);
  font-size: calc(var(--type-body) * 0.94);
  font-weight: 800;
  justify-self: start;
  margin-top: 0.3rem;
  text-decoration: none;
}

.news-card__more:hover,
.event-card__more:hover {
  text-decoration: underline;
}

.news-card__media {
  align-self: start;
  background: var(--mh-light-blue);
  color: inherit;
  display: block;
  min-width: 0;
  overflow: hidden;
  text-decoration: none;
}

.news-card__media img {
  aspect-ratio: 4 / 3;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.news-pagination {
  color: var(--mh-gray);
  display: grid;
  gap: 0.9rem;
  justify-items: start;
  margin-top: 1rem;
}

.news-pagination p {
  margin: 0;
}

.news-pagination__controls,
.news-pagination__pages {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-pagination span,
.news-pagination a,
.news-pagination button {
  align-items: center;
  background: var(--mh-white);
  border: 1px solid var(--mh-border);
  color: var(--mh-black);
  cursor: pointer;
  display: inline-flex;
  font-size: calc(var(--type-body) * 0.88);
  font-weight: 600;
  font-family: inherit;
  justify-content: center;
  min-height: 2.25rem;
  min-width: 2.25rem;
  padding: 0.35rem 0.7rem;
  text-decoration: none;
}

.news-pagination__controls span,
.news-pagination button:disabled {
  color: var(--mh-muted);
  cursor: default;
}

.news-pagination__pages .is-current span,
.news-pagination__pages .is-current button,
.news-pagination a:hover,
.news-pagination button:not(:disabled):hover {
  background: var(--mh-blue);
  border-color: var(--mh-blue);
  color: var(--mh-white);
}

.event-list {
  border-bottom: 1px solid var(--mh-border);
  display: grid;
}

.event-card {
  border-top: 1px solid var(--mh-border);
  display: grid;
  gap: clamp(1.4rem, 3vw, 2.6rem);
  grid-template-columns: minmax(8.5rem, 0.18fr) minmax(0, 1fr) minmax(15rem, 0.34fr);
  padding: 2.05rem 0;
}

.event-card__date {
  color: var(--mh-blue);
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  font-weight: 600;
  line-height: 1.08;
}

.event-card__date time,
.event-card__date span {
  display: block;
}

.event-card__content {
  display: grid;
  gap: 0.65rem;
  min-width: 0;
}

.event-card__title {
  color: var(--mh-blue);
  font-size: clamp(1.28rem, 1.8vw, 1.65rem);
  font-weight: 600;
  line-height: 1.12;
  margin: 0;
}

.event-card__title a {
  text-decoration: none;
}

.event-card__title a:hover {
  text-decoration: underline;
}

.event-card__label,
.event-card__description,
.event-card__meta p {
  font-size: var(--type-body);
  line-height: var(--line-body);
  margin: 0;
}

.event-card__label {
  font-weight: 800;
}

.event-card__meta {
  color: var(--mh-black);
  display: grid;
  gap: 0.3rem;
}

.event-card__city {
  color: var(--mh-gray);
}

.event-card__venue {
  color: var(--mh-blue);
  font-weight: 800;
}

@media (min-width: 980px) {
  .text-block--columns .text-block__content {
    column-count: 2;
    column-gap: clamp(2.5rem, 5vw, 4.5rem);
    max-width: var(--container);
  }

  .text-block--columns .text-block__content h2,
  .text-block--columns .text-block__content p,
  .text-block--columns .text-block__content ul,
  .text-block--columns .text-block__content ol,
  .text-block--columns .text-block__content figure {
    break-inside: avoid;
  }
}

.people h2 {
  margin-bottom: 2rem;
}

.people__content {
  display: grid;
  gap: 4rem;
}

.people-group + .people-group,
.team-group + .team-group {
  margin-top: 4.2rem;
}

.people-group h3,
.team-group h2 {
  margin-bottom: 1.8rem;
}

.people-grid,
.team-grid {
  display: grid;
  gap: 2.5rem 2rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.people-grid__group-title {
  grid-column: 1 / -1;
  margin: 0 0 -0.7rem;
}

.people-grid__group-text {
  color: var(--mh-gray);
  font-size: var(--type-body);
  grid-column: 1 / -1;
  line-height: var(--line-body);
  margin: -0.55rem 0 0.15rem;
  max-width: 54rem;
}

.people-grid__group-text p {
  margin: 0;
}

.team-person {
  background: #f7f7f7;
  display: flex;
  flex-direction: column;
  padding-bottom: 1rem;
}

.people-card {
  background: transparent;
  display: block;
  min-width: 0;
  padding: 0;
  perspective: 75rem;
}

.people-card__inner {
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.55s ease;
}

.people-card__front,
.people-card__back {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.people-card__front {
  background: #f7f7f7;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-bottom: 1rem;
}

.people-card__back {
  align-items: flex-start;
  background: #f7f7f7;
  color: var(--mh-black);
  display: flex;
  flex-direction: column;
  inset: 0;
  justify-content: flex-start;
  overflow: auto;
  padding: 1.35rem;
  position: absolute;
  transform: rotateY(180deg);
}

.people-card--flippable {
  cursor: pointer;
}

.people-card--flippable:hover .people-card__inner,
.people-card--flippable:focus .people-card__inner,
.people-card--flippable:focus-within .people-card__inner,
.people-card--flippable.is-flipped .people-card__inner {
  transform: rotateY(180deg);
}

.people-card--flippable:focus-visible {
  outline: 3px solid var(--mh-gold);
  outline-offset: 3px;
}

.people-card__image,
.team-person__image {
  aspect-ratio: 320 / 213;
  background: #eef2f7;
  display: block;
  height: clamp(10.75rem, 14vw, 12.25rem);
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.people-card__image--placeholder {
  background: #eef2f7;
}

.people-card h3,
.team-person h3 {
  color: var(--mh-black);
  font-size: var(--type-body);
  font-weight: 700;
  line-height: var(--line-body);
  margin: 0.85rem 0 0;
  padding: 0 1rem;
}

.people-card p,
.team-person p {
  color: var(--mh-gray);
  font-size: var(--type-body);
  line-height: var(--line-body);
  margin: 0;
  padding: 0 1rem;
}

.people-card__back h3 {
  color: var(--mh-black);
  font-size: 1.15rem;
  margin: 0 0 0.7rem;
  padding: 0;
}

.people-card__back .people-card__cta-text {
  color: var(--mh-gray);
  margin: 0;
  padding: 0;
}

.people-card__cta {
  margin-top: auto;
  min-width: 0;
  width: 100%;
}

.people--compact .people-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stats {
  background: var(--mh-light-blue);
  color: var(--mh-blue);
  padding: 3.9rem 0;
}

.stats__list {
  display: grid;
  gap: 2.2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.stat-card {
  align-items: center;
  display: grid;
  gap: 0.7rem;
  justify-items: center;
  text-align: center;
}

.stat-card__icon {
  height: 6.25rem;
  width: 6.25rem;
}

.stat-card__number {
  font-size: clamp(3.2rem, 6vw, 5.25rem);
  font-weight: 700;
  line-height: 0.95;
}

.stat-card p {
  font-size: var(--type-body);
  line-height: var(--line-body);
  margin: 0;
  max-width: 15rem;
}

.site-footer {
  background: var(--mh-white);
  border-top: 1px solid var(--mh-border);
  padding: 5rem 0 2.4rem;
}

.site-footer__inner {
  display: grid;
  gap: 5.4rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  max-width: var(--container);
  padding: 0 var(--gutter);
}

.site-footer__inner .link-column summary {
  pointer-events: none;
}

.site-footer__actions {
  display: none;
}

.site-footer__bottom {
  color: var(--mh-gray);
  border-top: 1px solid var(--mh-border);
  display: grid;
  gap: 1.3rem;
  margin: 3.5rem auto 0;
  max-width: var(--container);
  padding: 1.5rem var(--gutter) 0;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.7rem;
}

.site-footer__legal a {
  color: var(--mh-gray);
  font-size: var(--type-body);
  line-height: var(--line-nav);
  text-decoration: none;
}

.site-footer__legal a:hover {
  color: var(--mh-blue);
  text-decoration: underline;
}

.site-footer__bottom p {
  font-size: var(--type-body);
  margin: 0;
}

@media (max-width: 1480px) {
  .quicklinks__grid {
    gap: 1.5rem;
  }
}

@media (max-width: 1160px) {
  :root {
    --section-y: 4.2rem;
    --type-h1: 3.75rem;
    --type-h2: 2.45rem;
  }

  .site-header__actions .button--primary:not(.button--page-cta) {
    display: none;
  }

  .quicklinks__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .people-grid,
  .team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .location-map__panel {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .split__inner,
  .split--reverse .split__inner {
    gap: 3rem;
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  :root {
    --header-h: 5.75rem;
    --gutter: 1.25rem;
    --type-h1: 2.25rem;
    --type-h2: 2.15rem;
    --type-body: 1.06rem;
    --type-button: 0.92rem;
  }

  .site-header__inner {
    gap: 0.75rem;
    height: auto;
    min-height: 5.75rem;
    padding: 0.75rem 1rem;
    padding-right: 5rem;
    position: relative;
  }

  .brand img {
    width: 12.25rem;
  }

  .site-header__actions {
    gap: 0.3rem;
  }

  .site-header__actions .button:not(.button--page-cta) {
    display: none;
  }

  .site-header__actions .button--page-cta {
    font-size: 0.78rem;
    min-height: 2.15rem;
    min-width: 0;
    padding: 0.28rem 0.58rem;
  }

  .site-header[data-site-kind="mvz"] .site-header__actions .button--page-cta,
  .site-header[data-site-kind="therapy"] .site-header__actions .button--page-cta {
    display: none;
  }

  .site-header__actions {
    position: static;
  }

  .menu-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
  }

  .site-menu {
    max-height: calc(100vh - 5.75rem);
    min-height: calc(100vh - 5.75rem);
    overflow-y: auto;
  }

  .site-menu__inner {
    align-items: stretch;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1.25rem 1.5rem 2rem;
    text-align: left;
  }

  .site-menu .link-column {
    align-items: stretch;
    width: 100%;
  }

  .site-menu .link-column:last-child {
    border-bottom: 0;
  }

  .site-menu .link-column summary {
    cursor: pointer;
    margin: 0;
    min-height: 0;
    padding: 0.9rem 2.5rem 0.9rem 0;
    position: relative;
    text-align: left;
    width: 100%;
  }

  .site-menu .link-column summary::after {
    border-bottom: 2px solid var(--mh-black);
    border-right: 2px solid var(--mh-black);
    content: "";
    height: 0.65rem;
    position: absolute;
    right: 0.4rem;
    top: 1.1rem;
    transform: rotate(45deg);
    width: 0.65rem;
  }

  .site-menu .link-column[open] summary::after {
    top: 1.42rem;
    transform: rotate(225deg);
  }

  .site-menu .link-column__links {
    align-items: flex-start;
    gap: 0.45rem;
    padding: 0 0 1.1rem;
  }

  .site-menu .link-column a {
    text-align: left;
  }

  .site-menu__actions {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-top: 1rem;
    width: 100%;
  }

  .site-menu__actions .button {
    justify-content: center;
    min-width: 0;
    width: 100%;
  }

  .split__mobile-header-ctas {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-top: 0.45rem;
    width: 100%;
  }

  .split__mobile-header-ctas .button {
    min-width: 0;
    width: 100%;
  }

  .split__actions--mobile-header-only {
    display: flex;
  }

  .hero {
    padding: 0;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: none;
    min-height: 0;
    padding: 0;
  }

  .hero__copy {
    order: 2;
    padding: 1.5rem 1.25rem 2.5rem;
  }

  .hero h1 {
    font-size: var(--type-h1);
    line-height: 0.96;
    margin-bottom: 1rem;
    max-width: 9ch;
  }

  .hero p {
    margin-bottom: 1.15rem;
    max-width: 20rem;
  }

  .hero__media {
    order: 1;
    aspect-ratio: 1 / 1;
    min-height: 0;
  }

  .values-hero {
    padding: 2.8rem 0 1.8rem;
  }

  .section--values-split {
    padding: 3.2rem 0;
  }

  .values-hero + .section--values-split {
    padding-top: 2rem;
  }

  .section__inner,
  .site-footer__inner,
  .site-footer__bottom {
    padding: 0 1.25rem;
  }

  .site-footer__inner {
    gap: 0.25rem;
    text-align: left;
  }

  .site-footer__inner .link-column {
    align-items: flex-start;
  }

  .site-footer__inner .link-column__links {
    align-items: flex-start;
  }

  .site-footer__inner .link-column a {
    text-align: left;
  }

  .site-footer__inner .link-column summary {
    cursor: pointer;
    margin: 0;
    min-height: 0;
    padding: 0.9rem 2.5rem 0.9rem 0;
    pointer-events: auto;
    position: relative;
    text-align: left;
    width: 100%;
  }

  .site-footer__inner .link-column summary::after {
    border-bottom: 2px solid var(--mh-black);
    border-right: 2px solid var(--mh-black);
    content: "";
    height: 0.65rem;
    position: absolute;
    right: 0.4rem;
    top: 1.1rem;
    transform: rotate(45deg);
    width: 0.65rem;
  }

  .site-footer__inner .link-column[open] summary::after {
    top: 1.42rem;
    transform: rotate(225deg);
  }

  .site-footer__inner .link-column__links {
    padding: 0 0 1.1rem;
  }

  .site-footer__actions {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-top: 1rem;
    width: 100%;
  }

  .site-footer__actions .button {
    justify-content: center;
    min-width: 0;
    width: 100%;
  }

  .site-footer__bottom {
    padding-top: 1.5rem;
  }

  .quicklinks__grid,
  .news-layout,
  .news-card,
  .event-card,
  .location-grid,
  .people-grid,
  .team-grid,
  .contact-list,
  .site-footer__inner,
  .inquiry-form__row,
  .split__inner,
  .split--reverse .split__inner {
    grid-template-columns: 1fr;
  }

  .people--compact .people-grid {
    grid-template-columns: 1fr;
  }

  .people-card__image,
  .team-person__image {
    height: clamp(12rem, 56vw, 16rem);
  }

  .section--location-map {
    padding: 3.4rem 0 1.8rem;
  }

  .location-map__canvas {
    height: 20rem;
  }

  .location-map__filters {
    gap: 0.45rem;
    padding: 0.75rem;
  }

  .location-map__filter {
    flex: 0 1 auto;
    font-size: 0.88rem;
    min-height: 2.45rem;
    padding: 0.45rem 0.6rem;
  }

  .location-map__panel {
    align-items: stretch;
    gap: 1.1rem;
    min-height: 0;
    padding: 1rem;
  }

  .map-label {
    font-size: 0.82rem;
  }

  .map-label--hamburg {
    font-size: 1.15rem;
  }

  .map-pin {
    height: 2.2rem;
    width: 1.65rem;
  }

  .map-pin__drop {
    height: 1.65rem;
    width: 1.65rem;
  }

  .map-pin__logo {
    height: 1.18rem;
    top: 0.32rem;
    width: 1.18rem;
  }

  .section--location-cards {
    padding-top: 2rem;
  }

  .location-card {
    min-height: 0;
  }

  .location-card__head {
    min-height: 0;
    padding: 1.25rem;
  }

  .location-card__body {
    padding: 1.25rem;
  }

  .location-card__body .button {
    margin-top: 1rem;
  }

  .contact-layout {
    gap: 2.4rem;
  }

  .contact-social {
    display: grid;
    gap: 0.8rem;
  }

  .section--inquiry {
    padding: 4rem 0 3.6rem;
  }

  .inquiry h1 {
    font-size: var(--type-h2);
    margin-bottom: 1rem;
    overflow-wrap: anywhere;
  }

  .inquiry-form input[type="email"],
  .inquiry-form input[type="tel"],
  .inquiry-form input[type="text"],
  .inquiry-form select {
    min-height: 3.35rem;
    padding: 0 1rem;
  }

  .inquiry-form textarea {
    min-height: 8rem;
    padding: 1rem;
  }

  .privacy-consent {
    font-size: var(--type-body);
  }

  .split__copy,
  .split--reverse .split__copy {
    order: 2;
  }

  .split__image,
  .split__media,
  .split--reverse .split__image,
  .split--reverse .split__media {
    order: 1;
  }

  .faq summary {
    padding-right: 2rem;
  }

  .button {
    min-height: 3.2rem;
    min-width: 100%;
  }

  .cookie-consent-trigger {
    bottom: 0.85rem;
    height: 3rem;
    left: 0.85rem;
    width: 3rem;
  }

  .cookie-consent-trigger svg {
    height: 2rem;
    width: 2rem;
  }

  .cookie-consent {
    padding: 0.75rem;
  }

  .cookie-consent__panel {
    max-height: calc(100vh - 1.5rem);
    padding: 1rem;
  }

  .cookie-consent .cookie-consent__actions {
    grid-template-columns: 1fr;
  }

  .cookie-consent .cookie-consent__actions .button {
    min-width: 0;
    width: 100%;
  }

  .cookie-category__toggle {
    align-items: start;
    padding: 0.9rem;
  }

  .location-map__panel .button {
    min-width: 0;
    width: 100%;
  }

  .inquiry-form__submit {
    min-height: 3rem;
  }

  .button--control {
    min-height: 2.75rem;
    min-width: 3.35rem;
    width: 3.35rem;
  }

  .quick-card {
    grid-template-columns: 3.9rem minmax(0, 1fr) auto;
    min-height: 4.65rem;
    padding: 0.75rem 1rem;
  }

  .quick-card__icon {
    height: 3.25rem;
    width: 3.25rem;
  }

  .news-section {
    padding-top: 4rem;
  }

  .news-section__header {
    margin-bottom: 2rem;
  }

  .news-section__header h1 {
    font-size: 2.2rem;
    overflow-wrap: anywhere;
  }

  .news-card,
  .event-card {
    padding: 1.55rem 0;
  }

  .news-card__media {
    order: -1;
  }

  .news-pagination span,
  .news-pagination a,
  .news-pagination button {
    min-height: 2.4rem;
    min-width: 2.4rem;
  }

  .image-slider__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .image-slide img {
    height: 100%;
  }

  .image-slider__controls .button {
    min-width: 2.5rem;
    width: 2.5rem;
  }

  .site-footer__legal {
    gap: 0.5rem 1.15rem;
  }
}

@media (max-width: 360px) {
  .brand img {
    width: 10.75rem;
  }

  :root {
    --type-h1: 2.08rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
