:root {
  --black: #000000;
  --dark-blue: #040a5d;
  --blue: #0f5afc;
  --white: #ffffff;
  --purple: #bc34fc;
  --orange: #fc6c14;
  --page-bg-fallback: #bc34fc;
  --header-logo-size: 106;
  --bg-size: 2430;
  --hero-logo-size: 600;
  --hero-title-1-color: #040a5d;
  --hero-title-2-color: #040a5d;
  --hero-text-1-color: #ffffff;
  --hero-text-2-color: #ffffff;
  --hero-text-3-color: #ffffff;
}

@font-face {
  font-family: "PilcrowRounded";
  src: url("Fonts/PilcrowRounded_Complete/Fonts/WEB/fonts/PilcrowRounded-Regular.woff2")
    format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PilcrowRounded";
  src: url("Fonts/PilcrowRounded_Complete/Fonts/WEB/fonts/PilcrowRounded-Semibold.woff2")
    format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PilcrowRounded";
  src: url("Fonts/PilcrowRounded_Complete/Fonts/WEB/fonts/PilcrowRounded-Heavy.woff2")
    format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "VanillaExtract";
  src: url("Fonts/vanillaextract/Vanillaextractitalicnew.ttf?v=2") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "VanillaExtract";
  src: url("Fonts/vanillaextract/Vanillaextractitalicnew.ttf?v=2") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

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

html,
body {
  margin: 0;
  padding: 0;
  background-color: var(--purple);
}

body {
  color: var(--black);
  font-family: "PilcrowRounded", "Segoe UI", sans-serif;
  line-height: 1.55;
  background-color: var(--page-bg-fallback);
  background-image: url("BIlder/background_lightblue.png");
  background-size: calc(var(--bg-size) * 1px) auto;
  background-position: left top;
  background-repeat: repeat;
}

.container {
  width: min(1080px, 92%);
  margin: 0 auto;
}

.site-header {
  background: rgba(252, 108, 20, 0.9);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  min-height: 72px;
  padding: 0.2rem 0;
}

.header-logo-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.header-logo {
  width: auto;
  height: calc(var(--header-logo-size) * 1px);
  object-fit: contain;
  object-position: left center;
}

.main-nav-wrap {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.header-socials {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  gap: 0.55rem;
  margin-right: 0.9rem;
}

.header-social-link {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--black);
  text-decoration: none;
  line-height: 1;
  padding: 0;
}

.header-social-icon {
  width: 26px;
  height: 26px;
  display: block;
}

.header-social-link:hover,
.header-social-link:focus-visible {
  background: transparent;
  color: var(--black);
  opacity: 0.7;
  outline: none;
}

.header-social-link.is-placeholder {
  opacity: 0.55;
  cursor: default;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(4, 10, 93, 0.65);
  border-radius: 0;
  padding: 9px 8px;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 0;
  background: var(--orange);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle-bar + .nav-toggle-bar {
  margin-top: 5px;
}

.site-header.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-header.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.main-nav {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.main-nav a {
  color: var(--black);
  font-weight: 600;
  text-decoration: none;
  padding: 0.3rem 0.4rem;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  border-bottom-color: var(--black);
  outline: none;
}

.main-nav a.active {
  color: var(--black);
  border-bottom-color: var(--black);
}

.page-section {
  scroll-margin-top: 90px;
  padding: 2.5rem 0;
}

.page-section .container {
  padding: 1rem 0;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  color: var(--hero-title-2-color);
  font-family: "VanillaExtract", "PilcrowRounded", "Segoe UI", sans-serif;
}

main h1 {
  color: var(--hero-title-1-color);
}

main h2,
main h3,
main h4 {
  color: var(--hero-title-2-color);
}

main p,
main li,
main label,
main summary {
  color: var(--hero-text-1-color);
}

main a:not(.button-link):not(.ticket-link) {
  color: var(--hero-text-1-color);
}

h1 {
  font-size: clamp(2.0125rem, calc(2.4vw + 5px), 2.9125rem);
  letter-spacing: 0.02em;
}

h2 {
  font-size: clamp(1.7625rem, calc(2vw + 5px), 2.3125rem);
  margin-bottom: 0.8rem;
}

h3 {
  font-size: clamp(1.5125rem, calc(1.7vw + 5px), 1.7625rem);
}

h4 {
  font-size: 1.3725rem;
}

.hero {
  text-align: center;
}

.hero-logo {
  width: min(calc(var(--hero-logo-size) * 1px), 82vw);
  height: auto;
  margin-bottom: 0.35rem;
}

.hero-meta {
  font-family: "VanillaExtract", "PilcrowRounded", "Segoe UI", sans-serif;
  font-weight: 800;
  font-size: clamp(1.7625rem, calc(2vw + 5px), 2.3125rem);
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--hero-title-2-color);
}

.hero-description {
  font-family: "PilcrowRounded", "Segoe UI", sans-serif;
  font-size: clamp(1.3925rem, calc(1.25vw + 5px), 1.5925rem);
  line-height: 1.72;
  letter-spacing: 0.01em;
  font-weight: 700;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-main-title {
  color: var(--hero-title-1-color);
  background: var(--orange);
  display: inline-block;
  font-size: 40px;
  font-weight: 700;
  padding: 0.3rem 0.7rem 0.2rem;
}

#homepage .hero-meta {
  font-size: 33px;
  font-weight: 900;
}

#homepage .hero-description {
  font-size: 25px;
  font-weight: 700;
}

#homepage .cta-row .button-link {
  font-size: 20px;
  font-weight: 600;
}

