/**** FONT STYLE ****/
#events-app {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
}
#events-app:not([data-v-app]) .card * {
  opacity: 0;
}
@media screen and (min-width: 768px) {
  #events-app {
    grid-template-columns: repeat(4, 1fr);
  }
}
#events-app.preview {
  margin-top: -1rem;
}
@media screen and (min-width: 768px) {
  #events-app.preview {
    margin-top: 0;
  }
}
#events-app.preview .months,
#events-app.preview .reset-filters,
#events-app.preview .calendar-filter,
#events-app.preview > a {
  display: none;
}
@media screen and (min-width: 1200px) {
  #events-app.preview .months,
  #events-app.preview .reset-filters,
  #events-app.preview .calendar-filter,
  #events-app.preview > a {
    display: block;
  }
}
#events-app.preview .events {
  visibility: hidden;
  grid-row-start: 1;
}
#events-app.preview .events.show {
  visibility: visible;
}
@media screen and (min-width: 768px) {
  #events-app.preview .events {
    grid-row-start: 1;
  }
}
@media screen and (min-width: 1200px) {
  #events-app.preview .events {
    grid-row-start: 2;
  }
}
#events-app .months {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  grid-row: 3/4;
}
@media screen and (min-width: 768px) {
  #events-app .months {
    grid-column: 1/4;
    grid-row: 1/2;
    position: sticky;
    z-index: 102;
    margin-top: -0.25rem;
    top: 0;
  }
}
#events-app .months::-webkit-scrollbar {
  display: none;
}
#events-app .months ul {
  gap: 2.4rem;
}
#events-app .months li {
  text-transform: uppercase;
}
#events-app .months li.active {
  border-bottom: solid 1px black;
}
#events-app .months li:not(.inactive) {
  cursor: pointer;
}
#events-app .reset-filters {
  text-align: center;
}
@media screen and (min-width: 768px) {
  #events-app .reset-filters {
    grid-row: 1/2;
    grid-column: 4/5;
    position: sticky;
    z-index: 102;
    top: 0;
    padding-top: 9px;
    margin-top: -0.25rem;
    margin-left: calc(-1rem - 1px);
  }
}
@media screen and (min-width: 1200px) {
  #events-app .reset-filters {
    margin-left: 0;
  }
}
#events-app .calendar-filter {
  z-index: 101;
  grid-row: 2/3;
  background: rgb(249, 255, 246);
}
@media screen and (min-width: 768px) {
  #events-app .calendar-filter {
    display: flex;
    gap: 1rem;
    grid-column: 1/5;
    grid-row-start: 2;
  }
  #events-app .calendar-filter > * {
    width: 50%;
  }
}
@media screen and (min-width: 1200px) {
  #events-app .calendar-filter {
    flex-direction: column;
    grid-column: 4/5;
    position: sticky;
    top: 46px;
    height: fit-content;
    z-index: 90;
  }
  #events-app .calendar-filter > * {
    width: 100%;
  }
}
#events-app .calendar-filter .categories.has-active li:not(.active) {
  opacity: 0.5;
}
#events-app .search-categories-filters {
  grid-row: 1/2;
}
@media screen and (min-width: 768px) {
  #events-app .search-categories-filters {
    grid-column: 3/5;
    grid-row: 2/3;
  }
}
@media screen and (min-width: 1200px) {
  #events-app .search-categories-filters {
    grid-column: 4/5;
    grid-row-start: 2;
    margin-top: 220px;
    position: sticky;
    top: 266px;
    height: fit-content;
    padding-top: 1rem;
    z-index: 100;
    background: rgb(249, 255, 246);
  }
}
#events-app .search-categories-filters img {
  width: 15px;
  position: absolute;
}
#events-app .search-categories-filters .expand-categories {
  cursor: pointer;
}
#events-app .search-categories-filters .categories ul {
  columns: 2;
  margin-bottom: 1rem;
}
#events-app .search-categories-filters .categories li {
  cursor: pointer;
}
#events-app .search-categories-filters .categories li:not(.active) {
  opacity: 0.3;
}
#events-app .events {
  grid-row-start: 5;
  visibility: hidden;
}
#events-app .events.show {
  visibility: visible;
}
@media screen and (min-width: 768px) {
  #events-app .events {
    grid-column: 1/5;
    grid-row-start: 3;
  }
}
@media screen and (min-width: 1200px) {
  #events-app .events {
    grid-column: 1/4;
    grid-row-start: 2;
  }
}

@keyframes events-showcase-slider {
  100% {
    transform: translateX(calc((-45vw - 1rem) * var(--slider-element-count)));
  }
}
.events-showcase-slider {
  margin-top: 3rem;
  padding: 0 !important;
  overflow: hidden;
  background: transparent !important;
  height: 45vw;
}
.events-showcase-slider .grid {
  flex-wrap: nowrap;
  gap: 0.5rem;
}
.events-showcase-slider .grid * {
  font-size: 30px;
}
.events-showcase-slider .grid .font-larger, .events-showcase-slider .grid .card .card-menu.card-menu-font-larger li, .card .card-menu.card-menu-font-larger .events-showcase-slider .grid li,
.events-showcase-slider .grid .card .card-menu.card-menu-font-larger li a,
.card .card-menu.card-menu-font-larger li .events-showcase-slider .grid a {
  font-size: 1.3em;
}
.events-showcase-slider .grid > * {
  flex: 0 0 45vw;
  animation: events-showcase-slider calc(var(--slider-element-count) * 10s) linear infinite;
}

@keyframes events-list-slider {
  100% {
    transform: translateY(calc(-7rem * var(--slider-element-count)));
  }
}
.events-list-slider-container {
  position: relative;
}
.events-list-slider-container .scroll-indicators {
  position: absolute;
  top: 0;
  right: -3rem;
  width: 0.7rem;
  height: calc(100% - 100px);
}
.events-list-slider-container .scroll-indicators .scroll-indicator {
  height: calc(100% / var(--slider-element-count) - 0.66rem);
  margin-bottom: 0.66rem;
  background: #FF81D7;
  border-radius: 0.35rem;
}
.events-list-slider-container .scroll-indicators .scroll-indicator.active {
  background: white;
}
.events-list-slider-container .events-list-slider {
  height: calc(100dvh - 45vw - 8.8rem - 74px);
  overflow: hidden;
}
.events-list-slider-container .events-list-slider .card {
  margin-bottom: 0.5rem;
  height: 6rem;
  animation: events-list-slider calc(var(--slider-element-count) * 8s) linear infinite;
}
.events-list-slider-container .events-list-slider .card span {
  margin-right: 0.5rem;
}
.events-list-slider-container .events-list-slider .card .pills {
  display: inline-block;
}

.events-screen-qr-code {
  position: fixed;
  bottom: 0;
  right: 0;
}
.events-screen-qr-code svg {
  width: 100px;
}

@font-face {
  font-family: Outfit;
  src: url("../fonts/Outfit-Thin.woff") format("woff");
  font-weight: 200;
}
@font-face {
  font-family: Outfit;
  src: url("../fonts/Outfit-Light.woff") format("woff");
  font-weight: 300;
}
@font-face {
  font-family: Outfit;
  src: url("../fonts/Outfit-Regular.woff") format("woff");
  font-weight: 400;
}
@font-face {
  font-family: Outfit;
  src: url("../fonts/Outfit-Medium.woff") format("woff");
  font-weight: 500;
}
@font-face {
  font-family: Outfit;
  src: url("../fonts/Outfit-SemiBold.woff") format("woff");
  font-weight: 600;
}
@font-face {
  font-family: Outfit;
  src: url("../fonts/Outfit-Bold.woff") format("woff");
  font-weight: 700;
}
@font-face {
  font-family: Outfit;
  src: url("../fonts/Outfit-ExtraBold.woff") format("woff");
  font-weight: 800;
}
@font-face {
  font-family: CrimsonPro;
  src: url("../fonts/CrimsonPro-Regular.woff") format("woff");
  font-weight: 400;
}
html {
  font-size: 17px;
}
html.font-setting-medium {
  font-size: 19px;
}
html.font-setting-large {
  font-size: 21px;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 16px;
  }
  html.font-setting-medium {
    font-size: 18px;
  }
  html.font-setting-large {
    font-size: 20px;
  }
}
@media screen and (min-width: 1024px) {
  html {
    font-size: 17px;
  }
  html.font-setting-medium {
    font-size: 19px;
  }
  html.font-setting-large {
    font-size: 21px;
  }
}

