.article__cover {
  position: relative;
  margin: 0;
  background: var(--darker-blue);
}
.article__cover:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(318deg, rgba(8, 14, 62, 0) 0%, rgba(0, 22, 213, 0.6) 100%);
}
.article__cover img {
  mix-blend-mode: hard-light;
  opacity: 0.5;
}
.article__cover figcaption {
  display: none;
}
.podcast__media .embed-media {
  position: relative;
  z-index: 1;
  margin: -20px 0 0;
  line-height: 0;
}
.article__main {
  padding-top: 30px;
}
h1 {
  margin: 0 0 20px;
}
.podcast__links {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  padding: 20px 0 5px 20px;
  border-top: 1px solid var(--grey);
}
.podcast__links a {
  display: inline-block;
  vertical-align: middle;
  margin: 0 20px 15px 0;
}
.podcast__transcript-trigger {
  text-align: center;
}
.podcast__transcript-trigger .more-link {
  cursor: pointer;
}
.podcast__transcript {
  display: none;
  position: fixed;
  top: 200px;
  z-index: 1;
  max-width: 900px;
  width: 100%;
}
.podcast__transcript--open {
  display: block;
}
.podcast__transcript:before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: var(--darker-blue);
  opacity: 0.8;
}
.podcast__transcript-close {
  position: absolute;
  top: -40px;
  right: 20px;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
}
.podcast__transcript-close span {
  display: inline-block;
  vertical-align: middle;
  margin: 0 15px 0 0;
  font-size: 1rem;
  line-height: 1.3rem;
  letter-spacing: 0.15em;
  font-weight: bold;
  color: #fff;
  opacity: 0.5;
}
.podcast__transcript-close svg {
  display: inline-block;
  vertical-align: middle;
  width: 17px;
  height: 17px;
  fill: #fff;
}
.podcast__transcript-inner {
  max-height: calc(100vh - 300px);
  padding: 50px 100px;
  border-radius: 20px;
  overflow-y: auto;
  background: #fff;
}
.podcast__transcript-inner::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}
.podcast__transcript-inner::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background-color: var(--dark-grey);
}
.podcast__transcript-label {
  display: block;
  margin: 0 0 20px;
  font-size: 1rem;
  line-height: 1.3rem;
  letter-spacing: 0.15em;
  font-weight: bold;
  color: var(--blue);
}


@media screen and (max-width: 1024px) {
  .podcast__transcript {
    left: 0;
    right: 0;
    width: auto;
  }
  .podcast__transcript-inner {
    padding: 20px;
  }
}

@media screen and (max-width: 800px) {
  .podcast__media {
    margin: 0 -10px;
  }
  .article__main {
    padding-top: 20px;
  }
}

.responsive-container{position:relative;overflow:hidden;width:100%;padding-top:56.25%}.responsive-container iframe,.responsive-container video{position:absolute;top:0;left:0;width:100%;height:100%}