.hero-helper-text {
  margin: 0.85rem 0 0.2rem;
  color: #ffffff;
  font-weight: 700;
  font-size: 25px;
  text-align: center;
}

#programm > .container > h1,
#besuch-info > .container > h1,
#team-kontakt > .container > h1,
.program-day > h3,
#team-kontakt .info-block:first-of-type > h3 {
  background: var(--orange);
  display: inline-block;
  padding: 0.3rem 0.7rem 0.2rem;
}

.hero-description-1 {
  color: var(--hero-text-1-color);
}

.hero-description-2 {
  color: var(--hero-text-2-color);
}

.hero-description-3 {
  color: var(--hero-text-3-color);
}

.cta-row {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}

.button-link {
  display: inline-block;
  padding: 0.62rem 1rem;
  border-radius: 0;
  border: 2px solid var(--orange);
  background: var(--orange);
  color: var(--white);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
}

.button-link-alt {
  background: var(--blue);
  border-color: var(--blue);
}

.button-link:hover,
.button-link:focus-visible {
  background: var(--dark-blue);
  border-color: var(--dark-blue);
  outline: none;
}

.program-day {
  margin-top: 1.6rem;
}

.program-jump-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1rem 0 1.2rem;
}

.program-jump-links .button-link {
  font-family: "VanillaExtract", "PilcrowRounded", "Segoe UI", sans-serif;
  font-size: 29px;
  font-weight: 900;
  line-height: 1.05;
  padding: 0.22rem 0.65rem 0.16rem;
}

.program-section-title {
  color: #040a5d;
  font-family: "VanillaExtract", "PilcrowRounded", "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: clamp(23px, 3.5vw, 30px);
  background: var(--orange);
  display: inline-block;
  padding: 0.3rem 0.7rem 0.2rem;
  margin: 0 0 0.55rem;
  scroll-margin-top: 110px;
}

.program-day-highlight {
  border: 2px solid var(--orange);
  background: rgba(252, 108, 20, 0.12);
  padding: 0.9rem;
}

.program-extra-headline {
  margin: 0 0 0.5rem;
  color: var(--orange);
  font-family: "VanillaExtract", "PilcrowRounded", "Segoe UI", sans-serif;
  font-size: 26px;
  line-height: 1;
}

#programm > .container > h1 {
  color: #040a5d;
  font-weight: 700;
  font-size: clamp(32px, 5vw, 46px);
}

#programm > .container > p:nth-of-type(1) {
  color: #040a5d;
  font-weight: 700;
  font-size: clamp(21px, 3.5vw, 29px);
}

#programm > .container > p:nth-of-type(2),
#programm > .container > p:nth-of-type(3) {
  color: #ffffff;
  font-weight: 800;
  font-size: 23px;
}

#programm .program-day > h3 {
  color: #040a5d;
  background: var(--orange);
  display: inline-block;
  font-family: "VanillaExtract", "PilcrowRounded", "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: clamp(23px, 3.5vw, 30px);
  line-height: 1.05;
  padding: 0.3rem 0.7rem 0.2rem;
}

.program-item {
  display: grid;
  grid-template-columns: clamp(250px, 29vw, 340px) minmax(0, 1fr) minmax(125px, auto);
  gap: 1rem;
  align-items: start;
  position: relative;
  padding: 0.9rem;
  border: 1px solid var(--blue);
  border-radius: 0;
  background: rgba(4, 10, 93, 0.55);
  margin-bottom: 0.9rem;
  overflow: hidden;
}

.program-media {
  display: grid;
  gap: 0.35rem;
  align-self: start;
  grid-column: 1;
  grid-row: 1 / span 3;
  min-width: 0;
}

.program-image {
  width: 100%;
  max-width: none;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  align-self: start;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.12);
  padding: 0;
  display: block;
}

.program-venue {
  margin: 0;
  color: #ffffff;
  background: #fc6c14;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.1;
  display: inline-block;
  padding: 0.08rem 0.4rem;
  justify-self: start;
}

.program-content h4 {
  margin: 0 0 0.18rem;
  color: #ffffff;
  font-family: "VanillaExtract", "PilcrowRounded", "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: clamp(21px, 3.2vw, 25px);
  line-height: 1.08;
}

.program-content {
  display: block;
  grid-column: 2;
  grid-row: 1;
}

.program-content > h4,
.program-content > p {
  grid-column: auto;
}