* {
  font-family: Outfit, sans-serif;
  font-weight: 300;
  font-size: 1rem;
}

strong {
  font-weight: 500;
}

.paragraph-margin, section, :is(.main-col, .side-col) :is(p, ul), figure {
  margin-bottom: 1.5rem;
}

li p:last-child {
  margin-bottom: 0;
}

h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

h2 {
  font-weight: 400;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

h4 {
  font-weight: 600;
}

ul {
  list-style: none;
}
ul.inline {
  display: flex;
  gap: 0.5rem;
}
.main-col ul:not(.no-bullets) {
  list-style: disc;
  padding-left: 1.5rem;
}

a {
  text-decoration: none;
}
p a {
  font-weight: 500;
}

button, input[type=submit] {
  background: none;
  border: none;
  cursor: pointer;
}
button[disabled], input[type=submit][disabled] {
  opacity: 0.5;
}

.font-medium, .font-medium * {
  font-size: 1.1rem;
}

.font-larger, .card .card-menu.card-menu-font-larger li,
.card .card-menu.card-menu-font-larger li a, .font-larger *, .card .card-menu.card-menu-font-larger li *,
.card .card-menu.card-menu-font-larger li a * {
  font-size: 1.3rem;
  line-height: 1.2em;
}

.font-weight-600, .font-weight-600 * {
  font-weight: 600;
}

body {
  background-size: cover;
}
body.no-background {
  background-image: none !important;
}

/******* Background images ************/
body.page-template-default,
body.page-template-search,
body.page-template-accessibility {
  background-image: url("../img/photocase_110944.jpg");
}

body.page-template-home {
  background-image: url("../img/start_photocase_3149508.jpg");
}

body.parent-template-kulturzentrum,
body.page-template-project {
  background-image: url("../img/photocase_12964.jpg");
}

body.page-template-events,
body.page-template-event,
body.page-template-event-screen {
  background-image: url("../img/programm_invert_photocase_4357900.jpg");
}

body.page-template-medien,
body.parent-template-medien {
  background-image: url("../img/medien_photocase_3707628.jpg");
}

body.page-template-theater,
body.parent-template-theater {
  background-image: url("../img/theater_photocase_1189745.jpg");
}

body.page-template-z-magazin,
body.page-template-z-magazin-editions,
body.page-template-z-magazin-archive,
body.page-template-z-magazin-issue,
body.page-template-z-magazin-article,
body.parent-template-z-magazin {
  background-image: url("../img/zett_photocase_3108260.jpg");
}

/******* DEFAULT PAGE LAYOUT ************/
.page-layout {
  display: block;
  overflow-wrap: break-word;
}
@media screen and (min-width: 768px) {
  .page-layout {
    display: grid;
    grid-template-rows: auto;
    gap: 1rem;
    grid-template-columns: repeat(3, 1fr);
  }
}
.page-layout .main-col {
  margin-bottom: 1rem;
}
.page-layout .main-col p {
  max-width: 670px;
}
.page-layout .main-col p a {
  border-bottom: solid 2px black;
}
@media screen and (min-width: 768px) {
  .page-layout .main-col {
    grid-column: 1/3;
  }
}
@media screen and (min-width: 576px) {
  .page-layout .main-col .team li {
    flex: 0 0 calc(50% - 1rem);
  }
}
@media screen and (min-width: 1200px) {
  .page-layout .main-col .team li {
    flex: 0 0 calc(33.3% - 1rem);
  }
}
@media screen and (min-width: 768px) {
  .page-layout .side-col {
    grid-row: 1;
    grid-column: 3/4;
  }
}
@media screen and (min-width: 1200px) {
  .page-layout .side-col {
    grid-column: 3/4;
  }
}
@media screen and (min-width: 576px) {
  .page-layout .side-col .team li {
    flex: 0 0 calc(50% - 0.5rem);
  }
}
@media screen and (min-width: 768px) {
  .page-layout .side-col .team li {
    flex: 0 0 100%;
  }
}
@media screen and (min-width: 768px) {
  .page-layout .menu-col {
    grid-row: 2;
    grid-column: 1/2;
  }
}
@media screen and (min-width: 1200px) {
  .page-layout .menu-col {
    grid-row: 1;
    grid-column: 4/5;
  }
}
.page-layout .menu-col .card-menu {
  padding-top: 0;
}

body.page-template-home .card,
body.page-template-home .card .inherit-card-background {
  background-color: rgb(249, 255, 246);
}
body.page-template-home .page-layout {
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  body.page-template-home .page-layout {
    gap: 1rem;
  }
}
body.page-template-home .page-layout .card {
  display: none;
}
@media screen and (min-width: 768px) {
  body.page-template-home .page-layout .card {
    display: block;
  }
}
@media screen and (min-width: 1200px) {
  body.page-template-home .page-layout .area:not(.area-events):not(.area-project) {
    grid-row-start: 2;
    grid-auto-columns: 1fr;
  }
}
body.page-template-home .page-layout .area-theater,
body.page-template-home .page-layout .area-medien,
body.page-template-home .page-layout .area-z-magazin {
  display: flex;
  flex-direction: column;
}
body.page-template-home .page-layout .area-theater .card,
body.page-template-home .page-layout .area-medien .card,
body.page-template-home .page-layout .area-z-magazin .card {
  flex: 1;
}
@media screen and (min-width: 768px) {
  body.page-template-home .page-layout .area-theater {
    grid-column: 1/4;
  }
}
@media screen and (min-width: 1200px) {
  body.page-template-home .page-layout .area-theater {
    grid-column: 1/2;
  }
}
body.page-template-home .page-layout .area-medien {
  grid-row-start: 2;
}
@media screen and (min-width: 768px) {
  body.page-template-home .page-layout .area-medien {
    grid-column: 1/4;
  }
}
@media screen and (min-width: 1200px) {
  body.page-template-home .page-layout .area-medien {
    grid-column: 2/3;
  }
}
body.page-template-home .page-layout .area-z-magazin {
  grid-row-start: 3;
}
@media screen and (min-width: 768px) {
  body.page-template-home .page-layout .area-z-magazin {
    grid-column: 1/4;
  }
}
@media screen and (min-width: 1200px) {
  body.page-template-home .page-layout .area-z-magazin {
    grid-column: 3/4;
  }
}
body.page-template-home .page-layout .area-events {
  grid-row-start: 4;
}
@media screen and (min-width: 768px) {
  body.page-template-home .page-layout .area-events {
    grid-column: 1/4;
  }
}
@media screen and (min-width: 1200px) {
  body.page-template-home .page-layout .area-events {
    grid-row-start: 1;
  }
}
body.page-template-home .page-layout .area-events .card {
  display: block;
  padding: 1rem;
  padding-bottom: 0;
}
@media screen and (min-width: 768px) {
  body.page-template-home .page-layout .area-events .card {
    padding-bottom: 1rem;
  }
}
body.page-template-home .page-layout .area-events li:nth-of-type(2n - 1) .preview-card {
  background-color: rgb(126, 144, 140);
}
body.page-template-home .page-layout .area-events li:nth-of-type(2n) .preview-card {
  background-color: rgb(96, 102, 103);
}
body.page-template-home .page-layout .area-project {
  grid-column: 1/2;
}
@media screen and (min-width: 768px) {
  body.page-template-home .page-layout .area-project {
    grid-column: 1/4;
  }
}
body.page-template-home .page-layout .area-project .card {
  display: block;
}
body.page-template-home .page-layout .area-project .card .cols {
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  body.page-template-home .page-layout .area-project .card .cols {
    flex-direction: row;
  }
}

body.parent-template-kulturzentrum .news a,
body.page-template-project .news a {
  padding-bottom: 0.5rem;
}
body.parent-template-kulturzentrum .news-date,
body.page-template-project .news-date {
  text-transform: uppercase;
}

@media screen and (min-width: 576px) {
  body.page-template-team .page-layout li {
    flex: 0 0 calc(50% - 1rem);
  }
}
@media screen and (min-width: 768px) {
  body.page-template-team .page-layout {
    grid-template-columns: repeat(3, 1fr);
  }
  body.page-template-team .page-layout .main-col {
    grid-column: 1/4;
  }
  body.page-template-team .page-layout .main-col li {
    flex: 0 0 calc(33% - 1rem);
  }
}
@media screen and (min-width: 1200px) {
  body.page-template-team .page-layout .main-col li {
    flex: 0 0 calc(25% - 1rem);
  }
}

body.page-template-events .card,
body.page-template-events .card .inherit-card-background,
body.page-template-event .card,
body.page-template-event .card .inherit-card-background,
body.page-template-event-screen .card,
body.page-template-event-screen .card .inherit-card-background {
  background: rgb(249, 255, 246);
}
body.page-template-events li .preview-card,
body.page-template-event li .preview-card,
body.page-template-event-screen li .preview-card {
  background-color: rgb(131, 120, 159);
}
body.page-template-events .event-buttons,
body.page-template-event .event-buttons,
body.page-template-event-screen .event-buttons {
  margin: 1rem 0;
}
body.page-template-events .event-buttons .tickets a,
body.page-template-event .event-buttons .tickets a,
body.page-template-event-screen .event-buttons .tickets a {
  display: inline-block;
  background-image: url("../img/icons/tickets.svg");
  background-size: cover;
  background-repeat: no-repeat;
  height: 50px;
  width: 100px;
  padding-top: 18px;
  padding-left: 12px;
  margin-top: -9px;
  margin-left: -3px;
  margin-right: 1rem;
  color: #A40113;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 13px;
}
body.page-template-events .event-buttons .social,
body.page-template-event .event-buttons .social,
body.page-template-event-screen .event-buttons .social {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
}

.page-template-event .card > .cols {
  flex-direction: column;
}
@media screen and (min-width: 1200px) {
  .page-template-event .card > .cols {
    flex-direction: row;
  }
  .page-template-event .card > .cols .col {
    flex: 7;
  }
  .page-template-event .card > .cols .col:nth-child(2) {
    flex: 6;
  }
}
.page-template-event .title-img {
  margin-left: -1rem;
  margin-right: -1rem;
}
@media screen and (min-width: 1200px) {
  .page-template-event .title-img {
    margin-left: 0;
    margin-right: 0;
  }
}
@media screen and (min-width: 1200px) {
  .page-template-event .title-img img.orientation-portrait {
    margin-left: 33%;
    width: 67%;
  }
}
.page-template-event .title-img .img-caption {
  padding: 0 1rem;
}
@media screen and (min-width: 1200px) {
  .page-template-event .title-img .img-caption {
    padding: 0;
  }
}
.page-template-event .sponsors li {
  padding-top: 2rem;
}
.page-template-event .sponsors li img {
  max-width: 200px;
}
.page-template-event .text p {
  margin-bottom: 0.5em;
}

html.html-page-template-event-screen {
  --wrap-width: 870px;
  font-size: 22px;
}
html.html-page-template-event-screen header .logo * {
  font-size: 4rem;
}
html.html-page-template-event-screen main {
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  body.page-template-workshops .page-layout .main-col,
  body.page-template-workshops .page-layout .side-col,
  body.page-template-participate .page-layout .main-col,
  body.page-template-participate .page-layout .side-col {
    grid-column: 1/4;
  }
  body.page-template-workshops .page-layout .preview-card .content,
  body.page-template-participate .page-layout .preview-card .content {
    padding: 0.5rem;
  }
  body.page-template-workshops .page-layout .preview-card .content p,
  body.page-template-participate .page-layout .preview-card .content p {
    font-size: 0.9rem;
  }
}
@media screen and (min-width: 1024px) {
  body.page-template-workshops .page-layout,
  body.page-template-participate .page-layout {
    grid-template-columns: repeat(4, 1fr);
  }
  body.page-template-workshops .page-layout .main-col,
  body.page-template-participate .page-layout .main-col {
    grid-column: 1/4;
  }
  body.page-template-workshops .page-layout .side-col,
  body.page-template-participate .page-layout .side-col {
    grid-column: 4/5;
  }
}
@media screen and (min-width: 1200px) {
  body.page-template-workshops .page-layout .preview-card .content,
  body.page-template-participate .page-layout .preview-card .content {
    padding: 1rem;
  }
  body.page-template-workshops .page-layout .preview-card .content p,
  body.page-template-participate .page-layout .preview-card .content p {
    font-size: 1rem;
  }
}
body.page-template-workshops .page-layout .kulturzentrum a:nth-of-type(3n - 2) .preview-card,
body.page-template-participate .page-layout .kulturzentrum a:nth-of-type(3n - 2) .preview-card {
  background-color: rgb(88, 39, 88);
}
body.page-template-workshops .page-layout .kulturzentrum a:nth-of-type(3n - 1) .preview-card,
body.page-template-participate .page-layout .kulturzentrum a:nth-of-type(3n - 1) .preview-card {
  background-color: rgb(131, 120, 159);
}
body.page-template-workshops .page-layout .kulturzentrum a:nth-of-type(3n) .preview-card,
body.page-template-participate .page-layout .kulturzentrum a:nth-of-type(3n) .preview-card {
  background-color: rgb(118, 61, 101);
}
body.page-template-workshops .page-layout .medien a:nth-of-type(3n - 2) .preview-card,
body.page-template-participate .page-layout .medien a:nth-of-type(3n - 2) .preview-card {
  background-color: #b82741;
}
body.page-template-workshops .page-layout .medien a:nth-of-type(3n - 1) .preview-card,
body.page-template-participate .page-layout .medien a:nth-of-type(3n - 1) .preview-card {
  background-color: rgb(255, 92, 86);
}
body.page-template-workshops .page-layout .medien a:nth-of-type(3n) .preview-card,
body.page-template-participate .page-layout .medien a:nth-of-type(3n) .preview-card {
  background-color: #963e55;
}
body.page-template-workshops .page-layout .theater a:nth-of-type(3n - 2) .preview-card,
body.page-template-participate .page-layout .theater a:nth-of-type(3n - 2) .preview-card {
  background-color: rgb(162, 56, 133);
}
body.page-template-workshops .page-layout .theater a:nth-of-type(3n - 1) .preview-card,
body.page-template-participate .page-layout .theater a:nth-of-type(3n - 1) .preview-card {
  background-color: rgb(101, 83, 171);
}
body.page-template-workshops .page-layout .theater a:nth-of-type(3n) .preview-card,
body.page-template-participate .page-layout .theater a:nth-of-type(3n) .preview-card {
  background-color: rgb(150, 120, 220);
}
body.page-template-workshops .page-layout .workshops-list,
body.page-template-participate .page-layout .workshops-list {
  padding-bottom: 2rem;
}

body.page-template-workshop .title-img:not(.preview-card .title-img) {
  margin: 1rem -1rem;
}
@media screen and (min-width: 576px) {
  body.page-template-workshop .title-img:not(.preview-card .title-img) {
    margin: 1rem 0;
  }
}
body.page-template-workshop .workshop-date {
  margin: 1rem 0;
}

body.page-template-z-magazin .card,
body.page-template-z-magazin .card .inherit-card-background,
body.page-template-z-magazin-editions .card,
body.page-template-z-magazin-editions .card .inherit-card-background,
body.page-template-z-magazin-archive .card,
body.page-template-z-magazin-archive .card .inherit-card-background,
body.page-template-z-magazin-issue .card,
body.page-template-z-magazin-issue .card .inherit-card-background,
body.page-template-z-magazin-article .card,
body.page-template-z-magazin-article .card .inherit-card-background,
body.parent-template-z-magazin .card,
body.parent-template-z-magazin .card .inherit-card-background {
  background: rgb(249, 244, 242);
}

body.page-template-z-magazin .page-layout,
body.page-template-z-magazin-editions .page-layout,
body.page-template-z-magazin-archive .page-layout,
body.page-template-z-magazin-issue .page-layout {
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  body.page-template-z-magazin .page-layout,
  body.page-template-z-magazin-editions .page-layout,
  body.page-template-z-magazin-archive .page-layout,
  body.page-template-z-magazin-issue .page-layout {
    grid-template-rows: auto;
  }
}
@media screen and (min-width: 1200px) {
  body.page-template-z-magazin .page-layout,
  body.page-template-z-magazin-editions .page-layout,
  body.page-template-z-magazin-archive .page-layout,
  body.page-template-z-magazin-issue .page-layout {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 768px) {
  body.page-template-z-magazin .page-layout .text,
  body.page-template-z-magazin-editions .page-layout .text,
  body.page-template-z-magazin-archive .page-layout .text,
  body.page-template-z-magazin-issue .page-layout .text {
    grid-column: 1/3;
  }
}
@media screen and (min-width: 1200px) {
  body.page-template-z-magazin .page-layout .text,
  body.page-template-z-magazin-editions .page-layout .text,
  body.page-template-z-magazin-archive .page-layout .text,
  body.page-template-z-magazin-issue .page-layout .text {
    grid-column: 1/3;
  }
}
@media screen and (min-width: 1200px) {
  body.page-template-z-magazin .page-layout .info,
  body.page-template-z-magazin-editions .page-layout .info,
  body.page-template-z-magazin-archive .page-layout .info,
  body.page-template-z-magazin-issue .page-layout .info {
    grid-column: 3/4;
    grid-row: 1/2;
  }
}
@media screen and (min-width: 768px) {
  body.page-template-z-magazin .page-layout .side-col,
  body.page-template-z-magazin-editions .page-layout .side-col,
  body.page-template-z-magazin-archive .page-layout .side-col,
  body.page-template-z-magazin-issue .page-layout .side-col {
    grid-row: 1/2;
    grid-column: 3/4;
  }
}
@media screen and (min-width: 768px) {
  body.page-template-z-magazin .page-layout .issue-column,
  body.page-template-z-magazin-editions .page-layout .issue-column,
  body.page-template-z-magazin-archive .page-layout .issue-column,
  body.page-template-z-magazin-issue .page-layout .issue-column {
    grid-column: 2/3;
    grid-row: 2/span 2;
  }
}
@media screen and (min-width: 1200px) {
  body.page-template-z-magazin .page-layout .issue-column,
  body.page-template-z-magazin-editions .page-layout .issue-column,
  body.page-template-z-magazin-archive .page-layout .issue-column,
  body.page-template-z-magazin-issue .page-layout .issue-column {
    grid-column: 3/4;
    grid-row: 2/span 8;
  }
}
@media screen and (min-width: 1200px) {
  body.page-template-z-magazin .page-layout .current-issue,
  body.page-template-z-magazin-editions .page-layout .current-issue,
  body.page-template-z-magazin-archive .page-layout .current-issue,
  body.page-template-z-magazin-issue .page-layout .current-issue {
    grid-column: 4/5;
    grid-row: 1/3;
  }
}
body.page-template-z-magazin .page-layout .current-issue img,
body.page-template-z-magazin-editions .page-layout .current-issue img,
body.page-template-z-magazin-archive .page-layout .current-issue img,
body.page-template-z-magazin-issue .page-layout .current-issue img {
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  body.page-template-z-magazin .page-layout .articles,
  body.page-template-z-magazin-editions .page-layout .articles,
  body.page-template-z-magazin-archive .page-layout .articles,
  body.page-template-z-magazin-issue .page-layout .articles {
    grid-column: 1/3;
  }
}
@media screen and (min-width: 1200px) {
  body.page-template-z-magazin .page-layout .articles,
  body.page-template-z-magazin-editions .page-layout .articles,
  body.page-template-z-magazin-archive .page-layout .articles,
  body.page-template-z-magazin-issue .page-layout .articles {
    grid-column: 1/3;
    grid-row-start: 2;
  }
}
body.page-template-z-magazin .page-layout .articles .preview-card:nth-of-type(3n - 2),
body.page-template-z-magazin-editions .page-layout .articles .preview-card:nth-of-type(3n - 2),
body.page-template-z-magazin-archive .page-layout .articles .preview-card:nth-of-type(3n - 2),
body.page-template-z-magazin-issue .page-layout .articles .preview-card:nth-of-type(3n - 2) {
  background-color: rgb(255, 108, 108);
}
body.page-template-z-magazin .page-layout .articles .preview-card:nth-of-type(3n - 1),
body.page-template-z-magazin-editions .page-layout .articles .preview-card:nth-of-type(3n - 1),
body.page-template-z-magazin-archive .page-layout .articles .preview-card:nth-of-type(3n - 1),
body.page-template-z-magazin-issue .page-layout .articles .preview-card:nth-of-type(3n - 1) {
  background-color: rgb(154, 25, 82);
}
body.page-template-z-magazin .page-layout .articles .preview-card:nth-of-type(3n),
body.page-template-z-magazin-editions .page-layout .articles .preview-card:nth-of-type(3n),
body.page-template-z-magazin-archive .page-layout .articles .preview-card:nth-of-type(3n),
body.page-template-z-magazin-issue .page-layout .articles .preview-card:nth-of-type(3n) {
  background-color: rgb(255, 92, 86);
}

body.page-template-z-magazin-editions .page-layout .issue,
body.page-template-z-magazin-archive .page-layout .issue,
body.page-template-z-magazin-issue .page-layout .issue {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  body.page-template-z-magazin-editions .page-layout .issue,
  body.page-template-z-magazin-archive .page-layout .issue,
  body.page-template-z-magazin-issue .page-layout .issue {
    grid-column: 1/4;
    grid-template-columns: repeat(3, 1fr);
  }
  body.page-template-z-magazin-editions .page-layout .issue .main-col,
  body.page-template-z-magazin-archive .page-layout .issue .main-col,
  body.page-template-z-magazin-issue .page-layout .issue .main-col {
    grid-column: 1/3;
  }
}
@media screen and (min-width: 1200px) {
  body.page-template-z-magazin-editions .page-layout .issue,
  body.page-template-z-magazin-archive .page-layout .issue,
  body.page-template-z-magazin-issue .page-layout .issue {
    grid-column: 1/5;
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 768px) {
  body.page-template-z-magazin-editions .page-layout .issue .text,
  body.page-template-z-magazin-archive .page-layout .issue .text,
  body.page-template-z-magazin-issue .page-layout .issue .text {
    grid-column: 1/4;
  }
}
@media screen and (min-width: 1200px) {
  body.page-template-z-magazin-editions .page-layout .issue .text,
  body.page-template-z-magazin-archive .page-layout .issue .text,
  body.page-template-z-magazin-issue .page-layout .issue .text {
    grid-column: 1/5;
  }
}
@media screen and (min-width: 768px) {
  body.page-template-z-magazin-editions .page-layout .issue .cover,
  body.page-template-z-magazin-archive .page-layout .issue .cover,
  body.page-template-z-magazin-issue .page-layout .issue .cover {
    grid-column: 1/2;
    grid-row-start: 2;
  }
}
@media screen and (min-width: 1200px) {
  body.page-template-z-magazin-editions .page-layout .issue .cover,
  body.page-template-z-magazin-archive .page-layout .issue .cover,
  body.page-template-z-magazin-issue .page-layout .issue .cover {
    grid-column: 1/2;
    grid-row-start: 2;
  }
}
@media screen and (min-width: 768px) {
  body.page-template-z-magazin-editions .page-layout .issue .issue-column,
  body.page-template-z-magazin-archive .page-layout .issue .issue-column,
  body.page-template-z-magazin-issue .page-layout .issue .issue-column {
    grid-column: 2/3;
    grid-row: 2/3;
  }
}
@media screen and (min-width: 1200px) {
  body.page-template-z-magazin-editions .page-layout .issue .issue-column,
  body.page-template-z-magazin-archive .page-layout .issue .issue-column,
  body.page-template-z-magazin-issue .page-layout .issue .issue-column {
    grid-column: 4/5;
    grid-row-start: 2;
  }
}
@media screen and (min-width: 768px) {
  body.page-template-z-magazin-editions .page-layout .issue .articles,
  body.page-template-z-magazin-archive .page-layout .issue .articles,
  body.page-template-z-magazin-issue .page-layout .issue .articles {
    grid-column: 1/3;
    grid-row-start: 3;
  }
}
@media screen and (min-width: 1200px) {
  body.page-template-z-magazin-editions .page-layout .issue .articles,
  body.page-template-z-magazin-archive .page-layout .issue .articles,
  body.page-template-z-magazin-issue .page-layout .issue .articles {
    grid-row-start: 2;
    grid-column: 2/4;
  }
}

body.page-template-z-magazin-article .text p {
  font-family: CrimsonPro, sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
}

@media screen and (min-width: 768px) {
  body.page-template-article .page-layout,
  body.page-template-z-magazin-article .page-layout {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  body.page-template-article .page-layout,
  body.page-template-z-magazin-article .page-layout {
    grid-template-columns: repeat(4, 1fr);
  }
}
body.page-template-article .page-layout p,
body.page-template-z-magazin-article .page-layout p {
  line-height: 1.4;
}
body.page-template-article .page-layout .abstract p,
body.page-template-z-magazin-article .page-layout .abstract p {
  font-family: Outfit, sans-serif;
  font-weight: 600;
}
body.page-template-article .page-layout .main-col blockquote,
body.page-template-z-magazin-article .page-layout .main-col blockquote {
  padding-right: 1rem;
}
body.page-template-article .page-layout .main-col blockquote *,
body.page-template-z-magazin-article .page-layout .main-col blockquote * {
  font-size: 1.8rem;
  font-style: italic;
  line-height: 1.2em;
}
@media screen and (min-width: 768px) {
  body.page-template-article .page-layout .main-col blockquote *,
  body.page-template-z-magazin-article .page-layout .main-col blockquote * {
    font-size: 2.3rem;
  }
}
body.page-template-article .page-layout .gallery-col figcaption,
body.page-template-z-magazin-article .page-layout .gallery-col figcaption {
  text-transform: uppercase;
}
body.page-template-article .page-layout .gallery-col .gallery-title,
body.page-template-z-magazin-article .page-layout .gallery-col .gallery-title {
  cursor: pointer;
}
body.page-template-article .page-layout .gallery-col .gallery-title:after,
body.page-template-z-magazin-article .page-layout .gallery-col .gallery-title:after {
  content: " >";
}
@media screen and (min-width: 768px) {
  body.page-template-article .page-layout .gallery-col .gallery-title,
  body.page-template-z-magazin-article .page-layout .gallery-col .gallery-title {
    margin-top: 3.5rem;
  }
}
@media screen and (min-width: 1200px) {
  body.page-template-article .page-layout .gallery-col,
  body.page-template-z-magazin-article .page-layout .gallery-col {
    grid-column: 3/5;
  }
}
body.page-template-article .page-layout .gallery-col figure ul,
body.page-template-z-magazin-article .page-layout .gallery-col figure ul {
  grid-template-columns: repeat(1, 1fr);
}
body.page-template-article .page-layout .gallery-col figure ul li div,
body.page-template-z-magazin-article .page-layout .gallery-col figure ul li div {
  position: relative;
  display: flex;
  width: 100%;
}
body.page-template-article .page-layout .gallery-col figure ul li div a,
body.page-template-z-magazin-article .page-layout .gallery-col figure ul li div a {
  position: relative;
}
body.page-template-article .page-layout .gallery-col figure ul li div .img-caption,
body.page-template-z-magazin-article .page-layout .gallery-col figure ul li div .img-caption {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  color: white;
  background-color: rgba(15, 23, 128, 0.8);
  padding: 5px 0.5rem;
  line-height: 1.1em;
  font-weight: 200;
}
@media screen and (min-width: 1200px) {
  body.page-template-article .page-layout .gallery-col figure ul li div.portrait,
  body.page-template-z-magazin-article .page-layout .gallery-col figure ul li div.portrait {
    width: 60%;
  }
}
body.page-template-article.parent-template-theater .page-layout .gallery-col figure ul li div .img-caption,
body.page-template-z-magazin-article.parent-template-theater .page-layout .gallery-col figure ul li div .img-caption {
  background-color: rgba(150, 120, 220, 0.8);
}

@media screen and (min-width: 1200px) {
  body.page-template-medien .page-layout,
  body.page-template-theater .page-layout {
    grid-template-columns: repeat(4, 1fr);
  }
}

body.page-template-medien .card,
body.page-template-medien .card .inherit-card-background,
body.parent-template-medien .card,
body.parent-template-medien .card .inherit-card-background {
  background: rgb(229, 219, 218);
}
body.page-template-medien .page-layout a:nth-of-type(3n - 2) .preview-card,
body.parent-template-medien .page-layout a:nth-of-type(3n - 2) .preview-card {
  background-color: #b82741;
}
body.page-template-medien .page-layout a:nth-of-type(3n - 1) .preview-card,
body.parent-template-medien .page-layout a:nth-of-type(3n - 1) .preview-card {
  background-color: rgb(255, 92, 86);
}
body.page-template-medien .page-layout a:nth-of-type(3n) .preview-card,
body.parent-template-medien .page-layout a:nth-of-type(3n) .preview-card {
  background-color: #963e55;
}

body.page-template-theater .card,
body.page-template-theater .card .inherit-card-background,
body.parent-template-theater .card,
body.parent-template-theater .card .inherit-card-background {
  background: rgb(223, 228, 231);
}
@media screen and (min-width: 768px) {
  body.page-template-theater .page-layout .workshops,
  body.parent-template-theater .page-layout .workshops {
    grid-column: 1/3;
  }
}
body.page-template-theater .page-layout .preview-card,
body.parent-template-theater .page-layout .preview-card {
  background-color: rgb(150, 120, 220);
}
body.page-template-theater .page-layout a:nth-of-type(3n - 2) .preview-card,
body.parent-template-theater .page-layout a:nth-of-type(3n - 2) .preview-card {
  background-color: rgb(162, 56, 133);
}
body.page-template-theater .page-layout a:nth-of-type(3n - 1) .preview-card,
body.parent-template-theater .page-layout a:nth-of-type(3n - 1) .preview-card {
  background-color: rgb(101, 83, 171);
}
body.page-template-theater .page-layout a:nth-of-type(3n) .preview-card,
body.parent-template-theater .page-layout a:nth-of-type(3n) .preview-card {
  background-color: rgb(150, 120, 220);
}

@media screen and (min-width: 768px) {
  body.page-template-search .side-col {
    grid-column: 1/2;
  }
}
body.page-template-search .side-col h5 {
  padding-bottom: 2rem;
}
body.page-template-search .side-col img {
  width: 15px;
  position: absolute;
}
body.page-template-search .side-col input[type=checkbox] {
  appearance: none;
  width: 30px;
  white-space: nowrap;
}
body.page-template-search .side-col input[type=checkbox]::before {
  content: "[";
  margin-right: 9px;
}
body.page-template-search .side-col input[type=checkbox]::after {
  content: "]";
}
body.page-template-search .side-col input[type=checkbox]:checked::before {
  content: "[x";
  margin-right: 0;
}
@media screen and (min-width: 768px) {
  body.page-template-search .main-col {
    grid-column: 2/5;
  }
}
@media screen and (min-width: 1200px) {
  body.page-template-search .main-col hr {
    width: 70%;
  }
  body.page-template-search .main-col li {
    width: 80%;
  }
}
body.page-template-search .main-col .results {
  list-style: none;
  padding-left: 0;
}
body.page-template-search .main-col .results li:not(:first-of-type) a h2 {
  padding-top: 2rem;
}
body.page-template-search .main-col .results h2,
body.page-template-search .main-col .results p {
  margin-bottom: 0;
}

body.page-template-accessibility .page-layout .icons {
  display: flex;
  justify-content: space-around;
}
body.page-template-accessibility .page-layout .icons > div {
  align-self: center;
}
body.page-template-accessibility .page-layout .icons .font-sizes .icon span {
  width: 1.5em;
  height: 1.5em;
  font-weight: 400;
  background-color: white;
  border-radius: 50%;
  display: inline-block;
}
body.page-template-accessibility .page-layout .icons .font-sizes .icon:first-of-type span {
  font-size: 30px;
  padding: 0.2rem 0.3rem;
  letter-spacing: -0.1rem;
}
body.page-template-accessibility .page-layout .icons .font-sizes .icon:nth-of-type(2) span {
  font-size: 40px;
  padding: 0.2rem 0.4rem;
  letter-spacing: -0.2rem;
}
body.page-template-accessibility .page-layout .icons .font-sizes .icon:nth-of-type(3) span {
  font-size: 50px;
  padding: 0.2rem 0.5rem;
  letter-spacing: -0.3rem;
}
body.page-template-accessibility .page-layout .icons img {
  width: 60px;
}
@media screen and (min-width: 576px) {
  body.page-template-accessibility .page-layout .icons {
    justify-content: flex-start;
  }
}
@media screen and (min-width: 768px) {
  body.page-template-accessibility .page-layout .icons {
    flex-direction: column;
  }
}
@media screen and (min-width: 1200px) {
  body.page-template-accessibility .page-layout .icons {
    justify-content: space-around;
    flex-direction: row;
  }
}
@media screen and (min-width: 768px) {
  body.page-template-accessibility .page-layout {
    grid-template-columns: repeat(3, 1fr);
  }
  body.page-template-accessibility .page-layout .main-col {
    order: 1;
  }
  body.page-template-accessibility .page-layout .side-col {
    order: 2;
    grid-column: 3/4;
  }
}

@media screen and (min-width: 768px) {
  html.font-setting-medium .main-col .grid > *,
  html.font-setting-medium .events.grid > *, html.font-setting-large .main-col .grid > *,
  html.font-setting-large .events.grid > * {
    flex: 0 0 calc(50% - 0.5rem);
  }
}
@media screen and (min-width: 1200px) {
  html.font-setting-medium .main-col .grid > *,
  html.font-setting-medium .events.grid > *, html.font-setting-large .main-col .grid > *,
  html.font-setting-large .events.grid > * {
    flex: 0 0 calc(25% - 0.75rem);
  }
}
html.font-setting-medium .main-col .grid.medium-large > *,
html.font-setting-medium .events.grid.medium-large > *, html.font-setting-large .main-col .grid.medium-large > *,
html.font-setting-large .events.grid.medium-large > * {
  flex: 0 0 100%;
}
@media screen and (min-width: 768px) {
  html.font-setting-medium .main-col .grid.medium-large > *,
  html.font-setting-medium .events.grid.medium-large > *, html.font-setting-large .main-col .grid.medium-large > *,
  html.font-setting-large .events.grid.medium-large > * {
    flex: 0 0 calc(50% - 0.6666666667rem);
  }
}
@media screen and (min-width: 1200px) {
  html.font-setting-medium .main-col .grid.medium-large > *,
  html.font-setting-medium .events.grid.medium-large > *, html.font-setting-large .main-col .grid.medium-large > *,
  html.font-setting-large .events.grid.medium-large > * {
    flex: 0 0 calc(50% - 0.6666666667rem);
  }
}
html.font-setting-medium .main-col .grid.medium > *,
html.font-setting-medium .events.grid.medium > *, html.font-setting-large .main-col .grid.medium > *,
html.font-setting-large .events.grid.medium > * {
  flex: 0 0 100%;
}
@media screen and (min-width: 768px) {
  html.font-setting-medium .main-col .grid.medium > *,
  html.font-setting-medium .events.grid.medium > *, html.font-setting-large .main-col .grid.medium > *,
  html.font-setting-large .events.grid.medium > * {
    flex: 0 0 calc(50% - 0.5rem);
  }
}
@media screen and (min-width: 768px) {
  html .search-categories-filters {
    margin-top: 300px !important;
    top: 400px !important;
  }
}
html .contrast .card {
  background-color: white;
}
html .contrast .preview-card img {
  opacity: 0;
}
html .contrast #contrast-img {
  content: url("../img/icons/contrast_red.png");
}
html .no-background #no-background-img {
  content: url("../img/icons/no-background_red.png");
}
html.font-setting-small #font-setting-small span {
  color: #D73B36;
}
html.font-setting-medium #font-setting-medium span {
  color: #D73B36;
}
html.font-setting-large #font-setting-large span {
  color: #D73B36;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #426E66;
  background-size: cover;
  background-position: top;
  background-attachment: fixed;
}

