/* eslint no-use-before-define: 0 */
.show {
  background-color: #1a1a1a;
}

.show a,
.show .paginated-list .results-container a{
  color: white;
}

.show .section {
  max-width: var(--page-max-content-width);
}

.show .section.video-picker-container {
  max-width: var(--page-width-desktop);
}

.show .section.video-picker-container > div.video-picker-wrapper {
  margin: 0;
}

.show .section.metadata > div,
.show .section.airings > div {
  margin-left: 1rem;
  margin-right: 1rem;
}

.show ul.episodes {
  list-style: none;
  padding: 0;
}

.show ul.episodes.results-container {
  display: block;
}

.show ul.episodes li {
  display: flex;
  flex-direction: row;
  align-items: start;
  font-family: "Akzidenz-Grotesk Pro Regular", serif;
  height: 5.5813rem;
  font-size: .875rem;
  margin-bottom: 24px;
}

.show ul.episodes li .text-content {
    padding-left: 16px;
}

.show ul.episodes li h3,
.show ul.episodes li h3 a {
  font-size: .875rem;
}

.show ul.episodes li p {
  margin-bottom: 0;
  font-size: .75rem;
  text-transform: uppercase;
}

.show ul.episodes li picture {
  flex: 0 0 auto;
  width: 150px;
  height: auto;
  padding-right: 1rem;
}

.show ul.episodes li picture img {
  max-width: 150px;
}

.show .pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 1.125rem;
  margin-bottom: 7rem;
  font-family: -apple-system, system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
}

.show .paginated-list .pagination a,
.show .pagination span {
  color: var(--color-white);
  margin-left: 5px;
  margin-right: 5px;
}

.show .pagination > span.current-page {
  color: #e6e6e6;
  opacity: .35;
}

.show .pagination .prev,
.show .pagination .next {
  background-color: var(--color-black);
  width: 1.9375rem;
  height: 1.9375rem;
  box-shadow: 0 0 0 1px #fff inset;
  position: relative;
  display: inline-block;
  margin: 0 .3125rem;
}

.show .pagination .prev:hover,
.show .pagination .next:hover {
  background-color: var(--color-red);
  box-shadow: inherit;
}

.show .pagination .prev::before,
.show .pagination .next::after {
  position: absolute;
  top: 0.625rem;
  border-color: white;
  content: "";
  width: 0.625rem;
  aspect-ratio: 1 / 1;
  border-left: 0.125rem solid white;
  border-bottom: 0.125rem solid white;
 }

.show .pagination .prev span,
.show .pagination .next span {
  display: none;
}

.show .pagination .next::after {
  transform: rotate(-135deg);
  left: 0.5625rem;
}

.show .pagination .prev::before {
  transform: rotate(45deg);
  right: 0.5625rem;
}

.show .section.airings {
  margin-bottom :3.5rem;
}

.show .section.airings .current-airing {
  margin: 1rem 0;
}

.show .section.airings ul .description {
  line-height: 1.124rem;
}

.show .section.airings .current-airing > div:first-child > p {
  font-weight: bold;
  margin: 0;
}

.show .section.airings .current-airing > div:last-child > p {
  margin: 0;
}

.show .section.airings .current-airing > div:last-child > p.title {
  color: var(--color-red);
}

.show .section.airings .current-airing > div:last-child > p.repeat {
  color: var(--color-medium-gray);
}

.show .section.airings .current-airing > div:last-child > p.description {
  line-height: 1.5rem;
}

.show .section.airings ul {
  padding: 0;
}

.show .episodes .loading-skeleton .row .left {
  width: 150px;
}

.show .episodes .loading-skeleton .row .right {
  width: 75%;
}

.show .section.airings ul li {
    gap: 16px;
}

.show .section.airings ul li {
    list-style: none;
    display: flex;
    border-top: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
    cursor: pointer;
    padding: .5rem .75rem .625rem
}

.show .section.airings ul li.current {
    background-color: var(--color-gray);
    position: relative;
}

