/**
 * 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 {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  max-width: 1140px;
  aspect-ratio: 16/9;
  background: rgba(0, 0, 0, 0.1);
  margin-bottom: 0.5rem;
}
.podcast__img {
  display: grid;
  grid-template-rows: 1fr auto;
  width: 100%;
  height: 100%;
  background: -o-linear-gradient(32deg, #05598C, #ADCF6E);
  background: linear-gradient(58deg, #05598C, #ADCF6E);
  color: #fff;
  position: relative;
  vertical-align: bottom;
}
.podcast__img img, .podcast__img figure {
  vertical-align: bottom;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  /*+ div {
    visibility: hidden;
  }*/
}
.podcast__img-placeholder {
  font-weight: bold;
  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__img-placeholder:before, .podcast__img-placeholder:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.9;
  z-index: 2;
}
.podcast__img-placeholder:before {
  opacity: 0.1;
  background: transparent url(./linien.png) 20% bottom repeat-x;
  background-size: cover;
  z-index: 3;
}
.podcast__img-placeholder:after {
  background: -webkit-gradient(linear, left top, right top, from(#05598C), to(#ADCF6E));
  background: -o-linear-gradient(left, #05598C, #ADCF6E);
  background: linear-gradient(90deg, #05598C, #ADCF6E);
  opacity: 0.8;
  z-index: 2;
}
.podcast__img-placeholder span {
  position: relative;
  z-index: 3;
}
.podcast__img-placeholder span: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: 4;
}
.podcast__audio {
  z-index: 5;
  width: 100%;
  background: #000;
}
.podcast__audio audio {
  width: 100%;
  vertical-align: bottom;
}
.podcast__audio audio::-webkit-media-controls-enclosure {
  border-radius: 0;
  -webkit-filter: invert(1);
          filter: invert(1);
}
.podcast .podcast__image + .podcast__img-placeholder,
.podcast .responsive_image + .podcast__img-placeholder {
  visibility: hidden;
}