body.nav-active {
  position: fixed;
}

.wrap, header > .cols, main {
  max-width: var(--wrap-width, 1300px);
  margin: 0 auto;
  padding: 0 1rem;
}
@media screen and (min-width: 768px) {
  .wrap, header > .cols, main {
    padding: 0 2rem;
  }
}

.wrap-small {
  max-width: 1000px;
  margin: 0 auto;
}

img {
  max-width: 100%;
}

video {
  max-width: 100%;
}

iframe {
  width: 100%;
  border: none;
  aspect-ratio: 16/9;
  margin-top: 0.5rem;
}

figure ul {
  list-style: none !important;
  padding: 0 !important;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  figure ul {
    grid-template-columns: repeat(4, 1fr);
  }
}
figure ul li.hidden {
  display: none;
}
figure ul li img {
  width: 100%;
}

.cols {
  gap: 1rem;
}
.cols .col-75 {
  flex: 0 0 calc(75% - 0.5rem);
}
.cols .col-25 {
  flex: 0 0 calc(25% - 0.5rem);
}
.cols .col-66 {
  flex: 0 0 calc(66.66% - 0.5rem);
}
.cols .col-33 {
  flex: 0 0 calc(33.33% - 0.5rem);
}

main {
  margin-top: 2rem;
  margin-bottom: 1rem;
}
main > .cols .col:not(.active) {
  display: none;
}
@media screen and (min-width: 1200px) {
  main > .cols .col:not(.active) {
    display: block;
  }
}
main > .cols .col.active {
  -webkit-order: 1;
  order: -1;
}
main .card-title {
  background: #D73B36;
  margin-bottom: 0;
  padding: 9px 15px 13px 15px;
  width: calc(100vw - 2rem);
}
@media screen and (min-width: 768px) {
  main .card-title {
    width: fit-content;
  }
}
main .card-title:not(.active) {
  display: none;
}
@media screen and (min-width: 1200px) {
  main .card-title:not(.active) {
    display: block;
  }
  main .card-title:not(.active),
  main .card-title:not(.active) * {
    background: black;
  }
}
body.page-template-home main .card-title,
body.page-template-home main .card-title * {
  color: white;
}
main .card-title,
main .card-title * {
  font-weight: 400;
  font-size: 1.5rem;
  color: white;
  text-decoration: underline;
  text-transform: uppercase;
  text-underline-offset: 4px;
}