.program-content > details {
  grid-column: auto;
}

.program-content p {
  margin-top: 0;
  margin-bottom: 0.45rem;
  color: #ffffff;
  font-weight: 400;
  font-size: 21px;
}

.program-content details {
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  padding-top: 0.45rem;
}

.program-content summary {
  font-weight: 600;
  font-size: 21px;
  cursor: pointer;
  color: #ffffff;
}

#programm .program-content .program-genres {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 125px;
  gap: 0.45rem;
  margin: 0 0 0.25rem;
}

#programm .program-content .program-genres img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  display: block;
}

.program-image-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px dashed rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 600;
}

#programm .program-content details a {
  color: #000000;
  background: #bc34fc;
  font-weight: 800;
  font-size: 25px;
  padding: 0.08rem 0.35rem;
  text-decoration: none;
  display: inline-block;
}

#programm .program-content details .program-highlight,
#programm .program-content details .program-tagline {
  color: #040a5d !important;
  background: #fc6c14 !important;
  font-weight: 700;
  font-size: 25px;
  display: inline;
  line-height: 1.65;
  padding: 0.15rem 0.35rem;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

#programm .program-content details .program-talk {
  color: #ffffff !important;
  background: #0f5afc !important;
  font-weight: 700;
  font-size: 25px;
  display: inline;
  line-height: 1.65;
  padding: 0.15rem 0.35rem;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

#programm .program-content details .program-highlight-wrapper,
#programm .program-content details .program-tagline-wrapper,
#programm .program-content details .program-talk-wrapper {
  margin-bottom: 0.8rem;
}

#programm .program-content .program-type-tag {
  color: #040a5d;
  background: #fc6c14;
  font-weight: 700;
  font-size: 20px;
  display: inline-block;
  padding: 0.08rem 0.35rem;
  margin: 0 0 0.55rem;
}

.ticket-link {
  color: #040a5d;
  background: #fc6c14;
  border: 2px solid #fc6c14;
  grid-column: 3;
  grid-row: 1;
  justify-self: center;
  display: inline-block;
  padding: 0.4rem 0.6rem;
  font-weight: 600;
  font-size: 25px;
  text-decoration: none;
  white-space: normal;
  text-align: center;
  align-self: center;
}

.program-item:has(.program-genres) > .ticket-link {
  align-self: start;
  margin-top: 64px;
}

.program-inline-image {
  width: min(100%, 430px);
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  display: block;
  margin-top: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.ticket-link:hover,
.ticket-link:focus-visible {
  color: #000000;
  border-color: #000000;
  outline: none;
}

#besuch-info > .container > h1 {
  color: #040a5d;
  font-weight: 700;
  font-size: 46px;
}

#besuch-info .info-block > h3 {
  color: #040a5d;
  font-weight: 700;
  font-size: 35px;
}

#besuch-info .info-block > h4 {
  color: #0f5afc;
  font-weight: 700;
  font-size: 27px;
}

#besuch-info .location-address {
  margin: 0.25rem 0 0.7rem;
}

#besuch-info .location-address-link {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(4, 10, 93, 0.38);
  padding: 0.55rem 0.7rem;
  color: #ffffff;
  font-weight: 400;
  font-size: 25px;
  line-height: 1.4;
  text-decoration: none;
}

#besuch-info .location-address-link:hover,
#besuch-info .location-address-link:focus-visible {
  border-color: var(--orange);
  background: rgba(4, 10, 93, 0.55);
  outline: none;
}

#besuch-info .location-address-link.location-address-link-small {
  font-size: 25px;
}

#besuch-info .info-block li,
#besuch-info .info-block > p,
#besuch-info .info-block > p a[data-obfuscated-email],
#besuch-info .info-block > p a[href^="mailto:"] {
  color: #ffffff;
  font-weight: 400;
  font-size: 25px;
}

#besuch-info .faq-block details summary,
#besuch-info .faq-block details p {
  color: #ffffff;
}

#besuch-info .faq-block details summary {
  font-weight: 600;
  font-size: 21px;
}

#besuch-info .faq-block details p {
  font-weight: 400;
  font-size: 21px;
}

#team-kontakt > .container > h1 {
  color: #040a5d;
  font-weight: 700;
  font-size: 46px;
}

#team-kontakt .contact-text h3 {
  color: #ffffff;
  font-weight: 700;
  font-size: 35px;
}

#team-kontakt .contact-text h3::after {
  content: none;
}

#team-kontakt .contact-text p {
  color: #ffffff;
  font-weight: 400;
  font-size: 24px;
}

#team-kontakt .contact-form label,
#formular-helfende .contact-form label {
  color: #ffffff;
  font-weight: 600;
  font-size: 25px;
}

#team-kontakt .info-block > h3 {
  color: #040a5d;
  font-weight: 700;
  font-size: 35px;
}

#team-kontakt .helper-form,
#formular-helfende .helper-form {
  margin-top: 0.9rem;
  margin-bottom: 2.2rem;
}

