/* The Song Of The Week */

.song-week-page,
.song-week-page * {
  font-family: Avenir;
}

.song-main {
  width: 980px;
  margin: 0 auto;
  padding-top: 21px;
  padding-bottom: 48px;
}

.song-page-heading {
  margin-left: 30px;
}

.song-page-heading h1 {
  margin: 0 0 2px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
}

.song-page-rule {
  width: 918px;
  height: 1px;
  margin-bottom: 18px;
  background: #c9c9c9;
}

.song-overview {
  display: grid;
  grid-template-columns: 577px 308px;
  column-gap: 33px;
  align-items: start;
  margin-left: 30px;
}

.song-left-column {
  min-width: 0;
}

.song-synopsis-row {
  display: grid;
  grid-template-columns: 304px 240px;
  column-gap: 32px;
  align-items: center;
}

.song-synopsis h2,
.song-production h2,
.song-technical-sheet h2,
.song-season-heading h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
}

.song-section-rule {
  height: 1px;
  background: #c9c9c9;
}

.song-synopsis {
  width: 304px;
}

.song-synopsis .song-section-rule {
  width: 286px;
  margin: 2px 0 7px;
}

.song-synopsis p,
.song-production p {
  margin: 0;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.42;
  text-align: justify;
}

.song-logo-image {
  width: 240px;
  height: 134px;
  object-fit: contain;
}

.song-production {
  margin-top: 17px;
}

.song-production .song-section-rule {
  width: 566px;
  margin: 2px 0 10px;
}

.song-production p {
  width: 566px;
}

.song-technical-sheet {
  align-self: start;
  box-sizing: border-box;
  width: 308px;
  min-height: 365px;
  padding: 10px 10px 23px;
  color: #fff;
  background: #8d1700;
  border-radius: 0 60px 0 60px;
}

.song-technical-sheet h2 {
  padding-left: 1px;
}

.song-technical-rule {
  width: 286px;
  height: 1px;
  margin: 1px 0 8px;
  background: rgb(255 255 255 / 72%);
}

.song-technical-sheet dl {
  margin: 0;
}

.song-technical-sheet dl > div {
  display: grid;
  grid-template-columns: 125px 1fr;
  align-items: center;
  min-height: 45px;
}

.song-technical-sheet dt,
.song-technical-sheet dd {
  margin: 0;
  font-size: 17px;
  line-height: 1.3;
}

.song-technical-sheet dt {
  font-weight: 700;
}

.song-technical-sheet dd {
  text-align: center;
}

.song-season {
  margin-top: 28px;
  margin-left: 30px;
}

.song-season-heading h2 span {
  margin-left: 5px;
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
}

.song-season-rule {
  width: 865px;
  height: 1px;
  margin-top: 3px;
  background: #c9c9c9;
}

.song-episodes-grid {
  display: grid;
  grid-template-columns: repeat(2, 414px);
  column-gap: 41px;
  row-gap: 36px;
  width: 869px;
  margin-top: 28px;
  margin-left: 3px;
}

.song-episode {
  width: 414px;
}

.song-video {
  width: 414px;
  height: 224px;
  background: #000;
}

.song-video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.song-episode h3 {
  margin: 0;
  padding-top: 5px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.song-episode-rule {
  width: 414px;
  height: 3px;
  margin-top: 3px;
  background: #000;
}

.song-episode-title {
  margin: 3px 0 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3;
  text-align: center;
}

.song-season-two {
  margin-top: 56px;
}

@media (max-width: 980px) {
  .song-main {
    width: calc(100% - 32px);
  }

  .song-page-heading,
  .song-overview,
  .song-season {
    margin-left: 0;
  }

  .song-page-rule,
  .song-season-rule {
    width: 100%;
  }

  .song-overview {
    grid-template-columns: minmax(0, 1fr) 308px;
    column-gap: 28px;
  }

  .song-synopsis-row {
    grid-template-columns: 1fr;
  }

  .song-synopsis,
  .song-production,
  .song-production p {
    width: 100%;
  }

  .song-synopsis .song-section-rule,
  .song-production .song-section-rule {
    width: 100%;
  }

  .song-logo-image {
    margin: 22px auto 0;
  }

  .song-episodes-grid {
    width: 100%;
    margin-left: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 28px;
  }

  .song-episode,
  .song-video,
  .song-episode-rule {
    width: 100%;
  }

  .song-video {
    height: auto;
    aspect-ratio: 414 / 224;
  }
}

@media (max-width: 720px) {
  .song-page-heading h1 {
    font-size: 33px;
  }

  .song-overview {
    grid-template-columns: 1fr;
    row-gap: 28px;
  }

  .song-technical-sheet {
    width: 100%;
    min-height: 0;
    border-radius: 0 45px 0 45px;
  }

  .song-technical-rule {
    width: 100%;
  }

  .song-episodes-grid {
    grid-template-columns: 1fr;
    row-gap: 28px;
  }

  .song-season-two {
    margin-top: 44px;
  }
}