#abrisskante {
  position: relative;
  z-index: 150;
  width: calc(100vw + 10px);
  max-width: none;
  margin-left: -10px;
  height: 70px;
  object-fit: cover;
  object-position: bottom center;
}
@media screen and (min-width: 768px) {
  #abrisskante {
    height: 45px;
  }
}

/************* HEADER ***********/
header {
  position: relative;
}
header > .cols {
  width: 100%;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  header > .cols {
    flex-direction: row;
    padding: 0 2rem;
  }
}
header > .cols .col {
  display: flex;
  align-self: center;
}
header > .cols .col > .search-box {
  display: none;
}
@media screen and (min-width: 768px) {
  header > .cols .col > .search-box {
    display: inherit;
    width: 100%;
    height: 40px;
    z-index: 150;
    margin-top: -2px;
    position: relative;
  }
  header > .cols .col > .search-box .search-form {
    width: 0;
    transition: width 0.3s;
    overflow: hidden;
  }
  header > .cols .col > .search-box.active .search-form {
    width: 80%;
    transition: width 0.3s linear;
  }
  header > .cols .col > .search-box .search-btn {
    cursor: pointer;
    width: 40px;
    padding-left: 0.5rem;
    margin-right: 0.5rem;
  }
  header > .cols .col > .search-box .search-btn img {
    height: 100%;
  }
}
header > .cols .col .languages {
  text-align: right;
  margin-top: 5rem;
  margin-bottom: -3.5rem;
}
header > .cols .col .languages * {
  text-transform: uppercase;
  color: white;
  font-weight: 400;
  font-size: 15px;
}
header > .cols .col .languages div {
  padding-bottom: 0.125rem;
}
header > .cols .col .languages a {
  background-color: black;
}
header > .cols .col:first-child {
  justify-content: center;
  position: absolute;
  top: 15px;
}
@media screen and (min-width: 768px) {
  header > .cols .col:first-child {
    justify-content: flex-start;
    position: relative;
    top: 0;
  }
}
header > .cols .col:nth-child(2) {
  justify-content: center;
}
header > .cols .col:last-child {
  margin-bottom: 0;
  justify-content: flex-end;
  display: none;
}
@media screen and (min-width: 768px) {
  header > .cols .col:last-child {
    display: inherit;
  }
}
header .nav-toggle {
  z-index: 150;
}
@media screen and (min-width: 1200px) {
  header .nav-toggle {
    margin-right: 1em;
  }
}
header .highlighted-page-icon a {
  position: absolute;
  z-index: 1000;
  top: 0;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 400;
  color: white;
  text-align: center;
  padding-top: 48px;
  text-decoration: underline;
  text-underline-offset: 7px;
  transform: rotate(-10deg);
  display: inline-block;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: #D73B36;
  margin-top: -15px;
}
.nav-active header {
  position: fixed;
  z-index: 150;
  top: 0;
}
.nav-active header > .cols .col:nth-child(2) {
  visibility: hidden;
}
@media screen and (min-width: 768px) {
  .nav-active header > .cols .col:nth-child(2) {
    visibility: visible;
  }
}
.nav-active header > .cols .col:last-child .social,
.nav-active header > .cols .col:last-child .highlighted-page-icon,
.nav-active header > .cols .col:last-child .languages {
  display: none;
}