#formular-helfende h1,
#formular-helfende h3,
#formular-helfende h4 {
  display: inline-block;
  justify-self: start;
  width: fit-content;
  padding: 0.1rem 0.5rem;
  background: var(--orange);
  color: var(--dark-blue);
}

#formular-helfende h3,
#formular-helfende h4 {
  margin-top: 0.85rem;
}

#formular-helfende .helper-day-block {
  margin: 0.2rem 0 1rem;
  display: grid;
  gap: 0.5rem;
}

#formular-helfende .helper-role-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.9rem;
}

#formular-helfende .helper-role-name {
  margin: 0;
  min-width: 220px;
  font-weight: 700;
  font-size: 21px;
  color: #ffffff;
}

#formular-helfende .helper-role-row label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 400;
  font-size: 21px;
  color: #ffffff;
  white-space: nowrap;
}

#formular-helfende .helper-role-row input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  accent-color: var(--orange);
}

#team-kontakt .helper-form .helper-options,
#formular-helfende .helper-form .helper-options {
  margin: 0.3rem 0 0.9rem;
  display: grid;
  gap: 0.35rem;
}

#team-kontakt .helper-form .helper-options label,
#formular-helfende .helper-form .helper-options label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 400;
  font-size: 21px;
  color: #ffffff;
}

#team-kontakt .helper-form .helper-options input[type="checkbox"],
#formular-helfende .helper-form .helper-options input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  accent-color: var(--orange);
}

#team-kontakt h3[data-cms-key="text_13"] {
  margin-top: 2rem;
}

#team-kontakt h3[data-cms-key="text_9"],
#team-kontakt h3[data-cms-key="text_13"],
#team-kontakt h3[data-cms-key="text_9"] > .cms-text-bg,
#team-kontakt h3[data-cms-key="text_13"] > .cms-text-bg {
  background-color: transparent !important;
}

#team-kontakt .info-block > p,
#team-kontakt .info-block > p a {
  color: #ffffff;
  font-weight: 400;
  font-size: 25px;
}

#team-kontakt a[data-cms-key="text_73"] {
  display: inline-block;
  padding: 0.05rem 0.45rem;
  background: var(--orange);
  color: var(--dark-blue) !important;
  font-weight: 700 !important;
  text-decoration: none;
}

#team-kontakt a[data-cms-key="text_73"]:hover,
#team-kontakt a[data-cms-key="text_73"]:focus-visible {
  color: #000000 !important;
  text-decoration: none;
}

#team-kontakt .team-block > p {
  font-size: 21px;
}

@media (max-width: 900px) {
  #formular-helfende .helper-role-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  #formular-helfende .helper-role-name {
    min-width: 0;
  }

  #formular-helfende .helper-role-row label {
    white-space: normal;
  }
}

#team-kontakt .info-block > h4 {
  color: #ffffff;
  font-weight: 700;
  font-size: 22px;
  margin: 0.7rem 0 0.45rem;
}

#team-kontakt .contact-grid-bottom {
  margin-top: 1.7rem;
}

#team-kontakt .contact-grid-bottom.contact-grid-separated {
  margin-top: 5rem;
}

#team-kontakt .team-grid h4 {
  color: #ffffff;
  font-weight: 700;
  font-size: 22px;
}

#team-kontakt .team-grid li,
#team-kontakt .team-grid li a {
  color: #ffffff;
  font-weight: 400;
  font-size: 21px;
}

.info-block {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.info-block ul {
  margin: 0.3rem 0 0.7rem 1.1rem;
  padding: 0;
}

.info-block details {
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 0;
  background: rgba(4, 10, 93, 0.42);
  padding: 0.7rem;
  margin-bottom: 0.7rem;
}

.info-block summary {
  cursor: pointer;
  color: var(--hero-text-1-color);
  font-weight: 600;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.contact-text {
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 0;
  padding: 0.9rem;
  background: rgba(4, 10, 93, 0.32);
}

.contact-text h3::after {
  content: " Shrimp Team";
  font-family: "VanillaExtract", serif;
  color: var(--purple);
  font-weight: 400;
}

.contact-text h3 {
  color: var(--hero-text-1-color);
}

.contact-form {
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 0;
  padding: 1rem;
  display: grid;
  gap: 0.42rem;
  background: rgba(4, 10, 93, 0.32);
}

.contact-form label {
  font-weight: 600;
  color: var(--hero-text-1-color);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  font: inherit;
  border: 1px solid #9cb5ff;
  border-radius: 0;
  padding: 0.54rem 0.62rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--dark-blue);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #c4d4ff;
  border-color: var(--blue);
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  min-height: 1.2rem;
  margin: 0.2rem 0 0;
  font-size: 1.2525rem;
}

.photo-placeholder {
  border: 2px dashed var(--blue);
  border-radius: 0;
  min-height: 140px;
  display: grid;
  place-items: center;
  color: var(--hero-text-1-color);
  background: rgba(4, 10, 93, 0.25);
}

.team-grid {
  margin-top: 1rem;
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.team-grid article {
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 0;
  padding: 0.8rem;
  background: rgba(4, 10, 93, 0.32);
}

.team-grid h4 {
  margin-bottom: 0.4rem;
  color: var(--hero-text-1-color);
}

.team-grid ul {
  margin: 0;
  padding-left: 1rem;
}

.team-grid li {
  margin-bottom: 0.2rem;
}

.site-footer {
  background: var(--dark-blue);
  color: var(--white);
  padding: 2rem 0 2.4rem;
}

.footer-laurels {
  display: block;
  width: min(180px, 39%);
  margin: 0 auto 1rem;
  height: auto;
}

.footer-laurels.shrimp-easteregg-armed {
  filter: brightness(1.14);
}

.site-footer a {
  color: var(--white);
}

.footer-accordion {
  margin-top: 0.9rem;
  border: 1px solid #3040a2;
  border-radius: 0;
  padding: 0.55rem 0.7rem;
  background: rgba(255, 255, 255, 0.04);
}

.footer-accordion:first-of-type {
  margin-top: 0.2rem;
}

.footer-accordion summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--white);
  list-style: none;
}

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

