.show-page__broadcast-title,
.show-page__show-title {
  width: 100%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.show-page__show-title-line1 {
  display: block;
}
.show-page__show-title-line2 {
  display: block;
  margin-top: 4px;
}
.show-page__show-title-broadcast {
  font-size: 0.8rem; /* = body */
  font-weight: normal;
  line-height: normal;
  letter-spacing: normal;
}
.show-page__show-title-broadcast:hover {
  text-decoration: underline;
}
.show-page__show-title {
  border-top: 1px solid black;
  padding-top: 10px;
  margin-top: 20px;
  margin-bottom: 4px;
}
.show-page__broadcast-title:hover {
  text-decoration: underline;
}

/* Primary */

/* Description*/
.show-description__text {
  max-width: 480px;
}
.show-description__text a {
  text-decoration: underline;
}
.show-description-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
}
.show-description-heading__title {
  margin-top: auto;
  margin-bottom: auto;
}
.show-description-heading__cta {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border: 1px solid black;
  padding: 4px 10px;
  font-weight: bold;
  letter-spacing: 1.2px;
}
.show-description-heading__cta img {
  height: 8px;
  padding-left: 1px;
  padding-right: 2px;
}
.show-description-heading__cta--inverted {
  background-color: black;
}
.show-description-heading__cta--inverted a {
  color: white;
}

/* Info section */
.show-infos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.show-infos.show-infos__without-playlist {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.show-infos__comments {
  border-top: 1px solid black;
}
.show-infos__comments--tablet {
  display: none;
}
.show-infos__playlist {
  height: 100%;
}

/* Link */
.show-link {
  margin-top: 40px;
  padding-top: 10px;
  border-top: 1px solid black;
  font-weight: bold;
}

@media (max-width: 567px) {
  .show-link {
    margin-top: 0;
  }
}

/* Moderator */
.show-moderator {
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.show-moderator__image,
.show-moderator__cta {
  width: 50%;
}
.show-moderator__cta {
  padding-left: 10px;
  height: min-content;
}
.show-moderator-cta__name {
  text-decoration: underline;
}

/* Playlist */
.show-playlist {
  border-top: 1px solid black;
  padding-top: 10px;
}
.show-playlist__title {
  margin-bottom: 10px;
}
.show-playlist__count {
  display: block;
  padding-right: 10px;
}
.show-playlist__song {
  padding-bottom: 10px;
}
.show-playlist__fav {
  vertical-align: top;
}

/* Secondary */

.show-image {
  width: 100%;
  object-fit: cover;
}
.show-image--mobile {
  display: none;
}
.show-broadcast-description__title {
  padding-top: 10px;
  padding-bottom: 10px;
  border-top: 1px solid black;
}
.show-broadcast-description__text a {
  margin-top: 10px;
  text-decoration: underline;
  display: block;
}
.show-broadcast-list {
  margin-top: 20px;
  padding-top: 10px;
  border-top: 1px solid black;
}

@media(max-width: 960px) {
  .show-page__primary {
    padding-left: 10px;
  }
  .show-infos__comments--tablet {
    display: block;
    margin-top: 60px;
  }
  .show-infos__comments--desktop {
    display: none;
  }
}

@media(max-width: 567px) {
  .show-description {
    padding-bottom: 0;
  }
  .show-image--mobile {
    display: block;
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .show-image--desktop,
  .show-broadcast-list {
    display: none;
  }
  .show-infos__comments--tablet {
    margin-top: 10px;
  }
}

/* Image Constrain:
 * limit .show-image to 4:3 aspect ratio
 * we re-calculate the column width and set a relative max-height
 */

.show-image-wrap-constrain {
  overflow: hidden;
  max-height: 476px; /* calc(((1120px - 2 * 9px) / 3 - 10px) * 1.333); */
}
@media (max-width: 1120px) {
  .show-image-wrap-constrain {
    max-height: calc(((100vw - 2 * 9px) / 3 - 10px) * 1.333);
  }
}
@media (max-width: 960px) {
  .show-image-wrap-constrain {
    max-height: calc(((100vw - 2 * 9px) / 2 - 5px) * 1.333);
  }
}
@media (max-width: 567px) {
  .show-image-wrap-constrain {
    max-height: calc((100vw - 2 * 9px) * 1.333);
  }
}