footer {
  padding-bottom: 2rem;
}
footer .wrap, footer main, footer header > .cols {
  padding: 0 1rem;
}
@media screen and (min-width: 768px) {
  footer .wrap, footer main, footer header > .cols {
    padding: 0 2rem;
  }
}
footer .wrap .cols, footer main .cols, footer header > .cols .cols {
  background: rgb(249, 255, 246);
  padding: 2rem 1rem;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  footer .wrap .cols, footer main .cols, footer header > .cols .cols {
    flex-direction: row;
  }
}

body > .social {
  display: none;
}
@media screen and (min-width: 1400px) {
  body > .social {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: fixed;
    right: calc((100vw - 1300px) / 2 - 2.5rem);
    bottom: 1rem;
  }
}
body > .social .icon {
  width: 40px;
}
body > .social .text-icon {
  background: #D73B36;
  text-transform: uppercase;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-left: -11px;
  margin-bottom: 10px;
  text-align: center;
  padding-top: 13px;
  text-decoration: underline;
  text-underline-offset: 3px;
  line-height: 1.5em;
  transform: rotate(7deg);
  cursor: pointer;
}
body > .social .text-icon, body > .social .text-icon * {
  color: white;
  font-size: 0.75rem;
  font-weight: 400;
}

header .logo,
nav .logo {
  margin-bottom: 0;
}
header .logo,
header .logo *,
nav .logo,
nav .logo * {
  font-weight: 800;
  font-size: 3rem;
  color: white;
}
@media screen and (min-width: 768px) {
  header .logo,
  nav .logo {
    z-index: 150;
  }
}