.footer-accordion summary::after {
  content: " +";
  color: var(--orange);
}

.footer-accordion[open] summary::after {
  content: " -";
}

.footer-accordion-content {
  margin-top: 0.65rem;
}

.footer-accordion-content h4 {
  color: var(--white);
}

.simple-list {
  margin: 0;
  padding-left: 1rem;
}

.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 0.7rem;
  align-items: end;
}

.sponsors-grid img {
  width: 100%;
  max-height: 60px;
  object-fit: contain;
  object-position: bottom center;
  display: block;
  align-self: end;
  background: transparent;
  border-radius: 0;
  padding: 0.2rem;
}

.sponsors-grid img[alt="Logo neues kino"] {
  max-height: 30px;
}

.sponsors-grid img[alt="Logo Swisslos"] {
  max-height: 90px;
}

.sponsors-grid img[alt="Logo Sulger Stiftung"] {
  max-height: 58px;
}

body.shrimp-snake-open {
  overflow: hidden;
}

.shrimp-snake-overlay {
  position: fixed;
  inset: 0;
  z-index: 2600;
  background: rgba(0, 0, 0, 0.8);
  display: grid;
  place-items: center;
  padding: 1rem;
}

.shrimp-snake-overlay[hidden] {
  display: none !important;
}

.shrimp-snake-modal {
  width: min(760px, 96vw);
  border: 2px solid var(--orange);
  background: rgba(4, 10, 93, 0.98);
  color: var(--white);
  padding: 0.9rem;
}

.shrimp-snake-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  position: relative;
  z-index: 1;
}

.shrimp-snake-head h2 {
  margin: 0;
  color: var(--orange);
  font-family: "VanillaExtract", "PilcrowRounded", "Segoe UI", sans-serif;
  font-size: 2.05rem;
  line-height: 1;
}

.shrimp-snake-meta {
  margin: 0.25rem 0 0.55rem;
  color: var(--white);
  font-size: 1.1725rem;
}

.shrimp-snake-canvas {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(4, 10, 93, 0.95);
  touch-action: none;
}

.shrimp-snake-foot {
  margin-top: 0.55rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
}

.shrimp-snake-score {
  margin: 0;
  font-size: 1.2525rem;
  color: var(--white);
}

.shrimp-snake-help {
  margin: 0.55rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.0725rem;
}

.shrimp-snake-controls {
  display: none;
  margin: 0.65rem auto 0;
  width: 180px;
  grid-template-columns: repeat(3, 1fr);
  grid-template-areas:
    ". up ."
    "left down right";
  gap: 0.35rem;
}

.shrimp-snake-control {
  border: 1px solid var(--orange);
  background: rgba(252, 108, 20, 0.95);
  color: var(--dark-blue);
  font-family: "PilcrowRounded", "Segoe UI", sans-serif;
  font-size: 1.32rem;
  font-weight: 800;
  line-height: 1;
  min-height: 58px;
  padding: 0.42rem;
  cursor: pointer;
  touch-action: manipulation;
}

.shrimp-snake-control.is-up {
  grid-area: up;
}

.shrimp-snake-control.is-left {
  grid-area: left;
}

.shrimp-snake-control.is-down {
  grid-area: down;
}

.shrimp-snake-control.is-right {
  grid-area: right;
}

.shrimp-snake-control:hover,
.shrimp-snake-control:focus-visible {
  background: var(--white);
  border-color: var(--white);
  outline: none;
}

.shrimp-snake-close,
.shrimp-snake-restart {
  border: 1px solid var(--orange);
  background: var(--orange);
  color: var(--dark-blue);
  font-family: "PilcrowRounded", "Segoe UI", sans-serif;
  font-size: 1.0725rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.52rem 0.75rem;
  cursor: pointer;
}

