@keyframes pulse {
  0%, 100% {
    opacity: .25;
  }
  50% {
    opacity: 1;
  }
}
.stubs {
  max-width: 980px;
  margin-inline: auto;
  padding: 0 var(--pad) clamp(2rem, 6vh, 4rem);
  display: grid;
  gap: clamp(1.4rem, 3vw, 2.2rem);
}
.stub {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 132px;
  background: var(--black);
  color: var(--yellow);
  border-radius: 14px;
  filter: drop-shadow(6px 8px 0 rgba(0, 0, 0, .85));
}
.stub:nth-child(odd) {
  transform: rotate(-.5deg);
}
.stub:nth-child(even) {
  transform: rotate(.45deg);
}
.stub--light {
  background: var(--yellow);
  color: var(--black);
  border: 3px solid var(--black);
}
.stub__main {
  padding: clamp(1.4rem, 3.4vw, 2.2rem);
  display: grid;
  gap: .55rem;
  align-content: start;
}
.stub__tear {
  position: relative;
  border-left: 3px dashed currentColor;
  display: grid;
  place-items: center;
  padding: 1rem .6rem;
}
.stub__tear::before,
.stub__tear::after {
  content: "";
  position: absolute;
  left: -13px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--yellow);
}
.stub__tear::before {
  top: -13px;
}
.stub__tear::after {
  bottom: -13px;
}
.stub--light .stub__tear::before,
.stub--light .stub__tear::after {
  background: var(--yellow);
}
.stub__code {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--cond);
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  font-size: .72rem;
  margin-bottom: .7rem;
}
.stub__bars {
  width: 42px;
  height: 108px;
  background:
    repeating-linear-gradient(
      90deg,
      currentColor 0 2px,
      transparent 2px 4px,
      currentColor 4px 7px,
      transparent 7px 11px);
}
.stub__eyebrow {
  font-family: var(--cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .74rem;
  opacity: .8;
}
.stub__name {
  font-family: var(--title);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(1.8rem, 4.6vw, 3rem);
  line-height: .9;
  margin: 0;
  overflow-wrap: anywhere;
}
.stub__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 1.6rem;
  align-items: baseline;
  border-block: 2px solid currentColor;
  padding: .55rem 0;
  margin: .3rem 0;
}
.stub__meta div {
  display: grid;
  gap: .1rem;
}
.stub__meta dt {
  font-family: var(--cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .68rem;
  opacity: .75;
}
.stub__meta dd {
  margin: 0;
  font-family: var(--title);
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stub__text {
  margin: 0;
  font-size: .95rem;
  max-width: 56ch;
  line-height: 1.5;
}
.stub__list {
  margin: 0;
  padding-left: 1.1rem;
  font-size: .93rem;
  display: grid;
  gap: .2rem;
}
.stub__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: .5rem;
}
.stub .buy--primary {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}
.stub--light .buy--primary {
  background: var(--black);
  color: var(--yellow);
  border-color: var(--black);
}
.stub--sold {
  opacity: .72;
}
.stub--sold .stub__name {
  text-decoration: line-through;
  text-decoration-thickness: 4px;
}
.stub__stamp {
  position: absolute;
  top: 50%;
  left: clamp(1rem, 12%, 6rem);
  transform: translateY(-50%) rotate(-11deg);
  border: 5px solid #FF3E3E;
  color: #FF3E3E;
  border-radius: 10px;
  font-family: var(--title);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(1.4rem, 4vw, 2.6rem);
  letter-spacing: .04em;
  padding: .2em .45em;
  pointer-events: none;
  opacity: .95;
}
@media (max-width: 620px) {
  .stub {
    grid-template-columns: 1fr;
  }
  .stub__tear {
    border-left: 0;
    border-top: 3px dashed currentColor;
    padding: 1rem;
    justify-items: center;
  }
  .stub__tear::before,
  .stub__tear::after {
    left: auto;
    top: -13px;
    bottom: auto;
  }
  .stub__tear::before {
    left: -13px;
  }
  .stub__tear::after {
    right: -13px;
  }
  .stub__code {
    writing-mode: horizontal-tb;
    transform: none;
    margin: 0 0 .5rem;
  }
  .stub__bars {
    width: 160px;
    height: 46px;
    background:
      repeating-linear-gradient(
        90deg,
        currentColor 0 2px,
        transparent 2px 4px,
        currentColor 4px 7px,
        transparent 7px 11px);
  }
}
.stub--sold {
  opacity: 1;
}
.stub--sold .stub__main {
  opacity: .5;
}
.stub--sold .stub__tear {
  opacity: .5;
}
.stub {
  grid-template-columns: 1fr 104px;
}
.stub__stamp {
  left: auto;
  right: 12%;
  transform: translateY(-50%) rotate(-9deg);
}
.stub--sold .stub__main {
  opacity: .8;
}
.stub--sold .stub__tear {
  opacity: .75;
}
.stub--note {
  background: var(--yellow);
  color: var(--black);
  border: 3px dashed var(--black);
  filter: none;
  transform: rotate(0deg) !important;
}
.stub--note .stub__tear {
  border-left-style: dotted;
}
.stub--note .stub__tear::before,
.stub--note .stub__tear::after {
  display: none;
}
.stub--note .stub__name {
  font-size: clamp(1.3rem, 3.4vw, 2rem);
}
.stub__note-icon {
  font-family: var(--title);
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1;
}
@media (max-width: 620px) {
  .stub__stamp {
    right: auto;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-9deg);
  }
}
.stub--note .buy--primary {
  background: var(--black);
  color: var(--yellow);
  border-color: var(--black);
}
@media (max-width: 620px) {
  .stub {
    grid-template-columns: 1fr;
  }
}
.stub__more {
  border-top: 2px dashed currentColor;
  margin-top: .2rem;
}
.stub__more > summary {
  cursor: pointer;
  list-style: none;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .7rem 0 .6rem;
  font-family: var(--cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .8rem;
}
.stub__more > summary::-webkit-details-marker {
  display: none;
}
.stub__more > summary::before {
  content: "+";
  display: grid;
  place-items: center;
  flex: none;
  width: 26px;
  height: 26px;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 1.1rem;
  line-height: 1;
  transition: transform .22s;
}
.stub__more[open] > summary::before {
  transform: rotate(45deg);
}
.stub__more > summary:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 3px;
}
.stub__more-body {
  display: grid;
  gap: .7rem;
  padding-bottom: .8rem;
}
.stub__actions {
  margin-top: .6rem;
}
.stub__variants {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin: .1rem 0 .2rem;
}
.stub__variants button {
  font-family: var(--cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .82rem;
  min-height: 44px;
  padding: .5rem 1.1rem;
  border-radius: 999px;
  cursor: pointer;
  border: 2.5px solid currentColor;
  background: none;
  color: inherit;
  transition:
    background .18s,
    color .18s,
    transform .18s;
}
.stub__variants button:hover {
  transform: translateY(-2px);
}
.stub__variants button[aria-pressed=true] {
  background: currentColor;
}
.stub__variants button[aria-pressed=true] span {
  color: var(--black);
}
.stub--light .stub__variants button[aria-pressed=true] span {
  color: var(--yellow);
}
.stubs--dense {
  gap: clamp(1rem, 2vw, 1.5rem);
}
.stubs--dense .stub__name {
  font-size: clamp(1.5rem, 3.6vw, 2.3rem);
}
.stubs--dense .stub__main {
  padding: clamp(1.1rem, 2.6vw, 1.6rem);
}
.stubs--dense .stub__meta {
  margin: .2rem 0;
}
.stubs--dense .stub__meta dd {
  font-size: 1.15rem;
}
.shopbar {
  max-width: 980px;
  margin: 0 auto clamp(1.5rem, 4vh, 2.5rem);
  padding: 0 var(--pad);
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  align-items: center;
  justify-content: center;
}
.shopbar__label {
  width: 100%;
  text-align: center;
  margin: 0 0 .2rem;
  font-family: var(--cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  opacity: .7;
}
.shopbar .buy {
  font-size: 1rem;
  padding: .7rem 1.6rem;
}
.shopbar .buy--primary {
  background: var(--black);
  color: var(--yellow);
  border-color: var(--black);
}
.shopbar .buy--secondary {
  color: var(--black);
  border-color: var(--black);
}
.reminder {
  max-width: 980px;
  margin: 0 auto clamp(2rem, 5vh, 3rem);
  padding: 0 var(--pad);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .6rem;
  flex-wrap: wrap;
  text-align: center;
  font-family: var(--cond);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: .88rem;
}
.reminder strong {
  font-weight: 700;
}
.reminder a {
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 700;
}
.filters--stubs {
  padding-bottom: clamp(1rem, 3vh, 1.6rem);
}
.hero--offen .hero__scrim {
  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, .84) 0%,
      rgba(0, 0, 0, .10) 54%,
      rgba(0, 0, 0, .38) 100%),
    linear-gradient(
      to right,
      rgba(0, 0, 0, .62) 0%,
      rgba(0, 0, 0, .28) 38%,
      rgba(0, 0, 0, 0) 66%);
}
.hero--claim .hero__title {
  font-size: clamp(2.6rem, 8.4vw, 7.4rem);
  line-height: .86;
}
.hero--claim .hero__title .line--out {
  -webkit-text-stroke-width: 1.5px;
}
.hero--claim .hero__date {
  font-size: clamp(1.4rem, 3.4vw, 2.2rem);
  margin-top: 1rem;
}
.hero--claim .hero__actions {
  margin-top: 1.6rem;
}
@media (min-width: 760px) {
}
.notice--mark {
  position: relative;
  overflow: hidden;
}
.notice--mark > *:not(.notice__mark) {
  position: relative;
  z-index: 1;
}
.notice--mark > h2,
.notice--mark > p {
  max-width: min(64ch, 74%);
}
.notice__mark {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  right: -7%;
  top: 50%;
  transform: translateY(-50%) rotate(-7deg);
  width: clamp(210px, 30vw, 400px);
  color: rgba(0, 0, 0, .14);
}
.notice__mark svg {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 860px) {
  .notice--mark > h2,
  .notice--mark > p {
    max-width: none;
  }
  .notice__mark {
    right: -22%;
    top: auto;
    bottom: -14%;
    transform: rotate(-7deg);
    width: clamp(190px, 46vw, 260px);
    color: rgba(0, 0, 0, .09);
  }
}
.notice__mark .zelt-tuer {
  fill: var(--yellow);
}
.suche {
  max-width: 1100px;
  width: calc(100% - 2 * var(--pad));
  margin: 0 auto clamp(1.2rem, 3vh, 2rem);
}
.suche__feld {
  position: relative;
  display: block;
}
.suche__feld input {
  width: 100%;
  font-family: var(--cond);
  font-weight: 500;
  font-size: 1.15rem;
  padding: 1rem 3.2rem 1rem 1.3rem;
  min-height: 56px;
  background: var(--yellow);
  color: var(--black);
  border: 3px solid var(--black);
  border-radius: 999px;
  -webkit-appearance: none;
}
.suche__feld input::placeholder {
  color: rgba(0, 0, 0, .5);
}
.suche__feld input:focus-visible {
  outline: 3px solid var(--black);
  outline-offset: 3px;
}
.suche__icon {
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  pointer-events: none;
}
.suche__zahl {
  margin: .6rem 0 0;
  text-align: center;
  font-family: var(--cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  color: #4d4d4d;
}
.bereiche {
  max-width: 1100px;
  width: calc(100% - 2 * var(--pad));
  margin: 0 auto clamp(1.5rem, 4vh, 2.5rem);
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  justify-content: center;
}
.bereiche button {
  font-family: var(--cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .82rem;
  min-height: 44px;
  padding: .5rem 1.1rem;
  border-radius: 999px;
  cursor: pointer;
  border: 2.5px solid var(--black);
  background: none;
  color: var(--black);
  transition:
    background .16s,
    color .16s,
    transform .16s;
}
.bereiche button:hover {
  transform: translateY(-2px);
}
.bereiche button[aria-pressed=true] {
  background: var(--black);
  color: var(--yellow);
}
.bereiche button:focus-visible {
  outline: 3px solid var(--black);
  outline-offset: 3px;
}
.az {
  max-width: 1100px;
  width: calc(100% - 2 * var(--pad));
  margin: 0 auto clamp(3rem, 8vh, 5rem);
}
.az__bereich {
  margin-bottom: clamp(1.8rem, 4vh, 2.8rem);
}
.az__bereich > h2 {
  font-family: var(--title);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  line-height: .95;
  margin: 0 0 .8rem;
  position: sticky;
  top: calc(var(--nav-h) - 2px);
  z-index: 5;
  background: var(--yellow);
  padding: .6rem 0 .4rem;
  border-bottom: 3px solid var(--black);
}
.az__gruppe {
  font-family: var(--cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  opacity: .65;
  margin: 1.4rem 0 .2rem;
}
.az__eintrag {
  border-bottom: 2px solid rgba(0, 0, 0, .25);
}
.az__eintrag > summary {
  cursor: pointer;
  list-style: none;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem .2rem;
  font-family: var(--cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: 1.02rem;
}
.az__eintrag > summary::-webkit-details-marker {
  display: none;
}
.az__eintrag > summary::after {
  content: "+";
  font-family: var(--title);
  font-size: 1.5rem;
  line-height: 1;
  flex: none;
  transition: transform .2s;
}
.az__eintrag[open] > summary::after {
  transform: rotate(45deg);
}
.az__eintrag > summary:focus-visible {
  outline: 3px solid var(--black);
  outline-offset: 2px;
}
.az__eintrag[open] > summary {
  color: var(--black);
}
.az__inhalt {
  padding: 0 .2rem 1.2rem;
  display: grid;
  gap: .7rem;
}
.az__inhalt p {
  margin: 0;
  max-width: 78%;
  line-height: 1.6;
}
.az mark {
  background: var(--black);
  color: var(--yellow);
  padding: 0 .15em;
}
.az__leer {
  text-align: center;
  padding: clamp(2rem, 6vh, 4rem) 0;
  font-family: var(--title);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
}
.az__leer span {
  display: block;
  font-family: var(--ui);
  font-weight: 400;
  text-transform: none;
  font-size: .95rem;
  margin-top: .6rem;
  opacity: .7;
}
@media (prefers-reduced-motion: reduce) {
  .bereiche button,
  .az__eintrag > summary::after {
    transition: none;
  }
}
.az__titel {
  flex: 1 1 auto;
  min-width: 0;
}
.az__liste {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: .25rem;
  max-width: 78%;
}
.az__tabelle {
  overflow-x: auto;
}
.az__tabelle table {
  width: 100%;
  max-width: 620px;
  border-collapse: collapse;
  min-width: 300px;
  font-variant-numeric: tabular-nums;
}
.az__tabelle th:first-child,
.az__tabelle td:first-child {
  width: 60%;
}
.az__tabelle caption {
  text-align: left;
  padding-bottom: .5rem;
  font-family: var(--cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .72rem;
  opacity: .65;
}
.az__tabelle th,
.az__tabelle td {
  text-align: left;
  padding: .6rem .9rem .6rem 0;
  border-bottom: 2px solid rgba(0, 0, 0, .2);
}
.az__tabelle th {
  font-family: var(--cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .74rem;
  border-bottom-color: var(--black);
}
.az__tabelle td:last-child,
.az__tabelle th:last-child {
  padding-right: 0;
}
.az__tabelle tbody tr:last-child td {
  border-bottom: 0;
}
.az__tabelle td strong {
  font-family: var(--title);
  font-weight: 700;
  font-size: 1.05rem;
}
.az__regeln {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .55rem;
}
.az__regeln li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  max-width: 82%;
  gap: .8rem;
  align-items: start;
  line-height: 1.5;
}
@media (max-width: 700px) {
  .az__regeln li {
    max-width: 100%;
  }
}
.az__regeln svg {
  width: 30px;
  height: 30px;
  flex: none;
  margin-top: -.15rem;
}
.az__regeln .erlaubt {
  opacity: .85;
}
.az__regeln .erlaubt svg {
  color: #1f7a37;
}
.az__regeln .verboten svg {
  color: var(--black);
}
.az__weiter {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  min-height: 44px;
  font-family: var(--cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .9rem;
  padding: .6rem 1.4rem;
  border-radius: 999px;
  background: var(--black);
  color: var(--yellow);
  border: 2.5px solid var(--black);
  justify-self: start;
  margin-top: .3rem;
  transition: transform .18s;
}
.az__weiter:hover {
  transform: translateY(-2px);
}
.az__weiter svg {
  width: 20px;
  height: 11px;
}
.az__inhalt a:not(.az__weiter) {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  text-decoration-color: rgba(0, 0, 0, .45);
  transition: background .15s, text-decoration-color .15s;
  border-radius: 3px;
}
.az__inhalt a:not(.az__weiter):hover {
  background: var(--black);
  color: var(--yellow);
  text-decoration-color: var(--yellow);
}
.az__inhalt a:focus-visible {
  outline: 3px solid var(--black);
  outline-offset: 2px;
}
.az__schritte {
  margin: 0;
  padding-left: 1.4rem;
  display: grid;
  gap: .35rem;
  max-width: 78%;
}
.az__status {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .45rem;
  max-width: 78%;
}
.az__status li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .7rem;
  align-items: baseline;
}
.az__marke {
  font-family: var(--cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .66rem;
  white-space: nowrap;
  padding: .2rem .55rem;
  border-radius: 999px;
  border: 2px solid currentColor;
}
.az__marke--jetzt {
  background: var(--black);
  color: var(--yellow);
  border-color: var(--black);
}
.az__marke--folgt {
  color: rgba(0, 0, 0, .6);
}
.az__marke--weg {
  color: rgba(0, 0, 0, .62);
}
.az__status .weg span:last-child {
  text-decoration: line-through;
  opacity: .6;
}
.az__adresse {
  font-style: normal;
  line-height: 1.55;
  max-width: 78%;
  padding-left: .9rem;
  border-left: 3px solid rgba(0, 0, 0, .25);
}
.az__adresse strong {
  display: block;
}
.az__untertitel {
  font-family: var(--cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .78rem;
  margin: .5rem 0 -.2rem;
  opacity: .7;
}
.partner {
  max-width: 1100px;
  width: calc(100% - 2 * var(--pad));
  margin: 0 auto clamp(3rem, 8vh, 5rem);
  display: grid;
  gap: clamp(1.5rem, 4vh, 2.5rem);
}
.partner__gruppe {
  border: 3px solid var(--black);
  border-radius: 22px;
  padding: clamp(1.2rem, 3vw, 2rem);
}
.partner__gruppe h2 {
  font-family: var(--title);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  line-height: 1;
  margin: 0 0 clamp(1rem, 2.5vw, 1.6rem);
  text-align: center;
  letter-spacing: .02em;
}
.partner__logos {
  display: grid;
  gap: clamp(1rem, 2.5vw, 2rem);
  grid-template-columns: repeat(var(--spalten, 4), 1fr);
  align-items: center;
  justify-items: center;
}
.partner__logos a,
.partner__logos span {
  display: grid;
  place-items: center;
  width: 100%;
  padding: .4rem;
}
.partner__logos img {
  width: 100%;
  max-width: var(--logo-max, 170px);
  height: auto;
  transition: transform .2s cubic-bezier(.2, .7, .3, 1);
}
.partner__logos a:hover img {
  transform: scale(1.06);
}
.partner__logos a:focus-visible {
  outline: 3px solid var(--black);
  outline-offset: 4px;
  border-radius: 8px;
}
.partner__gruppe--presenting {
  text-align: center;
}
.partner__gruppe--presenting .partner__logos {
  --spalten: 1;
  --logo-max: 300px;
}
@media (max-width: 900px) {
  .partner__gruppe:not(.partner__gruppe--presenting) .partner__logos {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 560px) {
  .partner__gruppe:not(.partner__gruppe--presenting) .partner__logos {
    grid-template-columns: repeat(2, 1fr);
  }
}
.partner__gruppe--presenting .partner__logos {
  grid-template-columns: 1fr;
}
@media (prefers-reduced-motion: reduce) {
  .partner__logos img {
    transition: none;
  }
}
.archiv {
  max-width: 1240px;
  width: calc(100% - 2 * var(--pad));
  margin: 0 auto clamp(3rem, 8vh, 5rem);
  display: grid;
  gap: clamp(1.2rem, 3vw, 2.2rem);
  grid-template-columns: repeat(3, 1fr);
}
.plakat {
  display: grid;
  gap: .5rem;
}
.plakat__bild {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.414;
  overflow: hidden;
  border: 3px solid var(--black);
  border-radius: 12px;
  background: var(--black);
  cursor: zoom-in;
  padding: 0;
}
.plakat__bild img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s cubic-bezier(.2, .7, .3, 1);
}
.plakat__bild:hover img {
  transform: scale(1.05);
}
.plakat__bild:focus-visible {
  outline: 3px solid var(--black);
  outline-offset: 4px;
}
.plakat__jahr {
  font-family: var(--title);
  font-weight: 700;
  font-size: 1.15rem;
  font-variant-numeric: tabular-nums;
  text-align: center;
}
@media (max-width: 660px) {
  .archiv {
    grid-template-columns: repeat(2, 1fr);
  }
}
.lupe {
  border: 0;
  padding: 0;
  background: none;
  max-width: min(92vw, 780px);
  max-height: 94vh;
  overflow: visible;
}
.lupe[open] {
  display: flex;
  flex-direction: column;
}
.lupe::backdrop {
  background: rgba(0, 0, 0, .88);
}
.lupe img {
  max-height: calc(94vh - 4rem);
  max-width: 100%;
  width: auto;
  height: auto;
  margin-inline: auto;
  display: block;
  border: 3px solid var(--yellow);
  border-radius: 12px;
}
.lupe__leiste {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: .7rem;
  color: var(--yellow);
}
.lupe__jahr {
  font-family: var(--title);
  font-weight: 700;
  font-size: 1.4rem;
  font-variant-numeric: tabular-nums;
}
.lupe__zu {
  font-family: var(--cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .82rem;
  min-height: 44px;
  padding: .5rem 1.2rem;
  border-radius: 999px;
  cursor: pointer;
  background: none;
  color: var(--yellow);
  border: 2.5px solid var(--yellow);
}
.lupe__zu:hover {
  background: var(--yellow);
  color: var(--black);
}
@media (prefers-reduced-motion: reduce) {
  .plakat__bild img {
    transition: none;
  }
}
.page-dark {
  background: var(--black);
  color: var(--white);
}
.page-dark main {
  padding-top: var(--nav-h);
}
.page-dark .page-head h1 {
  color: var(--white);
}
.page-dark .page-head p {
  color: rgba(255, 255, 255, .7);
}
.archiv-grund {
  position: relative;
  isolation: isolate;
}
.archiv-grund__bild {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: url(../img/bg-skyline.jpg) center / cover no-repeat;
  opacity: .3;
}
.archiv-grund__ton {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(
      80% 50% at 78% 8%,
      rgba(255, 255, 0, .14),
      transparent 60%),
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, .75) 0%,
      rgba(0, 0, 0, .55) 40%,
      rgba(0, 0, 0, .85) 100%);
}
.page-dark .plakat__bild {
  border-color: var(--yellow);
  background: rgba(0, 0, 0, .6);
}
.page-dark .plakat__bild:focus-visible {
  outline-color: var(--yellow);
}
.page-dark .plakat__jahr {
  color: var(--yellow);
}
.page-dark .nav--onyellow {
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, .9),
      rgba(0, 0, 0, 0));
  color: var(--white);
}
.page-dark .nav--onyellow .nav__links a::after {
  background: var(--yellow);
}
.page-dark .nav--onyellow .lang {
  border-color: rgba(255, 255, 255, .35);
}
.page-dark .nav--onyellow .lang span,
.page-dark .nav--onyellow .lang a {
  color: rgba(255, 255, 255, .7);
}
.page-dark .nav--onyellow .lang a:hover,
.page-dark .nav--onyellow .lang a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, .14);
}
.page-dark .nav--onyellow .lang span[aria-current] {
  background: var(--yellow);
  color: var(--black);
}
.page-dark .nav--onyellow .btn {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}
.page-dark .nav--onyellow .burger span {
  background: var(--white);
}
.page-dark .sitefoot {
  position: relative;
  z-index: 1;
  background: var(--black);
}
.page-dark .sitefoot::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--black);
}
.actsuche {
  max-width: 1240px;
  width: calc(100% - 2 * var(--pad));
  margin: 0 auto clamp(2rem, 5vh, 3rem);
}
.actsuche .suche__feld input {
  background: rgba(0, 0, 0, .55);
  color: var(--white);
  border-color: var(--yellow);
  backdrop-filter: blur(6px);
}
.actsuche .suche__feld input::placeholder {
  color: rgba(255, 255, 255, .55);
}
.actsuche .suche__feld input:focus-visible {
  outline-color: var(--yellow);
}
.actsuche .suche__icon {
  color: var(--yellow);
}
.actsuche .suche__zahl {
  color: #9a9a9a;
}
.treffer {
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, .18);
  border: 2px solid rgba(255, 255, 255, .18);
  border-radius: 14px;
  overflow: hidden;
}
.treffer li {
  background: rgba(0, 0, 0, .6);
  padding: .8rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.actsuche__leer {
  margin: 1.2rem 0 0;
  text-align: center;
  padding: 1.6rem;
  border: 2px dashed rgba(255, 255, 255, .3);
  border-radius: 14px;
  font-family: var(--cond);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .9rem;
  color: rgba(255, 255, 255, .7);
}
.plakat--abgesagt .plakat__bild {
  border-color: rgba(255, 255, 255, .3);
}
.plakat--abgesagt .plakat__bild img {
  filter: grayscale(1);
  opacity: .45;
}
.plakat--abgesagt .plakat__bild:hover img {
  opacity: .6;
}
.plakat__marke {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-8deg);
  font-family: var(--title);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(1rem, 2.6vw, 1.6rem);
  letter-spacing: .04em;
  color: var(--white);
  border: 4px solid var(--white);
  border-radius: 8px;
  padding: .2em .5em;
  pointer-events: none;
  white-space: nowrap;
}
.plakat--abgesagt .plakat__jahr {
  color: rgba(255, 255, 255, .6);
}
.plakat__zusatz {
  display: block;
  font-family: var(--cond);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .68rem;
  color: rgba(255, 255, 255, .5);
  margin-top: .15rem;
}
.rechtsnav {
  max-width: 1100px;
  width: calc(100% - 2 * var(--pad));
  margin: 0 auto clamp(1.8rem, 4vh, 2.6rem);
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  justify-content: center;
}
.rechtsnav a {
  font-family: var(--cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .84rem;
  min-height: 44px;
  padding: .55rem 1.2rem;
  border-radius: 999px;
  border: 2.5px solid var(--black);
  color: var(--black);
  display: inline-flex;
  align-items: center;
  transition:
    background .16s,
    color .16s,
    transform .16s;
}
.rechtsnav a:hover {
  transform: translateY(-2px);
}
.rechtsnav a[aria-current=page] {
  background: var(--black);
  color: var(--yellow);
}
.recht {
  max-width: 1100px;
  width: calc(100% - 2 * var(--pad));
  margin: 0 auto clamp(3rem, 8vh, 5rem);
}
.recht > * {
  max-width: 78%;
}
.recht h2 {
  font-family: var(--title);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(1.4rem, 3.4vw, 2.1rem);
  line-height: 1;
  margin: 2.2rem 0 .8rem;
  padding-bottom: .5rem;
  border-bottom: 3px solid var(--black);
  max-width: 100%;
}
.recht h3 {
  font-family: var(--title);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  line-height: 1.1;
  margin: 1.8rem 0 .5rem;
}
.recht h4 {
  font-family: var(--cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .82rem;
  margin: 1.4rem 0 .3rem;
  opacity: .75;
}
.recht p {
  margin: 0 0 .9rem;
  line-height: 1.65;
}
.recht p,
.recht li,
.recht td,
.recht dd {
  overflow-wrap: anywhere;
}
.recht ul,
.recht ol {
  margin: 0 0 1rem;
  padding-left: 1.3rem;
  display: grid;
  gap: .3rem;
}
.recht li {
  line-height: 1.6;
}
.recht a {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  text-decoration-color: rgba(0, 0, 0, .45);
  border-radius: 3px;
}
.recht a:hover {
  background: var(--black);
  color: var(--yellow);
  text-decoration-color: var(--yellow);
}
.recht strong {
  font-weight: 700;
}
.recht table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  margin: 0 0 1.2rem;
}
.recht th,
.recht td {
  text-align: left;
  padding: .5rem .8rem .5rem 0;
  border-bottom: 2px solid rgba(0, 0, 0, .2);
  vertical-align: top;
}
.recht th {
  font-family: var(--cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .74rem;
}
@media (max-width: 760px) {
  .recht > * {
    max-width: 100%;
  }
}
.formular {
  max-width: 900px;
  width: calc(100% - 2 * var(--pad));
  margin: 0 auto clamp(3rem, 8vh, 5rem);
}
.formular fieldset {
  border: 3px solid var(--black);
  border-radius: 20px;
  padding: clamp(1.2rem, 3vw, 2rem);
  margin: 0 0 1.2rem;
}
.formular legend {
  font-family: var(--title);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(1.05rem, 2.4vw, 1.4rem);
  padding: 0 .6rem;
}
.feldgruppe {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
.feld {
  display: grid;
  gap: .3rem;
}
.feld--breit {
  grid-column: 1 / -1;
}
.feld label,
.feldgruppe > fieldset legend {
  font-family: var(--cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .74rem;
}
.feld input,
.feld select,
.feld textarea {
  font: inherit;
  font-size: 1rem;
  min-height: 48px;
  padding: .7rem .9rem;
  width: 100%;
  background: rgba(0, 0, 0, .04);
  color: var(--black);
  border: 2.5px solid var(--black);
  border-radius: 12px;
  -webkit-appearance: none;
  appearance: none;
}
.feld select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23000' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
  padding-right: 2.6rem;
}
.feld textarea {
  min-height: 120px;
  resize: vertical;
}
.feld input:focus-visible,
.feld select:focus-visible,
.feld textarea:focus-visible {
  outline: 3px solid var(--black);
  outline-offset: 2px;
}
.feld__hinweis {
  font-size: .82rem;
  opacity: .7;
  margin: 0;
}
.feld--pflicht label::after {
  content: " *";
}
.wahl {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.wahl label {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  min-height: 44px;
  padding: .45rem 1rem;
  cursor: pointer;
  border: 2.5px solid var(--black);
  border-radius: 999px;
  font-family: var(--cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .82rem;
}
.wahl input {
  accent-color: #000;
  width: 18px;
  height: 18px;
}
.wahl label:has(input:checked) {
  background: var(--black);
  color: var(--yellow);
}
.wahl label:has(input:focus-visible) {
  outline: 3px solid var(--black);
  outline-offset: 3px;
}
.formular__absenden {
  font-family: var(--title);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.2rem;
  min-height: 56px;
  padding: .8rem 2.4rem;
  cursor: pointer;
  background: var(--black);
  color: var(--yellow);
  border: 3px solid var(--black);
  border-radius: 999px;
}
.formular__absenden:disabled {
  opacity: .45;
  cursor: not-allowed;
}
.formular__fuss {
  display: grid;
  gap: .8rem;
  justify-items: start;
}
.status-hinweis {
  max-width: 900px;
  width: calc(100% - 2 * var(--pad));
  margin: 0 auto clamp(1.5rem, 4vh, 2.4rem);
  border: 3px dashed var(--black);
  border-radius: 20px;
  padding: clamp(1.2rem, 3vw, 1.8rem);
  display: grid;
  gap: .5rem;
}
.status-hinweis h2 {
  font-family: var(--title);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  line-height: .95;
  margin: 0;
}
.status-hinweis p {
  margin: 0;
}
.vorschau > summary {
  cursor: pointer;
  list-style: none;
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .84rem;
  opacity: .75;
  padding: .8rem 0;
}
.vorschau > summary::-webkit-details-marker {
  display: none;
}
.vorschau > summary::before {
  content: "+";
  display: grid;
  place-items: center;
  flex: none;
  width: 28px;
  height: 28px;
  border: 2.5px solid currentColor;
  border-radius: 50%;
  font-size: 1.2rem;
  line-height: 1;
}
.vorschau[open] > summary::before {
  content: "–";
}
@media (max-width: 620px) {
  .feldgruppe {
    grid-template-columns: 1fr;
  }
}
.az__spaeter,
.fuss__spaeter {
  font-family: var(--cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
  margin: 0;
}
.fuss__spaeter {
  color: #9a9a9a;
}
.az__spaeter {
  color: #4d4d4d;
}
.plan {
  margin: .4rem 0 0;
}
.plan img {
  width: 100%;
  height: auto;
  border: 3px solid var(--black);
  border-radius: 14px;
}
.plan figcaption {
  font-family: var(--cond);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .72rem;
  opacity: .65;
  margin-top: .5rem;
}
.countdown--hero {
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
}
@media (max-width: 860px) {
}
@media (max-width: 700px) {
}
.cd-pille {
  position: fixed;
  z-index: 45;
  right: var(--pad);
  bottom: 5.5rem;
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: .55rem .7rem .55rem 1.1rem;
  background: rgba(12, 12, 12, .92);
  backdrop-filter: blur(10px);
  border: 2.5px solid var(--yellow);
  border-radius: 999px;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity .3s ease, transform .3s cubic-bezier(.2, .7, .3, 1);
}
body:has(.nav--solid) .cd-pille {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.cd-pille__zahl {
  font-family: var(--title);
  font-weight: 700;
  color: var(--yellow);
  font-size: 1.5rem;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.cd-pille__text {
  font-family: var(--cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .62rem;
  color: rgba(255, 255, 255, .7);
  display: block;
  margin-top: .1rem;
}
.cd-pille__btn {
  font-family: var(--cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .82rem;
  white-space: nowrap;
  background: var(--yellow);
  color: var(--black);
  padding: .5rem 1.1rem;
  border-radius: 999px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}
.cd-pille__btn:hover {
  transform: translateY(-1px);
}
@media (max-width: 560px) {
  .cd-pille {
    left: var(--pad);
    right: var(--pad);
    justify-content: space-between;
  }
}
@media (prefers-reduced-motion: reduce) {
  .cd-pille {
    transition: opacity .2s;
  }
}
.hero--zaehler .hero__scroll {
  display: none;
}
.hero__zaehler {
  position: absolute;
  z-index: 3;
  right: var(--pad);
  bottom: clamp(3.5rem, 9vh, 6rem);
  display: grid;
  gap: .45rem;
  justify-items: end;
  text-align: right;
}
.hero__zaehler .countdown__label {
  margin: 0;
  font-family: var(--cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .82rem;
  color: var(--yellow);
  max-width: none;
}
.hero__zaehler .countdown__label small {
  display: none;
}
.hero__zaehler .countdown__units {
  display: flex;
  gap: .35rem;
}
.hero__zaehler .countdown__unit {
  min-width: 62px;
  border: 2px solid rgba(255, 255, 255, .45);
  border-radius: 12px;
  background: rgba(0, 0, 0, .72);
  backdrop-filter: blur(6px);
  padding: .35rem .3rem .3rem;
  text-align: center;
}
.hero__zaehler .countdown__value {
  display: block;
  font-family: var(--title);
  font-weight: 700;
  color: var(--yellow);
  font-size: 1.6rem;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.hero__zaehler .countdown__name {
  display: block;
  margin-top: .1rem;
  font-family: var(--cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .72rem;
  color: rgba(255, 255, 255, .85);
}
@media (max-width: 860px) {
  .hero__zaehler {
    left: var(--pad);
    right: var(--pad);
    bottom: clamp(1.2rem, 3.5vh, 2rem);
    justify-items: start;
    text-align: left;
  }
  .hero__zaehler .countdown__units {
    width: 100%;
    gap: .4rem;
  }
  .hero__zaehler .countdown__unit {
    flex: 1;
    min-width: 0;
  }
  .hero--zaehler .hero__inner {
    padding-bottom: clamp(7rem, 17vh, 9.5rem);
  }
  .hero__actions {
    gap: .6rem;
  }
  .hero__actions .btn {
    flex: 1 1 100%;
    white-space: nowrap;
    font-size: 1rem;
    padding: .7rem 1.4rem;
  }
}
.tt {
  max-width: 1240px;
  width: calc(100% - 2 * var(--pad));
  margin: 0 auto clamp(3rem, 7vh, 5rem);
}
.tt__entwurf {
  border: 3px dashed var(--black);
  border-radius: 18px;
  padding: 1rem 1.2rem;
  margin-bottom: clamp(1.2rem, 3vh, 1.8rem);
  display: grid;
  gap: .3rem;
}
.tt__entwurf strong {
  font-family: var(--title);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(1rem, 2.4vw, 1.3rem);
}
.tt__entwurf p {
  margin: 0;
  font-size: .95rem;
  max-width: 72ch;
}
.tt__tage {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: 1.2rem;
}
.tt__tage button {
  font-family: var(--cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  font-size: .95rem;
  min-height: 46px;
  padding: .5rem 1.3rem;
  border-radius: 999px;
  cursor: pointer;
  border: 2.5px solid var(--black);
  background: none;
  color: var(--black);
  transition:
    background .18s,
    color .18s,
    transform .18s;
}
.tt__tage button:hover {
  transform: translateY(-2px);
}
.tt__tage button[aria-pressed=true] {
  background: var(--black);
  color: var(--yellow);
}
.tt__raster {
  display: grid;
  border-top: 0;
  border-radius: 0 0 18px 18px;
  grid-template-columns: 3.6rem repeat(var(--spalten), minmax(0, 1fr));
  grid-auto-rows: clamp(6.5px, 0.62vw, 9px);
  column-gap: .4rem;
  padding: 0 .7rem 1rem;
}
.tt__kopfzeile {
  position: sticky;
  top: 0;
  z-index: 4;
  display: grid;
  grid-template-columns: 3.6rem repeat(var(--spalten), minmax(0, 1fr));
  column-gap: .4rem;
  padding: .35rem .7rem;
  background: var(--yellow);
  min-width: calc(3.6rem + var(--spalten) * 8.5rem);
}
.tt__kopf {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 46px;
  padding: .35rem;
  background: var(--buehnenfarbe, var(--yellow));
  border: 2.5px solid var(--black);
  border-radius: 12px;
  font-family: var(--title);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(.66rem, 1.3vw, .92rem);
  line-height: 1;
  overflow-wrap: anywhere;
}
.tt__stunde {
  grid-column: 1;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding-right: .45rem;
  font-family: var(--mono, monospace);
  font-size: .7rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: rgba(0, 0, 0, .55);
  border-top: 1px solid rgba(0, 0, 0, .18);
}
.tt__linie {
  grid-column: 2 / -1;
  border-top: 1px solid rgba(0, 0, 0, .1);
  pointer-events: none;
}
.tt__slot {
  border: 2.5px solid var(--black);
  border-radius: 10px;
  padding: .25rem .45rem;
  overflow: hidden;
  display: grid;
  align-content: start;
  gap: .1rem;
  background: var(--buehnenfarbe, var(--yellow));
  transition: transform .16s;
}
.tt__slot:hover {
  transform: translateY(-2px);
  z-index: 2;
}
.tt__slot--headliner {
  border-width: 4px;
}
.tt__name {
  font-family: var(--title);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(.72rem, 1.4vw, 1rem);
  line-height: .95;
  color: var(--black);
  overflow-wrap: anywhere;
}
.tt__zeit {
  font-family: var(--mono, monospace);
  font-weight: 700;
  font-size: .62rem;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
  color: rgba(0, 0, 0, .7);
}
.tt__liste {
  display: none;
}
.tt__eintrag {
  display: grid;
  grid-template-columns: 5.2rem 1fr;
  gap: .2rem .9rem;
  padding: .75rem 0;
  border-top: 2px solid rgba(0, 0, 0, .2);
}
.tt__eintrag:last-child {
  border-bottom: 2px solid rgba(0, 0, 0, .2);
}
.tt__eintrag-zeit {
  font-family: var(--mono, monospace);
  font-weight: 700;
  font-size: .84rem;
  font-variant-numeric: tabular-nums;
  padding-top: .15rem;
}
.tt__eintrag-name {
  font-family: var(--title);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.05rem;
  line-height: 1;
}
.tt__eintrag-buehne {
  grid-column: 2;
  font-family: var(--cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .66rem;
  justify-self: start;
  padding: .15rem .5rem;
  border-radius: 999px;
  border: 2px solid var(--black);
  background: var(--buehnenfarbe, transparent);
}
@media (max-width: 860px) {
  .tt__raster {
    display: none;
  }
  .tt__liste {
    display: block;
  }
}
.tt__rahmen {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  max-height: min(78svh, 940px);
  border: 3px solid var(--black);
  border-radius: 18px;
  background: rgba(0, 0, 0, .03);
}
.tt__raster {
  min-width: calc(3.6rem + var(--spalten) * 8.5rem);
}
.tt__tage--klein {
  margin-top: -.6rem;
}
.tt__tage--klein button {
  font-size: .82rem;
  min-height: 40px;
  padding: .4rem 1rem;
  border-width: 2px;
}
.tt__kopf {
  background: var(--buehnenfarbe, var(--yellow));
}
.tt__slot--takeover {
  background: none;
  border-style: dashed;
  z-index: 0;
  align-content: end;
  padding-bottom: .4rem;
}
.tt__slot--takeover .tt__name {
  font-size: .68rem;
  opacity: .8;
}
.tt__slot--takeover .tt__zeit {
  display: none;
}
.tt__slot:not(.tt__slot--takeover) {
  z-index: 1;
}
.tt__eintrag--takeover .tt__eintrag-name {
  font-size: .8rem;
  opacity: .75;
}
.tt__leer {
  grid-column: 1 / -1;
  margin: 0;
  padding: 2.5rem 1rem;
  text-align: center;
  font-family: var(--cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .9rem;
  opacity: .6;
}
.vorschau-band {
  grid-column: 1 / -1;
  margin: 0 0 1rem;
  padding: .6rem .9rem;
  border: 2px dashed var(--yellow);
  border-radius: 10px;
  font-family: var(--cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
  color: var(--yellow);
}
.tba-frage {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.tba-frage b {
  font-family: var(--title);
  font-weight: 700;
  line-height: .8;
  font-size: clamp(6rem, 22vw, 13rem);
  color: transparent;
  -webkit-text-stroke: 3px rgba(255, 255, 0, .45);
  transition: -webkit-text-stroke-color .25s, transform .3s cubic-bezier(.2, .7, .3, 1);
}
.act--tba:hover .tba-frage b {
  -webkit-text-stroke-color: var(--yellow);
  transform: rotate(-4deg) scale(1.04);
}
.act--tba .act__media {
  position: relative;
}
@media (prefers-reduced-motion: reduce) {
  .tba-frage b {
    transition: none;
  }
}