/************* NAVIGATION ***********/
nav {
  position: fixed;
  z-index: 145;
  width: 100vw;
  height: 100vh;
  padding-top: 4rem;
  background: #315285;
  display: none;
}
@media screen and (min-width: 768px) {
  nav {
    padding-top: 8rem;
  }
}
body.nav-active nav {
  display: block;
}
nav .wrap, nav main, nav header > .cols {
  height: 100vh;
  text-align: center;
  padding-bottom: 10rem;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
  display: flex;
  flex-direction: column;
}
nav .wrap::-webkit-scrollbar, nav main::-webkit-scrollbar, nav header > .cols::-webkit-scrollbar {
  display: none;
}
nav a, nav span {
  cursor: pointer;
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  nav a, nav span {
    font-size: 1rem;
  }
}
nav .logo {
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  nav .logo {
    display: none;
  }
}
nav .meta {
  margin-bottom: 2rem;
}
nav .meta,
nav .meta .languages {
  display: flex;
  gap: 1.5rem;
  flex-direction: column;
  text-align: center;
}
@media screen and (min-width: 768px) {
  nav .meta,
  nav .meta .languages {
    flex-direction: row;
    text-align: left;
  }
}
nav .meta a {
  font-weight: 300;
  text-transform: uppercase;
}
nav .meta .languages {
  padding: 0;
}
nav .meta .col:last-child {
  text-align: right;
}
nav .content {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media screen and (min-width: 768px) {
  nav .content {
    column-gap: 1em;
    flex-wrap: wrap;
    text-align: start;
    padding-top: 0;
    flex-direction: row;
  }
  nav .content > * {
    flex: 1;
    min-width: 12em;
  }
}
@media screen and (min-width: 1400px) {
  nav .content {
    flex-direction: row;
    justify-content: space-between;
  }
  nav .content > * {
    flex: none;
    min-width: unset;
  }
}
nav section ul {
  padding: 1rem 0 2rem 0;
}
nav section ul li {
  padding-top: 0.6em;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow-x: hidden;
}
nav section ul li a {
  font-weight: 300;
}
nav * {
  color: white;
}
nav h2 {
  text-transform: uppercase;
  position: relative;
  hyphens: auto;
}
nav h2 a,
nav h2 span {
  font-weight: 400;
  font-size: 1.5rem !important;
  border-bottom: solid 2px;
  padding-bottom: 0.4em;
}
@media screen and (min-width: 768px) {
  nav h2 a,
  nav h2 span {
    border-bottom: none;
  }
}
@media screen and (min-width: 1400px) {
  nav h2 a,
  nav h2 span {
    border-bottom: solid 2px;
  }
}
@media screen and (min-width: 768px) {
  nav h2 {
    border-bottom: 2px solid;
    max-width: 6em;
    padding-bottom: 0.5em;
  }
}
@media screen and (min-width: 1400px) {
  nav h2 {
    border-bottom: none;
    max-width: unset;
  }
}
nav .social {
  display: block;
}

.icon-hamburger-3 {
  width: 45px;
  height: 29px;
  margin-top: 5px;
}
body.nav-active .icon-hamburger-3 {
  transform: translateX(10px);
}
.icon-hamburger-3 div {
  background: black;
  height: 3px;
  border-radius: 2px;
}
.icon-hamburger-3 div:nth-child(1) {
  transform-origin: top left;
}
body.nav-active .icon-hamburger-3 div:nth-child(1) {
  transform: rotate(45deg) translate(-3px, 0);
}
.icon-hamburger-3 div:nth-child(3) {
  transform-origin: bottom left;
}
body.nav-active .icon-hamburger-3 div:nth-child(3) {
  transform: rotate(-45deg) translate(-3px, 0);
}
@media screen and (min-width: 768px) {
  .icon-hamburger-3 div {
    background: white;
  }
}

/************* CONTENT ***********/
.card {
  background: rgb(234, 241, 214);
  padding: 1rem;
}
.card .inherit-card-background {
  background: rgb(234, 241, 214);
}
.card .card-menu {
  padding: 0.5rem 0;
}
.card .card-menu.border-top li:first-of-type {
  border-top: 1px solid;
}
.card .card-menu li {
  padding: 0.5rem 0;
  border-bottom: 1px solid;
  font-weight: 600;
}
.card .card-menu li a {
  font-weight: 600;
}
.card .card-menu.card-menu-font-larger li,
.card .card-menu.card-menu-font-larger li a {
  font-weight: normal;
}

.grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
}
.grid > * {
  flex: 0 0 100%;
}
@media screen and (min-width: 768px) {
  .grid > * {
    flex: 0 0 calc(50% - 0.5rem);
  }
}
@media screen and (min-width: 1200px) {
  .grid > * {
    flex: 0 0 calc(25% - 0.75rem);
  }
}
.grid.medium-large > * {
  flex: 0 0 100%;
}
@media screen and (min-width: 768px) {
  .grid.medium-large > * {
    flex: 0 0 calc(33.33% - 0.6666666667rem);
  }
}
@media screen and (min-width: 1200px) {
  .grid.medium-large > * {
    flex: 0 0 calc(33.33% - 0.6666666667rem);
  }
}
.grid.medium > * {
  flex: 0 0 100%;
}
@media screen and (min-width: 576px) {
  .grid.medium > * {
    flex: 0 0 calc(50% - 0.5rem);
  }
}
.grid.small > * {
  flex: 0 0 100%;
}