.shrimp-snake-close:hover,
.shrimp-snake-close:focus-visible,
.shrimp-snake-restart:hover,
.shrimp-snake-restart:focus-visible {
  background: var(--white);
  border-color: var(--white);
  outline: none;
}

.shrimp-snake-modal.is-game-over .shrimp-snake-score::after {
  content: " · Game Over";
  color: var(--orange);
  font-weight: 700;
}

@media (hover: none), (pointer: coarse) {
  .shrimp-snake-controls {
    display: grid;
  }
}

.editor-panel .container {
  border: 2px solid rgba(255, 255, 255, 0.45);
  padding: 1rem;
  background: rgba(4, 10, 93, 0.62);
}

.editor-lock,
.editor-controls {
  margin-top: 0.8rem;
}

.editor-lock input {
  width: min(280px, 100%);
  display: block;
  margin: 0.3rem 0 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.95);
  color: var(--dark-blue);
  padding: 0.5rem;
  border-radius: 0;
}

.editor-lock-msg,
.editor-copy-msg {
  margin: 0.6rem 0 0;
  font-size: 1.2625rem;
}

.editor-lock-msg.ok {
  color: #8effaf;
}

.editor-block-list {
  display: grid;
  gap: 0.7rem;
  margin-top: 0.6rem;
}

.editor-block {
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 0.6rem;
  background: rgba(255, 255, 255, 0.06);
}

.editor-block-title {
  margin: 0 0 0.35rem;
  font-weight: 700;
}

.editor-block textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.94);
  color: var(--dark-blue);
  padding: 0.45rem;
  border-radius: 0;
  resize: vertical;
  font: inherit;
}

.editor-inline-controls {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.editor-inline-controls select,
.editor-inline-controls input[type="number"],
.editor-inline-controls input[type="range"] {
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.95);
  color: var(--dark-blue);
  padding: 0.3rem 0.4rem;
  border-radius: 0;
}

.editor-inline-controls input[type="range"] {
  padding: 0;
}

.editor-jump {
  border: 1px solid var(--orange);
  background: var(--orange);
  color: var(--white);
  padding: 0.4rem 0.55rem;
  border-radius: 0;
  cursor: pointer;
}

.editor-jump:hover,
.editor-jump:focus-visible {
  background: var(--dark-blue);
  border-color: var(--dark-blue);
  outline: none;
}

.editor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.editor-dock {
  position: fixed;
  right: 0.9rem;
  bottom: 0.9rem;
  width: min(430px, calc(100vw - 1.2rem));
  z-index: 1300;
  display: grid;
  gap: 0.6rem;
}

.editor-dock .editor-lock,
.editor-dock .editor-toolbar {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(4, 10, 93, 0.9);
  padding: 0.75rem;
}

.editor-dock-title {
  margin: 0 0 0.45rem;
  font-weight: 700;
  color: var(--white);
}

.editor-dock label {
  color: var(--white);
}

.editor-lock-row {
  margin-top: 0.35rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.45rem;
  align-items: center;
}

.editor-dock .editor-lock input {
  width: 100%;
  margin: 0;
}

.editor-toolbar-note {
  margin: 0 0 0.6rem;
  color: var(--white);
  font-size: 1.2325rem;
}

.editor-header-controls {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.55rem;
  margin-bottom: 0.65rem;
}

.editor-header-title {
  margin: 0;
  font-weight: 700;
  color: var(--white);
}

.editor-header-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.editor-header-body {
  margin-top: 0.45rem;
}

.editor-collapse-toggle {
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font: inherit;
  font-size: 1.1325rem;
  font-weight: 700;
  line-height: 1.1;
  padding: 0.26rem 0.45rem;
  border-radius: 0;
  cursor: pointer;
}

.editor-collapse-toggle:hover,
.editor-collapse-toggle:focus-visible {
  border-color: var(--orange);
  color: var(--orange);
  outline: none;
}

.editor-header-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.35rem;
}

.editor-header-grid label {
  font-size: 1.2325rem;
  color: var(--white);
}

.editor-header-grid select,
.editor-header-grid input[type="range"] {
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.95);
  color: var(--dark-blue);
  padding: 0.3rem 0.4rem;
  border-radius: 0;
}

.editor-header-grid input[type="range"] {
  width: 100%;
  padding: 0;
}

.editor-header-opacity-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.45rem;
}

.editor-header-opacity-wrap span {
  color: var(--white);
  font-size: 1.2125rem;
}

.editor-logo-controls {
  display: grid;
  gap: 0.5rem;
}

.editor-logo-block {
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 0.45rem;
  display: grid;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.05);
}

.editor-logo-block label {
  font-weight: 600;
  color: var(--white);
}

.editor-logo-block input[type="range"] {
  width: 100%;
}

.editor-logo-block span {
  color: var(--white);
  font-size: 1.2125rem;
}

.editor-dock .editor-copy-msg,
.editor-dock .editor-lock-msg {
  color: var(--white);
  max-height: 110px;
  overflow: auto;
  word-break: break-word;
}

