/**
 * Default clearfix implementation.
 *
 * @usage
 *    .box {
 *      @include clearfix;
 *    }
 */
/**
 * Casts a string into a number.
 *
 * @param {string} $value
 *    Tje string to cast to a number.
 * @return {$number}
 *    The value as number.
 */
/**
 * Split a string into a list of strings.
 *
 * @param {string} $string
 *    Tje string to be split.
 * @param {string} $delimiter
 *    The boundary string.
 * @return {list} $result
 *    The result list.
 */
.podcast-embed {
  margin: 0 auto 2rem auto;
  max-width: 1140px;
}
@media (min-width: 480px) {
  .podcast-embed {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    grid-template-areas: "img content" "audio content";
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
    row-gap: 0;
  }
}
@media (min-width: 767px) {
  .podcast-embed {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-template-rows: auto 1fr;
    grid-template-areas: "img content" "audio content";
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
    row-gap: 0;
  }
}
.podcast-embed__content {
  grid-area: content;
  align-self: center;
}
.podcast-embed h3 {
  margin-top: 0.5rem;
}
@media (min-width: 480px) {
  .podcast-embed h3 {
    margin-top: -0.5rem;
  }
}
.podcast-embed h3 a {
  text-decoration: none;
}
.podcast-embed__img {
  display: block;
  aspect-ratio: 36/20;
  width: 100%;
  height: auto;
  background: -o-linear-gradient(32deg, #05598C, #ADCF6E);
  background: linear-gradient(58deg, #05598C, #ADCF6E);
  color: #fff;
  position: relative;
  vertical-align: bottom;
  grid-area: img;
}
.podcast-embed__img-placeholder {
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 2;
}
.podcast-embed__img-placeholder:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: -o-linear-gradient(32deg, #05598C, #ADCF6E);
  background: linear-gradient(58deg, #05598C, #ADCF6E);
  opacity: 0.8;
  z-index: 2;
}
.podcast-embed__img-placeholder:before {
  font-family: "iconfont";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  speak: none;
  text-decoration: none;
  text-transform: none;
  vertical-align: middle;
  content: "\e044";
  font-size: 2rem;
  display: block;
  text-align: center;
  z-index: 3;
}
.podcast-embed__img-placeholder span {
  position: relative;
  z-index: 3;
}
.podcast-embed__img img {
  vertical-align: bottom;
  width: 100%;
  height: 100%;
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.podcast-embed__subtitle {
  font-weight: bold;
  margin-top: 0.5rem;
}
.podcast-embed .text-formatted {
  margin-top: 0.5rem;
}
.podcast-embed__audio {
  grid-area: audio;
}
.podcast-embed__audio audio {
  width: 100%;
  vertical-align: bottom;
}
.podcast-embed__audio audio::-webkit-media-controls-enclosure {
  border-radius: 0;
  -webkit-filter: invert(1);
          filter: invert(1);
}
.podcast-embed__audio_description_download {
  margin-top: 0.5rem;
}