.show .section.airings ul li > div:first-child {
    position: relative;
}

.show .section.airings ul li > div:first-child::after {
    content: "";
    transition-property: opacity;
    transition-duration: .3s;
    position: absolute;
    left: -0.75rem;
    right: 0.5rem;
    bottom: calc(-0.625rem - 5px);
    height: 10px;
    background-color: white;
    opacity: 0;
}

.show .section.airings ul li.current > div:first-child::after {
    opacity: 1;
}

.show .section.airings ul li > div:first-child {
    max-width: 7.5rem;
    flex: 0 0 7.5rem;
}

.show .section.airings ul p {
    margin: 0;
}

.show .section.airings ul .date {
    color: var(--color-red);
}

.show .section.airings ul .time {
    font-size: .875rem;
    line-height: 1.125rem;
}

.show .section.airings ul .title {
    font-weight: bold;
}

.show .section.airings ul .description {
    font-size: .875rem;
}

.show .section.airings ul .repeat {
    display: none;
}

.show .episodes {
  padding-left: 1rem;
  padding-right: 1rem;
}

@media(min-width: 769px) {
  .show .section.airings ul .description {
    line-height: 1.5rem;
  }

  .show .section.airings ul {
    flex: 3;
  }

  .show .section.airings ul li {
    gap: 12px;
  }

  .show .section.airings ul li > div:first-child {
    max-width: 25%;
    flex: 0 0 25%;
  }

  .show .section.airings ul li > div:nth-child(2) {
    max-width: 700px;
    line-height: 1.75rem;
  }

  .show .episodes .loading-skeleton {
    margin-top: 4rem;
  }

  .show .episodes .loading-skeleton .row .left {
    width: 20%;
  }
  
  .show .episodes .loading-skeleton .row .right {
    width: 58%;
  }

  .show .section.airings > div {
    display: flex;
    column-gap: 1.25rem;
  }

  .show .section.airings .current-airing {
    width: 20.9375rem;
  }

  .show .section.airings .current-airing {
    max-width: 21.5rem;
    flex: 1;
    padding-left: 2.125rem;
    padding-right: .75rem;
  }

  .show .section.airings .current-airing > div:last-child > p {
    font-size: 1rem;
  }

  .show .section.airings .current-airing > div:last-child > p.description {
    font-size: 1.125rem;
  }

  .show .section.airings .current-airing > div:first-child > p {
    font-size: 1.5rem;
    letter-spacing: .05em;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,"Fira Sans","Droid Sans","Helvetica Neue",sans-serif;
  }

  .show .section.airings ul .time {
    font-size: 1.125rem;
    line-height: 1.25rem;
  }

  .show .section.airings ul .description {
    font-size: 1.125rem;
  }

  .show .paginated-list > div {
    display: flex;
  }

  .show .paginated-list > div > aside {
    width: 21.6875rem;
  }

  .show ul.episodes li {
    height: auto;
  }

  .show ul.episodes li picture {
    flex-basis: 25%;
    max-width: 25%;
    width: auto;
    min-width: 150px;
  }

  .show ul.episodes li picture img {
    max-width: 100%;
  }
  .show ul.episodes li h3,
  .show ul.episodes li h3 a {
    font-size: 1.25rem;
    font-weight: 400;
  }

  .show ul.episodes li p {
    margin-bottom: 0;
    font-size: .875rem;
  }

  .show .pagination {
    align-items: center;
    font-size: 1.375rem;
  }

  .show .pagination .prev,
  .show .pagination .next {
    width: auto;
    height: auto;
    padding: 1rem;
    font-size: 1rem;
    line-height: 1.25rem;
  }

  .show .pagination .prev::before,
  .show .pagination .next::after {
      position: static;
      display: inline-block;
  }

  .show .pagination .prev span,
  .show .pagination .next span {
      display: inline-block;
  }
}
/* eslint no-use-before-define: 2 */ 