.editor-inline-trigger {
  position: fixed;
  z-index: 1250;
  border: 1px solid var(--orange);
  background: var(--orange);
  color: var(--white);
  font-family: "PilcrowRounded", "Segoe UI", sans-serif;
  font-size: 1.1325rem;
  font-weight: 700;
  padding: 0.2rem 0.45rem;
  border-radius: 0;
  cursor: pointer;
}

.editor-inline-trigger:hover,
.editor-inline-trigger:focus-visible {
  background: var(--dark-blue);
  border-color: var(--dark-blue);
  outline: none;
}

.editor-overlay {
  position: fixed;
  z-index: 1400;
  width: min(430px, calc(100vw - 1.2rem));
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(4, 10, 93, 0.95);
  color: var(--white);
  padding: 0.75rem;
  max-height: calc(100vh - 1.2rem);
  overflow: auto;
}

.editor-overlay-title {
  margin: 0 0 0.45rem;
  font-weight: 700;
}

.editor-overlay textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.96);
  color: var(--dark-blue);
  padding: 0.45rem;
  border-radius: 0;
  resize: vertical;
  font: inherit;
}

.editor-overlay .editor-inline-controls {
  margin-top: 0.55rem;
}

.editor-overlay .editor-inline-controls label {
  color: var(--white);
}

.editor-overlay .editor-inline-controls select,
.editor-overlay .editor-inline-controls input[type="number"] {
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.96);
  color: var(--dark-blue);
  padding: 0.3rem 0.4rem;
  border-radius: 0;
}

.editor-overlay-actions {
  margin-top: 0.6rem;
  display: flex;
  justify-content: flex-end;
}

.editor-target-active {
  outline: 2px dashed rgba(252, 108, 20, 0.9);
  outline-offset: 2px;
}

.editor-text-bg {
  display: inline;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.cms-text-bg {
  display: inline;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

body.cms-admin-mode {
  padding-right: min(470px, 95vw);
}

.cms-admin-mode.cms-admin-hidden {
  padding-right: 0;
}

.cms-admin-panel {
  position: fixed;
  right: 0;
  top: 0;
  width: min(470px, 95vw);
  height: 100vh;
  z-index: 1600;
  border-left: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(4, 10, 93, 0.97);
  color: var(--white);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}

.cms-admin-panel.is-hidden {
  display: none;
}

.cms-admin-launcher {
  position: fixed;
  right: 0.8rem;
  bottom: 0.8rem;
  z-index: 1590;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(4, 10, 93, 0.94);
  color: var(--white);
  border-radius: 0;
  font-family: "PilcrowRounded", "Segoe UI", sans-serif;
  font-weight: 700;
  cursor: pointer;
  padding: 0.36rem 0.62rem;
}

.cms-admin-launcher:hover,
.cms-admin-launcher:focus-visible {
  border-color: var(--orange);
  color: var(--orange);
  outline: none;
}

.cms-admin-lock,
.cms-admin-body {
  padding: 0.8rem;
}

.cms-admin-body {
  overflow: auto;
}

.cms-admin-title {
  margin: 0;
  font-family: "VanillaExtract", "PilcrowRounded", "Segoe UI", sans-serif;
  font-weight: 700;
  color: var(--orange);
}

.cms-admin-subtitle {
  margin: 0.35rem 0 0.6rem;
  color: var(--white);
}

.cms-admin-lock label,
.cms-admin-section label {
  display: block;
  margin: 0.35rem 0 0.25rem;
  color: var(--white);
}

.cms-admin-lock-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.45rem;
}

.cms-admin-lock-row input,
.cms-admin-section input,
.cms-admin-section textarea,
.cms-admin-section select,
.cms-admin-section input[type="search"] {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.96);
  color: var(--dark-blue);
  border-radius: 0;
  padding: 0.34rem 0.45rem;
  font: inherit;
}

.cms-admin-section textarea {
  resize: vertical;
}

.cms-admin-msg {
  margin: 0.6rem 0 0;
  color: var(--white);
  word-break: break-word;
}

.cms-admin-msg.ok {
  color: #8effaf;
}

.cms-admin-toprow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.cms-collapse-btn {
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-radius: 0;
  font: inherit;
  cursor: pointer;
  padding: 0.24rem 0.45rem;
}

.cms-collapse-btn:hover,
.cms-collapse-btn:focus-visible {
  border-color: var(--orange);
  color: var(--orange);
  outline: none;
}

.cms-admin-tabs {
  margin-top: 0.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.cms-admin-tab {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--white);
  text-decoration: none;
  padding: 0.22rem 0.44rem;
  background: transparent;
}

.cms-admin-tab.active,
.cms-admin-tab:hover,
.cms-admin-tab:focus-visible {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--dark-blue);
  outline: none;
}

.cms-admin-section {
  margin-top: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.05);
}

.cms-admin-section > summary {
  cursor: pointer;
  padding: 0.38rem 0.5rem;
  font-weight: 700;
  color: var(--white);
}

