/* ==== GAPS ==== */
@media screen and (min-width: 1920px) {
  :root {
    --_sizes---gaps--full: 4vw;
    --_sizes---gaps--half: 2vw;
    --_sizes---subheader: 13vw;
  }
}
@media screen and (max-width: 1919px) {
  :root {
    --_sizes---gaps--full: 4vw;
    --_sizes---gaps--half: 2vw;
    --_sizes---subheader: 15vw;
  }
}
@media screen and (max-width: 1279px) {
  :root {
    --_sizes---gaps--full: 4rem;
    --_sizes---gaps--half: 2rem;
    --_sizes---subheader: 14rem;
  }
}
@media screen and (max-width: 991px) {
  :root {
    --_sizes---gaps--full: 4rem;
    --_sizes---gaps--half: 2rem;
    --_sizes---subheader: 14rem;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --_sizes---gaps--full: 3rem;
    --_sizes---gaps--half: 1.5rem;
    --_sizes---subheader: 14rem;
  }
}
@media screen and (max-width: 477px) {
  :root {
    --_sizes---gaps--full: 2rem;
    --_sizes---gaps--half: 1rem;
    --_sizes---subheader: 14rem;
  }
}

/* === NAVIGATION === */

/* --- VIEWS --- */
.view_icon {
  display: none;
}
.view .view_icon-inactive,
.view.w--current .view_icon-active {
  display: block;
}

.footer {
  pointer-events: none;
}
.footer > * {
  pointer-events: auto;
}

/* --- HEADER --- */

.header--hoverable .header:hover {
  background-color: var(--grey--white);
}
.header--hoverable:hover .header {
  background-color: var(--grey--white);
}

@media screen and (max-width: 991px) {
  .nav.is--active .nav_burger-line--1 {
    transform: rotateZ(45deg) translateY(-0.025rem) translateX(0.025rem);
  }
  .nav.is--active .nav_burger-line--2 {
    width: 0rem;
    opacity: 0;
  }
  .nav.is--active .nav_burger-line--3 {
    transform: rotateZ(-45deg) translateY(-0.825rem) translateX(0.825rem);
  }
  .nav_menu._12colgrid {
    pointer-events: none;
  }
  .nav.is--active .nav_menu._12colgrid {
    height: 100%;
    opacity: 1;
    pointer-events: auto;
  }
  .nav.is--active .nav_darkener {
    opacity: 1;
    pointer-events: auto;
  }
  .header:has(.nav.is--active) {
    z-index: 1001;
  }
}
@media screen and (max-width: 778px) {
  .nav.is--active .nav_burger-line--1 {
    transform: rotateZ(45deg) translateY(0.175rem) translateX(0.225rem);
  }
  .nav.is--active .nav_burger-line--3 {
    transform: rotateZ(-45deg) translateY(-0.625rem) translateX(0.625rem);
  }
}
@media screen and (max-width: 478px) {
  .nav.is--active .nav_menu {
    height: auto;
    min-height: 12rem;
    opacity: 1;
    pointer-events: auto;
  }
  .nav.is--active .nav_burger-line--1 {
    transform: rotateZ(45deg) translateY(0.075rem) translateX(0.125rem);
  }
  .nav.is--active .nav_burger-line--3 {
    transform: rotateZ(-45deg) translateY(-0.625rem) translateX(0.625rem);
  }
}

/* --- FOOTER --- */
#copyright-short {
  display: none;
}
@media screen and (max-width: 767px) {
  #copyright-long {
    display: none;
  }
  #copyright-short {
    display: inline;
  }
}

/* --- SCROLL LOCK --- */
.is--scrollocked {
  overflow: hidden !important;
}

/* --- SELECTION --- */
*::selection {
  color: white;
  background-color: var(--highlight--highlight);
}

.body--legal .footer {
  grid-column-start: 1;
  grid-column-end: 13;
  padding-left: 0;
  padding-right: 0;
}
.body--legal .header {
  background-color: var(--grey--offwhite);
}

/* === CURSOR === */

@keyframes pulsate-hover {
  0% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.5);
  }
  90% {
    transform: scale(1);
  }
}

body:has(a:hover) .cursor_wrap,
body:has(.filter_item:hover) .cursor_wrap {
  mix-blend-mode: normal;
}

body:has(a:hover) .cursor_kreis,
body:has(.filter_item:hover) .cursor_kreis {
  background-color: var(--highlight--highlight-67);
  animation: pulsate-hover 1.5s ease-in-out infinite;
}

body,
a {
  cursor: none;
}
body.is--touch,
body.is--touch a,
.body--cursor,
.body--cursor a {
  cursor: auto;
}

body .cursor_wrap {
  display: flex;
}
body.is--touch .cursor_wrap {
  display: none;
}
