@import url("https://use.typekit.net/xlx4nfy.css");
*, *:before, *:after {
  box-sizing: border-box;
}

html, body, div, span, object, iframe, figure, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, code, em, img, small, strike, strong, sub, sup, tt, b, u, i, ol, ul, li, fieldset, form, label, table, caption, tbody, tfoot, thead, tr, th, td, main, canvas, embed, footer, header, nav, section, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: none;
}

footer, header, nav, section, main {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input {
  -webkit-appearance: none;
  border-radius: 0;
}

@media only screen and (max-width: 767.98px) {
  .hide-on-mobile {
    display: none;
  }
}

@font-face {
  font-family: "voyage";
  src: url("../fonts/Voyage-Regular.otf") format("opentype"), url("../fonts/Voyage-Regular.woff2") format("woff2"), url("../fonts/Voyage-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
.grid {
  margin: calc(var(--wmk-space) / 2);
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: calc(var(--wmk-space) / 2);
}
.grid.grid-9 {
  grid-template-columns: repeat(9, 1fr);
}
.grid > * {
  grid-column-start: auto;
}
.grid .col-2 {
  grid-column-end: span 2;
}
@media only screen and (max-width: 767.98px) {
  .grid .col-2 {
    grid-column-end: span 4;
  }
}
.grid .col-3 {
  grid-column-end: span 3;
}
@media only screen and (max-width: 767.98px) {
  .grid .col-3 {
    grid-column-end: span 6;
  }
}
.grid .col-4 {
  grid-column-end: span 4;
}
@media only screen and (max-width: 767.98px) {
  .grid .col-4 {
    grid-column-end: span 8;
  }
}
.grid .col-8 {
  grid-column-end: span 8;
}
.grid .start-3 {
  grid-column-start: 3;
}
@media only screen and (max-width: 767.98px) {
  .grid .start-3 {
    grid-column-start: 1;
  }
}
.grid .start-5 {
  grid-column-start: 5;
}
@media only screen and (max-width: 767.98px) {
  .grid .start-5 {
    grid-column-start: 1;
  }
}
.grid .start-7 {
  grid-column-start: 7;
}
@media only screen and (max-width: 767.98px) {
  .grid .start-7 {
    grid-column-start: 4;
  }
}
.grid.align-end {
  align-items: end;
}
.grid.align-center {
  align-items: center;
}
:root {
  --wmk-color-background: #EFEFEF;
  --wmk-color-primary: #ED4C14;
  --wmk-font-sans-text: "neue-haas-grotesk-text", serif;
  --wmk-font-sans-display: "neue-haas-grotesk-text", serif;
  --wmk-font-serif: "voyage", serif;
  --wmk-font-size-root: 0.9vw;
  --wmk-font-size-small: 1rem;
  --wmk-font-size-small: 1.2rem;
  --wmk-font-size-medium: 1.667rem;
  --wmk-font-size-medium: 1.5rem;
  --wmk-font-size-large: 2.78rem;
  --wmk-font-size-xlarge: 5.56rem;
  --wmk-font-size-huge: 12.78rem;
  --wmk-font-size-huge: 12rem;
  --wmk-space: 5rem;
  --wmk-border-width: 2px;
}
@media only screen and (max-width: 767.98px) {
  :root {
    --wmk-font-size-root: 16px;
    --wmk-font-size-small: 0.9rem;
    --wmk-font-size-medium: 1rem;
    --wmk-font-size-large: 1.15rem;
    --wmk-font-size-xlarge: 2.2rem;
    --wmk-font-size-huge: 2.9rem;
    --wmk-space: 2.5rem;
    --wmk-border-width: 1px;
  }
}

.block.block-header {
  margin: 0;
  position: absolute;
  z-index: 99;
  top: 0;
  left: 0;
  right: 0;
}

.admin-bar .button.menu-button {
  top: 3em;
}

.button.menu-button {
  position: fixed;
  top: calc(var(--wmk-space) / 2 - 0.4em);
  z-index: 101;
  background: var(--wmk-color-background);
}

.navigation {
  background: var(--wmk-color-background);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 100;
  width: 100%;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: visibility 0.25s, opacity 0.25s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.navigation.open {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}
.navigation .logo {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateX(70vw);
  width: 100vw;
  z-index: 1;
  transition: transform 0.6s cubic-bezier(0.435, -0.285, 0.545, 1.24);
}
.navigation .logo.visible {
  transform: translateY(-50%) translateX(0);
}
.navigation .logo svg {
  width: 95%;
  display: block;
  margin: 0 auto;
  height: auto;
}
.navigation .navigation-list {
  font-weight: bold;
  grid-column: span 8;
  padding-top: 0;
  line-height: 1;
  list-style-type: none;
}
.navigation .navigation-list a {
  display: inline-block;
}
.navigation .sub-navigation-list {
  margin: 1.5em 0;
  grid-column: 5/span 4;
  line-height: 1;
  list-style-type: none;
}
.navigation .sub-navigation-list a {
  display: inline-block;
  padding: 0.2em 0;
}

.home-link {
  display: flex;
}
.home-link:hover > span {
  max-width: 10ch;
}
.home-link > span {
  max-width: 0;
  white-space: nowrap;
  overflow: hidden;
  transition: max-width 0.5s ease-in-out;
}
.home-link > span > span {
  width: auto;
}

.patenschaft-form {
  /* Customize the label (the container) */
  /* Hide the browser's default checkbox */
  /* Create a custom checkbox */
  /* On mouse-over, add a grey background color */
  /* When the checkbox is checked, add a blue background */
  /* Create the checkmark/indicator (hidden when not checked) */
  /* Show the checkmark when checked */
  /* Style the checkmark/indicator */
}
@media only screen and (max-width: 767.98px) {
  .patenschaft-form .grid .col-2 {
    grid-column-end: span 8;
  }
}
.patenschaft-form p {
  max-width: none !important;
  line-height: 1.5;
}
.patenschaft-form h2 {
  font-size: var(--wmk-font-size-medium);
  display: block;
  font-weight: bold;
  margin-bottom: 0.4em;
}
.patenschaft-form .patenschaft-select {
  padding: 1.2em;
  border: 2px solid #ddd;
  border-radius: 0.3em;
  display: block;
  cursor: pointer;
  min-height: 9em;
  line-height: 1.3;
}
.patenschaft-form .patenschaft-select:hover, .patenschaft-form .patenschaft-select.active {
  border: 2px solid var(--wmk-color-primary);
}
.patenschaft-form .patenschaft-select a {
  text-decoration: underline;
}
.patenschaft-form .mini-radio {
  padding: 0.5em 1em;
  border: 1px solid #ccc;
  cursor: pointer;
  display: inline-block;
  margin-left: 0;
}
.patenschaft-form .mini-radio.active {
  border: 1px solid var(--wmk-color-primary);
}
.patenschaft-form .label {
  font-weight: bold;
  display: block;
  margin-bottom: 0.25em;
}
.patenschaft-form .step-2 {
  display: none;
}
.patenschaft-form .step-2 h2 {
  margin-bottom: 1em;
}
.patenschaft-form .step-3 {
  display: none;
}
.patenschaft-form .headline {
  display: inline-block;
  width: 14ch;
}
.patenschaft-form input[type=text],
.patenschaft-form input[type=number],
.patenschaft-form input[type=email] {
  width: 100%;
  padding: 0.5em;
  font-size: var(--wmk-font-size-small);
  background: transparent;
  border: 1px solid var(--wmk-color-primary);
  border-radius: 0.3em;
  color: var(--wmk-color-primary);
}
.patenschaft-form .checkbox {
  display: block;
  position: relative;
  padding-left: 2em;
  margin-bottom: 1em;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.patenschaft-form .checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.patenschaft-form .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 1.5em;
  width: 1.5em;
  margin-right: 1.5em;
  background-color: transparent;
  border: 1px solid var(--wmk-color-primary);
}
.patenschaft-form .checkbox:hover input ~ .checkmark {
  background-color: transparent;
}
.patenschaft-form .checkbox input:checked ~ .checkmark {
  background-color: transparent;
}
.patenschaft-form .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.patenschaft-form .checkbox input:checked ~ .checkmark:after {
  display: block;
}
.patenschaft-form .checkbox .checkmark:after {
  left: 0.4em;
  top: 0.2em;
  width: 0.5em;
  height: 0.9em;
  border: solid var(--wmk-color-primary);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

html {
  box-sizing: border-box;
}

.hidden {
  display: none;
}

html {
  margin: 0;
  padding: 0;
  font-size: var(--wmk-font-size-root);
}

body {
  margin: 0;
  padding: 0;
  font-size: 1rem;
  line-height: 1;
}

#smooth-content {
  padding-bottom: 1em;
}

.text-small {
  font-size: var(--wmk-font-size-small);
}

.text-medium {
  font-size: var(--wmk-font-size-medium);
}

.text-large {
  font-size: var(--wmk-font-size-large);
}

.text-xlarge {
  font-size: var(--wmk-font-size-xlarge);
}

.uppercase {
  text-transform: uppercase;
}

.normalcase {
  text-transform: none;
}

.text-left {
  text-align: left;
}

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

.underline {
  border-bottom: 1px solid currentcolor;
}

body {
  font-family: var(--wmk-font-sans-text);
  background: var(--wmk-color-background);
  color: var(--wmk-color-primary);
  padding: 0;
  line-height: 1.1;
}

strong, b {
  font-weight: bold;
}

main {
  padding-top: var(--wmk-space);
  padding-bottom: var(--wmk-space);
}

.home main {
  padding-top: calc(var(--wmk-space) / 2);
}

h1, .block-title {
  font-size: var(--wmk-font-size-huge);
  font-family: var(--wmk-font-sans-display);
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  line-height: 1;
  hyphens: manual;
}
@media only screen and (max-width: 767.98px) {
  h1, .block-title {
    hyphens: auto;
  }
}

.single-wmk_stations h1 {
  font-size: var(--wmk-font-size-xlarge);
  text-transform: none;
  font-weight: normal;
}

h1.wp-block-heading {
  font-size: var(--wmk-font-size-huge);
  font-family: var(--wmk-font-sans-display);
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  line-height: 1;
}

h2.wp-block-heading {
  font-size: var(--wmk-font-size-xlarge);
  text-transform: none;
  font-weight: normal;
  text-align: center;
  margin-top: calc(2 * var(--wmk-space));
}

.block-text p {
  font-size: var(--wmk-font-size-large);
  text-align: center;
}

p, ul {
  font-size: 1em;
  line-height: 1.4;
}

p + p,
p + ul,
ul + p {
  margin-top: 1em;
}

ul {
  list-style-type: disc;
}

a {
  color: var(--wmk-color-primary);
  text-decoration: none;
}

.artist-featured-image {
  margin: 0 auto;
  text-align: center;
  max-width: 25vw;
  margin: var(--wmk-space) auto;
}
@media only screen and (max-width: 767.98px) {
  .artist-featured-image {
    max-width: 70%;
  }
}
.artist-featured-image img {
  max-width: 100%;
  max-height: 30vw;
  height: auto;
  object-fit: contain;
  object-position: center;
}
@media only screen and (max-width: 767.98px) {
  .artist-featured-image img {
    max-width: 100%;
    max-height: none;
  }
}
.artist-featured-image figcaption {
  margin-top: 1em;
  text-transform: uppercase;
  line-height: 1.44;
}

.event-featured-image {
  text-align: center;
  max-width: 50vw;
  margin: var(--wmk-space) auto;
  margin: 0 auto;
  text-align: center;
}
@media only screen and (max-width: 767.98px) {
  .event-featured-image {
    max-width: 70%;
  }
}
.event-featured-image img {
  max-width: 100%;
  max-height: 30vw;
  height: auto;
  object-fit: contain;
  object-position: center;
}
@media only screen and (max-width: 767.98px) {
  .event-featured-image img {
    max-width: 100%;
    max-height: none;
  }
}
.event-featured-image figcaption {
  margin-top: 1em;
  text-transform: uppercase;
  line-height: 1.44;
}

.block {
  margin-top: var(--wmk-space);
  margin-bottom: var(--wmk-space);
}

.block-2-columns {
  text-align: left;
}
.block-2-columns p {
  text-align: left;
  font-size: var(--wmk-font-size-small);
  grid-column-start: auto;
  max-width: 55ch;
  line-height: 1.5;
}

.block-headline-bubble,
.block-divider {
  text-align: center;
  font-size: var(--wmk-font-size-medium);
  text-transform: uppercase;
}
.block-headline-bubble span,
.block-divider span {
  display: inline-block;
  padding: 0.75em 1.25em;
  border-radius: 100%;
  border: var(--wmk-border-width) solid var(--wmk-color-primary);
}

.block-cta {
  text-align: center;
}
.block-cta .hint {
  display: block;
  margin-bottom: 1em;
}
.block-cta .cta {
  color: var(--wmk-color-primary);
  font-size: var(--wmk-font-size-large);
  display: inline-block;
  border: var(--wmk-border-width) solid var(--wmk-color-primary);
  border-radius: var(--wmk-font-size-large);
  padding: 0.25em 1.5em;
  background: transparent;
}

.block-text p {
  font-size: var(--wmk-font-size-large);
  text-align: center;
  line-height: 1.2 !important;
}

.block-text-1-column,
.block-text-2-columns,
.block-text-4-columns {
  text-align: left;
}
.block-text-1-column p, .block-text-1-column ul,
.block-text-2-columns p,
.block-text-2-columns ul,
.block-text-4-columns p,
.block-text-4-columns ul {
  text-align: left;
  font-size: var(--wmk-font-size-small);
  max-width: 55ch;
}

.block-footer-text p {
  font-size: var(--wmk-font-size-xlarge);
  font-family: var(--wmk-font-serif);
  text-align: center;
  line-height: 0.9;
}

.play-button {
  border: var(--wmk-border-width) solid var(--wmk-color-primary);
  padding: 2em;
  background: transparent;
  border-radius: 100%;
  margin: 0 auto;
  display: block;
}

main img:not(.no-filter) {
  filter: grayscale(100%);
  transition: filter 0.3s ease-in-out;
}
main img:not(.no-filter):hover {
  filter: none;
}

.gallery {
  overflow: hidden;
}
.gallery .gallery-wrapper {
  overflow: hidden;
  overflow-x: scroll;
  width: 100vw;
  scrollbar-width: none; /* Can be "auto", "thin", or "none" */
  scrollbar-color: var(--wmk-color-primary) var(--wmk-color-background); /* Thumb and track color */
}
.gallery .gallery-wrapper::-webkit-scrollbar {
  width: 0; /* Width of the scrollbar */
  height: 0;
}
.gallery .gallery-wrapper::-webkit-scrollbar-track {
  background: var(--wmk-color-background); /* Color of the track */
}
.gallery .gallery-wrapper::-webkit-scrollbar-thumb {
  background: var(--wmk-color-primary); /* Color of the thumb */
}
.gallery .gallery-wrapper::-webkit-scrollbar-thumb:hover {
  background: var(--wmk-color-primary); /* Darker color on hover */
}
.gallery .gallery-list {
  display: flex;
  flex-wrap: nowrap;
  list-style-type: none;
}
.gallery .gallery-list .gallery-item {
  flex: 0 0 auto;
  padding: 1em;
  width: 30em;
  font-size: var(--wmk-font-size-small);
  cursor: pointer;
}
@media only screen and (max-width: 767.98px) {
  .gallery .gallery-list .gallery-item {
    max-width: 70vw;
  }
}
.gallery .gallery-list .gallery-item.portrait {
  width: 20em;
}
.gallery .gallery-list .gallery-item img {
  width: 100%;
  height: auto;
}
.gallery .gallery-list .gallery-item figcaption {
  margin-top: 0.5em;
}
.gallery .gallery-list .gallery-item .play {
  margin-top: 0.5em;
}

.post-list {
  text-align: center;
  font-size: var(--wmk-font-size-xlarge);
  text-transform: uppercase;
  font-weight: bold;
}
@media only screen and (max-width: 767.98px) {
  .post-list {
    hyphens: auto;
  }
}
.post-list span {
  vertical-align: super;
  font-size: var(--wmk-font-size-large);
  margin-right: -0.25em;
}
.post-list li, .post-list a {
  display: block;
  line-height: 1;
}
.post-list a {
  padding: 0.1em var(--wmk-space);
}
.post-list a:hover {
  background: var(--wmk-color-primary);
  color: white;
}

.button {
  display: inline-block;
  border: var(--wmk-border-width) solid var(--wmk-color-primary);
  border-radius: var(--wmk-font-size-xlarge);
  padding: 0.2em 1em;
  background: transparent;
  font-size: 1em;
  font-family: var(--wmk-font-sans-text);
  color: var(--wmk-color-primary);
}
.button:hover {
  background: var(--wmk-color-primary);
  color: white;
}
@media only screen and (max-width: 767.98px) {
  .button + .button {
    margin-top: 0.5em;
  }
}

.block-room {
  margin-top: calc(2 * var(--wmk-space));
}
.block-room h2 {
  text-align: center;
  margin-bottom: 0.5em;
}
.block-room .pre_title {
  display: block;
}
.block-room .block-text {
  margin-top: 1em;
}
.block-room .images {
  display: flex;
  flex-direction: row;
  justify-content: center;
  max-width: 50em;
  margin: 3em auto;
}
@media only screen and (max-width: 767.98px) {
  .block-room .images {
    max-width: 100%;
    flex-direction: column;
  }
}
.block-room .images .left {
  padding-right: 1em;
}
@media only screen and (max-width: 767.98px) {
  .block-room .images .left {
    padding-left: 1em;
    padding-bottom: 1em;
    text-align: center;
  }
}
.block-room .images .right {
  padding-left: 1em;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (max-width: 767.98px) {
  .block-room .images .right {
    padding-right: 1em;
    text-align: center;
  }
}
.block-room .images .image_1 {
  max-width: 25vw;
}
@media only screen and (max-width: 767.98px) {
  .block-room .images .image_1 {
    max-width: 50%;
  }
}
.block-room .images .image_2 {
  max-height: 20vw;
}
@media only screen and (max-width: 767.98px) {
  .block-room .images .image_2 {
    max-height: none;
    max-width: 75%;
    margin-bottom: 1em;
  }
}

.block-slideshow {
  display: flex;
  width: 100%;
  justify-content: center;
}
.block-slideshow .slideshow-layout {
  text-align: left;
  display: flex;
  flex-direction: row;
  margin: 0 auto;
  width: 100%;
  max-width: 60vw;
}
@media only screen and (max-width: 767.98px) {
  .block-slideshow .slideshow-layout {
    flex-direction: column;
    justify-content: center;
  }
}
@media only screen and (max-width: 767.98px) {
  .block-slideshow .slideshow-layout {
    max-width: none;
  }
}
.block-slideshow .slideshow-layout .left, .block-slideshow .slideshow-layout .right {
  width: 50%;
  padding: 1em;
}
.block-slideshow .slideshow-layout .left img, .block-slideshow .slideshow-layout .right img {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 767.98px) {
  .block-slideshow .slideshow-layout .left {
    width: 75%;
  }
  .block-slideshow .slideshow-layout .right {
    width: 100%;
  }
}
.block-slideshow .slideshow-layout .slider-links > div {
  border-top: var(--wmk-border-width) solid var(--wmk-color-primary);
  display: flex;
  align-items: center;
}
.block-slideshow .slideshow-layout .slider-links > div:last-child {
  border-bottom: var(--wmk-border-width) solid var(--wmk-color-primary);
}
.block-slideshow .slideshow-layout .slider-link {
  font-size: var(--wmk-font-size-large);
  text-transform: uppercase;
  display: block;
  padding: 0.2em 0;
  display: flex;
  align-items: center;
}
.block-slideshow .slideshow-layout .slider-link:before {
  content: " ";
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
  border-radius: 100%;
  margin-right: 0.3em;
  border: var(--wmk-border-width) solid var(--wmk-color-primary);
}
.block-slideshow .slideshow-layout .slider-link.active:before,
.block-slideshow .slideshow-layout .slider-link:hover::before {
  background: var(--wmk-color-primary);
}

.block-team .team-layout .team-member figure {
  aspect-ratio: 2/3;
  overflow: hidden;
  width: 100%;
  margin: 0;
  margin-bottom: 1em;
}
.block-team .team-layout .team-member img {
  object-fit: cover;
  height: 100%;
  object-position: center;
}

.block-teaser .teaser-layout {
  justify-content: space-between;
}
@media only screen and (max-width: 767.98px) {
  .block-teaser .teaser-layout .teaser:nth-child(even) {
    grid-column-start: 4;
  }
}
.block-teaser .teaser-layout .teaser.landscape figure {
  aspect-ratio: 3/2;
  width: 100%;
}
.block-teaser .teaser-layout .teaser.portrait figure {
  aspect-ratio: 2/3;
  width: 75%;
}
.block-teaser .teaser-layout .teaser figure {
  overflow: hidden;
  margin: 0;
  margin-bottom: 0.5em;
}
.block-teaser .teaser-layout .teaser img {
  object-fit: cover;
  width: 100%;
  height: auto;
  min-height: 100%;
  object-position: center;
}

.block-video {
  text-align: center;
  margin: var(--wmk-space);
  height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media only screen and (max-width: 767.98px) {
  .block-video {
    height: auto;
  }
}
.block-video video, .block-video .vimeo {
  width: 88.8vh; /* 50vh * 16/9 */
  max-width: 50vw;
  height: auto;
}
@media only screen and (max-width: 767.98px) {
  .block-video video, .block-video .vimeo {
    max-width: 75vw;
  }
}

.block-logo {
  text-align: center;
  width: 100%;
}
.block-logo .logo-svg-container {
  width: 100%;
  max-width: 70em;
  margin: 0 auto;
  margin-top: calc(-1.5 * var(--wmk-space));
}
.block-logo svg {
  width: 100%;
  height: auto;
}

.block-patenschaft-hero {
  width: 100%;
}
.block-patenschaft-hero svg {
  width: 100%;
  height: auto;
}

.block-projects .project {
  border-top: var(--wmk-border-width) solid var(--wmk-color-primary);
}
.block-projects .project.light {
  border-top: var(--wmk-border-width) solid white;
}
.block-projects .project a {
  display: block;
}
.block-projects .project a:hover {
  background-color: var(--wmk-color-primary);
  color: white;
}
.block-projects .event {
  border-top: var(--wmk-border-width) solid white;
}
.block-projects .columns {
  padding: 1em 0 3em 0;
  display: flex;
  flex-direction: row;
}
.block-projects .columns .date {
  width: 40%;
  padding-left: calc(var(--wmk-space) / 2);
}
@media only screen and (max-width: 767.98px) {
  .block-projects .columns .date {
    width: 45%;
    padding-right: calc(var(--wmk-space) / 2);
  }
}
.block-projects .columns .title {
  width: 40%;
}
@media only screen and (max-width: 767.98px) {
  .block-projects .columns .title {
    width: 45%;
    hyphens: auto;
  }
}
.block-projects .columns .action {
  width: 20%;
  text-align: right;
  padding-right: calc(var(--wmk-space) / 2);
}
@media only screen and (max-width: 767.98px) {
  .block-projects .columns .action {
    width: 10%;
  }
}

.block-press .press-entry {
  border-top: var(--wmk-border-width) solid var(--wmk-color-primary);
}
.block-press .action {
  text-align: right;
  padding-right: calc(var(--wmk-space) / 2);
}
.block-press .button {
  margin-top: 0.4em;
  display: inline-block;
}

.page-kontakt .block-text-2-columns p,
.page-presse .block-text-2-columns p {
  font-size: var(--wmk-font-size-medium);
}

.partner {
  width: 100vw;
  position: relative;
  overflow: hidden;
  --offset: 75vw;
  --move-initial: calc(-25% + var(--offset));
  --move-final: calc(-50% + var(--offset));
}
.partner .partner-inner {
  display: flex;
  width: fit-content;
  position: relative;
  transform: translate3d(var(--move-initial), 0, 0);
  animation: marquee 30s linear infinite;
  animation-play-state: paused;
}
.partner .partner-inner:hover {
  animation-play-state: paused !important;
}
.partner .partner-list {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
}
.partner .partner-list .partner-item {
  flex: 0 0 auto;
  font-size: var(--wmk-font-size-small);
  height: 10em;
}
.partner .partner-list .partner-item img {
  height: 100%;
  width: auto;
}

.station-map {
  background: #000;
  height: 50vh;
}

.station-number {
  background: var(--wmk-color-primary);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: white;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 100%;
}

.page-projekte h1 {
  z-index: 99999;
}
.page-projekte .teaser {
  z-index: -1;
}

@keyframes marquee {
  0% {
    transform: translate3d(var(--move-initial), 0, 0);
  }
  100% {
    transform: translate3d(var(--move-final), 0, 0);
  }
}

/*# sourceMappingURL=app.css.map */