.cms-admin-section-body {
  padding: 0.55rem;
}

.cms-role-note {
  margin: 0 0 0.45rem;
  color: rgba(255, 255, 255, 0.85);
}

.cms-role-list {
  display: grid;
  gap: 0.55rem;
}

.cms-role-item {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.5rem;
}

.cms-role-item label {
  margin-top: 0.3rem;
}

.cms-role-title {
  margin: 0 0 0.2rem;
  font-weight: 700;
}

.cms-range-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.4rem;
}

.cms-text-list {
  margin-top: 0.55rem;
  display: grid;
  gap: 0.5rem;
}

.cms-text-item {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.cms-text-item.is-focused {
  border-color: var(--orange);
  box-shadow: inset 0 0 0 1px rgba(252, 108, 20, 0.7);
}

.cms-text-item.is-focused > summary {
  background: rgba(252, 108, 20, 0.22);
}

.cms-text-item > summary {
  cursor: pointer;
  padding: 0.34rem 0.45rem;
}

.cms-text-item-body {
  padding: 0.5rem;
}

.cms-target-active {
  outline: 2px dashed rgba(252, 108, 20, 0.95);
  outline-offset: 3px;
}

.cms-text-note {
  margin: 0.25rem 0 0.45rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
}

.cms-logo-list {
  display: grid;
  gap: 0.55rem;
}

.cms-logo-item {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.45rem;
}

.cms-logo-item span {
  display: inline-block;
  margin-top: 0.28rem;
}

.cms-admin-actions {
  margin-top: 0.55rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.cms-admin-actions-sticky {
  margin-top: 0.7rem;
}

@media (max-width: 980px) {
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  body.cms-admin-mode {
    padding-right: 0;
  }

  .cms-admin-panel {
    width: calc(100vw - 0.6rem);
    right: 0.3rem;
    top: 0.3rem;
    height: calc(100vh - 0.6rem);
    border: 1px solid rgba(255, 255, 255, 0.45);
  }

  .cms-admin-launcher {
    right: 0.45rem;
    bottom: 0.45rem;
  }

  .header-inner {
    align-items: center;
    flex-wrap: wrap;
    height: auto;
    min-height: 72px;
    padding: 0.4rem 0;
  }

  .header-logo-link {
    height: auto;
  }

  .header-logo {
    height: calc(var(--header-logo-size) * 1px);
  }

  .nav-toggle {
    display: inline-block;
  }

  .main-nav-wrap {
    width: 100%;
    display: none;
    margin-left: 0;
    padding-bottom: 0.5rem;
  }

  .header-socials {
    width: 100%;
    justify-content: center;
    margin-right: 0;
    margin: 0.35rem 0 0.2rem;
  }

  .site-header.nav-open .main-nav-wrap {
    display: block;
  }

  .main-nav {
    width: 100%;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    padding-top: 0.4rem;
  }

  .page-section {
    padding: 1.3rem 0;
  }

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

  .program-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }

  .program-media {
    max-width: 450px;
  }

  #programm .program-content .program-genres {
    position: static;
    width: auto;
    justify-content: flex-start;
    margin: 0.25rem 0 0.55rem;
  }

  .program-image {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .ticket-link {
    align-self: stretch;
    justify-self: center;
    margin-inline: auto;
    margin-top: 0.5rem;
  }
  
  .program-item:has(.program-genres) > .ticket-link {
    margin-top: 0.5rem;
  }

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

  .sponsors-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.35rem;
    align-items: end;
  }

  .sponsors-grid img {
    max-height: 60px;
    align-self: end;
    padding: 0.1rem;
  }

  .sponsors-grid img[alt="Logo neues kino"] {
    max-height: 30px;
  }

  .sponsors-grid img[alt="Logo Swisslos"] {
    max-height: 90px;
  }

  .sponsors-grid img[alt="Logo Sulger Stiftung"] {
    max-height: 40px;
  }

  .editor-dock {
    right: 0.45rem;
    bottom: 0.45rem;
    width: calc(100vw - 0.9rem);
  }

  .editor-overlay {
    width: calc(100vw - 0.9rem);
    max-height: calc(100vh - 0.9rem);
  }

  .editor-inline-trigger {
    font-size: 1.0725rem;
    padding: 0.18rem 0.35rem;
  }

  .shrimp-snake-overlay {
    padding: 0.45rem;
  }

  .shrimp-snake-modal {
    width: 100%;
    max-height: calc(100vh - 0.9rem);
    overflow: auto;
    padding: 0.65rem;
  }

  .shrimp-snake-head h2 {
    font-size: 1.75rem;
  }

  .shrimp-snake-close,
  .shrimp-snake-restart {
    padding: 0.45rem 0.58rem;
    font-size: 1rem;
  }

  .shrimp-snake-score {
    font-size: 1.1625rem;
  }

  .shrimp-snake-controls {
    display: grid;
    width: 196px;
  }

  .shrimp-snake-control {
    min-height: 52px;
    font-size: 1.42rem;
  }
}