.pills {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.pills li, .pill {
  background: black;
  padding: 0 0.25rem;
}
.pills li,
.pills li *, .pill,
.pill * {
  color: white;
}

.preview-card {
  aspect-ratio: 1/1;
  margin-left: -1rem;
  margin-right: -1rem;
  position: relative;
}
@media screen and (min-width: 576px) {
  .preview-card {
    margin-left: 0;
    margin-right: 0;
  }
}
.preview-card * {
  color: white;
}
.preview-card .pills {
  margin-bottom: 0;
}
.preview-card .title-img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  mix-blend-mode: multiply;
  transition: opacity ease-in-out 1.5s;
}
.preview-card:hover .title-img {
  opacity: 0.2;
  transition: opacity ease-in-out 0.5s;
}
.preview-card:not(:has(a)):hover .title-img {
  opacity: 1;
}
.preview-card .content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 1rem;
  width: 100%;
}
.preview-card .content h3 {
  margin: 0.25rem 0;
}
.preview-card .content p {
  margin-bottom: 0;
}
.preview-card .pills {
  margin-top: 1rem;
}
.preview-card .pills:empty {
  display: none;
}
.preview-card.team-member .content {
  padding: 0.5rem;
}
.preview-card.team-member .content.right {
  text-align: right;
}
.preview-card.team-member .content * {
  font-weight: 500;
}
@media screen and (min-width: 576px) {
  .preview-card.team-member .content * {
    font-size: 0.9rem;
  }
}
@media screen and (min-width: 768px) {
  .preview-card.team-member .content * {
    font-size: 1rem;
  }
}

