.content-heading {
  display: none;
}
@media (min-width: 68em) {
  .content-heading {
    background-image: linear-gradient(to right, var(--box-color), transparent);
    color: white;
    display: block;
    font-size: 1.4rem;
    letter-spacing: initial;
    margin-bottom: 1em;
    padding: .2em .4em;
    text-transform: uppercase;
  }
}

.sub-heading {
  background-image: linear-gradient(to right, var(--sub-header), transparent);
  color: var(--light-box-color);
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: initial;
  margin-bottom: 1em;
  padding: .2em .4em;
  text-transform: uppercase;
  max-width: 10em;
}

.content-table {
  display: grid;
  gap: 1.2em;
  grid-template-columns: 1fr;
}
@media (min-width: 40em), (max-width: 68em) and (orientation: landscape) {
  .content-table {
    grid-template-columns: 1fr 1fr;
  }
  .content-table--3-cols {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.media-object {
  background-color: var(--media-background-light);
  display: flex;
  flex-direction: column;
}
.media-object.guest-entry {
  background-color: unset;
}
@media (min-width: 40em), (max-width: 68em) and (orientation: landscape) {
  .media-object:nth-child(even) .media-object__description {
    flex-direction: row-reverse;
  }
  .media-object.guest-entry > .media-object__description {
    flex-direction: row-reverse;
  }
  .media-object.guest-entry:nth-child(even) > .media-object__description {
    flex-direction: row;
  }
}
.media-object:has(.guest-body) {
  background-color: transparent;
}
.media-object__description {
  box-shadow: var(--box-shadow);
  display: flex;
  flex: 0 1;
  flex-direction: row;
}
.media-object__description figure {
  background-image: linear-gradient(to right, var(--box-color), transparent);
  flex: 1 0;
}
.media-object__description img,
.media-object__description video {
  cursor: pointer;
  display: block;
  padding: .2em;
  object-fit: cover;
  width: 100%;
  height: auto;
}
@media (min-width: 68em) {
  .media-object__description img,
  .media-object__description video {
    padding: .5em;
  }
}
@media (min-width: 40em), (max-width: 68em) and (orientation: landscape) {
  .media-object:nth-child(even) .media-object__description figure {
    background-image: linear-gradient(to left, var(--box-color), transparent);
  }
}
.media-object > h2 {
  background-color: var(--light-red);
  box-shadow: var(--box-shadow-inner);
  font-size: 1.2rem;
  margin: .8em 0;
  padding: .6em 1em;
  text-transform: uppercase;
}
.media-object h3 {
  align-self: center;
  margin: 0;
  padding: .75em 1em;
  padding-bottom: 0;
}
.media-object p {
  align-self: center;
  flex: 1 0;
  font-size: 1.2rem;
  hyphens: auto;
  line-height: 1.3;
  margin: 0;
  padding: .75em 1em;
  text-align: justify;
  max-width: 72ch;
}
.media-object small {
  font-size: .9rem;
}
.media-object figure > img {
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}
.media-object > *:last-child {
  border-bottom: 1px solid var(--box-color);
}
.media-object__teaser {
  background-color: var(--media-background-light);
  padding: .75em 1em;
  width: 100%;
}
.media-object__teaser ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.media-object__teaser li {
  padding: .75em .5em;
}
.media-object__teaser li:nth-child(2n - 1) {
  background-color: var(--light-red);
}
.media-object__teaser li:hover {
  cursor: pointer;
  color: var(--box-color);
}
.media-object__teaser li svg {
  margin-right: .2em;
  transition: scale 250ms ease;
}
.media-object__teaser li:hover svg {
  fill: var(--box-color);
}
.media-object__player {
  align-items: center;
  background-color: var(--light-red);
  border-radius: .5em;
  cursor: pointer;
  display: flex;
  gap: 1em;
  margin-bottom: 2em;
  padding: .75em .5em;
}
.media-object__current-time {
  font-family: monospace;
  text-align: right;
  width: 5ch;
}
.media-object__slider {
  flex: 1;
}
.media-object__pause {
  fill: black;
}
.media-object__pause {
  fill: var(--box-color);
}
.media-object blockquote {
  align-self: center;
  margin: 1em;
  padding-bottom: 1em;
  text-align: justify;
  max-width: 72ch;
}
.media-object blockquote p {
  margin-left: 2em;
}
.media-object__text-container {
  align-self: center;
  max-width: 72ch;
}

.content-box,
.content-guest {
  background-color: var(--media-background-light);
  box-shadow: var(--box-shadow);
  color: var(--main-color);
  display: flex;
  flex-direction: row;
  font-size: 1rem;
  position: relative;
}
.fly-in {
  opacity: 1;
  transform: translateX(0);
  transition: opacity, transform, visibility, 250ms ease-out;
  visibility: visible;
}
.fly-in.initial {
  opacity: 0;
  visibility: hidden;
}
.fly-in.initial:nth-child(2n - 1) {
  transform: translateX(2em);
}
.fly-in.initial:nth-child(2n) {
  transform: translateX(-2em);
}
@media (min-width: 68em) {
  .content-box,
  .content-guest {
    font-size: 1.2rem;
  }
}
@media (min-width: 40em), (max-width: 68em) and (orientation: landscape) {
  .content-box:nth-child(even),
  .content-guest:nth-child(even) {
    flex-direction: row-reverse;
  }
}
.media-object__date,
.content-box__date,
.content-guest__date {
  background-image: linear-gradient(to left, var(--box-color), var(--light-box-color));
  color: white;
  flex: 0 1;
  font-size: 1.6rem;
  font-weight: bolder;
  letter-spacing: -.05em;
  line-height: .62;
  padding: .3em;
  text-align: right;
  text-transform: uppercase;
}
@media (min-width: 40em), (max-width: 68em) and (orientation: landscape) {
  .media-object:nth-child(even) .media-object__date,
  .content-box:nth-child(even) .content-box__date,
  .content-guest:nth-child(even) .content-box__date {
    background-image: linear-gradient(to right, var(--box-color), var(--light-box-color));
  }
}
.content-box__location {
  border-top: 1px solid var(--box-color);
  flex: 1 0;
  padding: .3em 0 .3em .5em;
}
.content-box__location > p {
  font-size: 1.1rem;
  margin: 0;
  position: relative;
}
.content-box__time {
  display: inline-block;
  padding: .2em;
  position: absolute;
  top: -.75em;
  right: -.25em;
  transform: rotate(90deg);
}
.content-box.cancelled .content-box__location {
  filter: blur(1.5px) saturate(0);
}
.content-box.cancelled::before {
  --this-width: 3.5em;
  border-top: .5em solid var(--box-color);
  border-bottom: .5em solid var(--box-color);
  border-radius: 50%;
  content: "";
  filter: blur(.25px);
  margin: 0 auto;
  opacity: .9;
  position: absolute;
  inset: calc(50% - (var(--this-width) * 1/2));
  text-align: center;
  transform: rotate(-15deg);
  width: var(--this-width);
  height: var(--this-width);
}
.content-box.cancelled::after {
  color: var(--box-color);
  content: "CANCELLED";
  font-family: 'Black Ops One', Courier, monospace;
  font-size: 1.7rem;
  line-height: 1.7;
  transform: rotate(-15deg);
  position: absolute;
  inset: 0;
  text-align: center;
}
.content-box:hover.cancelled::after {
  animation: shake-vertically 300ms ease;
}

.sleeve {
  background-color: #CCC;
  color: #808080;
  font-weight: bold;
  font-size: 1.1rem;
  mix-blend-mode: hard-light;
  margin: 0;
  padding: .3em;
  position: absolute;
}

figure {
  margin: 0;
}
.band-img {
  display: block;
  width: 100%;
  height: auto;
}
figcaption {
  background-color: var(--box-color);
  color: white;
  font-size: 1rem;
  padding: .4em;
  text-align: right;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.card-container > figure {
  cursor: pointer;
}

.card-container > figure,
dialog figure {
  border-top-right-radius: .5em;
  border-top-left-radius: .5em;
  background-color: var(--media-background-light);
  box-shadow: var(--box-shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: .5em;
  position: relative;
  transition: scale 250ms ease-out;
}
@media (min-width: 23em) {
  .card-container > figure,
  dialog figure {
    flex: 0 0 calc(25% - 1.01em); /* 1.01em -> Firefox fix */
    min-width: 8em;
    max-width: unset;
  }
}

.card-container > figure:hover {
  scale: 1.02;
  transition: scale 250ms ease-out;
}
.card-container > figure::after {
  box-shadow: var(--box-shadow-lifted);
  content: "";
  opacity: 0;
  position: absolute;
  inset: 0;
  transition: opacity 250ms ease-out;
  z-index: -1;
}
.card-container > figure:hover::after {
  opacity: 1;
  transition: opacity 250ms ease-out;
}
.card-container > figure div,
dialog > figure div {
  filter: drop-shadow(.25em .25em .5em #333);
}
.card-container img {
  clip-path: circle(50%);
  margin: 10%;
  width: 80%;
  height: auto;
}
.card-container figcaption {
  clip-path: polygon(0 0, 50% 25%, 100% 0, 100% 100%, 0 100%);
  padding-top: 1.5em;
}
.card-container figcaption,
dialog figcaption {
  text-align: center;
}

.media-viewer__screen {
  background-color: var(--light-box-color);
  border: 1px solid var(--box-color);
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}
.media-viewer__screen.is-open-horizontally {
  animation: open-box-horizontally 500ms ease-in-out;
  animation-fill-mode: forwards;
}
.media-viewer__screen iframe {
  aspect-ratio: 16 / 9;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: auto;
}
.media-viewer__screen iframe.is-visible {
  opacity: 1;
  transition: all 3s ease;
  visibility: visible;
}

.media-viewer__program-list {
  background-color: var(--media-background-light);
  gap: .5em;
  padding: 1em;
  padding-left: 2em;
}
.media-viewer__program-list li {
  background-color: var(--media-background-dark);
  counter-increment: li;
  cursor: pointer;
  margin-left: 1em;
  padding: .5em;
  position: relative;
}
@media (min-width: 40em) {
  .media-viewer__program-list li:nth-child(2n - 1) {
    margin-left: 1em;
  }
  .media-viewer__program-list li:nth-child(2n) {
    margin-left: 2em;
  }
}
.media-viewer__program-list li div {
  background-color: var(--media-background-dark);
  display: flex;
  justify-content: space-between;
  padding: .2em;
}
.media-viewer__program-list li > span {
  font-size: .75rem;
}
.media-viewer__program-list li::marker {
  color: white;
  content: "#" counter(li) " ";
}
.media-viewer__program-list li::before {
  background-color: var(--box-color);
  content: "";
  position: absolute;
  top: 0;
  left: -2em;
  width: 2em;
  height: 100%;
  z-index: -1;
}

.preorder-badge {
  aspect-ratio: 1 / 1;
  filter: drop-shadow(.2em .2em .1em #444);
  margin: -1em auto -2em;
  transform: rotate(-12deg);
  min-width: 8em;
  max-width: 9em;
}
@media (min-width: 92em) {
  .preorder-badge {
    margin-top: 0;
    position: fixed;
    top: 1em;
    left: 1em;
  }
}
.preorder-badge a {
  align-items: center;
  background-image: linear-gradient(-15deg, hsla(201, 79%, 15%, .6), hsla(189, 84%, 35%, .8));
  -webkit-clip-path: url(#star-badge);
  clip-path: url(#star-badge);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
  width: 100%;
  height: 100%;
}
.preorder-badge:hover {
  color: white;
  filter: drop-shadow(.2em .2em .15em #555);
  transform: scale(1.02) rotate(-12deg);
  transition: all 200ms ease;
}
.preorder-badge a *:nth-child(2) {
  color: #FFD816;
  font-size: 1.8rem;
  text-transform: uppercase;
}

.view-full-width {
  cursor: pointer;
}
.view-full-width.active {
  overflow: auto;
  position: fixed;
  inset: 0;
  z-index: 100;
}