.team li .preview-card {
  background-color: rgba(150, 171, 148, 0.6);
}
.team li * {
  color: white;
}

.calendar .header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-right: 1rem;
}
.calendar .next:not(.inactive),
.calendar .prev:not(.inactive) {
  cursor: pointer;
}
.calendar .next.inactive,
.calendar .prev.inactive {
  opacity: 0.3;
}
.calendar .month:not(.active) {
  display: none;
}
.calendar .weekdays,
.calendar .days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  margin-bottom: 10px;
}
.calendar .weekdays .day.has-events,
.calendar .days .day.has-events {
  font-weight: 400;
}
.calendar .weekdays .day.active,
.calendar .weekdays .day.is-today,
.calendar .days .day.active,
.calendar .days .day.is-today {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.calendar .weekdays .day:not(.has-events),
.calendar .days .day:not(.has-events) {
  opacity: 0.3;
}
.calendar .weekdays .day.has-events,
.calendar .days .day.has-events {
  cursor: pointer;
}

.breadcrumb {
  padding-bottom: 1rem;
}
.breadcrumb a:not(:last-of-type):after {
  content: " >";
}

.team-member img {
  width: 100%;
  margin-bottom: 1rem;
}

.lb-caption {
  color: white;
}

/************* FORM FIELDS ***********/
input[type=search] {
  width: 100%;
  background: none;
  border: none;
  border-bottom: solid 1px black;
}
input[type=search].with-icon {
  padding-left: 30px;
}

.search-box input[type=search] {
  padding: 10px 15px;
  width: 100%;
  height: 100%;
  background-color: white;
}

input[type=search]:focus {
  outline: none;
}

:root {
  --f-button-color: white;
}

.fancybox__container .f-button,
.fancybox__container .f-button *,
.fancybox__container .fancybox__infobar,
.fancybox__container .fancybox__infobar * {
  color: white;
}
.fancybox__container .fancybox__footer {
  background-color: rgba(15, 23, 128, 0.8) !important;
}
body.parent-template-theater .fancybox__container .fancybox__footer {
  background-color: rgba(101, 83, 171, 0.8) !important;
}

.fold-excerpt:not(.active) > *:not(.excerpt) {
  display: none;
}
.fold-excerpt .expand {
  display: block;
  text-decoration: underline;
  cursor: pointer;
}
.fold-excerpt.active :is(.expand, .ellipsis) {
  display: none;
}

.spacer {
  height: 2rem;
}

.cookies-form {
  background: rgba(0, 0, 0, 0.05);
  padding: 0.5rem;
  margin-top: 0.5rem;
}

.mailchimp-signup {
  margin-bottom: 1rem;
  display: none;
}
.mailchimp-signup.active {
  display: block;
}
.mailchimp-signup form .indicates-required {
  display: none;
}
.mailchimp-signup form .mc-field-group {
  display: flex;
  margin-bottom: 1rem;
}
.mailchimp-signup form .mc-field-group input[type=email] {
  flex: 1;
  background: none;
  border: none;
  border-bottom: solid 1px black;
}
.mailchimp-signup form input[type=submit] {
  font-weight: 600;
}
.mailchimp-signup .foot p {
  text-align: right;
}

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